diff -Nru gnome-control-center-41.4/debian/changelog gnome-control-center-41.7/debian/changelog --- gnome-control-center-41.4/debian/changelog 2022-05-18 12:52:00.000000000 +0000 +++ gnome-control-center-41.7/debian/changelog 2022-05-27 13:37:05.000000000 +0000 @@ -1,3 +1,10 @@ +gnome-control-center (1:41.7-0ubuntu0.22.04.1) jammy; urgency=medium + + * New upstream bugfix release (LP: #1975945) + * Drop 6 patches applied in new release + + -- Jeremy Bicha Fri, 27 May 2022 09:37:05 -0400 + gnome-control-center (1:41.4-1ubuntu13.2) jammy-security; urgency=medium * Add patches to turn off RDP & VNC gsettings keys when turning off diff -Nru gnome-control-center-41.4/debian/gbp.conf gnome-control-center-41.7/debian/gbp.conf --- gnome-control-center-41.4/debian/gbp.conf 2022-05-18 12:52:00.000000000 +0000 +++ gnome-control-center-41.7/debian/gbp.conf 2022-05-27 13:37:05.000000000 +0000 @@ -1,7 +1,7 @@ [DEFAULT] pristine-tar = True debian-branch=ubuntu/jammy -upstream-branch = upstream/latest +upstream-branch = upstream/41.x debian-tag=ubuntu/%(version)s [buildpackage] diff -Nru gnome-control-center-41.4/debian/patches/common-Fix-leak-of-GUdevDevice.patch gnome-control-center-41.7/debian/patches/common-Fix-leak-of-GUdevDevice.patch --- gnome-control-center-41.4/debian/patches/common-Fix-leak-of-GUdevDevice.patch 2022-04-20 19:02:15.000000000 +0000 +++ gnome-control-center-41.7/debian/patches/common-Fix-leak-of-GUdevDevice.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,65 +0,0 @@ -From: Victor Toso -Date: Tue, 12 Oct 2021 11:48:55 +0200 -Subject: common: Fix leak of GUdevDevice - -The add_device() check for g_udev_device_get_parent() was leaking (see -below). As this is actually used in create_device(), I'm passing it as -argument to avoid a second call to that function. - - > 34,175 (1,080 direct, 33,095 indirect) bytes in 27 blocks are definitely lost in loss record 19,729 of 19,758 - > at 0x4A7A337: g_type_create_instance (gtype.c:1907) - > by 0x4A61CAC: g_object_new_internal (gobject.c:1945) - > by 0x4A62C7C: g_object_new_with_properties (gobject.c:2114) - > by 0x4A63780: g_object_new (gobject.c:1785) - > by 0x5EA5A6A: _g_udev_device_new (gudevdevice.c:132) - > by 0x4B6D24: add_device (gsd-device-manager.c:447) - > by 0x4B6FBF: gsd_device_manager_init (gsd-device-manager.c:517) - > by 0x4A7A288: g_type_create_instance (gtype.c:1929) - > by 0x4A61CAC: g_object_new_internal (gobject.c:1945) - > by 0x4A62C7C: g_object_new_with_properties (gobject.c:2114) - > by 0x4A63780: g_object_new (gobject.c:1785) - > by 0x4B7075: gsd_device_manager_get (gsd-device-manager.c:533) - -Origin: https://gitlab.gnome.org/GNOME/gnome-control-center/-/commit/dac8fd6 ---- - panels/common/gsd-device-manager.c | 10 +++------- - 1 file changed, 3 insertions(+), 7 deletions(-) - -diff --git a/panels/common/gsd-device-manager.c b/panels/common/gsd-device-manager.c -index 9509b3f..91a250a 100644 ---- a/panels/common/gsd-device-manager.c -+++ b/panels/common/gsd-device-manager.c -@@ -400,14 +400,10 @@ device_is_evdev (GUdevDevice *device) - } - - static GsdDevice * --create_device (GUdevDevice *udev_device) -+create_device (GUdevDevice *udev_device, GUdevDevice *parent) - { - const gchar *vendor, *product, *name, *group; - guint width, height; -- g_autoptr(GUdevDevice) parent = NULL; -- -- parent = g_udev_device_get_parent (udev_device); -- g_assert (parent != NULL); - - name = g_udev_device_get_sysfs_attr (parent, "name"); - vendor = g_udev_device_get_property (udev_device, "ID_VENDOR_ID"); -@@ -440,7 +436,7 @@ add_device (GsdDeviceManager *manager, - GUdevDevice *udev_device) - { - GsdDeviceManagerPrivate *priv = gsd_device_manager_get_instance_private (manager); -- GUdevDevice *parent; -+ g_autoptr(GUdevDevice) parent = NULL; - GsdDevice *device; - const gchar *syspath; - -@@ -449,7 +445,7 @@ add_device (GsdDeviceManager *manager, - if (!parent) - return; - -- device = create_device (udev_device); -+ device = create_device (udev_device, parent); - syspath = g_udev_device_get_sysfs_path (udev_device); - g_hash_table_insert (priv->devices, g_strdup (syspath), device); - g_signal_emit_by_name (manager, "device-added", device); diff -Nru gnome-control-center-41.4/debian/patches/keyboard-item-fix-leak-on-unused-CcKeyCombo.patch gnome-control-center-41.7/debian/patches/keyboard-item-fix-leak-on-unused-CcKeyCombo.patch --- gnome-control-center-41.4/debian/patches/keyboard-item-fix-leak-on-unused-CcKeyCombo.patch 2022-04-20 19:02:15.000000000 +0000 +++ gnome-control-center-41.7/debian/patches/keyboard-item-fix-leak-on-unused-CcKeyCombo.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -From: Victor Toso -Date: Tue, 12 Oct 2021 14:02:06 +0200 -Subject: keyboard-item: fix leak on unused CcKeyCombo - -==31571== 288 bytes in 24 blocks are definitely lost in loss record 18,138 of 19,290 -==31571== at 0x484086F: malloc (vg_replace_malloc.c:380) -==31571== by 0x4AF77A8: g_malloc (gmem.c:106) -==31571== by 0x4A4119: variant_get_key_combos (cc-keyboard-item.c:475) -==31571== by 0x4A41FD: settings_get_key_combos (cc-keyboard-item.c:498) -==31571== by 0x4A46BE: cc_keyboard_item_load_from_gsettings (cc-keyboard-item.c:574) -==31571== by 0x4A5BBB: append_section (cc-keyboard-manager.c:315) -==31571== by 0x4A605D: append_sections_from_file (cc-keyboard-manager.c:431) -==31571== by 0x4A6766: reload_sections (cc-keyboard-manager.c:568) -==31571== by 0x4A6D68: cc_keyboard_manager_load_shortcuts (cc-keyboard-manager.c:707) -==31571== by 0x4A2FA4: cc_keyboard_shortcut_dialog_init (cc-keyboard-shortcut-dialog.c:841) -==31571== by 0x4A7A288: g_type_create_instance (gtype.c:1929) -==31571== by 0x4A61CAC: g_object_new_internal (gobject.c:1945) - -Origin: https://gitlab.gnome.org/GNOME/gnome-control-center/-/commit/365fb19957 ---- - panels/keyboard/cc-keyboard-item.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/panels/keyboard/cc-keyboard-item.c b/panels/keyboard/cc-keyboard-item.c -index 2f7cdf7..1d17b10 100644 ---- a/panels/keyboard/cc-keyboard-item.c -+++ b/panels/keyboard/cc-keyboard-item.c -@@ -472,12 +472,12 @@ variant_get_key_combos (GVariant *variant) - - for (str = bindings; *str; str++) - { -- CcKeyCombo *combo = g_new (CcKeyCombo, 1); -+ g_autofree CcKeyCombo *combo = g_new (CcKeyCombo, 1); - - binding_from_string (*str, combo); - - if (combo->keyval != 0 || combo->keycode != 0 || combo->mask != 0) -- combos = g_list_prepend (combos, combo); -+ combos = g_list_prepend (combos, g_steal_pointer (&combo)); - } - - return g_list_reverse (combos); diff -Nru gnome-control-center-41.4/debian/patches/keyboard-manager-fix-leak-of-section-list-store.patch gnome-control-center-41.7/debian/patches/keyboard-manager-fix-leak-of-section-list-store.patch --- gnome-control-center-41.4/debian/patches/keyboard-manager-fix-leak-of-section-list-store.patch 2022-04-20 19:02:15.000000000 +0000 +++ gnome-control-center-41.7/debian/patches/keyboard-manager-fix-leak-of-section-list-store.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -From: Victor Toso -Date: Tue, 12 Oct 2021 12:36:14 +0200 -Subject: keyboard-manager: fix leak of section list store - -==25729== 1,058 (40 direct, 1,018 indirect) bytes in 1 blocks are definitely lost in loss record 20,104 of 20,657 -==25729== at 0x484086F: malloc (vg_replace_malloc.c:380) -==25729== by 0x4AF77A8: g_malloc (gmem.c:106) -==25729== by 0x4B0F1E4: g_slice_alloc (gslice.c:1072) -==25729== by 0x4B09060: UnknownInlinedFun (gsequence.c:1609) -==25729== by 0x4B09060: g_sequence_insert_before (gsequence.c:527) -==25729== by 0x4ED2FE7: gtk_list_store_insert (gtkliststore.c:1271) -==25729== by 0x4A5DCE: append_section (cc-keyboard-manager.c:363) -==25729== by 0x4A605D: append_sections_from_file (cc-keyboard-manager.c:431) -==25729== by 0x4A6766: reload_sections (cc-keyboard-manager.c:568) -==25729== by 0x4A6D33: cc_keyboard_manager_load_shortcuts (cc-keyboard-manager.c:706) -==25729== by 0x4A2FA4: cc_keyboard_shortcut_dialog_init (cc-keyboard-shortcut-dialog.c:841) -==25729== by 0x4A7A288: g_type_create_instance (gtype.c:1929) -==25729== by 0x4A61CAC: g_object_new_internal (gobject.c:1945) - -Origin: https://gitlab.gnome.org/GNOME/gnome-control-center/-/commit/7741dc1ab ---- - panels/keyboard/cc-keyboard-manager.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/panels/keyboard/cc-keyboard-manager.c b/panels/keyboard/cc-keyboard-manager.c -index 4d633c2..ad50632 100644 ---- a/panels/keyboard/cc-keyboard-manager.c -+++ b/panels/keyboard/cc-keyboard-manager.c -@@ -596,6 +596,7 @@ cc_keyboard_manager_finalize (GObject *object) - g_clear_pointer (&self->kb_apps_sections, g_hash_table_destroy); - g_clear_pointer (&self->kb_user_sections, g_hash_table_destroy); - g_clear_object (&self->binding_settings); -+ g_clear_object (&self->sections_store); - - g_clear_pointer (&self->wm_changed_id, wm_common_unregister_window_manager_change); - diff -Nru gnome-control-center-41.4/debian/patches/keyboard-shortcut-editor-fix-leak-of-accel-string.patch gnome-control-center-41.7/debian/patches/keyboard-shortcut-editor-fix-leak-of-accel-string.patch --- gnome-control-center-41.4/debian/patches/keyboard-shortcut-editor-fix-leak-of-accel-string.patch 2022-04-20 19:02:15.000000000 +0000 +++ gnome-control-center-41.7/debian/patches/keyboard-shortcut-editor-fix-leak-of-accel-string.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -From: Victor Toso -Date: Tue, 12 Oct 2021 14:09:45 +0200 -Subject: keyboard-shortcut-editor: fix leak of accel string - -==31571== 120 bytes in 8 blocks are definitely lost in loss record 17,034 of 19,290 -==31571== at 0x484086F: malloc (vg_replace_malloc.c:380) -==31571== by 0x4AF77A8: g_malloc (gmem.c:106) -==31571== by 0x4D9816A: gtk_accelerator_name (gtkaccelgroup.c:1577) -==31571== by 0x4A82D1: setup_custom_shortcut (cc-keyboard-shortcut-editor.c:364) -==31571== by 0x4A92DF: cc_keyboard_shortcut_editor_key_press_event (cc-keyboard-shortcut-editor.c:745) - -Origin: https://gitlab.gnome.org/GNOME/gnome-control-center/-/commit/8355404e ---- - panels/keyboard/cc-keyboard-shortcut-editor.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/panels/keyboard/cc-keyboard-shortcut-editor.c b/panels/keyboard/cc-keyboard-shortcut-editor.c -index 6b42763..4e93a1c 100644 ---- a/panels/keyboard/cc-keyboard-shortcut-editor.c -+++ b/panels/keyboard/cc-keyboard-shortcut-editor.c -@@ -308,7 +308,7 @@ setup_custom_shortcut (CcKeyboardShortcutEditor *self) - HeaderMode mode; - gboolean is_custom, is_accel_empty; - gboolean valid, accel_valid; -- gchar *accel; -+ g_autofree char *accel = NULL; - - is_custom = is_custom_shortcut (self); - accel_valid = is_valid_binding (self->custom_combo) && diff -Nru gnome-control-center-41.4/debian/patches/network-fix-critical-when-opening-VPN-details-page.patch gnome-control-center-41.7/debian/patches/network-fix-critical-when-opening-VPN-details-page.patch --- gnome-control-center-41.4/debian/patches/network-fix-critical-when-opening-VPN-details-page.patch 2022-04-20 19:02:15.000000000 +0000 +++ gnome-control-center-41.7/debian/patches/network-fix-critical-when-opening-VPN-details-page.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -From: Michael Catanzaro -Date: Fri, 5 Nov 2021 16:25:58 -0500 -Subject: network: fix critical when opening VPN details page - -I was seeing this critical when opening the VPN details page: - -(gnome-control-center:78888): nm-CRITICAL **: 16:26:21.689: ((src/libnm-client-impl/nm-device.c:1299)): assertion '' failed - -It probably broke in 551d72280bbc9479a81697e2d888a77a64538b27. The code -above and below expects self->device may be NULL, so let's add a -NULL check here. - -Origin: https://gitlab.gnome.org/GNOME/gnome-control-center/-/commit/c180aa66 ---- - panels/network/connection-editor/ce-page-details.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -diff --git a/panels/network/connection-editor/ce-page-details.c b/panels/network/connection-editor/ce-page-details.c -index 3908515..7826179 100644 ---- a/panels/network/connection-editor/ce-page-details.c -+++ b/panels/network/connection-editor/ce-page-details.c -@@ -297,7 +297,9 @@ connect_details_page (CEPageDetails *self) - gtk_widget_set_visible (GTK_WIDGET (self->speed_heading_label), speed_label != NULL); - gtk_widget_set_visible (GTK_WIDGET (self->speed_label), speed_label != NULL); - -- hw_address = nm_device_get_hw_address (self->device); -+ if (self->device) -+ hw_address = nm_device_get_hw_address (self->device); -+ - gtk_label_set_label (self->mac_label, hw_address); - gtk_widget_set_visible (GTK_WIDGET (self->mac_heading_label), hw_address != NULL); - gtk_widget_set_visible (GTK_WIDGET (self->mac_label), hw_address != NULL); diff -Nru gnome-control-center-41.4/debian/patches/network-Fix-saving-passwords-for-non-wifi-connections.patch gnome-control-center-41.7/debian/patches/network-Fix-saving-passwords-for-non-wifi-connections.patch --- gnome-control-center-41.4/debian/patches/network-Fix-saving-passwords-for-non-wifi-connections.patch 2022-04-20 19:02:15.000000000 +0000 +++ gnome-control-center-41.7/debian/patches/network-Fix-saving-passwords-for-non-wifi-connections.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,51 +0,0 @@ -From: Benjamin Berg -Date: Thu, 9 Dec 2021 17:59:59 +0100 -Subject: network: Fix saving passwords for non-wifi connections - -When validating security settings for non-wifi connections, we -temporarily create a wireless connection. Unfortunately, when this -connection is destroyed, it'll clear the stored password from the 802.1x -settings object. - -Avoid this by removing the setting before the temporary connection is -destroyed. - -Closes: #337 - -Origin: https://gitlab.gnome.org/GNOME/gnome-control-center/-/commit/6f825c ---- - panels/network/connection-editor/ce-page-8021x-security.c | 14 +++++--------- - 1 file changed, 5 insertions(+), 9 deletions(-) - -diff --git a/panels/network/connection-editor/ce-page-8021x-security.c b/panels/network/connection-editor/ce-page-8021x-security.c -index 1e4f146..cb60ca9 100644 ---- a/panels/network/connection-editor/ce-page-8021x-security.c -+++ b/panels/network/connection-editor/ce-page-8021x-security.c -@@ -125,22 +125,18 @@ ce_page_8021x_security_validate (CEPage *cepage, NMConnection *connection, GErro - valid = wireless_security_validate (WIRELESS_SECURITY (self->security), error); - if (valid) { - g_autoptr(NMConnection) tmp_connection = NULL; -- NMSetting *s_con; - - /* Here's a nice hack to work around the fact that ws_802_1x_fill_connection needs wireless setting. */ -- tmp_connection = nm_simple_connection_new (); -+ tmp_connection = nm_simple_connection_new_clone (connection); - nm_connection_add_setting (tmp_connection, nm_setting_wireless_new ()); - -- /* temp connection needs a 'connection' setting too, since most of -- * the EAP methods need the UUID for CA cert ignore stuff. -- */ -- s_con = nm_connection_get_setting (connection, NM_TYPE_SETTING_CONNECTION); -- nm_connection_add_setting (tmp_connection, nm_setting_duplicate (s_con)); -- - ws_wpa_eap_fill_connection (self->security, tmp_connection); - -+ /* NOTE: It is important we create a copy of the settings, as the -+ * secrets might be cleared otherwise. -+ */ - s_8021x = nm_connection_get_setting (tmp_connection, NM_TYPE_SETTING_802_1X); -- nm_connection_add_setting (connection, NM_SETTING (g_object_ref (s_8021x))); -+ nm_connection_add_setting (connection, nm_setting_duplicate (NM_SETTING (s_8021x))); - } - } else { - nm_connection_remove_setting (connection, NM_TYPE_SETTING_802_1X); diff -Nru gnome-control-center-41.4/debian/patches/series gnome-control-center-41.7/debian/patches/series --- gnome-control-center-41.4/debian/patches/series 2022-05-18 12:52:00.000000000 +0000 +++ gnome-control-center-41.7/debian/patches/series 2022-05-27 13:37:05.000000000 +0000 @@ -4,16 +4,10 @@ wacom-Add-a-fake-stylus-when-mocking-a-tablet.patch wacom-Add-scenario-tester.patch color-Remove-profile-upload-feature.patch -network-fix-critical-when-opening-VPN-details-page.patch -common-Fix-leak-of-GUdevDevice.patch -keyboard-manager-fix-leak-of-section-list-store.patch -keyboard-item-fix-leak-on-unused-CcKeyCombo.patch -keyboard-shortcut-editor-fix-leak-of-accel-string.patch datetime-Remove-tzname_daylight.patch ua-Use-the-new-high-contrast-key.patch search-provider-Don-t-escape-result-description-as-markup.patch build-Bump-required-gsettings-desktop-schemas-version.patch -network-Fix-saving-passwords-for-non-wifi-connections.patch display-Always-show-refresh-rate.patch applications-Properly-protect-against-NULL-app_id.patch applications-Switch-to-g_spawn_check_wait_status.patch diff -Nru gnome-control-center-41.4/debian/watch gnome-control-center-41.7/debian/watch --- gnome-control-center-41.4/debian/watch 2022-04-20 19:02:15.000000000 +0000 +++ gnome-control-center-41.7/debian/watch 2022-05-27 13:37:05.000000000 +0000 @@ -1,4 +1,4 @@ version=4 -opts="searchmode=plain, uversionmangle=s/\.(alpha|beta|rc)/~$1/" \ +opts="searchmode=plain, uversionmangle=s/\.(alpha|beta|rc)/~$1/, downloadurlmangle=s|cache.json||" \ https://download.gnome.org/sources/@PACKAGE@/cache.json \ [\d.]+/@PACKAGE@-([\d.]+)@ARCHIVE_EXT@ diff -Nru gnome-control-center-41.4/meson.build gnome-control-center-41.7/meson.build --- gnome-control-center-41.4/meson.build 2022-02-13 21:57:02.000000000 +0000 +++ gnome-control-center-41.7/meson.build 2022-05-27 03:08:12.000000000 +0000 @@ -1,6 +1,6 @@ project( 'gnome-control-center', 'c', - version : '41.4', + version : '41.7', license : 'GPL2+', meson_version : '>= 0.53.0' ) diff -Nru gnome-control-center-41.4/NEWS gnome-control-center-41.7/NEWS --- gnome-control-center-41.4/NEWS 2022-02-13 21:57:02.000000000 +0000 +++ gnome-control-center-41.7/NEWS 2022-05-27 03:08:12.000000000 +0000 @@ -1,4 +1,28 @@ ================ +Version 41.7 +================ + +- Updated translations + +Cellular +- Remove duplicate line from .desktop + +Info +- Allow changing "Device Name" by pressing "Enter" +- Remove trailing space after CPU name + +Keyboard +- Fix crash resetting all keyboard shortcuts +- Fix leaks + +Network +- Fix saving passwords for non-wifi connections +- Fix critical when opening VPN details page + +Wacom: +- Fix leaks + +================ Version 41.4 ================ diff -Nru gnome-control-center-41.4/panels/common/gsd-device-manager.c gnome-control-center-41.7/panels/common/gsd-device-manager.c --- gnome-control-center-41.4/panels/common/gsd-device-manager.c 2022-02-13 21:57:02.000000000 +0000 +++ gnome-control-center-41.7/panels/common/gsd-device-manager.c 2022-05-27 03:08:12.000000000 +0000 @@ -400,14 +400,10 @@ } static GsdDevice * -create_device (GUdevDevice *udev_device) +create_device (GUdevDevice *udev_device, GUdevDevice *parent) { const gchar *vendor, *product, *name, *group; guint width, height; - g_autoptr(GUdevDevice) parent = NULL; - - parent = g_udev_device_get_parent (udev_device); - g_assert (parent != NULL); name = g_udev_device_get_sysfs_attr (parent, "name"); vendor = g_udev_device_get_property (udev_device, "ID_VENDOR_ID"); @@ -440,7 +436,7 @@ GUdevDevice *udev_device) { GsdDeviceManagerPrivate *priv = gsd_device_manager_get_instance_private (manager); - GUdevDevice *parent; + g_autoptr(GUdevDevice) parent = NULL; GsdDevice *device; const gchar *syspath; @@ -449,7 +445,7 @@ if (!parent) return; - device = create_device (udev_device); + device = create_device (udev_device, parent); syspath = g_udev_device_get_sysfs_path (udev_device); g_hash_table_insert (priv->devices, g_strdup (syspath), device); g_signal_emit_by_name (manager, "device-added", device); diff -Nru gnome-control-center-41.4/panels/info-overview/cc-info-overview-panel.c gnome-control-center-41.7/panels/info-overview/cc-info-overview-panel.c --- gnome-control-center-41.4/panels/info-overview/cc-info-overview-panel.c 2022-02-13 21:57:02.000000000 +0000 +++ gnome-control-center-41.7/panels/info-overview/cc-info-overview-panel.c 2022-05-27 03:08:12.000000000 +0000 @@ -611,10 +611,12 @@ count = GPOINTER_TO_INT (value); cleanedup = info_cleanup ((const char *) key); + if (cpu->len != 0) + g_string_append_printf (cpu, " "); if (count > 1) - g_string_append_printf (cpu, "%s \303\227 %d ", cleanedup, count); + g_string_append_printf (cpu, "%s \303\227 %d", cleanedup, count); else - g_string_append_printf (cpu, "%s ", cleanedup); + g_string_append_printf (cpu, "%s", cleanedup); } return g_strdup (cpu->str); @@ -837,6 +839,38 @@ } static void +update_device_name (CcInfoOverviewPanel *self) +{ + const gchar *hostname; + + /* We simply change the CcHostnameEntry text. CcHostnameEntry + * listens to changes and updates hostname on change. + */ + hostname = gtk_entry_get_text (self->device_name_entry); + gtk_entry_set_text (GTK_ENTRY (self->hostname_entry), hostname); +} + +static void +on_hostname_editor_dialog_response_cb (GtkDialog *dialog, + gint response, + CcInfoOverviewPanel *self) +{ + if (response == GTK_RESPONSE_APPLY) + { + update_device_name (self); + } + + gtk_window_close (GTK_WINDOW (dialog)); +} + +static void +on_device_name_entry_activated_cb (CcInfoOverviewPanel *self) +{ + update_device_name (self); + gtk_window_close (GTK_WINDOW (self->hostname_editor)); +} + +static void open_hostname_edit_dialog (CcInfoOverviewPanel *self) { GtkWindow *toplevel; @@ -951,6 +985,8 @@ gtk_widget_class_bind_template_callback (widget_class, cc_info_panel_row_activated_cb); gtk_widget_class_bind_template_callback (widget_class, on_device_name_entry_changed); + gtk_widget_class_bind_template_callback (widget_class, on_device_name_entry_activated_cb); + gtk_widget_class_bind_template_callback (widget_class, on_hostname_editor_dialog_response_cb); g_type_ensure (CC_TYPE_LIST_ROW); g_type_ensure (CC_TYPE_HOSTNAME_ENTRY); diff -Nru gnome-control-center-41.4/panels/info-overview/cc-info-overview-panel.ui gnome-control-center-41.7/panels/info-overview/cc-info-overview-panel.ui --- gnome-control-center-41.4/panels/info-overview/cc-info-overview-panel.ui 2022-02-13 21:57:02.000000000 +0000 +++ gnome-control-center-41.7/panels/info-overview/cc-info-overview-panel.ui 2022-05-27 03:08:12.000000000 +0000 @@ -220,6 +220,7 @@ True + diff -Nru gnome-control-center-41.4/panels/keyboard/cc-keyboard-item.c gnome-control-center-41.7/panels/keyboard/cc-keyboard-item.c --- gnome-control-center-41.4/panels/keyboard/cc-keyboard-item.c 2022-02-13 21:57:02.000000000 +0000 +++ gnome-control-center-41.7/panels/keyboard/cc-keyboard-item.c 2022-05-27 03:08:12.000000000 +0000 @@ -472,12 +472,12 @@ for (str = bindings; *str; str++) { - CcKeyCombo *combo = g_new (CcKeyCombo, 1); + g_autofree CcKeyCombo *combo = g_new (CcKeyCombo, 1); binding_from_string (*str, combo); if (combo->keyval != 0 || combo->keycode != 0 || combo->mask != 0) - combos = g_list_prepend (combos, combo); + combos = g_list_prepend (combos, g_steal_pointer (&combo)); } return g_list_reverse (combos); diff -Nru gnome-control-center-41.4/panels/keyboard/cc-keyboard-manager.c gnome-control-center-41.7/panels/keyboard/cc-keyboard-manager.c --- gnome-control-center-41.4/panels/keyboard/cc-keyboard-manager.c 2022-02-13 21:57:02.000000000 +0000 +++ gnome-control-center-41.7/panels/keyboard/cc-keyboard-manager.c 2022-05-27 03:08:12.000000000 +0000 @@ -596,6 +596,7 @@ g_clear_pointer (&self->kb_apps_sections, g_hash_table_destroy); g_clear_pointer (&self->kb_user_sections, g_hash_table_destroy); g_clear_object (&self->binding_settings); + g_clear_object (&self->sections_store); g_clear_pointer (&self->wm_changed_id, wm_common_unregister_window_manager_change); diff -Nru gnome-control-center-41.4/panels/keyboard/cc-keyboard-shortcut-dialog.c gnome-control-center-41.7/panels/keyboard/cc-keyboard-shortcut-dialog.c --- gnome-control-center-41.4/panels/keyboard/cc-keyboard-shortcut-dialog.c 2022-02-13 21:57:02.000000000 +0000 +++ gnome-control-center-41.7/panels/keyboard/cc-keyboard-shortcut-dialog.c 2022-05-27 03:08:12.000000000 +0000 @@ -234,7 +234,7 @@ row_data = g_object_get_data (l->data, "data"); - if (row_data->item == item) + if (row_data && row_data->item == item) { if (strcmp (row_data->section_id, "custom") == 0) { @@ -403,6 +403,9 @@ self = user_data; + if (widget == GTK_WIDGET (self->custom_shortcut_add_row)) + return; + data = g_object_get_data (G_OBJECT (widget), "data"); /* Don't reset custom shortcuts */ diff -Nru gnome-control-center-41.4/panels/keyboard/cc-keyboard-shortcut-editor.c gnome-control-center-41.7/panels/keyboard/cc-keyboard-shortcut-editor.c --- gnome-control-center-41.4/panels/keyboard/cc-keyboard-shortcut-editor.c 2022-02-13 21:57:02.000000000 +0000 +++ gnome-control-center-41.7/panels/keyboard/cc-keyboard-shortcut-editor.c 2022-05-27 03:08:12.000000000 +0000 @@ -308,7 +308,7 @@ HeaderMode mode; gboolean is_custom, is_accel_empty; gboolean valid, accel_valid; - gchar *accel; + g_autofree char *accel = NULL; is_custom = is_custom_shortcut (self); accel_valid = is_valid_binding (self->custom_combo) && diff -Nru gnome-control-center-41.4/panels/network/connection-editor/ce-page-8021x-security.c gnome-control-center-41.7/panels/network/connection-editor/ce-page-8021x-security.c --- gnome-control-center-41.4/panels/network/connection-editor/ce-page-8021x-security.c 2022-02-13 21:57:02.000000000 +0000 +++ gnome-control-center-41.7/panels/network/connection-editor/ce-page-8021x-security.c 2022-05-27 03:08:12.000000000 +0000 @@ -125,22 +125,18 @@ valid = wireless_security_validate (WIRELESS_SECURITY (self->security), error); if (valid) { g_autoptr(NMConnection) tmp_connection = NULL; - NMSetting *s_con; /* Here's a nice hack to work around the fact that ws_802_1x_fill_connection needs wireless setting. */ - tmp_connection = nm_simple_connection_new (); + tmp_connection = nm_simple_connection_new_clone (connection); nm_connection_add_setting (tmp_connection, nm_setting_wireless_new ()); - /* temp connection needs a 'connection' setting too, since most of - * the EAP methods need the UUID for CA cert ignore stuff. - */ - s_con = nm_connection_get_setting (connection, NM_TYPE_SETTING_CONNECTION); - nm_connection_add_setting (tmp_connection, nm_setting_duplicate (s_con)); - ws_wpa_eap_fill_connection (self->security, tmp_connection); + /* NOTE: It is important we create a copy of the settings, as the + * secrets might be cleared otherwise. + */ s_8021x = nm_connection_get_setting (tmp_connection, NM_TYPE_SETTING_802_1X); - nm_connection_add_setting (connection, NM_SETTING (g_object_ref (s_8021x))); + nm_connection_add_setting (connection, nm_setting_duplicate (NM_SETTING (s_8021x))); } } else { nm_connection_remove_setting (connection, NM_TYPE_SETTING_802_1X); diff -Nru gnome-control-center-41.4/panels/network/connection-editor/ce-page-details.c gnome-control-center-41.7/panels/network/connection-editor/ce-page-details.c --- gnome-control-center-41.4/panels/network/connection-editor/ce-page-details.c 2022-02-13 21:57:02.000000000 +0000 +++ gnome-control-center-41.7/panels/network/connection-editor/ce-page-details.c 2022-05-27 03:08:12.000000000 +0000 @@ -297,7 +297,9 @@ gtk_widget_set_visible (GTK_WIDGET (self->speed_heading_label), speed_label != NULL); gtk_widget_set_visible (GTK_WIDGET (self->speed_label), speed_label != NULL); - hw_address = nm_device_get_hw_address (self->device); + if (self->device) + hw_address = nm_device_get_hw_address (self->device); + gtk_label_set_label (self->mac_label, hw_address); gtk_widget_set_visible (GTK_WIDGET (self->mac_heading_label), hw_address != NULL); gtk_widget_set_visible (GTK_WIDGET (self->mac_label), hw_address != NULL); diff -Nru gnome-control-center-41.4/panels/wwan/gnome-wwan-panel.desktop.in.in gnome-control-center-41.7/panels/wwan/gnome-wwan-panel.desktop.in.in --- gnome-control-center-41.4/panels/wwan/gnome-wwan-panel.desktop.in.in 2022-02-13 21:57:02.000000000 +0000 +++ gnome-control-center-41.7/panels/wwan/gnome-wwan-panel.desktop.in.in 2022-05-27 03:08:12.000000000 +0000 @@ -11,6 +11,5 @@ StartupNotify=true Categories=GNOME;GTK;Settings;X-GNOME-NetworkSettings;HardwareSettings;X-GNOME-Settings-Panel;X-GNOME-ConnectivitySettings; OnlyShowIn=GNOME;Unity; -StartupNotify=true # Translators: Search terms to find the WWAN panel. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! Keywords=cellular;wwan;telephony;sim;mobile; diff -Nru gnome-control-center-41.4/po/en_GB.po gnome-control-center-41.7/po/en_GB.po --- gnome-control-center-41.4/po/en_GB.po 2022-02-13 21:57:02.000000000 +0000 +++ gnome-control-center-41.7/po/en_GB.po 2022-05-27 03:08:12.000000000 +0000 @@ -5,15 +5,15 @@ # Philip Withnall , 2010, 2013. # Chris Leonard , 2012. # Zander Brown , 2019-2020. -# Bruce Cowan , 2009-2021. +# Bruce Cowan , 2009-2022. # msgid "" msgstr "" "Project-Id-Version: gnome-control-center\n" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-control-center/" "issues\n" -"POT-Creation-Date: 2021-03-12 14:28+0000\n" -"PO-Revision-Date: 2021-03-14 11:06+0000\n" +"POT-Creation-Date: 2022-03-16 12:03+0000\n" +"PO-Revision-Date: 2022-04-24 11:12+0100\n" "Last-Translator: Bruce Cowan \n" "Language-Team: English - United Kingdom \n" "Language: en_GB\n" @@ -21,7 +21,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Gtranslator 3.38.0\n" +"X-Generator: Gtranslator 42.0\n" "X-Project-Style: gnome\n" #: panels/applications/cc-applications-panel.c:823 @@ -40,7 +40,7 @@ msgstr "Session Bus" #: panels/applications/cc-applications-panel.c:829 -#: panels/power/cc-power-panel.c:1789 panels/thunderbolt/cc-bolt-panel.ui:466 +#: panels/power/cc-power-panel.ui:85 panels/thunderbolt/cc-bolt-panel.ui:466 #: panels/thunderbolt/cc-bolt-panel.ui:525 msgid "Devices" msgstr "Devices" @@ -51,7 +51,8 @@ #: panels/applications/cc-applications-panel.c:833 #: panels/network/gnome-network-panel.desktop.in.in:3 -#: panels/network/network-mobile.ui:288 +#: panels/network/network-mobile.ui:288 panels/wwan/cc-wwan-device-page.ui:114 +#: panels/wwan/cc-wwan-network-dialog.ui:4 msgid "Network" msgstr "Network" @@ -77,7 +78,7 @@ #: panels/applications/cc-applications-panel.c:849 #: panels/keyboard/01-launchers.xml.in:6 shell/cc-window.c:279 -#: shell/cc-window.c:933 shell/cc-window.ui:121 +#: shell/cc-window.c:938 shell/cc-window.ui:121 #: shell/gnome-control-center.desktop.in.in:3 msgid "Settings" msgstr "Settings" @@ -157,7 +158,7 @@ #: panels/applications/cc-applications-panel.c:1660 #: panels/applications/cc-applications-panel.ui:416 #: panels/applications/gnome-applications-panel.desktop.in.in:3 -#: panels/notifications/cc-notifications-panel.ui:79 +#: panels/notifications/cc-notifications-panel.ui:70 msgid "Applications" msgstr "Applications" @@ -199,10 +200,11 @@ #: panels/applications/cc-applications-panel.ui:232 #: panels/applications/cc-applications-panel.ui:262 #: panels/keyboard/cc-keyboard-shortcut-editor.ui:85 -#: panels/keyboard/cc-xkb-modifier-dialog.c:355 +#: panels/keyboard/cc-xkb-modifier-dialog.c:353 #: panels/keyboard/keyboard-shortcuts.c:367 panels/network/network-proxy.ui:129 -#: panels/user-accounts/cc-user-panel.c:843 +#: panels/user-accounts/cc-user-panel.c:848 #: panels/user-accounts/cc-user-panel.c:938 +#: panels/wwan/cc-wwan-device-page.c:479 #: subprojects/gvc/gvc-mixer-control.c:1900 msgid "Disabled" msgstr "Disabled" @@ -220,7 +222,7 @@ msgstr "Location Services" #: panels/applications/cc-applications-panel.ui:157 -#: panels/applications/cc-applications-panel.ui:499 +#: panels/applications/cc-applications-panel.ui:500 msgid "Built-in Permissions" msgstr "Built-in Permissions" @@ -294,47 +296,47 @@ msgstr "How much resources this application is using." #: panels/applications/cc-applications-panel.ui:391 -#: panels/applications/cc-applications-panel.ui:536 +#: panels/applications/cc-applications-panel.ui:537 msgid "Storage" msgstr "Storage" -#: panels/applications/cc-applications-panel.ui:423 +#: panels/applications/cc-applications-panel.ui:424 msgid "Open in Software" msgstr "Open in Software" -#: panels/applications/cc-applications-panel.ui:473 shell/cc-panel-list.ui:121 +#: panels/applications/cc-applications-panel.ui:474 shell/cc-panel-list.ui:121 msgid "No results found" msgstr "No results found" -#: panels/applications/cc-applications-panel.ui:484 +#: panels/applications/cc-applications-panel.ui:485 #: panels/keyboard/cc-keyboard-shortcut-dialog.ui:177 #: shell/cc-panel-list.ui:132 msgid "Try a different search" msgstr "Try a different search" -#: panels/applications/cc-applications-panel.ui:554 +#: panels/applications/cc-applications-panel.ui:555 msgid "" "How much disk space this application is occupying with app data and caches." msgstr "" "How much disk space this application is occupying with app data and caches." -#: panels/applications/cc-applications-panel.ui:563 +#: panels/applications/cc-applications-panel.ui:564 msgid "Application" msgstr "Application" -#: panels/applications/cc-applications-panel.ui:569 +#: panels/applications/cc-applications-panel.ui:570 msgid "Data" msgstr "Data" -#: panels/applications/cc-applications-panel.ui:575 +#: panels/applications/cc-applications-panel.ui:576 msgid "Cache" msgstr "Cache" -#: panels/applications/cc-applications-panel.ui:581 +#: panels/applications/cc-applications-panel.ui:582 msgid "Total" msgstr "Total" -#: panels/applications/cc-applications-panel.ui:598 +#: panels/applications/cc-applications-panel.ui:599 msgid "Clear Cache…" msgstr "Clear Cache…" @@ -348,16 +350,16 @@ msgid "application;flatpak;permission;setting;" msgstr "application;flatpak;permission;setting;" -#: panels/background/cc-background-chooser.c:345 +#: panels/background/cc-background-chooser.c:344 msgid "Select a picture" msgstr "Select a picture" -#: panels/background/cc-background-chooser.c:348 +#: panels/background/cc-background-chooser.c:347 #: panels/color/cc-color-calibrate.ui:25 panels/color/cc-color-panel.c:238 #: panels/color/cc-color-panel.c:886 panels/color/cc-color-panel.ui:657 #: panels/common/cc-language-chooser.ui:25 -#: panels/display/cc-display-panel.c:1003 -#: panels/info-overview/cc-info-overview-panel.ui:242 +#: panels/display/cc-display-panel.c:1006 +#: panels/info-overview/cc-info-overview-panel.ui:244 #: panels/keyboard/cc-input-chooser.ui:11 #: panels/network/cc-wifi-hotspot-dialog.ui:122 #: panels/network/cc-wifi-panel.c:866 @@ -372,20 +374,23 @@ #: panels/sharing/cc-sharing-panel.c:396 panels/usage/cc-usage-panel.c:133 #: panels/user-accounts/cc-add-user-dialog.ui:28 #: panels/user-accounts/cc-avatar-chooser.c:105 -#: panels/user-accounts/cc-avatar-chooser.c:223 +#: panels/user-accounts/cc-avatar-chooser.c:228 #: panels/user-accounts/cc-fingerprint-dialog.ui:36 #: panels/user-accounts/cc-password-dialog.ui:20 -#: panels/user-accounts/cc-user-panel.c:633 -#: panels/user-accounts/cc-user-panel.c:651 +#: panels/user-accounts/cc-user-panel.c:638 +#: panels/user-accounts/cc-user-panel.c:656 #: panels/user-accounts/data/join-dialog.ui:20 +#: panels/wwan/cc-wwan-mode-dialog.ui:35 +#: panels/wwan/cc-wwan-network-dialog.ui:166 +#: panels/wwan/cc-wwan-sim-lock-dialog.ui:297 msgid "_Cancel" msgstr "_Cancel" -#: panels/background/cc-background-chooser.c:349 +#: panels/background/cc-background-chooser.c:348 #: panels/network/connection-editor/vpn-helpers.c:177 #: panels/printers/pp-details-dialog.c:236 #: panels/sharing/cc-sharing-panel.c:397 -#: panels/user-accounts/cc-avatar-chooser.c:224 +#: panels/user-accounts/cc-avatar-chooser.c:229 msgid "_Open" msgstr "_Open" @@ -404,7 +409,7 @@ msgid "No Desktop Background" msgstr "No Desktop Background" -#: panels/background/cc-background-panel.c:112 +#: panels/background/cc-background-panel.c:110 msgid "Current background" msgstr "Current background" @@ -467,7 +472,7 @@ #. Translators: The found device is a printer connected via Bluetooth #: panels/bluetooth/gnome-bluetooth-panel.desktop.in.in:3 -#: panels/printers/pp-new-printer-dialog.c:1595 +#: panels/printers/pp-new-printer-dialog.c:1392 msgid "Bluetooth" msgstr "Bluetooth" @@ -746,6 +751,7 @@ #: panels/color/cc-color-panel.c:887 #: panels/network/connection-editor/vpn-helpers.c:300 +#: panels/wwan/cc-wwan-apn-dialog.ui:64 msgid "_Save" msgstr "_Save" @@ -934,7 +940,7 @@ #. translators: Text used in link to privacy policy #: panels/color/cc-color-panel.ui:810 -#: panels/diagnostics/cc-diagnostics-panel.c:143 +#: panels/diagnostics/cc-diagnostics-panel.c:144 msgid "Learn more" msgstr "Learn more" @@ -1219,12 +1225,12 @@ msgstr "Select _All" #: panels/common/cc-util.c:127 -#: panels/network/connection-editor/ce-page-details.c:160 +#: panels/network/connection-editor/ce-page-details.c:162 msgid "Today" msgstr "Today" #: panels/common/cc-util.c:131 -#: panels/network/connection-editor/ce-page-details.c:162 +#: panels/network/connection-editor/ce-page-details.c:164 msgid "Yesterday" msgstr "Yesterday" @@ -1245,7 +1251,8 @@ msgstr[0] "%d hour" msgstr[1] "%d hours" -#: panels/common/cc-util.c:166 +#. Translators: Option for "Blank Screen" in "Power" panel +#: panels/common/cc-util.c:166 panels/power/cc-power-panel.c:973 #, c-format msgid "%d minute" msgid_plural "%d minutes" @@ -1427,39 +1434,39 @@ msgid "Search for a city" msgstr "Search for a city" -#: panels/datetime/cc-datetime-panel.ui:378 +#: panels/datetime/cc-datetime-panel.ui:375 msgid "Automatic _Date & Time" msgstr "Automatic _Date & Time" -#: panels/datetime/cc-datetime-panel.ui:379 +#: panels/datetime/cc-datetime-panel.ui:376 msgid "Requires internet access" msgstr "Requires internet access" -#: panels/datetime/cc-datetime-panel.ui:399 +#: panels/datetime/cc-datetime-panel.ui:396 msgid "Date & _Time" msgstr "Date & _Time" -#: panels/datetime/cc-datetime-panel.ui:438 +#: panels/datetime/cc-datetime-panel.ui:430 msgid "Automatic Time _Zone" msgstr "Automatic Time _Zone" -#: panels/datetime/cc-datetime-panel.ui:439 +#: panels/datetime/cc-datetime-panel.ui:431 msgid "Requires location services enabled and internet access" msgstr "Requires location services enabled and internet access" -#: panels/datetime/cc-datetime-panel.ui:454 +#: panels/datetime/cc-datetime-panel.ui:446 msgid "Time Z_one" msgstr "Time Z_one" -#: panels/datetime/cc-datetime-panel.ui:494 +#: panels/datetime/cc-datetime-panel.ui:481 msgid "Time _Format" msgstr "Time _Format" -#: panels/datetime/cc-datetime-panel.ui:503 +#: panels/datetime/cc-datetime-panel.ui:490 msgid "24-hour" msgstr "24-hour" -#: panels/datetime/cc-datetime-panel.ui:504 +#: panels/datetime/cc-datetime-panel.ui:491 msgid "AM / PM" msgstr "AM/PM" @@ -1519,7 +1526,7 @@ msgstr "default;application;preferred;media;" #. translators: The first '%s' is the distributor's name, such as 'Fedora', the second '%s' is a link to the privacy policy -#: panels/diagnostics/cc-diagnostics-panel.c:145 +#: panels/diagnostics/cc-diagnostics-panel.c:146 #, c-format msgid "" "Sending reports of technical problems helps us improve %s. Reports are sent " @@ -1557,20 +1564,20 @@ "screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;" "network;identity;privacy;" -#: panels/display/cc-display-panel.c:1014 +#: panels/display/cc-display-panel.c:1017 #: panels/network/connection-editor/connection-editor.ui:27 msgid "_Apply" msgstr "_Apply" -#: panels/display/cc-display-panel.c:1035 +#: panels/display/cc-display-panel.c:1038 msgid "Apply Changes?" msgstr "Apply Changes?" -#: panels/display/cc-display-panel.c:1040 +#: panels/display/cc-display-panel.c:1043 msgid "Changes Cannot be Applied" msgstr "Changes Cannot be Applied" -#: panels/display/cc-display-panel.c:1041 +#: panels/display/cc-display-panel.c:1044 msgid "This could be due to hardware limitations." msgstr "This could be due to hardware limitations." @@ -1630,27 +1637,27 @@ msgid "Night Light" msgstr "Night Light" -#: panels/display/cc-display-settings.c:103 +#: panels/display/cc-display-settings.c:107 msgctxt "Display rotation" msgid "Landscape" msgstr "Landscape" -#: panels/display/cc-display-settings.c:106 +#: panels/display/cc-display-settings.c:110 msgctxt "Display rotation" msgid "Portrait Right" msgstr "Portrait Right" -#: panels/display/cc-display-settings.c:109 +#: panels/display/cc-display-settings.c:113 msgctxt "Display rotation" msgid "Portrait Left" msgstr "Portrait Left" -#: panels/display/cc-display-settings.c:112 +#: panels/display/cc-display-settings.c:116 msgctxt "Display rotation" msgid "Landscape (flipped)" msgstr "Landscape (flipped)" -#: panels/display/cc-display-settings.c:186 +#: panels/display/cc-display-settings.c:190 #, c-format msgid "%.2lf Hz" msgstr "%.2lf Hz" @@ -1674,6 +1681,7 @@ msgstr "Adjust for TV" #: panels/display/cc-display-settings.ui:59 +#: panels/display/cc-display-settings.ui:76 msgctxt "display setting" msgid "Scale" msgstr "Scale" @@ -1773,11 +1781,11 @@ "Panel;Projector;xrandr;Screen;Resolution;Refresh;Monitor;Night;Light;Blue;" "redshift;colour;sunset;sunrise;" -#: panels/info-overview/cc-info-overview-panel.c:418 -#: panels/info-overview/cc-info-overview-panel.c:433 -#: panels/info-overview/cc-info-overview-panel.c:445 -#: panels/info-overview/cc-info-overview-panel.c:491 -#: panels/info-overview/cc-info-overview-panel.c:521 +#: panels/info-overview/cc-info-overview-panel.c:413 +#: panels/info-overview/cc-info-overview-panel.c:437 +#: panels/info-overview/cc-info-overview-panel.c:483 +#: panels/info-overview/cc-info-overview-panel.c:513 +#: panels/wwan/cc-wwan-details-dialog.c:101 msgid "Unknown" msgstr "Unknown" @@ -1785,95 +1793,94 @@ #. * example: #. * "Fedora 25 (Workstation Edition); Build ID: xyz" or #. * "Ubuntu 16.04 LTS; Build ID: jki" -#: panels/info-overview/cc-info-overview-panel.c:453 +#: panels/info-overview/cc-info-overview-panel.c:445 #, c-format msgid "%s; Build ID: %s" msgstr "%s; Build ID: %s" #. translators: This is the type of architecture for the OS -#: panels/info-overview/cc-info-overview-panel.c:468 +#: panels/info-overview/cc-info-overview-panel.c:460 #, c-format msgid "64-bit" msgstr "64-bit" #. translators: This is the type of architecture for the OS -#: panels/info-overview/cc-info-overview-panel.c:471 +#: panels/info-overview/cc-info-overview-panel.c:463 #, c-format msgid "32-bit" msgstr "32-bit" -#: panels/info-overview/cc-info-overview-panel.c:728 +#: panels/info-overview/cc-info-overview-panel.c:720 msgid "X11" msgstr "X11" -#: panels/info-overview/cc-info-overview-panel.c:732 +#: panels/info-overview/cc-info-overview-panel.c:724 msgid "Wayland" msgstr "Wayland" -#: panels/info-overview/cc-info-overview-panel.c:734 +#: panels/info-overview/cc-info-overview-panel.c:726 msgctxt "Windowing system (Wayland, X11, or Unknown)" msgid "Unknown" msgstr "Unknown" -#: panels/info-overview/cc-info-overview-panel.ui:51 +#: panels/info-overview/cc-info-overview-panel.ui:52 msgid "Device Name" msgstr "Device Name" -#: panels/info-overview/cc-info-overview-panel.ui:73 -#| msgid "Hardware Address" +#: panels/info-overview/cc-info-overview-panel.ui:74 msgid "Hardware Model" msgstr "Hardware Model" -#: panels/info-overview/cc-info-overview-panel.ui:82 +#: panels/info-overview/cc-info-overview-panel.ui:83 msgid "Memory" msgstr "Memory" -#: panels/info-overview/cc-info-overview-panel.ui:91 +#: panels/info-overview/cc-info-overview-panel.ui:92 msgid "Processor" msgstr "Processor" -#: panels/info-overview/cc-info-overview-panel.ui:100 +#: panels/info-overview/cc-info-overview-panel.ui:101 msgid "Graphics" msgstr "Graphics" -#: panels/info-overview/cc-info-overview-panel.ui:109 +#: panels/info-overview/cc-info-overview-panel.ui:110 msgid "Disk Capacity" msgstr "Disk Capacity" -#: panels/info-overview/cc-info-overview-panel.ui:110 +#: panels/info-overview/cc-info-overview-panel.ui:111 msgid "Calculating…" msgstr "Calculating…" #. translators: this field contains the distro name and version -#: panels/info-overview/cc-info-overview-panel.ui:132 +#: panels/info-overview/cc-info-overview-panel.ui:133 msgid "OS Name" msgstr "OS Name" -#: panels/info-overview/cc-info-overview-panel.ui:141 +#: panels/info-overview/cc-info-overview-panel.ui:142 msgid "OS Type" msgstr "OS Type" -#: panels/info-overview/cc-info-overview-panel.ui:150 +#: panels/info-overview/cc-info-overview-panel.ui:151 msgid "GNOME Version" msgstr "GNOME Version" -#: panels/info-overview/cc-info-overview-panel.ui:160 +#: panels/info-overview/cc-info-overview-panel.ui:161 msgid "Windowing System" msgstr "Windowing System" -#: panels/info-overview/cc-info-overview-panel.ui:168 +#: panels/info-overview/cc-info-overview-panel.ui:169 msgid "Virtualization" msgstr "Virtualisation" -#: panels/info-overview/cc-info-overview-panel.ui:177 +#: panels/info-overview/cc-info-overview-panel.ui:178 msgid "Software Updates" msgstr "Software Updates" -#: panels/info-overview/cc-info-overview-panel.ui:198 +#: panels/info-overview/cc-info-overview-panel.ui:199 msgid "Rename Device" msgstr "Rename Device" -#: panels/info-overview/cc-info-overview-panel.ui:215 +#: panels/info-overview/cc-info-overview-panel.ui:216 msgid "" "The device name is used to identify this device when it is viewed over the " "network, or when pairing Bluetooth devices." @@ -1881,7 +1888,7 @@ "The device name is used to identify this device when it is viewed over the " "network, or when pairing Bluetooth devices." -#: panels/info-overview/cc-info-overview-panel.ui:233 +#: panels/info-overview/cc-info-overview-panel.ui:235 msgid "_Rename" msgstr "_Rename" @@ -1955,7 +1962,7 @@ msgstr "Eject" #: panels/keyboard/01-input-sources.xml.in:4 -#: panels/universal-access/cc-ua-panel.ui:542 +#: panels/universal-access/cc-ua-panel.ui:580 msgid "Typing" msgstr "Typing" @@ -2094,7 +2101,7 @@ msgid "Input methods can’t be used on the login screen" msgstr "Input methods can’t be used on the login screen" -#: panels/keyboard/cc-input-list-box.ui:20 +#: panels/keyboard/cc-input-list-box.ui:23 msgid "No input source selected" msgstr "No input source selected" @@ -2125,12 +2132,12 @@ msgid "Custom Shortcuts" msgstr "Custom Shortcuts" -#: panels/keyboard/cc-keyboard-panel.c:71 -#: panels/keyboard/cc-keyboard-panel.ui:179 +#: panels/keyboard/cc-keyboard-panel.c:68 +#: panels/keyboard/cc-keyboard-panel.ui:213 msgid "Alternate Characters Key" msgstr "Alternative Characters Key" -#: panels/keyboard/cc-keyboard-panel.c:72 +#: panels/keyboard/cc-keyboard-panel.c:69 msgid "" "The alternate characters key can be used to enter additional characters. " "These are sometimes printed as a third-option on your keyboard." @@ -2138,49 +2145,48 @@ "The alternate characters key can be used to enter additional characters. " "These are sometimes printed as a third-option on your keyboard." -#: panels/keyboard/cc-keyboard-panel.c:74 -#: panels/keyboard/cc-keyboard-panel.c:92 +#: panels/keyboard/cc-keyboard-panel.c:71 +#: panels/keyboard/cc-keyboard-panel.c:89 msgctxt "keyboard key" msgid "Left Alt" msgstr "Left Alt" -#: panels/keyboard/cc-keyboard-panel.c:75 -#: panels/keyboard/cc-keyboard-panel.c:93 +#: panels/keyboard/cc-keyboard-panel.c:72 +#: panels/keyboard/cc-keyboard-panel.c:90 msgctxt "keyboard key" msgid "Right Alt" msgstr "Right Alt" -#: panels/keyboard/cc-keyboard-panel.c:76 -#: panels/keyboard/cc-keyboard-panel.c:94 +#: panels/keyboard/cc-keyboard-panel.c:73 +#: panels/keyboard/cc-keyboard-panel.c:91 msgctxt "keyboard key" msgid "Left Super" msgstr "Left Super" -#: panels/keyboard/cc-keyboard-panel.c:77 -#: panels/keyboard/cc-keyboard-panel.c:95 +#: panels/keyboard/cc-keyboard-panel.c:74 +#: panels/keyboard/cc-keyboard-panel.c:92 msgctxt "keyboard key" msgid "Right Super" msgstr "Right Super" -#: panels/keyboard/cc-keyboard-panel.c:78 -#: panels/keyboard/cc-keyboard-panel.c:96 -#| msgid "Menu key" +#: panels/keyboard/cc-keyboard-panel.c:75 +#: panels/keyboard/cc-keyboard-panel.c:93 msgctxt "keyboard key" msgid "Menu key" msgstr "Menu key" -#: panels/keyboard/cc-keyboard-panel.c:79 -#: panels/keyboard/cc-keyboard-panel.c:97 +#: panels/keyboard/cc-keyboard-panel.c:76 +#: panels/keyboard/cc-keyboard-panel.c:94 msgctxt "keyboard key" msgid "Right Ctrl" msgstr "Right Ctrl" -#: panels/keyboard/cc-keyboard-panel.c:87 -#: panels/keyboard/cc-keyboard-panel.ui:204 +#: panels/keyboard/cc-keyboard-panel.c:84 +#: panels/keyboard/cc-keyboard-panel.ui:237 msgid "Compose Key" msgstr "Compose Key" -#: panels/keyboard/cc-keyboard-panel.c:88 +#: panels/keyboard/cc-keyboard-panel.c:85 msgid "" "The compose key allows a wide variety of characters to be entered. To use " "it, press compose then a sequence of characters. For example, compose key " @@ -2192,81 +2198,80 @@ "followed by C and o will enter ©, a followed by " "' will enter á." -#: panels/keyboard/cc-keyboard-panel.c:98 -#| msgid "Caps" +#: panels/keyboard/cc-keyboard-panel.c:95 msgctxt "keyboard key" msgid "Caps Lock" msgstr "Caps Lock" -#: panels/keyboard/cc-keyboard-panel.c:99 -#| msgid "Scroll Left" +#: panels/keyboard/cc-keyboard-panel.c:96 msgctxt "keyboard key" msgid "Scroll Lock" msgstr "Scroll Lock" -#: panels/keyboard/cc-keyboard-panel.c:100 -#| msgid "Login _Screen" +#: panels/keyboard/cc-keyboard-panel.c:97 msgctxt "keyboard key" msgid "Print Screen" msgstr "Print Screen" -#: panels/keyboard/cc-keyboard-panel.ui:43 +#: panels/keyboard/cc-keyboard-panel.c:233 +#, c-format +msgid "" +"Input sources can be switched using the %s keyboard shortcut.\n" +"This can be changed in the keyboard shortcut settings." +msgstr "" +"Input sources can be switched using the %s keyboard shortcut.\n" +"This can be changed in the keyboard shortcut settings." + +#: panels/keyboard/cc-keyboard-panel.ui:48 msgid "Input Sources" msgstr "Input Sources" -#: panels/keyboard/cc-keyboard-panel.ui:66 -#| msgid "Input Source Options" +#: panels/keyboard/cc-keyboard-panel.ui:59 +msgid "Includes keyboard layouts and input methods." +msgstr "Includes keyboard layouts and input methods." + +#: panels/keyboard/cc-keyboard-panel.ui:85 msgid "Input Source Switching" msgstr "Input Source Switching" -#: panels/keyboard/cc-keyboard-panel.ui:99 +#: panels/keyboard/cc-keyboard-panel.ui:131 msgid "Use the _same source for all windows" msgstr "Use the _same source for all windows" -#: panels/keyboard/cc-keyboard-panel.ui:126 -#| msgid "Allow _different sources for each window" +#: panels/keyboard/cc-keyboard-panel.ui:158 msgid "Switch input sources _individually for each window" msgstr "Switch input sources _individually for each window" -#: panels/keyboard/cc-keyboard-panel.ui:138 -#| msgid "Keyboard Shortcuts" -msgid "Keyboard Shortcut" -msgstr "Keyboard Shortcut" - -#: panels/keyboard/cc-keyboard-panel.ui:139 -msgid "This can be changed in Customize Shortcuts" -msgstr "This can be changed in Customise Shortcuts" - -#: panels/keyboard/cc-keyboard-panel.ui:157 -msgid "Type Special Characters" -msgstr "Type Special Characters" - -#: panels/keyboard/cc-keyboard-panel.ui:180 -msgid "Hold down and type to enter different characters" -msgstr "Hold down and type to enter different characters" - -#: panels/keyboard/cc-keyboard-panel.ui:232 -#: panels/keyboard/cc-keyboard-shortcut-dialog.c:301 -#: panels/keyboard/cc-keyboard-shortcut-dialog.c:317 shell/cc-window.ui:326 +#: panels/keyboard/cc-keyboard-panel.ui:177 +msgid "Special Character Entry" +msgstr "Special Character Entry" + +#: panels/keyboard/cc-keyboard-panel.ui:188 +msgid "Methods for entering symbols and letter variants using the keyboard." +msgstr "Methods for entering symbols and letter variants using the keyboard." + +#: panels/keyboard/cc-keyboard-panel.ui:263 +#: panels/keyboard/cc-keyboard-shortcut-dialog.c:306 +#: panels/keyboard/cc-keyboard-shortcut-dialog.c:322 shell/cc-window.ui:326 msgid "Keyboard Shortcuts" msgstr "Keyboard Shortcuts" -#: panels/keyboard/cc-keyboard-panel.ui:253 -#| msgid "Custom Shortcuts" -msgid "Customize Shortcuts" -msgstr "Customise Shortcuts" - -#: panels/keyboard/cc-keyboard-shortcut-dialog.c:281 -#| msgctxt "volume" -#| msgid "Unamplified" -msgid "modified" -msgstr "modified" +#: panels/keyboard/cc-keyboard-panel.ui:283 +msgid "View and Customize Shortcuts" +msgstr "View and Customise Shortcuts" + +#: panels/keyboard/cc-keyboard-shortcut-dialog.c:283 +#, c-format +msgid "%d modified" +msgid_plural "%d modified" +msgstr[0] "%d modified" +msgstr[1] "%d modified" -#: panels/keyboard/cc-keyboard-shortcut-dialog.c:423 +#: panels/keyboard/cc-keyboard-shortcut-dialog.c:428 msgid "Reset All Shortcuts?" msgstr "Reset All Shortcuts?" -#: panels/keyboard/cc-keyboard-shortcut-dialog.c:426 +#: panels/keyboard/cc-keyboard-shortcut-dialog.c:431 msgid "" "Resetting the shortcuts may affect your custom shortcuts. This cannot be " "undone." @@ -2274,19 +2279,19 @@ "Resetting the shortcuts may affect your custom shortcuts. This cannot be " "undone." -#: panels/keyboard/cc-keyboard-shortcut-dialog.c:430 +#: panels/keyboard/cc-keyboard-shortcut-dialog.c:435 #: panels/keyboard/cc-keyboard-shortcut-editor.ui:275 #: panels/printers/authentication-dialog.ui:29 #: panels/printers/ppd-selection-dialog.ui:27 +#: panels/wwan/cc-wwan-device-page.c:190 msgid "Cancel" msgstr "Cancel" -#: panels/keyboard/cc-keyboard-shortcut-dialog.c:431 +#: panels/keyboard/cc-keyboard-shortcut-dialog.c:436 msgid "Reset All" msgstr "Reset All" #: panels/keyboard/cc-keyboard-shortcut-dialog.ui:115 -#| msgid "Add Custom Shortcut" msgid "Add Custom Shortcuts" msgstr "Add Custom Shortcuts" @@ -2305,7 +2310,8 @@ #: panels/keyboard/cc-keyboard-shortcut-dialog.ui:211 #: panels/region/cc-format-chooser.ui:48 #: panels/user-accounts/cc-fingerprint-dialog.ui:53 -#: panels/wacom/wacom-stylus-page.ui:37 shell/cc-window.ui:230 +#: panels/wacom/wacom-stylus-page.ui:37 panels/wwan/cc-wwan-apn-dialog.ui:21 +#: shell/cc-window.ui:230 msgid "Back" msgstr "Back" @@ -2351,6 +2357,7 @@ #: panels/keyboard/cc-keyboard-shortcut-editor.ui:135 #: panels/printers/pp-details-dialog.ui:40 +#: panels/wwan/cc-wwan-apn-dialog.ui:132 msgid "Name" msgstr "Name" @@ -2371,6 +2378,7 @@ msgstr "None" #: panels/keyboard/cc-keyboard-shortcut-editor.ui:296 +#: panels/wwan/cc-wwan-apn-dialog.ui:44 msgid "Add" msgstr "Add" @@ -2391,8 +2399,12 @@ msgstr "Keyboard" #: panels/keyboard/gnome-keyboard-panel.desktop.in.in:4 -msgid "View and change keyboard shortcuts and set your typing preferences" -msgstr "View and change keyboard shortcuts and set your typing preferences" +msgid "" +"Change keyboard shortcuts and set your typing preferences, keyboard layouts " +"and input sources" +msgstr "" +"Change keyboard shortcuts and set your typing preferences, keyboard layouts " +"and input sources" #. Translators: Search terms to find the Keyboard panel. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! #: panels/keyboard/gnome-keyboard-panel.desktop.in.in:19 @@ -2532,61 +2544,61 @@ msgstr "1 hour" #. Translators: Option for "Blank screen" in "Power" panel. -#: panels/lock/cc-lock-panel.ui:209 panels/power/cc-power-panel.ui:63 +#: panels/lock/cc-lock-panel.ui:209 msgctxt "blank_screen" msgid "1 minute" msgstr "1 minute" #. Translators: Option for "Blank screen" in "Power" panel. -#: panels/lock/cc-lock-panel.ui:213 panels/power/cc-power-panel.ui:67 +#: panels/lock/cc-lock-panel.ui:213 msgctxt "blank_screen" msgid "2 minutes" msgstr "2 minutes" #. Translators: Option for "Blank screen" in "Power" panel. -#: panels/lock/cc-lock-panel.ui:217 panels/power/cc-power-panel.ui:71 +#: panels/lock/cc-lock-panel.ui:217 msgctxt "blank_screen" msgid "3 minutes" msgstr "3 minutes" #. Translators: Option for "Blank screen" in "Power" panel. -#: panels/lock/cc-lock-panel.ui:221 panels/power/cc-power-panel.ui:75 +#: panels/lock/cc-lock-panel.ui:221 msgctxt "blank_screen" msgid "4 minutes" msgstr "4 minutes" #. Translators: Option for "Blank screen" in "Power" panel. -#: panels/lock/cc-lock-panel.ui:225 panels/power/cc-power-panel.ui:79 +#: panels/lock/cc-lock-panel.ui:225 msgctxt "blank_screen" msgid "5 minutes" msgstr "5 minutes" #. Translators: Option for "Blank screen" in "Power" panel. -#: panels/lock/cc-lock-panel.ui:229 panels/power/cc-power-panel.ui:83 +#: panels/lock/cc-lock-panel.ui:229 msgctxt "blank_screen" msgid "8 minutes" msgstr "8 minutes" #. Translators: Option for "Blank screen" in "Power" panel. -#: panels/lock/cc-lock-panel.ui:233 panels/power/cc-power-panel.ui:87 +#: panels/lock/cc-lock-panel.ui:233 msgctxt "blank_screen" msgid "10 minutes" msgstr "10 minutes" #. Translators: Option for "Blank screen" in "Power" panel. -#: panels/lock/cc-lock-panel.ui:237 panels/power/cc-power-panel.ui:91 +#: panels/lock/cc-lock-panel.ui:237 msgctxt "blank_screen" msgid "12 minutes" msgstr "12 minutes" #. Translators: Option for "Blank screen" in "Power" panel. -#: panels/lock/cc-lock-panel.ui:241 panels/power/cc-power-panel.ui:95 +#: panels/lock/cc-lock-panel.ui:241 msgctxt "blank_screen" msgid "15 minutes" msgstr "15 minutes" #. Translators: Option for "Blank screen" in "Power" panel. -#: panels/lock/cc-lock-panel.ui:245 panels/power/cc-power-panel.ui:99 +#: panels/lock/cc-lock-panel.ui:245 msgctxt "blank_screen" msgid "Never" msgstr "Never" @@ -2631,68 +2643,69 @@ #. FIXME #: panels/mouse/cc-mouse-panel.ui:37 +#: panels/multitasking/cc-multitasking-panel.ui:31 msgid "General" msgstr "General" -#: panels/mouse/cc-mouse-panel.ui:75 +#: panels/mouse/cc-mouse-panel.ui:57 msgid "Primary Button" msgstr "Primary Button" -#: panels/mouse/cc-mouse-panel.ui:94 +#: panels/mouse/cc-mouse-panel.ui:58 msgid "Sets the order of physical buttons on mice and touchpads." msgstr "Sets the order of physical buttons on mice and touchpads." -#: panels/mouse/cc-mouse-panel.ui:123 panels/sound/cc-balance-slider.ui:13 +#: panels/mouse/cc-mouse-panel.ui:84 panels/sound/cc-balance-slider.ui:13 msgid "Left" msgstr "Left" -#: panels/mouse/cc-mouse-panel.ui:133 panels/sound/cc-balance-slider.ui:15 +#: panels/mouse/cc-mouse-panel.ui:94 panels/sound/cc-balance-slider.ui:15 msgid "Right" msgstr "Right" -#: panels/mouse/cc-mouse-panel.ui:169 +#: panels/mouse/cc-mouse-panel.ui:122 msgid "Mouse" msgstr "Mouse" -#: panels/mouse/cc-mouse-panel.ui:208 +#: panels/mouse/cc-mouse-panel.ui:142 msgid "Mouse Speed" msgstr "Mouse Speed" -#: panels/mouse/cc-mouse-panel.ui:230 panels/mouse/cc-mouse-panel.ui:522 +#: panels/mouse/cc-mouse-panel.ui:154 panels/mouse/cc-mouse-panel.ui:258 msgid "Double-click timeout" msgstr "Double-click timeout" #. Translators: This switch reverses the scrolling direction for mices. The term used comes from OS X so use the same translation if possible. #. Translators: This switch reverses the scrolling direction for touchpads. The term used comes from OS X so use the same translation if possible. -#: panels/mouse/cc-mouse-panel.ui:267 panels/mouse/cc-mouse-panel.ui:430 +#: panels/mouse/cc-mouse-panel.ui:166 panels/mouse/cc-mouse-panel.ui:230 msgid "Natural Scrolling" msgstr "Natural Scrolling" -#: panels/mouse/cc-mouse-panel.ui:283 panels/mouse/cc-mouse-panel.ui:446 +#: panels/mouse/cc-mouse-panel.ui:167 panels/mouse/cc-mouse-panel.ui:231 msgid "Scrolling moves the content, not the view." msgstr "Scrolling moves the content, not the view." -#: panels/mouse/cc-mouse-panel.ui:333 panels/mouse/cc-mouse-panel.ui:378 +#: panels/mouse/cc-mouse-panel.ui:193 panels/mouse/cc-mouse-panel.ui:213 msgid "Touchpad" msgstr "Touchpad" -#: panels/mouse/cc-mouse-panel.ui:501 +#: panels/mouse/cc-mouse-panel.ui:247 msgid "Touchpad Speed" msgstr "Touchpad Speed" -#: panels/mouse/cc-mouse-panel.ui:560 +#: panels/mouse/cc-mouse-panel.ui:270 msgid "Tap to Click" msgstr "Tap to Click" -#: panels/mouse/cc-mouse-panel.ui:612 +#: panels/mouse/cc-mouse-panel.ui:286 msgid "Two-finger Scrolling" msgstr "Two-finger Scrolling" -#: panels/mouse/cc-mouse-panel.ui:665 +#: panels/mouse/cc-mouse-panel.ui:303 msgid "Edge Scrolling" msgstr "Edge Scrolling" -#: panels/mouse/cc-mouse-panel.ui:719 panels/wacom/cc-wacom-panel.c:441 +#: panels/mouse/cc-mouse-panel.ui:335 panels/wacom/cc-wacom-panel.c:441 msgid "Test Your _Settings" msgstr "Test Your _Settings" @@ -2743,11 +2756,91 @@ msgid "Trackpad;Pointer;Click;Tap;Double;Button;Trackball;Scroll;" msgstr "Trackpad;Pointer;Click;Tap;Double;Button;Trackball;Scroll;Touchpad;" -#: panels/network/cc-network-panel.c:661 panels/network/cc-wifi-panel.ui:307 +#: panels/multitasking/cc-multitasking-panel.ui:56 +msgid "_Hot Corner" +msgstr "_Hot Corner" + +#: panels/multitasking/cc-multitasking-panel.ui:57 +msgid "Touch the top-left corner to open the Activities Overview." +msgstr "Touch the top-left corner to open the Activities Overview." + +#: panels/multitasking/cc-multitasking-panel.ui:84 +msgid "_Active Screen Edges" +msgstr "_Active Screen Edges" + +#: panels/multitasking/cc-multitasking-panel.ui:85 +msgid "" +"Drag windows against the top, left, and right screen edges to resize them." +msgstr "" +"Drag windows against the top, left, and right screen edges to resize them." + +#: panels/multitasking/cc-multitasking-panel.ui:114 +msgid "Workspaces" +msgstr "Workspaces" + +#: panels/multitasking/cc-multitasking-panel.ui:139 +msgid "_Dynamic workspaces" +msgstr "_Dynamic workspaces" + +#: panels/multitasking/cc-multitasking-panel.ui:140 +msgid "Automatically removes empty workspaces." +msgstr "Automatically removes empty workspaces." + +#: panels/multitasking/cc-multitasking-panel.ui:158 +msgid "_Fixed number of workspaces" +msgstr "_Fixed number of workspaces" + +#: panels/multitasking/cc-multitasking-panel.ui:159 +msgid "Specify a number of permanent workspaces." +msgstr "Specify a number of permanent workspaces." + +#: panels/multitasking/cc-multitasking-panel.ui:179 +msgid "_Number of Workspaces" +msgstr "_Number of Workspaces" + +#: panels/multitasking/cc-multitasking-panel.ui:200 +msgid "Multi-Monitor" +msgstr "Multi-Monitor" + +#: panels/multitasking/cc-multitasking-panel.ui:225 +msgid "Workspaces on _primary display only" +msgstr "Workspaces on _primary display only" + +#: panels/multitasking/cc-multitasking-panel.ui:252 +msgid "Workspaces on all d_isplays" +msgstr "Workspaces on all d_isplays" + +#: panels/multitasking/cc-multitasking-panel.ui:282 +msgctxt "Wacom action-type" +msgid "Application Switching" +msgstr "Application Switching" + +#: panels/multitasking/cc-multitasking-panel.ui:307 +msgid "Include applications from all _workspaces" +msgstr "Include applications from all _workspaces" + +#: panels/multitasking/cc-multitasking-panel.ui:325 +msgid "Include applications from the _current workspace only" +msgstr "Include applications from the _current workspace only" + +#: panels/multitasking/gnome-multitasking-panel.desktop.in.in:3 +msgid "Multitasking" +msgstr "Multitasking" + +#: panels/multitasking/gnome-multitasking-panel.desktop.in.in:4 +msgid "Manage preferences for productivity and multitasking" +msgstr "Manage preferences for productivity and multitasking" + +#. Translators: Search terms to find the Search panel. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#: panels/multitasking/gnome-multitasking-panel.desktop.in.in:15 +msgid "Multitasking;Multitask;Productivity;Customize;Desktop;" +msgstr "Multitasking;Multitask;Productivity;Customise;Customize;Desktop;" + +#: panels/network/cc-network-panel.c:686 panels/network/cc-wifi-panel.ui:307 msgid "Oops, something has gone wrong. Please contact your software vendor." msgstr "Oops, something has gone wrong. Please contact your software vendor." -#: panels/network/cc-network-panel.c:667 +#: panels/network/cc-network-panel.c:692 msgid "NetworkManager needs to be running." msgstr "NetworkManager needs to be running." @@ -2771,23 +2864,23 @@ msgid "%s (SSID: %s)" msgstr "%s (SSID: %s)" -#: panels/network/cc-wifi-connection-row.c:268 +#: panels/network/cc-wifi-connection-row.c:264 msgid "Insecure network (WEP)" msgstr "Insecure network (WEP)" -#: panels/network/cc-wifi-connection-row.c:273 +#: panels/network/cc-wifi-connection-row.c:269 msgid "Secure network (WPA)" msgstr "Secure network (WPA)" -#: panels/network/cc-wifi-connection-row.c:278 +#: panels/network/cc-wifi-connection-row.c:274 msgid "Secure network (WPA2)" msgstr "Secure network (WPA2)" -#: panels/network/cc-wifi-connection-row.c:283 +#: panels/network/cc-wifi-connection-row.c:279 msgid "Secure network (WPA3)" msgstr "Secure network (WPA3)" -#: panels/network/cc-wifi-connection-row.c:288 +#: panels/network/cc-wifi-connection-row.c:284 msgid "Secure network" msgstr "Secure network" @@ -2796,8 +2889,8 @@ msgid "Connected" msgstr "Connected" -#: panels/network/cc-wifi-connection-row.ui:100 -#: panels/network/net-device-ethernet.c:327 +#: panels/network/cc-wifi-connection-row.ui:102 +#: panels/network/net-device-ethernet.c:333 #: panels/network/network-bluetooth.ui:76 #: panels/network/network-ethernet.ui:111 panels/network/network-mobile.ui:450 #: panels/network/network-vpn.ui:77 @@ -2814,11 +2907,16 @@ "Turning on the hotspot will disconnect from %s, and it will not be possible " "to access the internet through Wi-Fi." -#: panels/network/cc-wifi-hotspot-dialog.c:265 +#: panels/network/cc-wifi-hotspot-dialog.c:267 msgid "Must have a minimum of 8 characters" msgstr "Must have a minimum of 8 characters" -#: panels/network/cc-wifi-hotspot-dialog.c:479 +#: panels/network/cc-wifi-hotspot-dialog.c:272 +#, c-format +msgid "Must have a maximum of %d characters" +msgstr "Must have a maximum of %d characters" + +#: panels/network/cc-wifi-hotspot-dialog.c:488 msgid "Turn On Wi-Fi Hotspot?" msgstr "Turn On Wi-Fi Hotspot?" @@ -2842,6 +2940,7 @@ #: panels/printers/new-printer-dialog.ui:389 #: panels/printers/pp-jobs-dialog.ui:70 #: panels/user-accounts/cc-add-user-dialog.ui:249 +#: panels/wwan/cc-wwan-apn-dialog.ui:214 msgid "Password" msgstr "Password" @@ -2887,7 +2986,7 @@ msgid "Make sure you have a Wi-Fi adapter plugged and turned on" msgstr "Make sure you have a Wi-Fi adapter plugged and turned on" -#: panels/network/cc-wifi-panel.ui:134 +#: panels/network/cc-wifi-panel.ui:134 panels/wwan/cc-wwan-panel.ui:143 msgid "Airplane Mode On" msgstr "Aeroplane Mode On" @@ -2957,167 +3056,167 @@ msgstr "Profile %d" #. TRANSLATORS: this WEP WiFi security -#: panels/network/connection-editor/ce-page-details.c:95 +#: panels/network/connection-editor/ce-page-details.c:97 #: panels/network/net-device-wifi.c:228 msgid "WEP" msgstr "WEP" #. TRANSLATORS: this WPA WiFi security -#: panels/network/connection-editor/ce-page-details.c:99 +#: panels/network/connection-editor/ce-page-details.c:101 #: panels/network/net-device-wifi.c:233 msgid "WPA" msgstr "WPA" #. TRANSLATORS: this WPA3 WiFi security -#: panels/network/connection-editor/ce-page-details.c:105 +#: panels/network/connection-editor/ce-page-details.c:107 msgid "WPA3" msgstr "WPA3" #. TRANSLATORS: this Enhanced Open WiFi security -#: panels/network/connection-editor/ce-page-details.c:110 +#: panels/network/connection-editor/ce-page-details.c:112 #: panels/network/connection-editor/ce-page-security.c:279 msgid "Enhanced Open" msgstr "Enhanced Open" #. TRANSLATORS: this WPA WiFi security -#: panels/network/connection-editor/ce-page-details.c:117 +#: panels/network/connection-editor/ce-page-details.c:119 msgid "WPA2" msgstr "WPA2" #. TRANSLATORS: this Enterprise WiFi security -#: panels/network/connection-editor/ce-page-details.c:123 +#: panels/network/connection-editor/ce-page-details.c:125 msgid "Enterprise" msgstr "Enterprise" -#: panels/network/connection-editor/ce-page-details.c:128 +#: panels/network/connection-editor/ce-page-details.c:130 #: panels/network/net-device-wifi.c:218 msgctxt "Wifi security" msgid "None" msgstr "None" -#: panels/network/connection-editor/ce-page-details.c:149 +#: panels/network/connection-editor/ce-page-details.c:151 msgid "Never" msgstr "Never" -#: panels/network/connection-editor/ce-page-details.c:164 -#: panels/network/net-device-ethernet.c:107 +#: panels/network/connection-editor/ce-page-details.c:166 +#: panels/network/net-device-ethernet.c:108 #, c-format msgid "%i day ago" msgid_plural "%i days ago" msgstr[0] "%i day ago" msgstr[1] "%i days ago" -#: panels/network/connection-editor/ce-page-details.c:291 +#: panels/network/connection-editor/ce-page-details.c:293 #, c-format msgid "%d Mb/s (%1.1f GHz)" msgstr "%d Mb/s (%1.1f GHz)" #. Translators: network device speed -#: panels/network/connection-editor/ce-page-details.c:293 -#: panels/network/net-device-ethernet.c:214 +#: panels/network/connection-editor/ce-page-details.c:295 +#: panels/network/net-device-ethernet.c:220 #, c-format msgid "%d Mb/s" msgstr "%d Mb/s" -#: panels/network/connection-editor/ce-page-details.c:306 +#: panels/network/connection-editor/ce-page-details.c:308 msgid "2.4 GHz / 5 GHz" msgstr "2.4 GHz / 5 GHz" -#: panels/network/connection-editor/ce-page-details.c:308 +#: panels/network/connection-editor/ce-page-details.c:310 msgid "2.4 GHz" msgstr "2.4 GHz" -#: panels/network/connection-editor/ce-page-details.c:310 +#: panels/network/connection-editor/ce-page-details.c:312 msgid "5 GHz" msgstr "5 GHz" -#: panels/network/connection-editor/ce-page-details.c:330 +#: panels/network/connection-editor/ce-page-details.c:332 msgctxt "Signal strength" msgid "None" msgstr "None" -#: panels/network/connection-editor/ce-page-details.c:332 +#: panels/network/connection-editor/ce-page-details.c:334 msgctxt "Signal strength" msgid "Weak" msgstr "Weak" -#: panels/network/connection-editor/ce-page-details.c:334 +#: panels/network/connection-editor/ce-page-details.c:336 msgctxt "Signal strength" msgid "Ok" msgstr "Ok" -#: panels/network/connection-editor/ce-page-details.c:336 +#: panels/network/connection-editor/ce-page-details.c:338 msgctxt "Signal strength" msgid "Good" msgstr "Good" -#: panels/network/connection-editor/ce-page-details.c:338 +#: panels/network/connection-editor/ce-page-details.c:340 msgctxt "Signal strength" msgid "Excellent" msgstr "Excellent" -#: panels/network/connection-editor/ce-page-details.c:410 +#: panels/network/connection-editor/ce-page-details.c:407 #: panels/network/connection-editor/details-page.ui:108 -#: panels/network/net-device-ethernet.c:149 -#: panels/network/net-device-mobile.c:447 +#: panels/network/net-device-ethernet.c:147 +#: panels/network/net-device-mobile.c:442 msgid "IPv4 Address" msgstr "IPv4 Address" -#: panels/network/connection-editor/ce-page-details.c:411 +#: panels/network/connection-editor/ce-page-details.c:408 #: panels/network/connection-editor/details-page.ui:126 -#: panels/network/net-device-ethernet.c:150 -#: panels/network/net-device-mobile.c:448 panels/network/network-mobile.ui:218 +#: panels/network/net-device-ethernet.c:149 +#: panels/network/net-device-mobile.c:443 panels/network/network-mobile.ui:218 msgid "IPv6 Address" msgstr "IPv6 Address" -#: panels/network/connection-editor/ce-page-details.c:414 -#: panels/network/connection-editor/ce-page-details.c:415 +#: panels/network/connection-editor/ce-page-details.c:410 +#: panels/network/connection-editor/ce-page-details.c:411 #: panels/network/net-device-ethernet.c:152 #: panels/network/net-device-ethernet.c:154 -#: panels/network/net-device-mobile.c:451 -#: panels/network/net-device-mobile.c:452 panels/network/network-mobile.ui:201 +#: panels/network/net-device-mobile.c:446 +#: panels/network/net-device-mobile.c:447 panels/network/network-mobile.ui:201 msgid "IP Address" msgstr "IP Address" -#: panels/network/connection-editor/ce-page-details.c:419 -#: panels/network/net-device-ethernet.c:163 -#: panels/network/net-device-mobile.c:456 +#: panels/network/connection-editor/ce-page-details.c:415 +#: panels/network/net-device-ethernet.c:169 +#: panels/network/net-device-mobile.c:451 msgid "DNS4" msgstr "DNS4" -#: panels/network/connection-editor/ce-page-details.c:420 -#: panels/network/net-device-ethernet.c:164 -#: panels/network/net-device-mobile.c:457 +#: panels/network/connection-editor/ce-page-details.c:416 +#: panels/network/net-device-ethernet.c:170 +#: panels/network/net-device-mobile.c:452 msgid "DNS6" msgstr "DNS6" -#: panels/network/connection-editor/ce-page-details.c:423 -#: panels/network/connection-editor/ce-page-details.c:424 +#: panels/network/connection-editor/ce-page-details.c:418 +#: panels/network/connection-editor/ce-page-details.c:419 #: panels/network/connection-editor/details-page.ui:199 #: panels/network/connection-editor/details-page.ui:218 #: panels/network/connection-editor/ip4-page.ui:211 #: panels/network/connection-editor/ip6-page.ui:225 -#: panels/network/net-device-ethernet.c:166 -#: panels/network/net-device-ethernet.c:168 -#: panels/network/net-device-mobile.c:459 -#: panels/network/net-device-mobile.c:460 panels/network/network-mobile.ui:253 +#: panels/network/net-device-ethernet.c:172 +#: panels/network/net-device-ethernet.c:174 +#: panels/network/net-device-mobile.c:454 +#: panels/network/net-device-mobile.c:455 panels/network/network-mobile.ui:253 #: panels/network/network-mobile.ui:271 msgid "DNS" msgstr "DNS" -#: panels/network/connection-editor/ce-page-details.c:457 +#: panels/network/connection-editor/ce-page-details.c:471 msgid "Forget Connection" msgstr "Forget Connection" -#: panels/network/connection-editor/ce-page-details.c:459 +#: panels/network/connection-editor/ce-page-details.c:473 msgid "Remove Connection Profile" msgstr "Remove Connection Profile" -#: panels/network/connection-editor/ce-page-details.c:461 +#: panels/network/connection-editor/ce-page-details.c:475 msgid "Remove VPN" msgstr "Remove VPN" -#: panels/network/connection-editor/ce-page-details.c:479 +#: panels/network/connection-editor/ce-page-details.c:493 msgid "Details" msgstr "Details" @@ -3131,21 +3230,21 @@ msgid "Identity" msgstr "Identity" -#: panels/network/connection-editor/ce-page-ip4.c:244 -#: panels/network/connection-editor/ce-page-ip6.c:225 +#: panels/network/connection-editor/ce-page-ip4.c:245 +#: panels/network/connection-editor/ce-page-ip6.c:226 msgid "Delete Address" msgstr "Delete Address" -#: panels/network/connection-editor/ce-page-ip4.c:399 -#: panels/network/connection-editor/ce-page-ip6.c:369 +#: panels/network/connection-editor/ce-page-ip4.c:400 +#: panels/network/connection-editor/ce-page-ip6.c:370 msgid "Delete Route" msgstr "Delete Route" -#: panels/network/connection-editor/ce-page-ip4.c:750 +#: panels/network/connection-editor/ce-page-ip4.c:754 msgid "IPv4" msgstr "IPv4" -#: panels/network/connection-editor/ce-page-ip6.c:722 +#: panels/network/connection-editor/ce-page-ip6.c:726 msgid "IPv6" msgstr "IPv6" @@ -3185,6 +3284,7 @@ msgstr "WPA3 Personal" #: panels/network/connection-editor/details-page.ui:18 +#: panels/wwan/cc-wwan-details-dialog.ui:105 msgid "Signal Strength" msgstr "Signal Strength" @@ -3202,7 +3302,9 @@ msgstr "Supported Frequencies" #: panels/network/connection-editor/details-page.ui:180 -#: panels/network/net-device-ethernet.c:160 +#: panels/network/net-device-ethernet.c:161 +#: panels/network/net-device-ethernet.c:163 +#: panels/network/net-device-ethernet.c:165 #: panels/network/network-mobile.ui:235 msgid "Default Route" msgstr "Default Route" @@ -3466,19 +3568,19 @@ msgid "Network;Wireless;Wi-Fi;Wifi;IP;LAN;Broadband;DNS;Hotspot;" msgstr "Network;Wireless;Wi-Fi;Wifi;IP;LAN;Broadband;DNS;Hotspot;" -#: panels/network/net-device-ethernet.c:95 +#: panels/network/net-device-ethernet.c:96 msgid "never" msgstr "never" -#: panels/network/net-device-ethernet.c:103 +#: panels/network/net-device-ethernet.c:104 msgid "today" msgstr "today" -#: panels/network/net-device-ethernet.c:105 +#: panels/network/net-device-ethernet.c:106 msgid "yesterday" msgstr "yesterday" -#: panels/network/net-device-ethernet.c:174 +#: panels/network/net-device-ethernet.c:180 msgid "Last used" msgstr "Last used" @@ -3487,7 +3589,7 @@ #. * profile. It is also used to display ethernet in the #. * device list. #. -#: panels/network/net-device-ethernet.c:261 +#: panels/network/net-device-ethernet.c:267 #: panels/network/network-bluetooth.ui:38 panels/network/network-ethernet.ui:18 msgid "Wired" msgstr "Wired" @@ -3527,21 +3629,21 @@ msgstr "Wireless device does not support Hotspot mode" #: panels/network/net-proxy.c:69 -#: panels/notifications/cc-notifications-panel.c:266 -#: panels/power/cc-power-panel.c:1133 panels/power/cc-power-panel.c:1144 -#: panels/universal-access/cc-ua-panel.c:328 -#: panels/universal-access/cc-ua-panel.c:603 -#: panels/universal-access/cc-ua-panel.c:613 -#: panels/universal-access/cc-ua-panel.c:625 -#: panels/universal-access/cc-ua-panel.c:668 -#: panels/universal-access/cc-ua-panel.ui:300 -#: panels/universal-access/cc-ua-panel.ui:346 -#: panels/universal-access/cc-ua-panel.ui:392 -#: panels/universal-access/cc-ua-panel.ui:498 -#: panels/universal-access/cc-ua-panel.ui:651 -#: panels/universal-access/cc-ua-panel.ui:697 -#: panels/universal-access/cc-ua-panel.ui:743 -#: panels/universal-access/cc-ua-panel.ui:927 +#: panels/notifications/cc-notifications-panel.c:260 +#: panels/power/cc-power-panel.c:856 panels/power/cc-power-panel.c:867 +#: panels/universal-access/cc-ua-panel.c:331 +#: panels/universal-access/cc-ua-panel.c:612 +#: panels/universal-access/cc-ua-panel.c:622 +#: panels/universal-access/cc-ua-panel.c:634 +#: panels/universal-access/cc-ua-panel.c:677 +#: panels/universal-access/cc-ua-panel.ui:338 +#: panels/universal-access/cc-ua-panel.ui:384 +#: panels/universal-access/cc-ua-panel.ui:430 +#: panels/universal-access/cc-ua-panel.ui:536 +#: panels/universal-access/cc-ua-panel.ui:689 +#: panels/universal-access/cc-ua-panel.ui:735 +#: panels/universal-access/cc-ua-panel.ui:781 +#: panels/universal-access/cc-ua-panel.ui:965 msgid "Off" msgstr "Off" @@ -3575,6 +3677,7 @@ msgstr "Turn device off" #: panels/network/network-mobile.ui:29 +#: panels/wwan/cc-wwan-details-dialog.ui:286 msgid "IMEI" msgstr "IMEI" @@ -3672,8 +3775,7 @@ msgstr "Unmanaged" #. TRANSLATORS: device status -#. TRANSLATORS: Status of Parental Controls setup -#: panels/network/panel-common.c:45 panels/user-accounts/cc-user-panel.c:928 +#: panels/network/panel-common.c:45 msgid "Unavailable" msgstr "Unavailable" @@ -3898,7 +4000,7 @@ msgstr "SIM Puk required" #. TRANSLATORS: device status reason -#: panels/network/panel-common.c:252 +#: panels/network/panel-common.c:252 panels/wwan/cc-wwan-errors-private.h:53 msgid "SIM wrong" msgstr "SIM wrong" @@ -4017,7 +4119,7 @@ #: panels/sharing/cc-sharing-panel.ui:202 #: panels/user-accounts/cc-add-user-dialog.ui:310 #: panels/user-accounts/cc-add-user-dialog.ui:547 -#: panels/user-accounts/cc-user-panel.ui:478 +#: panels/user-accounts/cc-user-panel.ui:365 msgid "_Password" msgstr "_Password" @@ -4223,7 +4325,6 @@ msgstr "missing leap-password" #: panels/network/wireless-security/ws-sae.c:77 -#| msgid "invalid EAP-TLS password: missing" msgid "Wi-Fi password is missing." msgstr "Wi-Fi password is missing." @@ -4343,21 +4444,21 @@ msgid "Show Message C_ontent on Lock Screen" msgstr "Show Message C_ontent on Lock Screen" -#: panels/notifications/cc-notifications-panel.c:266 -#: panels/power/cc-power-panel.c:1139 panels/power/cc-power-panel.c:1146 -#: panels/universal-access/cc-ua-panel.c:328 -#: panels/universal-access/cc-ua-panel.c:603 -#: panels/universal-access/cc-ua-panel.c:613 -#: panels/universal-access/cc-ua-panel.c:625 -#: panels/universal-access/cc-ua-panel.c:668 +#: panels/notifications/cc-notifications-panel.c:260 +#: panels/power/cc-power-panel.c:862 panels/power/cc-power-panel.c:869 +#: panels/universal-access/cc-ua-panel.c:331 +#: panels/universal-access/cc-ua-panel.c:612 +#: panels/universal-access/cc-ua-panel.c:622 +#: panels/universal-access/cc-ua-panel.c:634 +#: panels/universal-access/cc-ua-panel.c:677 msgid "On" msgstr "On" -#: panels/notifications/cc-notifications-panel.ui:48 +#: panels/notifications/cc-notifications-panel.ui:44 msgid "_Do Not Disturb" msgstr "_Do Not Disturb" -#: panels/notifications/cc-notifications-panel.ui:56 +#: panels/notifications/cc-notifications-panel.ui:52 msgid "_Lock Screen Notifications" msgstr "_Lock Screen Notifications" @@ -4370,26 +4471,26 @@ msgid "Notifications;Banner;Message;Tray;Popup;" msgstr "Notifications;Banner;Message;Tray;Popup;" -#: panels/online-accounts/cc-online-accounts-panel.c:150 +#: panels/online-accounts/cc-online-accounts-panel.c:148 msgctxt "Online Account" msgid "Other" msgstr "Other" #. translators: This is the title of the "Show Account" dialog. The #. * %s is the name of the provider. e.g., 'Google'. -#: panels/online-accounts/cc-online-accounts-panel.c:622 +#: panels/online-accounts/cc-online-accounts-panel.c:576 #, c-format msgid "%s Account" msgstr "%s Account" -#: panels/online-accounts/cc-online-accounts-panel.c:916 +#: panels/online-accounts/cc-online-accounts-panel.c:870 msgid "Error removing account" msgstr "Error removing account" #. Translators: The %s is the username (eg., debarshi.ray@gmail.com #. * or rishi). #. -#: panels/online-accounts/cc-online-accounts-panel.c:982 +#: panels/online-accounts/cc-online-accounts-panel.c:936 #, c-format msgid "%s removed" msgstr "%s removed" @@ -4431,7 +4532,7 @@ msgid "Add an account" msgstr "Add an account" -#: panels/online-accounts/online-accounts.ui:238 +#: panels/online-accounts/online-accounts.ui:223 msgid "Remove Account" msgstr "Remove Account" @@ -4561,8 +4662,8 @@ msgstr "Gaming input device" #. TRANSLATORS: secondary battery, misc -#: panels/power/cc-battery-row.c:218 panels/power/cc-power-panel.c:413 -#: panels/power/cc-power-panel.c:1779 +#: panels/power/cc-battery-row.c:218 panels/power/cc-power-panel.c:384 +#: panels/power/cc-power-panel.ui:63 msgid "Battery" msgstr "Battery" @@ -4576,54 +4677,84 @@ msgid "Extra" msgstr "Extra" -#: panels/power/cc-power-panel.c:411 +#: panels/power/cc-power-panel.c:382 msgid "Batteries" msgstr "Batteries" -#: panels/power/cc-power-panel.c:632 +#: panels/power/cc-power-panel.c:644 msgid "When _idle" msgstr "When _idle" -#: panels/power/cc-power-panel.c:1081 +#: panels/power/cc-power-panel.c:796 msgid "Suspend" msgstr "Suspend" -#: panels/power/cc-power-panel.c:1082 +#: panels/power/cc-power-panel.c:797 msgid "Power Off" msgstr "Power Off" -#: panels/power/cc-power-panel.c:1083 +#: panels/power/cc-power-panel.c:798 msgid "Hibernate" msgstr "Hibernate" -#: panels/power/cc-power-panel.c:1084 +#: panels/power/cc-power-panel.c:799 msgid "Nothing" msgstr "Nothing" -#: panels/power/cc-power-panel.c:1135 +#: panels/power/cc-power-panel.c:858 msgid "When on battery power" msgstr "When on battery power" -#: panels/power/cc-power-panel.c:1137 +#: panels/power/cc-power-panel.c:860 msgid "When plugged in" msgstr "When plugged in" -#: panels/power/cc-power-panel.c:1277 +#: panels/power/cc-power-panel.c:980 +msgctxt "Idle time" +msgid "Never" +msgstr "Never" + +#: panels/power/cc-power-panel.c:1066 msgid "Automatic suspend" msgstr "Automatic suspend" -#: panels/power/cc-power-panel.c:1799 -#| msgid "Power off" -msgid "Power Mode" -msgstr "Power Mode" +#: panels/power/cc-power-panel.c:1171 +msgid "" +"Performance mode temporarily disabled due to high operating temperature." +msgstr "" +"Performance mode temporarily disabled due to high operating temperature." -#: panels/power/cc-power-panel.c:1809 -msgid "Power Saving" -msgstr "Power Saving" +#: panels/power/cc-power-panel.c:1173 +msgid "" +"Lap detected: performance mode temporarily unavailable. Move the device to a " +"stable surface to restore." +msgstr "" +"Lap detected: performance mode temporarily unavailable. Move the device to a " +"stable surface to restore." -#: panels/power/cc-power-panel.c:1817 -msgid "Suspend & Power Button" -msgstr "Suspend & Power Button" +#: panels/power/cc-power-panel.c:1175 +msgid "Performance mode temporarily disabled." +msgstr "Performance mode temporarily disabled." + +#: panels/power/cc-power-panel.c:1218 +msgid "" +"Low battery: power saver enabled. Previous mode will be restored when " +"battery is sufficiently charged." +msgstr "" +"Low battery: power saver enabled. Previous mode will be restored when " +"battery is sufficiently charged." + +#. translators: "%s" is an application name +#: panels/power/cc-power-panel.c:1226 +#, c-format +msgid "Power Saver mode activated by “%s”." +msgstr "Power Saver mode activated by “%s”." + +#. translators: "%s" is an application name +#: panels/power/cc-power-panel.c:1230 +#, c-format +msgid "Performance mode activated by “%s”." +msgstr "Performance mode activated by “%s”." #. Translators: Option for "Delay" in "Automatic suspend" dialog. #: panels/power/cc-power-panel.ui:13 @@ -4685,121 +4816,124 @@ msgid "2 hours" msgstr "2 hours" -#: panels/power/cc-power-panel.ui:227 +#: panels/power/cc-power-panel.ui:107 +msgid "Power Mode" +msgstr "Power Mode" + +#: panels/power/cc-power-panel.ui:108 msgid "Affects system performance and power usage." msgstr "Affects system performance and power usage." -#: panels/power/cc-power-panel.ui:297 -msgid "_Screen Brightness" -msgstr "_Screen Brightness" - -#: panels/power/cc-power-panel.ui:346 -msgid "Automatic Brightness" -msgstr "Automatic brightness" - -#: panels/power/cc-power-panel.ui:382 -msgid "_Keyboard Brightness" -msgstr "_Keyboard Brightness" - -#: panels/power/cc-power-panel.ui:431 -#| msgid "_Dim Screen When Inactive" -msgid "Dim Screen When Inactive" -msgstr "Dim Screen When Inactive" - -#: panels/power/cc-power-panel.ui:466 -msgid "_Blank Screen" -msgstr "_Blank Screen" +#: panels/power/cc-power-panel.ui:142 +msgid "Power Saving Options" +msgstr "Power Saving Options" + +#: panels/power/cc-power-panel.ui:146 +msgid "Automatic Screen Brightness" +msgstr "Automatic Screen Brightness" + +#: panels/power/cc-power-panel.ui:147 +msgid "Screen brightness adjusts to the surrounding light." +msgstr "Screen brightness adjusts to the surrounding light." + +#: panels/power/cc-power-panel.ui:160 +msgid "Dim Screen" +msgstr "Dim Screen" + +#: panels/power/cc-power-panel.ui:161 +msgid "Reduces the screen brightness when the computer is inactive." +msgstr "Reduces the screen brightness when the computer is inactive." + +#: panels/power/cc-power-panel.ui:174 +msgid "Screen _Blank" +msgstr "Screen _Blank" + +#: panels/power/cc-power-panel.ui:175 +msgid "Turns the screen off after a period of inactivity." +msgstr "Turns the screen off after a period of inactivity." + +#: panels/power/cc-power-panel.ui:183 +msgid "Automatic Power Saver" +msgstr "Automatic Power Saver" + +#: panels/power/cc-power-panel.ui:184 +msgid "Enables power saver mode when battery is low." +msgstr "Enables power saver mode when battery is low." -#: panels/power/cc-power-panel.ui:502 +#: panels/power/cc-power-panel.ui:198 msgid "_Automatic Suspend" msgstr "_Automatic Suspend" -#: panels/power/cc-power-panel.ui:547 -msgid "_Wi-Fi" -msgstr "_Wi-Fi" - -#: panels/power/cc-power-panel.ui:559 -msgid "Wi-Fi can be turned off to save power." -msgstr "Wi-Fi can be turned off to save power." - -#: panels/power/cc-power-panel.ui:609 -msgid "_Mobile Broadband" -msgstr "_Mobile Broadband" - -#: panels/power/cc-power-panel.ui:621 -msgid "Mobile broadband (LTE, 4G, 3G, etc.) can be turned off to save power." -msgstr "Mobile broadband (LTE, 4G, 3G, etc.) can be turned off to save power." - -#: panels/power/cc-power-panel.ui:671 -msgid "_Bluetooth" -msgstr "_Bluetooth" - -#: panels/power/cc-power-panel.ui:683 -msgid "Bluetooth can be turned off to save power." -msgstr "Bluetooth can be turned off to save power." +#: panels/power/cc-power-panel.ui:199 +msgid "Pauses the computer after a period of inactivity." +msgstr "Pauses the computer after a period of inactivity." + +#: panels/power/cc-power-panel.ui:217 +msgid "Suspend & Power Button" +msgstr "Suspend & Power Button" -#: panels/power/cc-power-panel.ui:759 +#: panels/power/cc-power-panel.ui:221 msgid "Po_wer Button Behavior" msgstr "Po_wer Button Behaviour" -#: panels/power/cc-power-panel.ui:797 +#: panels/power/cc-power-panel.ui:229 msgid "Show Battery _Percentage" msgstr "Show Battery _Percentage" -#: panels/power/cc-power-panel.ui:872 +#: panels/power/cc-power-panel.ui:268 msgid "Automatic Suspend" msgstr "Automatic Suspend" -#: panels/power/cc-power-panel.ui:897 +#: panels/power/cc-power-panel.ui:293 msgid "_Plugged In" msgstr "_Plugged In" -#: panels/power/cc-power-panel.ui:913 +#: panels/power/cc-power-panel.ui:309 msgid "On _Battery Power" msgstr "On _Battery Power" -#: panels/power/cc-power-panel.ui:958 panels/power/cc-power-panel.ui:1018 +#: panels/power/cc-power-panel.ui:354 panels/power/cc-power-panel.ui:414 #: panels/universal-access/cc-repeat-keys-dialog.ui:74 msgid "Delay" msgstr "Delay" -#: panels/power/cc-power-profile-row.c:62 +#: panels/power/cc-power-profile-row.c:61 msgid "Lap detected: performance mode unavailable" msgstr "Lap detected: performance mode unavailable" -#: panels/power/cc-power-profile-row.c:64 +#: panels/power/cc-power-profile-row.c:63 msgid "High hardware temperature: performance mode unavailable" msgstr "High hardware temperature: performance mode unavailable" -#: panels/power/cc-power-profile-row.c:65 +#: panels/power/cc-power-profile-row.c:64 msgid "Performance mode unavailable" msgstr "Performance mode unavailable" -#: panels/power/cc-power-profile-row.c:87 -#: panels/power/cc-power-profile-row.c:187 +#: panels/power/cc-power-profile-row.c:86 +#: panels/power/cc-power-profile-row.c:185 msgid "High performance and power usage." msgstr "High performance and power usage." -#: panels/power/cc-power-profile-row.c:186 -#| msgid "Permanent" +#: panels/power/cc-power-profile-row.c:184 +msgctxt "Power profile" msgid "Performance" msgstr "Performance" -#: panels/power/cc-power-profile-row.c:192 -#| msgid "Balance" -msgid "Balanced Power" -msgstr "Balanced Power" +#: panels/power/cc-power-profile-row.c:188 +msgctxt "Power profile" +msgid "Balanced" +msgstr "Balanced" -#: panels/power/cc-power-profile-row.c:193 +#: panels/power/cc-power-profile-row.c:189 msgid "Standard performance and power usage." msgstr "Standard performance and power usage." -#: panels/power/cc-power-profile-row.c:198 -#| msgid "Power Saving" +#: panels/power/cc-power-profile-row.c:192 +msgctxt "Power profile" msgid "Power Saver" msgstr "Power Saver" -#: panels/power/cc-power-profile-row.c:199 +#: panels/power/cc-power-profile-row.c:193 msgid "Reduced performance and power usage." msgstr "Reduced performance and power usage." @@ -4831,7 +4965,7 @@ #. Translators: This is a username on a print server. #: panels/printers/authentication-dialog.ui:80 #: panels/printers/new-printer-dialog.ui:366 -#: panels/printers/pp-jobs-dialog.ui:57 +#: panels/printers/pp-jobs-dialog.ui:57 panels/wwan/cc-wwan-apn-dialog.ui:188 msgid "Username" msgstr "Username" @@ -4847,16 +4981,20 @@ msgstr "Printer “%s” has been deleted" #. Translators: Addition of the new printer failed. -#: panels/printers/cc-printers-panel.c:930 +#: panels/printers/cc-printers-panel.c:926 msgid "Failed to add new printer." msgstr "Failed to add new printer." #. Translators: The XML file containing user interface can not be loaded -#: panels/printers/cc-printers-panel.c:1209 +#: panels/printers/cc-printers-panel.c:1225 #, c-format msgid "Could not load ui: %s" msgstr "Could not load ui: %s" +#: panels/printers/cc-printers-panel.c:1293 +msgid "Unlock to Add Printers and Change Settings" +msgstr "Unlock to Add Printers and Change Settings" + #: panels/printers/gnome-printers-panel.desktop.in.in:3 msgid "Printers" msgstr "Printers" @@ -4872,8 +5010,8 @@ #. Translators: This is the title presented at top of the dialog. #: panels/printers/new-printer-dialog.ui:29 -#: panels/printers/pp-new-printer-dialog.c:344 -#: panels/printers/pp-new-printer-dialog.c:401 +#: panels/printers/pp-new-printer-dialog.c:254 +#: panels/printers/pp-new-printer-dialog.c:311 msgid "Add Printer" msgstr "Add Printer" @@ -4881,6 +5019,7 @@ #. Translators: This buttons submits the credentials for the selected server. #: panels/printers/new-printer-dialog.ui:96 #: panels/printers/new-printer-dialog.ui:111 +#: panels/wwan/cc-wwan-device-page.ui:90 msgid "_Unlock" msgstr "_Unlock" @@ -4927,7 +5066,7 @@ #. Translators: Name of column showing printer drivers #: panels/printers/pp-details-dialog.ui:122 -#: panels/printers/pp-ppd-selection-dialog.c:239 +#: panels/printers/pp-ppd-selection-dialog.c:236 msgid "Driver" msgstr "Driver" @@ -5102,55 +5241,55 @@ msgid "No Active Printer Jobs" msgstr "No Active Printer Jobs" -#: panels/printers/pp-new-printer-dialog.c:359 +#: panels/printers/pp-new-printer-dialog.c:269 msgid "Unlock Print Server" msgstr "Unlock Print Server" #. Translators: Samba server needs authentication of the user to show list of its printers. -#: panels/printers/pp-new-printer-dialog.c:363 +#: panels/printers/pp-new-printer-dialog.c:273 #, c-format msgid "Unlock %s." msgstr "Unlock %s." #. Translators: Samba server needs authentication of the user to show list of its printers. -#: panels/printers/pp-new-printer-dialog.c:367 +#: panels/printers/pp-new-printer-dialog.c:277 #, c-format msgid "Enter username and password to view printers on %s." msgstr "Enter username and password to view printers on %s." -#: panels/printers/pp-new-printer-dialog.c:790 +#: panels/printers/pp-new-printer-dialog.c:587 msgid "Searching for Printers" msgstr "Searching for Printers" #. Translators: The found device is a printer connected via USB -#: panels/printers/pp-new-printer-dialog.c:1578 +#: panels/printers/pp-new-printer-dialog.c:1375 msgid "USB" msgstr "USB" #. Translators: The found device is a printer connected via serial port -#: panels/printers/pp-new-printer-dialog.c:1583 +#: panels/printers/pp-new-printer-dialog.c:1380 msgid "Serial Port" msgstr "Serial Port" #. Translators: The found device is a printer connected via parallel port -#: panels/printers/pp-new-printer-dialog.c:1590 +#: panels/printers/pp-new-printer-dialog.c:1387 msgid "Parallel Port" msgstr "Parallel Port" #. Translators: Location of found network printer (e.g. Kitchen, Reception) -#: panels/printers/pp-new-printer-dialog.c:1632 +#: panels/printers/pp-new-printer-dialog.c:1429 #, c-format msgid "Location: %s" msgstr "Location: %s" #. Translators: Network address of found printer -#: panels/printers/pp-new-printer-dialog.c:1637 +#: panels/printers/pp-new-printer-dialog.c:1434 #, c-format msgid "Address: %s" msgstr "Address: %s" #. Translators: This item is a server which needs authentication to show its printers -#: panels/printers/pp-new-printer-dialog.c:1664 +#: panels/printers/pp-new-printer-dialog.c:1461 msgid "Server requires authentication" msgstr "Server requires authentication" @@ -5291,7 +5430,8 @@ msgstr "No pre-filtering" #. Translators: Name of column showing printer manufacturers -#: panels/printers/pp-ppd-selection-dialog.c:223 +#: panels/printers/pp-ppd-selection-dialog.c:220 +#: panels/wwan/cc-wwan-details-dialog.ui:203 msgid "Manufacturer" msgstr "Manufacturer" @@ -5440,6 +5580,7 @@ msgstr "Remove Printer" #: panels/printers/printer-entry.ui:193 +#: panels/wwan/cc-wwan-details-dialog.ui:229 msgid "Model" msgstr "Model" @@ -5459,8 +5600,8 @@ #. Translators: This button adds new printer. #: panels/printers/printers.ui:12 -msgid "Add…" -msgstr "Add…" +msgid "Add Printer…" +msgstr "Add Printer…" #: panels/printers/printers.ui:187 msgid "No printers" @@ -5481,7 +5622,7 @@ "doesn’t seem to be available." #: panels/region/cc-format-chooser.c:148 panels/region/cc-format-chooser.c:189 -#: panels/region/cc-format-chooser.ui:6 panels/region/cc-region-panel.ui:159 +#: panels/region/cc-format-chooser.ui:6 panels/region/cc-region-panel.ui:203 msgid "Formats" msgstr "Formats" @@ -5547,43 +5688,44 @@ msgid "Paper" msgstr "Paper" -#: panels/region/cc-region-panel.c:740 -msgid "Login _Screen" -msgstr "Login _Screen" +#: panels/region/cc-region-panel.ui:42 +msgid "My Account" +msgstr "My Account" + +#: panels/region/cc-region-panel.ui:53 +msgid "Login Screen" +msgstr "Login Screen" -#: panels/region/cc-region-panel.ui:34 +#: panels/region/cc-region-panel.ui:78 msgid "Language" msgstr "Language" -#: panels/region/cc-region-panel.ui:45 +#: panels/region/cc-region-panel.ui:89 msgid "The language used for text in windows and web pages." msgstr "The language used for text in windows and web pages." -#: panels/region/cc-region-panel.ui:85 -#: panels/user-accounts/cc-user-panel.ui:406 +#: panels/region/cc-region-panel.ui:129 +#: panels/user-accounts/cc-user-panel.ui:311 msgid "_Language" msgstr "_Language" -#: panels/region/cc-region-panel.ui:120 +#: panels/region/cc-region-panel.ui:164 msgid "Restart the session for changes to take effect" msgstr "Restart the session for changes to take effect" -#: panels/region/cc-region-panel.ui:135 +#: panels/region/cc-region-panel.ui:179 msgid "Restart…" msgstr "Restart…" -#: panels/region/cc-region-panel.ui:170 -#| msgid "" -#| "Choose the format for numbers, dates and currencies. Changes take effect " -#| "on next login." +#: panels/region/cc-region-panel.ui:214 msgid "The format used for numbers, dates, and currencies." msgstr "The format used for numbers, dates, and currencies." -#: panels/region/cc-region-panel.ui:204 +#: panels/region/cc-region-panel.ui:248 msgid "_Formats" msgstr "_Formats" -#: panels/region/cc-region-panel.ui:231 +#: panels/region/cc-region-panel.ui:275 msgid "Login settings are used by all users when logging into the system" msgstr "Login settings are used by all users when logging into the system" @@ -5592,10 +5734,8 @@ msgstr "Region & Language" #: panels/region/gnome-region-panel.desktop.in.in:4 -msgid "" -"Select your display language, formats, keyboard layouts and input sources" -msgstr "" -"Select your display language, formats, keyboard layouts and input sources" +msgid "Select your display language and formats" +msgstr "Select your display language and formats" #. Translators: Search terms to find the Region and Language panel. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! #: panels/region/gnome-region-panel.desktop.in.in:19 @@ -5757,7 +5897,7 @@ msgstr "_OK" #: panels/search/cc-search-locations-dialog.ui:9 -#: panels/search/cc-search-panel.ui:59 +#: panels/search/cc-search-panel.ui:57 msgid "Search Locations" msgstr "Search Locations" @@ -5783,7 +5923,7 @@ msgid "Other" msgstr "Other" -#: panels/search/cc-search-panel.c:152 +#: panels/search/cc-search-panel.c:151 msgid "No applications found" msgstr "No applications found" @@ -6034,47 +6174,47 @@ msgid "Volume Levels" msgstr "Volume Levels" -#: panels/sound/cc-sound-panel.ui:65 +#: panels/sound/cc-sound-panel.ui:63 msgid "Output" msgstr "Output" -#: panels/sound/cc-sound-panel.ui:92 +#: panels/sound/cc-sound-panel.ui:90 msgid "Output Device" msgstr "Output Device" -#: panels/sound/cc-sound-panel.ui:115 +#: panels/sound/cc-sound-panel.ui:113 msgid "Test" msgstr "Test" -#: panels/sound/cc-sound-panel.ui:146 panels/sound/cc-sound-panel.ui:323 +#: panels/sound/cc-sound-panel.ui:144 panels/sound/cc-sound-panel.ui:319 msgid "Configuration" msgstr "Configuration" -#: panels/sound/cc-sound-panel.ui:179 +#: panels/sound/cc-sound-panel.ui:177 msgid "Balance" msgstr "Balance" -#: panels/sound/cc-sound-panel.ui:206 +#: panels/sound/cc-sound-panel.ui:204 msgid "Fade" msgstr "Fade" -#: panels/sound/cc-sound-panel.ui:233 +#: panels/sound/cc-sound-panel.ui:231 msgid "Subwoofer" msgstr "Subwoofer" -#: panels/sound/cc-sound-panel.ui:255 +#: panels/sound/cc-sound-panel.ui:251 msgid "Input" msgstr "Input" -#: panels/sound/cc-sound-panel.ui:282 +#: panels/sound/cc-sound-panel.ui:278 msgid "Input Device" msgstr "Input Device" -#: panels/sound/cc-sound-panel.ui:356 +#: panels/sound/cc-sound-panel.ui:352 msgid "Volume" msgstr "Volume" -#: panels/sound/cc-sound-panel.ui:378 +#: panels/sound/cc-sound-panel.ui:372 msgid "Alert Sound" msgstr "Alert Sound" @@ -6391,7 +6531,7 @@ msgstr "Beep when Num Lock or Caps Lock are turned on or off." #: panels/universal-access/cc-sound-keys-dialog.ui:45 -#: panels/universal-access/cc-ua-panel.ui:374 +#: panels/universal-access/cc-ua-panel.ui:412 msgid "_Sound Keys" msgstr "_Sound Keys" @@ -6494,32 +6634,32 @@ #. translators: the labels will read: #. * Cursor Size: Default -#: panels/universal-access/cc-ua-panel.c:348 +#: panels/universal-access/cc-ua-panel.c:351 msgctxt "cursor size" msgid "Default" msgstr "Default" -#: panels/universal-access/cc-ua-panel.c:351 +#: panels/universal-access/cc-ua-panel.c:354 msgctxt "cursor size" msgid "Medium" msgstr "Medium" -#: panels/universal-access/cc-ua-panel.c:354 +#: panels/universal-access/cc-ua-panel.c:357 msgctxt "cursor size" msgid "Large" msgstr "Large" -#: panels/universal-access/cc-ua-panel.c:357 +#: panels/universal-access/cc-ua-panel.c:360 msgctxt "cursor size" msgid "Larger" msgstr "Larger" -#: panels/universal-access/cc-ua-panel.c:360 +#: panels/universal-access/cc-ua-panel.c:363 msgctxt "cursor size" msgid "Largest" msgstr "Largest" -#: panels/universal-access/cc-ua-panel.c:364 +#: panels/universal-access/cc-ua-panel.c:367 #, c-format msgid "%d pixel" msgid_plural "%d pixels" @@ -6542,65 +6682,69 @@ msgid "_Large Text" msgstr "_Large Text" -#: panels/universal-access/cc-ua-panel.ui:235 +#: panels/universal-access/cc-ua-panel.ui:238 +msgid "Enable A_nimations" +msgstr "Enable A_nimations" + +#: panels/universal-access/cc-ua-panel.ui:273 msgid "C_ursor Size" msgstr "C_ursor Size" -#: panels/universal-access/cc-ua-panel.ui:282 +#: panels/universal-access/cc-ua-panel.ui:320 #: panels/universal-access/cc-zoom-options-dialog.ui:91 msgid "_Zoom" msgstr "_Zoom" -#: panels/universal-access/cc-ua-panel.ui:328 +#: panels/universal-access/cc-ua-panel.ui:366 msgid "Screen _Reader" msgstr "Screen _Reader" -#: panels/universal-access/cc-ua-panel.ui:436 +#: panels/universal-access/cc-ua-panel.ui:474 msgid "Hearing" msgstr "Hearing" -#: panels/universal-access/cc-ua-panel.ui:480 +#: panels/universal-access/cc-ua-panel.ui:518 #: panels/universal-access/cc-visual-alerts-dialog.ui:68 msgid "_Visual Alerts" msgstr "_Visual Alerts" -#: panels/universal-access/cc-ua-panel.ui:588 +#: panels/universal-access/cc-ua-panel.ui:626 msgid "Screen _Keyboard" msgstr "Screen _Keyboard" -#: panels/universal-access/cc-ua-panel.ui:633 +#: panels/universal-access/cc-ua-panel.ui:671 msgid "R_epeat Keys" msgstr "R_epeat Keys" -#: panels/universal-access/cc-ua-panel.ui:679 +#: panels/universal-access/cc-ua-panel.ui:717 msgid "Cursor _Blinking" msgstr "Cursor _Blinking" -#: panels/universal-access/cc-ua-panel.ui:725 +#: panels/universal-access/cc-ua-panel.ui:763 msgid "_Typing Assist (AccessX)" msgstr "_Typing Assist (AccessX)" -#: panels/universal-access/cc-ua-panel.ui:786 +#: panels/universal-access/cc-ua-panel.ui:824 msgid "Pointing & Clicking" msgstr "Pointing & Clicking" -#: panels/universal-access/cc-ua-panel.ui:832 +#: panels/universal-access/cc-ua-panel.ui:870 msgid "_Mouse Keys" msgstr "_Mouse Keys" -#: panels/universal-access/cc-ua-panel.ui:877 +#: panels/universal-access/cc-ua-panel.ui:915 msgid "_Locate Pointer" msgstr "_Locate Pointer" -#: panels/universal-access/cc-ua-panel.ui:909 +#: panels/universal-access/cc-ua-panel.ui:947 msgid "_Click Assist" msgstr "_Click Assist" -#: panels/universal-access/cc-ua-panel.ui:955 +#: panels/universal-access/cc-ua-panel.ui:993 msgid "_Double-Click Delay" msgstr "_Double-Click Delay" -#: panels/universal-access/cc-ua-panel.ui:975 +#: panels/universal-access/cc-ua-panel.ui:1013 msgid "Double-Click Delay" msgstr "Double-Click Delay" @@ -7100,7 +7244,7 @@ msgid "_Enterprise Login" msgstr "_Enterprise Login" -#: panels/user-accounts/cc-avatar-chooser.c:220 +#: panels/user-accounts/cc-avatar-chooser.c:225 msgid "Browse for more pictures" msgstr "Browse for more pictures" @@ -7182,17 +7326,14 @@ msgstr "_Re-enroll this finger…" #: panels/user-accounts/cc-fingerprint-dialog.c:236 -#| msgid "_Double-click titlebar to perform this action:" msgid "the device needs to be claimed to perform this action" msgstr "the device needs to be claimed to perform this action" #: panels/user-accounts/cc-fingerprint-dialog.c:238 -#| msgid "The device is already in use." msgid "the device is already claimed by another process" msgstr "the device is already claimed by another process" #: panels/user-accounts/cc-fingerprint-dialog.c:240 -#| msgid "You do not have permission to change theme settings" msgid "you do not have permission to perform the action" msgstr "you do not have permission to perform the action" @@ -7201,17 +7342,14 @@ msgstr "no prints have been enrolled" #: panels/user-accounts/cc-fingerprint-dialog.c:251 -#| msgid "Failed to register with the requested network" msgid "Failed to communicate with the device during enrollment" msgstr "Failed to communicate with the device during enrollment" #: panels/user-accounts/cc-fingerprint-dialog.c:255 -#| msgid "Failed to enroll new fingerprint" msgid "Failed to communicate with the fingerprint reader" msgstr "Failed to communicate with the fingerprint reader" #: panels/user-accounts/cc-fingerprint-dialog.c:257 -#| msgid "Failed to enroll new fingerprint" msgid "Failed to communicate with the fingerprint daemon" msgstr "Failed to communicate with the fingerprint daemon" @@ -7370,7 +7508,7 @@ #. Translators: This is a time format string in the style of "22:58". #. It indicates a login time which follows a date. #: panels/user-accounts/cc-login-history-dialog.c:173 -#: panels/user-accounts/cc-user-panel.c:766 +#: panels/user-accounts/cc-user-panel.c:771 msgctxt "login date-time" msgid "%k:%M" msgstr "%k:%M" @@ -7378,7 +7516,7 @@ #. Translators: This indicates a login date-time. #. The first %s is a date, and the second %s a time. #: panels/user-accounts/cc-login-history-dialog.c:176 -#: panels/user-accounts/cc-user-panel.c:770 +#: panels/user-accounts/cc-user-panel.c:775 #, c-format msgctxt "login date-time" msgid "%s, %s" @@ -7466,26 +7604,26 @@ msgid "Your account" msgstr "Your account" -#: panels/user-accounts/cc-user-panel.c:397 +#: panels/user-accounts/cc-user-panel.c:402 msgid "Failed to delete user" msgstr "Failed to delete user" -#: panels/user-accounts/cc-user-panel.c:452 -#: panels/user-accounts/cc-user-panel.c:507 -#: panels/user-accounts/cc-user-panel.c:553 +#: panels/user-accounts/cc-user-panel.c:457 +#: panels/user-accounts/cc-user-panel.c:512 +#: panels/user-accounts/cc-user-panel.c:558 msgid "Failed to revoke remotely managed user" msgstr "Failed to revoke remotely managed user" -#: panels/user-accounts/cc-user-panel.c:602 +#: panels/user-accounts/cc-user-panel.c:607 msgid "You cannot delete your own account." msgstr "You cannot delete your own account." -#: panels/user-accounts/cc-user-panel.c:611 +#: panels/user-accounts/cc-user-panel.c:616 #, c-format msgid "%s is still logged in" msgstr "%s is still logged in" -#: panels/user-accounts/cc-user-panel.c:615 +#: panels/user-accounts/cc-user-panel.c:620 msgid "" "Deleting a user while they are logged in can leave the system in an " "inconsistent state." @@ -7493,12 +7631,12 @@ "Deleting a user while they are logged in can leave the system in an " "inconsistent state." -#: panels/user-accounts/cc-user-panel.c:624 +#: panels/user-accounts/cc-user-panel.c:629 #, c-format msgid "Do you want to keep %s’s files?" msgstr "Do you want to keep %s’s files?" -#: panels/user-accounts/cc-user-panel.c:628 +#: panels/user-accounts/cc-user-panel.c:633 msgid "" "It is possible to keep the home directory, mail spool and temporary files " "around when deleting a user account." @@ -7506,53 +7644,54 @@ "It is possible to keep the home directory, mail spool and temporary files " "around when deleting a user account." -#: panels/user-accounts/cc-user-panel.c:631 +#: panels/user-accounts/cc-user-panel.c:636 msgid "_Delete Files" msgstr "_Delete Files" -#: panels/user-accounts/cc-user-panel.c:632 +#: panels/user-accounts/cc-user-panel.c:637 msgid "_Keep Files" msgstr "_Keep Files" -#: panels/user-accounts/cc-user-panel.c:646 +#: panels/user-accounts/cc-user-panel.c:651 #, c-format msgid "Are you sure you want to revoke remotely managed %s’s account?" msgstr "Are you sure you want to revoke remotely managed %s’s account?" -#: panels/user-accounts/cc-user-panel.c:650 +#: panels/user-accounts/cc-user-panel.c:655 msgid "_Delete" msgstr "_Delete" -#: panels/user-accounts/cc-user-panel.c:700 +#: panels/user-accounts/cc-user-panel.c:705 msgctxt "Password mode" msgid "Account disabled" msgstr "Account disabled" -#: panels/user-accounts/cc-user-panel.c:708 +#: panels/user-accounts/cc-user-panel.c:713 msgctxt "Password mode" msgid "To be set at next login" msgstr "To be set at next login" -#: panels/user-accounts/cc-user-panel.c:711 +#: panels/user-accounts/cc-user-panel.c:716 msgctxt "Password mode" msgid "None" msgstr "None" -#: panels/user-accounts/cc-user-panel.c:754 +#: panels/user-accounts/cc-user-panel.c:759 msgid "Logged in" msgstr "Logged in" #. TRANSLATORS: Status of Parental Controls setup -#: panels/user-accounts/cc-user-panel.c:841 +#: panels/user-accounts/cc-user-panel.c:846 #: panels/user-accounts/cc-user-panel.c:935 +#: panels/wwan/cc-wwan-device-page.c:477 msgid "Enabled" msgstr "Enabled" -#: panels/user-accounts/cc-user-panel.c:1254 +#: panels/user-accounts/cc-user-panel.c:1259 msgid "Failed to contact the accounts service" msgstr "Failed to contact the accounts service" -#: panels/user-accounts/cc-user-panel.c:1256 +#: panels/user-accounts/cc-user-panel.c:1261 msgid "Please make sure that the AccountService is installed and enabled." msgstr "Please make sure that the AccountService is installed and enabled." @@ -7560,7 +7699,7 @@ #. * We split the line in 2 here to "make it look good", as there's #. * no good way to do this in GTK+ for tooltips. See: #. * https://bugzilla.gnome.org/show_bug.cgi?id=657168 -#: panels/user-accounts/cc-user-panel.c:1288 +#: panels/user-accounts/cc-user-panel.c:1293 msgid "" "To make changes,\n" "click the * icon first" @@ -7568,12 +7707,12 @@ "To make changes,\n" "click the * icon first" -#: panels/user-accounts/cc-user-panel.c:1361 +#: panels/user-accounts/cc-user-panel.c:1366 msgid "Delete the selected user account" msgstr "Delete the selected user account" -#: panels/user-accounts/cc-user-panel.c:1373 -#: panels/user-accounts/cc-user-panel.c:1492 +#: panels/user-accounts/cc-user-panel.c:1378 +#: panels/user-accounts/cc-user-panel.c:1489 msgid "" "To delete the selected user account,\n" "click the * icon first" @@ -7581,8 +7720,7 @@ "To delete the selected user account,\n" "click the * icon first" -#: panels/user-accounts/cc-user-panel.c:1545 -#| msgid "Unlock to Change Settings" +#: panels/user-accounts/cc-user-panel.c:1535 msgid "Unlock to Add Users and Change Settings" msgstr "Unlock to Add Users and Change Settings" @@ -7602,20 +7740,20 @@ msgid "Restart Now" msgstr "Restart Now" -#: panels/user-accounts/cc-user-panel.ui:153 -#: panels/user-accounts/cc-user-panel.ui:169 +#: panels/user-accounts/cc-user-panel.ui:157 +#: panels/user-accounts/cc-user-panel.ui:173 msgid "User Icon" msgstr "User Icon" -#: panels/user-accounts/cc-user-panel.ui:245 +#: panels/user-accounts/cc-user-panel.ui:249 msgid "Account Settings" msgstr "Account Settings" -#: panels/user-accounts/cc-user-panel.ui:272 +#: panels/user-accounts/cc-user-panel.ui:267 msgid "_Administrator" msgstr "_Administrator" -#: panels/user-accounts/cc-user-panel.ui:301 +#: panels/user-accounts/cc-user-panel.ui:268 msgid "" "Administrators can add and remove other users, and can change settings for " "all users." @@ -7623,40 +7761,40 @@ "Administrators can add and remove other users, and can change settings for " "all users." -#: panels/user-accounts/cc-user-panel.ui:333 +#: panels/user-accounts/cc-user-panel.ui:284 msgid "_Parental Controls" msgstr "_Parental Controls" -#: panels/user-accounts/cc-user-panel.ui:377 +#: panels/user-accounts/cc-user-panel.ui:285 msgid "Open the Parental Controls application." msgstr "Open the Parental Controls application." -#: panels/user-accounts/cc-user-panel.ui:452 +#: panels/user-accounts/cc-user-panel.ui:347 msgid "Authentication & Login" msgstr "Authentication & Login" -#: panels/user-accounts/cc-user-panel.ui:521 +#: panels/user-accounts/cc-user-panel.ui:390 msgid "_Fingerprint Login" msgstr "_Fingerprint Login" -#: panels/user-accounts/cc-user-panel.ui:563 +#: panels/user-accounts/cc-user-panel.ui:415 msgid "A_utomatic Login" msgstr "A_utomatic Login" -#: panels/user-accounts/cc-user-panel.ui:593 +#: panels/user-accounts/cc-user-panel.ui:429 msgid "Account Activity" msgstr "Account Activity" -#: panels/user-accounts/cc-user-panel.ui:634 +#: panels/user-accounts/cc-user-panel.ui:460 msgid "Remove User…" msgstr "Remove User…" #. Translators: This is the empty state page label which states that there are no users to show in the panel. -#: panels/user-accounts/cc-user-panel.ui:673 +#: panels/user-accounts/cc-user-panel.ui:501 msgid "No Users Found" msgstr "No Users Found" -#: panels/user-accounts/cc-user-panel.ui:683 +#: panels/user-accounts/cc-user-panel.ui:511 msgid "Unlock to add a user account." msgstr "Unlock to add a user account." @@ -7670,8 +7808,12 @@ #. Translators: Search terms to find the Users panel. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! #: panels/user-accounts/data/gnome-user-accounts-panel.desktop.in.in:20 -msgid "Login;Name;Fingerprint;Avatar;Logo;Face;Password;" -msgstr "Login;Name;Fingerprint;Avatar;Logo;Face;Password;" +msgid "" +"Login;Name;Fingerprint;Avatar;Logo;Face;Password;Parental Controls;Screen " +"Time;App Restrictions;Web Restrictions;Usage;Usage Limit;Kid;Child;" +msgstr "" +"Login;Name;Fingerprint;Avatar;Logo;Face;Password;Parental Controls;Screen " +"Time;App Restrictions;Web Restrictions;Usage;Usage Limit;Kid;Child;" #. Translators: This button enrolls the computer in the domain in order to use enterprise logins. #: panels/user-accounts/data/join-dialog.ui:39 @@ -7858,6 +8000,7 @@ msgstr "The new password does not contain enough different characters" #: panels/user-accounts/run-passwd.c:526 +#: panels/wwan/cc-wwan-errors-private.h:72 #, c-format msgid "Unknown error" msgstr "Unknown error" @@ -8102,6 +8245,438 @@ msgid "Tip Pressure Feel" msgstr "Tip Pressure Feel" +#: panels/wwan/cc-wwan-apn-dialog.ui:11 +msgid "Access Points" +msgstr "Access Points" + +#: panels/wwan/cc-wwan-apn-dialog.ui:160 +msgid "APN" +msgstr "APN" + +#: panels/wwan/cc-wwan-data.c:543 +msgid "Operation Cancelled" +msgstr "Operation Cancelled" + +#: panels/wwan/cc-wwan-data.c:546 +msgid "Error: Access denied changing settings" +msgstr "Error: Access denied changing settings" + +#: panels/wwan/cc-wwan-data.c:549 +msgid "Error: Mobile Equipment Error" +msgstr "Error: Mobile Equipment Error" + +#: panels/wwan/cc-wwan-details-dialog.c:81 +msgid "Not Registered" +msgstr "Not Registered" + +#: panels/wwan/cc-wwan-details-dialog.c:85 +msgid "Registered" +msgstr "Registered" + +#: panels/wwan/cc-wwan-details-dialog.c:89 +msgid "Roaming" +msgstr "Roaming" + +#: panels/wwan/cc-wwan-details-dialog.c:93 +msgid "Searching" +msgstr "Searching" + +#: panels/wwan/cc-wwan-details-dialog.c:97 +msgid "Denied" +msgstr "Denied" + +#: panels/wwan/cc-wwan-details-dialog.ui:4 +msgid "Modem Details" +msgstr "Modem Details" + +#: panels/wwan/cc-wwan-details-dialog.ui:33 +msgid "Modem Status" +msgstr "Modem Status" + +#: panels/wwan/cc-wwan-details-dialog.ui:53 +msgid "Carrier" +msgstr "Carrier" + +#: panels/wwan/cc-wwan-details-dialog.ui:79 +msgid "Network Type" +msgstr "Network Type" + +#: panels/wwan/cc-wwan-details-dialog.ui:131 +msgid "Network Status" +msgstr "Network Status" + +#: panels/wwan/cc-wwan-details-dialog.ui:158 +msgid "Own Number" +msgstr "Own Number" + +#: panels/wwan/cc-wwan-details-dialog.ui:185 +msgid "Device Details" +msgstr "Device Details" + +#: panels/wwan/cc-wwan-details-dialog.ui:257 +msgid "Firmware Version" +msgstr "Firmware Version" + +#: panels/wwan/cc-wwan-device.c:988 +msgid "2G Only" +msgstr "2G Only" + +#: panels/wwan/cc-wwan-device.c:991 +msgid "3G Only" +msgstr "3G Only" + +#: panels/wwan/cc-wwan-device.c:994 +msgid "4G Only" +msgstr "4G Only" + +#: panels/wwan/cc-wwan-device.c:1003 +msgid "2G, 3G, 4G (Preferred)" +msgstr "2G, 3G, 4G (Preferred)" + +#: panels/wwan/cc-wwan-device.c:1005 +msgid "2G, 3G (Preferred), 4G" +msgstr "2G, 3G (Preferred), 4G" + +#: panels/wwan/cc-wwan-device.c:1007 +msgid "2G (Preferred), 3G, 4G" +msgstr "2G (Preferred), 3G, 4G" + +#: panels/wwan/cc-wwan-device.c:1009 +msgid "2G, 3G, 4G" +msgstr "2G, 3G, 4G" + +#: panels/wwan/cc-wwan-device.c:1015 +msgid "3G, 4G (Preferred)" +msgstr "3G, 4G (Preferred)" + +#: panels/wwan/cc-wwan-device.c:1017 +msgid "3G (Preferred), 4G" +msgstr "3G (Preferred), 4G" + +#: panels/wwan/cc-wwan-device.c:1019 +msgid "3G, 4G" +msgstr "3G, 4G" + +#: panels/wwan/cc-wwan-device.c:1025 +msgid "2G, 4G (Preferred)" +msgstr "2G, 4G (Preferred)" + +#: panels/wwan/cc-wwan-device.c:1027 +msgid "2G (Preferred), 4G" +msgstr "2G (Preferred), 4G" + +#: panels/wwan/cc-wwan-device.c:1029 +msgid "2G, 4G" +msgstr "2G, 4G" + +#: panels/wwan/cc-wwan-device.c:1035 +msgid "2G, 3G (Preferred)" +msgstr "2G, 3G (Preferred)" + +#: panels/wwan/cc-wwan-device.c:1037 +msgid "2G (Preferred), 3G" +msgstr "2G (Preferred), 3G" + +#: panels/wwan/cc-wwan-device.c:1039 +msgid "2G, 3G" +msgstr "2G, 3G" + +#: panels/wwan/cc-wwan-device.c:1043 +msgctxt "Network mode" +msgid "Unknown" +msgstr "Unknown" + +#: panels/wwan/cc-wwan-device-page.c:188 +msgid "Unlock SIM card" +msgstr "Unlock SIM card" + +#: panels/wwan/cc-wwan-device-page.c:189 panels/wwan/cc-wwan-device-page.c:237 +msgid "Unlock" +msgstr "Unlock" + +#: panels/wwan/cc-wwan-device-page.c:194 +#, c-format +msgid "Please provide PIN code for SIM %d" +msgstr "Please provide PIN code for SIM %d" + +#: panels/wwan/cc-wwan-device-page.c:195 +msgid "Enter PIN to unlock your SIM card" +msgstr "Enter PIN to unlock your SIM card" + +#: panels/wwan/cc-wwan-device-page.c:199 +#, c-format +msgid "Please provide PUK code for SIM %d" +msgstr "Please provide PUK code for SIM %d" + +#: panels/wwan/cc-wwan-device-page.c:200 +msgid "Enter PUK to unlock your SIM card" +msgstr "Enter PUK to unlock your SIM card" + +#: panels/wwan/cc-wwan-device-page.c:218 +#, c-format +msgid "Wrong password entered. You have %1$u try left" +msgid_plural "Wrong password entered. You have %1$u tries left" +msgstr[0] "Wrong password entered. You have %1$u try left" +msgstr[1] "Wrong password entered. You have %1$u tries left" + +#: panels/wwan/cc-wwan-device-page.c:221 +#, c-format +msgid "You have %u try left" +msgid_plural "You have %u tries left" +msgstr[0] "You have %u try left" +msgstr[1] "You have %u tries left" + +#: panels/wwan/cc-wwan-device-page.c:226 +msgid "Wrong password entered." +msgstr "Wrong password entered." + +#: panels/wwan/cc-wwan-device-page.c:271 +msgid "PUK code should be an 8 digit number" +msgstr "PUK code should be an 8 digit number" + +#: panels/wwan/cc-wwan-device-page.c:295 +msgid "Enter New PIN" +msgstr "Enter New PIN" + +#: panels/wwan/cc-wwan-device-page.c:299 +msgid "PIN code should be a 4-8 digit number" +msgstr "PIN code should be a 4-8 digit number" + +#: panels/wwan/cc-wwan-device-page.c:317 +msgid "Unlocking..." +msgstr "Unlocking..." + +#: panels/wwan/cc-wwan-device-page.ui:34 +msgid "No SIM" +msgstr "No SIM" + +#: panels/wwan/cc-wwan-device-page.ui:45 +msgid "Insert a SIM card to use this modem" +msgstr "Insert a SIM card to use this modem" + +#: panels/wwan/cc-wwan-device-page.ui:78 +msgid "SIM Locked" +msgstr "SIM Locked" + +#: panels/wwan/cc-wwan-device-page.ui:139 +msgid "_Mobile Data" +msgstr "_Mobile Data" + +#: panels/wwan/cc-wwan-device-page.ui:140 +msgid "Access data using mobile network" +msgstr "Access data using mobile network" + +#: panels/wwan/cc-wwan-device-page.ui:151 +msgid "_Data Roaming" +msgstr "_Data Roaming" + +#: panels/wwan/cc-wwan-device-page.ui:152 +msgid "Use mobile data when roaming" +msgstr "Use mobile data when roaming" + +#: panels/wwan/cc-wwan-device-page.ui:177 +msgid "_Network Mode" +msgstr "_Network Mode" + +#: panels/wwan/cc-wwan-device-page.ui:187 +msgid "N_etwork" +msgstr "N_etwork" + +#: panels/wwan/cc-wwan-device-page.ui:225 +msgid "_Access Point Names" +msgstr "_Access Point Names" + +#: panels/wwan/cc-wwan-device-page.ui:235 +msgid "_SIM Lock" +msgstr "_SIM Lock" + +#: panels/wwan/cc-wwan-device-page.ui:236 +msgid "Lock SIM with PIN" +msgstr "Lock SIM with PIN" + +#: panels/wwan/cc-wwan-device-page.ui:246 +msgid "M_odem Details" +msgstr "M_odem Details" + +#: panels/wwan/cc-wwan-errors-private.h:40 +msgid "Phone failure" +msgstr "Phone failure" + +#: panels/wwan/cc-wwan-errors-private.h:41 +msgid "No connection to phone" +msgstr "No connection to phone" + +#: panels/wwan/cc-wwan-errors-private.h:43 +msgid "Operation not allowed" +msgstr "Operation not allowed" + +#: panels/wwan/cc-wwan-errors-private.h:44 +msgid "Operation not supported" +msgstr "Operation not supported" + +#: panels/wwan/cc-wwan-errors-private.h:48 +msgid "SIM not inserted" +msgstr "SIM not inserted" + +#: panels/wwan/cc-wwan-errors-private.h:49 +msgid "SIM PIN required" +msgstr "SIM PIN required" + +#: panels/wwan/cc-wwan-errors-private.h:50 +msgid "SIM PUK required" +msgstr "SIM PUK required" + +#: panels/wwan/cc-wwan-errors-private.h:51 +msgid "SIM failure" +msgstr "SIM failure" + +#: panels/wwan/cc-wwan-errors-private.h:52 +msgid "SIM busy" +msgstr "SIM busy" + +#: panels/wwan/cc-wwan-errors-private.h:54 +msgid "Incorrect password" +msgstr "Incorrect password" + +#: panels/wwan/cc-wwan-errors-private.h:55 +msgid "SIM PIN2 required" +msgstr "SIM PIN2 required" + +#: panels/wwan/cc-wwan-errors-private.h:56 +msgid "SIM PUK2 required" +msgstr "SIM PUK2 required" + +#: panels/wwan/cc-wwan-errors-private.h:59 +msgid "Not found" +msgstr "Not found" + +#: panels/wwan/cc-wwan-errors-private.h:61 +msgid "No network service" +msgstr "No network service" + +#: panels/wwan/cc-wwan-errors-private.h:62 +msgid "Network timeout" +msgstr "Network timeout" + +#: panels/wwan/cc-wwan-errors-private.h:75 +msgid "GPRS services not allowed" +msgstr "GPRS services not allowed" + +#: panels/wwan/cc-wwan-errors-private.h:78 +msgid "Roaming not allowed in this location area" +msgstr "Roaming not allowed in this location area" + +#: panels/wwan/cc-wwan-errors-private.h:82 +msgid "Unspecified GPRS error" +msgstr "Unspecified GPRS error" + +#: panels/wwan/cc-wwan-errors-private.h:91 +msgctxt "print job" +msgid "Action Cancelled" +msgstr "Action Cancelled" + +#: panels/wwan/cc-wwan-errors-private.h:94 +msgid "Access denied" +msgstr "Access denied" + +#: panels/wwan/cc-wwan-errors-private.h:103 +msgid "Unknown Error" +msgstr "Unknown Error" + +#: panels/wwan/cc-wwan-mode-dialog.ui:4 +msgid "Network Mode" +msgstr "Network Mode" + +#: panels/wwan/cc-wwan-mode-dialog.ui:44 +#: panels/wwan/cc-wwan-network-dialog.ui:175 +#: panels/wwan/cc-wwan-sim-lock-dialog.c:230 +msgid "_Set" +msgstr "_Set" + +#: panels/wwan/cc-wwan-network-dialog.ui:46 panels/wwan/cc-wwan-panel.ui:39 +#: panels/wwan/cc-wwan-sim-lock-dialog.ui:101 +msgid "Close" +msgstr "Close" + +#: panels/wwan/cc-wwan-network-dialog.ui:84 +msgid "_Automatic" +msgstr "_Automatic" + +#: panels/wwan/cc-wwan-network-dialog.ui:100 +msgid "Choose Network" +msgstr "Choose Network" + +#: panels/wwan/cc-wwan-network-dialog.ui:118 +msgid "Refresh Network Providers" +msgstr "Refresh Network Providers" + +#: panels/wwan/cc-wwan-panel.c:453 panels/wwan/cc-wwan-panel.c:482 +#, c-format +msgid "SIM %d" +msgstr "SIM %d" + +#: panels/wwan/cc-wwan-panel.ui:101 +msgid "No WWAN Adapter Found" +msgstr "No WWAN Adapter Found" + +#: panels/wwan/cc-wwan-panel.ui:112 +msgid "Make sure you have a Wireless Wan/Cellular device" +msgstr "Make sure you have a Wireless Wan/Mobile device" + +#: panels/wwan/cc-wwan-panel.ui:154 +msgid "Wireless Wan is disabled when airplane mode is on" +msgstr "Wireless Wan is disabled when aeroplane mode is on" + +#: panels/wwan/cc-wwan-panel.ui:163 +msgid "_Turn off Airplane Mode" +msgstr "_Turn off Aeroplane Mode" + +#: panels/wwan/cc-wwan-panel.ui:210 +msgid "Data Connection" +msgstr "Data Connection" + +#: panels/wwan/cc-wwan-panel.ui:224 +msgid "SIM card used for internet" +msgstr "SIM card used for internet" + +#: panels/wwan/cc-wwan-panel.ui:332 +msgid "Enable Mobile Network" +msgstr "Enable Mobile Network" + +#: panels/wwan/cc-wwan-sim-lock-dialog.ui:11 +msgid "SIM Lock" +msgstr "SIM Lock" + +#: panels/wwan/cc-wwan-sim-lock-dialog.ui:22 +msgid "_Next" +msgstr "_Next" + +#: panels/wwan/cc-wwan-sim-lock-dialog.ui:141 +msgid "_Lock SIM with PIN" +msgstr "_Lock SIM with PIN" + +#: panels/wwan/cc-wwan-sim-lock-dialog.ui:158 +msgid "Change PIN" +msgstr "Change PIN" + +#: panels/wwan/cc-wwan-sim-lock-dialog.ui:256 +msgid "Enter current PIN to change SIM lock settings" +msgstr "Enter current PIN to change SIM lock settings" + +#: panels/wwan/gnome-wwan-panel.desktop.in.in:3 +msgid "Mobile Network" +msgstr "Mobile Network" + +#: panels/wwan/gnome-wwan-panel.desktop.in.in:4 +msgid "Configure Telephony and mobile data connections" +msgstr "Configure Telephony and mobile data connections" + +#. FIXME +#. Translators: Search terms to find the WWAN panel. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#: panels/wwan/gnome-wwan-panel.desktop.in.in:17 +msgid "cellular;wwan;telephony;sim;mobile;" +msgstr "cellular;wwan;telephony;sim;mobile;" + #: shell/appdata/gnome-control-center.appdata.xml.in:7 msgid "GNOME Settings" msgstr "GNOME Settings" @@ -8146,7 +8721,7 @@ msgid "Privacy" msgstr "Privacy" -#: shell/cc-panel-loader.c:288 +#: shell/cc-panel-loader.c:299 msgid "Available panels:" msgstr "Available panels:" @@ -8255,6 +8830,56 @@ msgid "System Sounds" msgstr "System Sounds" +#~| msgid "Keyboard Shortcuts" +#~ msgid "Keyboard Shortcut" +#~ msgstr "Keyboard Shortcut" + +#~ msgid "This can be changed in Customize Shortcuts" +#~ msgstr "This can be changed in Customise Shortcuts" + +#~ msgid "Hold down and type to enter different characters" +#~ msgstr "Hold down and type to enter different characters" + +#~ msgid "_Screen Brightness" +#~ msgstr "_Screen Brightness" + +#~ msgid "_Keyboard Brightness" +#~ msgstr "_Keyboard Brightness" + +#~| msgid "_Dim Screen When Inactive" +#~ msgid "Dim Screen When Inactive" +#~ msgstr "Dim Screen When Inactive" + +#~ msgid "_Blank Screen" +#~ msgstr "_Blank Screen" + +#~ msgid "_Wi-Fi" +#~ msgstr "_Wi-Fi" + +#~ msgid "Wi-Fi can be turned off to save power." +#~ msgstr "Wi-Fi can be turned off to save power." + +#~ msgid "" +#~ "Mobile broadband (LTE, 4G, 3G, etc.) can be turned off to save power." +#~ msgstr "" +#~ "Mobile broadband (LTE, 4G, 3G, etc.) can be turned off to save power." + +#~ msgid "_Bluetooth" +#~ msgstr "_Bluetooth" + +#~ msgid "Bluetooth can be turned off to save power." +#~ msgstr "Bluetooth can be turned off to save power." + +#~| msgid "Balance" +#~ msgid "Balanced Power" +#~ msgstr "Balanced Power" + +#~ msgid "Add…" +#~ msgstr "Add…" + +#~ msgid "Login;Name;Fingerprint;Avatar;Logo;Face;Password;" +#~ msgstr "Login;Name;Fingerprint;Avatar;Logo;Face;Password;" + #~ msgid "Left Alt" #~ msgstr "Left Alt" @@ -8304,9 +8929,6 @@ #~ msgid "Empty" #~ msgstr "Empty" -#~ msgid "Choose keyboard layouts or input methods." -#~ msgstr "Choose keyboard layouts or input methods." - #~ msgid "Previous source" #~ msgstr "Previous source" @@ -8322,9 +8944,6 @@ #~ msgid "Left+Right Alt" #~ msgstr "Left+Right Alt" -#~ msgid "These keyboard shortcuts can be changed in the keyboard settings" -#~ msgstr "These keyboard shortcuts can be changed in the keyboard settings" - #~ msgid "Add user accounts and change passwords" #~ msgstr "Add user accounts and change passwords" @@ -8388,9 +9007,6 @@ #~ msgid "Read system and application logs" #~ msgstr "Read system and application logs" -#~ msgid "Access LXD service" -#~ msgstr "Access LXD service" - #~ msgid "access the media-hub service" #~ msgstr "access the media-hub service" @@ -8748,9 +9364,6 @@ #~ msgid "Infrastructure" #~ msgstr "Infrastructure" -#~ msgid "Not connected" -#~ msgstr "Not connected" - #~ msgid "In use" #~ msgstr "In use" @@ -9001,9 +9614,6 @@ #~ msgid "Could not get screen information" #~ msgstr "Could not get screen information" -#~ msgid "My Home Network" -#~ msgstr "My Home Network" - #~ msgid "hardware" #~ msgstr "hardware" @@ -9882,9 +10492,6 @@ #~ msgid "No printers available" #~ msgstr "No printers available" -#~ msgid "Close" -#~ msgstr "Close" - #~ msgid "Resume Printing" #~ msgstr "Resume Printing" @@ -10076,9 +10683,6 @@ #~ msgid "_City:" #~ msgstr "_City:" -#~ msgid "_Network Time" -#~ msgstr "_Network Time" - #~ msgid "Set the time one hour ahead." #~ msgstr "Set the time one hour ahead." @@ -10106,12 +10710,6 @@ #~ msgid "180 Degrees" #~ msgstr "180 Degrees" -#~ msgid "Monitor" -#~ msgstr "Monitor" - -#~ msgid "Drag to change primary display." -#~ msgstr "Drag to change primary display." - #~ msgid "" #~ "Select a monitor to change its properties; drag it to rearrange its " #~ "placement." @@ -10498,9 +11096,6 @@ #~ msgid "Arabic" #~ msgstr "Arabic" -#~ msgid "Unspecified" -#~ msgstr "Unspecified" - #~ msgid "Date and Time preferences panel" #~ msgstr "Date and Time preferences panel" @@ -10718,9 +11313,6 @@ #~ msgid "Brightness & Lock" #~ msgstr "Brightness & Lock" -#~ msgid "Screen brightness and lock settings" -#~ msgstr "Screen brightness and lock settings" - #~ msgid "Brightness;Lock;Dim;Blank;Monitor;" #~ msgstr "Brightness;Lock;Dim;Blank;Monitor;" @@ -10733,9 +11325,6 @@ #~ msgid "Locations..." #~ msgstr "Locations…" -#~ msgid "Lock" -#~ msgstr "Lock" - #~ msgid "Enable debugging code" #~ msgstr "Enable debugging code" @@ -11221,9 +11810,6 @@ #~ msgid "Upside-down" #~ msgstr "Upside-down" -#~ msgid "Locked" -#~ msgstr "Locked" - #~ msgid "" #~ "Dialog is unlocked.\n" #~ "Click to prevent further changes" @@ -11290,9 +11876,6 @@ #~ msgid "On AC power:" #~ msgstr "On AC power:" -#~ msgid "Put the computer to sleep when inactive:" -#~ msgstr "Put the computer to sleep when inactive:" - #~ msgid "When the sleep button is pressed:" #~ msgstr "When the sleep button is pressed:" @@ -14424,9 +15007,6 @@ #~ msgid "Short _description:" #~ msgstr "Short _description:" -#~ msgid "Theme _Details" -#~ msgstr "Theme _Details" - #~ msgid "_Go To Theme Folder" #~ msgstr "_Go To Theme Folder" diff -Nru gnome-control-center-41.4/po/ja.po gnome-control-center-41.7/po/ja.po --- gnome-control-center-41.4/po/ja.po 2022-02-13 21:57:02.000000000 +0000 +++ gnome-control-center-41.7/po/ja.po 2022-05-27 03:08:12.000000000 +0000 @@ -33,7 +33,7 @@ "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-control-center/" "issues\n" "POT-Creation-Date: 2022-01-24 13:03+0000\n" -"PO-Revision-Date: 2022-02-05 22:00+0900\n" +"PO-Revision-Date: 2022-03-16 20:30+0900\n" "Last-Translator: sicklylife \n" "Language-Team: Japanese \n" "Language: ja\n" @@ -2847,11 +2847,11 @@ #: panels/multitasking/cc-multitasking-panel.ui:307 msgid "Include applications from all _workspaces" -msgstr "すべてのワークスペースのアプリケーションを含める(_W)" +msgstr "すべてのワークスペースのアプリケーションを含む(_W)" #: panels/multitasking/cc-multitasking-panel.ui:325 msgid "Include applications from the _current workspace only" -msgstr "現在のワークスペースのアプリケーションのみを含める(_C)" +msgstr "現在のワークスペースのアプリケーションのみを含む(_C)" #: panels/multitasking/gnome-multitasking-panel.desktop.in.in:3 msgid "Multitasking" diff -Nru gnome-control-center-41.4/po/nb.po gnome-control-center-41.7/po/nb.po --- gnome-control-center-41.4/po/nb.po 2022-02-13 21:57:02.000000000 +0000 +++ gnome-control-center-41.7/po/nb.po 2022-05-27 03:08:12.000000000 +0000 @@ -8,9 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: gnome-control-center 3.40.x\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-control-center/issues\n" -"POT-Creation-Date: 2021-02-21 15:21+0000\n" -"PO-Revision-Date: 2021-03-13 17:20+0100\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-control-center/" +"issues\n" +"POT-Creation-Date: 2022-03-07 17:27+0000\n" +"PO-Revision-Date: 2022-03-10 16:25+0100\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian bokmål \n" "Language: nb\n" @@ -36,7 +37,7 @@ msgstr "Øktbuss" #: panels/applications/cc-applications-panel.c:829 -#: panels/power/cc-power-panel.c:1789 panels/thunderbolt/cc-bolt-panel.ui:466 +#: panels/power/cc-power-panel.ui:85 panels/thunderbolt/cc-bolt-panel.ui:466 #: panels/thunderbolt/cc-bolt-panel.ui:525 msgid "Devices" msgstr "Enheter" @@ -47,7 +48,8 @@ #: panels/applications/cc-applications-panel.c:833 #: panels/network/gnome-network-panel.desktop.in.in:3 -#: panels/network/network-mobile.ui:288 +#: panels/network/network-mobile.ui:288 panels/wwan/cc-wwan-device-page.ui:114 +#: panels/wwan/cc-wwan-network-dialog.ui:4 msgid "Network" msgstr "Nettverk" @@ -73,7 +75,7 @@ #: panels/applications/cc-applications-panel.c:849 #: panels/keyboard/01-launchers.xml.in:6 shell/cc-window.c:279 -#: shell/cc-window.c:933 shell/cc-window.ui:121 +#: shell/cc-window.c:938 shell/cc-window.ui:121 #: shell/gnome-control-center.desktop.in.in:3 msgid "Settings" msgstr "Innstillinger" @@ -97,12 +99,12 @@ #: panels/applications/cc-applications-panel.c:1034 msgid "Git Links" -msgstr "Git lenker" +msgstr "Git-lenker" #: panels/applications/cc-applications-panel.c:1040 #, c-format msgid "%s Links" -msgstr "%s lenker" +msgstr "%s-lenker" #: panels/applications/cc-applications-panel.c:1048 #: panels/applications/cc-applications-panel.c:1084 @@ -153,7 +155,7 @@ #: panels/applications/cc-applications-panel.c:1660 #: panels/applications/cc-applications-panel.ui:416 #: panels/applications/gnome-applications-panel.desktop.in.in:3 -#: panels/notifications/cc-notifications-panel.ui:79 +#: panels/notifications/cc-notifications-panel.ui:70 msgid "Applications" msgstr "Programmer" @@ -195,10 +197,11 @@ #: panels/applications/cc-applications-panel.ui:232 #: panels/applications/cc-applications-panel.ui:262 #: panels/keyboard/cc-keyboard-shortcut-editor.ui:85 -#: panels/keyboard/cc-xkb-modifier-dialog.c:355 +#: panels/keyboard/cc-xkb-modifier-dialog.c:353 #: panels/keyboard/keyboard-shortcuts.c:367 panels/network/network-proxy.ui:129 -#: panels/user-accounts/cc-user-panel.c:843 +#: panels/user-accounts/cc-user-panel.c:848 #: panels/user-accounts/cc-user-panel.c:938 +#: panels/wwan/cc-wwan-device-page.c:479 #: subprojects/gvc/gvc-mixer-control.c:1900 msgid "Disabled" msgstr "Slått av" @@ -216,7 +219,7 @@ msgstr "Stedstjenester" #: panels/applications/cc-applications-panel.ui:157 -#: panels/applications/cc-applications-panel.ui:499 +#: panels/applications/cc-applications-panel.ui:500 msgid "Built-in Permissions" msgstr "Innebygde rettigheter" @@ -290,47 +293,47 @@ msgstr "Hvor mye ressurser dette programmet bruker." #: panels/applications/cc-applications-panel.ui:391 -#: panels/applications/cc-applications-panel.ui:535 +#: panels/applications/cc-applications-panel.ui:537 msgid "Storage" msgstr "Lagring" -#: panels/applications/cc-applications-panel.ui:423 +#: panels/applications/cc-applications-panel.ui:424 msgid "Open in Software" msgstr "Åpne i Programvare" -#: panels/applications/cc-applications-panel.ui:473 shell/cc-panel-list.ui:121 +#: panels/applications/cc-applications-panel.ui:474 shell/cc-panel-list.ui:121 msgid "No results found" msgstr "Fant ingen resultater" -#: panels/applications/cc-applications-panel.ui:484 +#: panels/applications/cc-applications-panel.ui:485 #: panels/keyboard/cc-keyboard-shortcut-dialog.ui:177 #: shell/cc-panel-list.ui:132 msgid "Try a different search" msgstr "Prøv et annet søk" -#: panels/applications/cc-applications-panel.ui:552 +#: panels/applications/cc-applications-panel.ui:555 msgid "" "How much disk space this application is occupying with app data and caches." msgstr "" "Hvor mye diskplass programmet bruker med applikasjonsdata og mellomlager." -#: panels/applications/cc-applications-panel.ui:561 +#: panels/applications/cc-applications-panel.ui:564 msgid "Application" msgstr "Program" -#: panels/applications/cc-applications-panel.ui:567 +#: panels/applications/cc-applications-panel.ui:570 msgid "Data" msgstr "Data" -#: panels/applications/cc-applications-panel.ui:573 +#: panels/applications/cc-applications-panel.ui:576 msgid "Cache" msgstr "Buffer" -#: panels/applications/cc-applications-panel.ui:579 +#: panels/applications/cc-applications-panel.ui:582 msgid "Total" msgstr "Totalt" -#: panels/applications/cc-applications-panel.ui:596 +#: panels/applications/cc-applications-panel.ui:599 msgid "Clear Cache…" msgstr "Tøm buffer …" @@ -344,16 +347,16 @@ msgid "application;flatpak;permission;setting;" msgstr "program;flatpak;rettighet;innstilling;" -#: panels/background/cc-background-chooser.c:345 +#: panels/background/cc-background-chooser.c:344 msgid "Select a picture" msgstr "Velg et bilde" -#: panels/background/cc-background-chooser.c:348 +#: panels/background/cc-background-chooser.c:347 #: panels/color/cc-color-calibrate.ui:25 panels/color/cc-color-panel.c:238 #: panels/color/cc-color-panel.c:886 panels/color/cc-color-panel.ui:657 #: panels/common/cc-language-chooser.ui:25 -#: panels/display/cc-display-panel.c:1003 -#: panels/info-overview/cc-info-overview-panel.ui:242 +#: panels/display/cc-display-panel.c:1006 +#: panels/info-overview/cc-info-overview-panel.ui:244 #: panels/keyboard/cc-input-chooser.ui:11 #: panels/network/cc-wifi-hotspot-dialog.ui:122 #: panels/network/cc-wifi-panel.c:866 @@ -368,20 +371,23 @@ #: panels/sharing/cc-sharing-panel.c:396 panels/usage/cc-usage-panel.c:133 #: panels/user-accounts/cc-add-user-dialog.ui:28 #: panels/user-accounts/cc-avatar-chooser.c:105 -#: panels/user-accounts/cc-avatar-chooser.c:223 +#: panels/user-accounts/cc-avatar-chooser.c:228 #: panels/user-accounts/cc-fingerprint-dialog.ui:36 #: panels/user-accounts/cc-password-dialog.ui:20 -#: panels/user-accounts/cc-user-panel.c:633 -#: panels/user-accounts/cc-user-panel.c:651 +#: panels/user-accounts/cc-user-panel.c:638 +#: panels/user-accounts/cc-user-panel.c:656 #: panels/user-accounts/data/join-dialog.ui:20 +#: panels/wwan/cc-wwan-mode-dialog.ui:35 +#: panels/wwan/cc-wwan-network-dialog.ui:166 +#: panels/wwan/cc-wwan-sim-lock-dialog.ui:297 msgid "_Cancel" msgstr "A_vbryt" -#: panels/background/cc-background-chooser.c:349 +#: panels/background/cc-background-chooser.c:348 #: panels/network/connection-editor/vpn-helpers.c:177 #: panels/printers/pp-details-dialog.c:236 #: panels/sharing/cc-sharing-panel.c:397 -#: panels/user-accounts/cc-avatar-chooser.c:224 +#: panels/user-accounts/cc-avatar-chooser.c:229 msgid "_Open" msgstr "_Åpne" @@ -400,7 +406,7 @@ msgid "No Desktop Background" msgstr "Ingen skrivebordsbakgrunn" -#: panels/background/cc-background-panel.c:112 +#: panels/background/cc-background-panel.c:110 msgid "Current background" msgstr "Gjeldende bakgrunn" @@ -463,7 +469,7 @@ #. Translators: The found device is a printer connected via Bluetooth #: panels/bluetooth/gnome-bluetooth-panel.desktop.in.in:3 -#: panels/printers/pp-new-printer-dialog.c:1595 +#: panels/printers/pp-new-printer-dialog.c:1392 msgid "Bluetooth" msgstr "Bluetooth" @@ -742,6 +748,7 @@ #: panels/color/cc-color-panel.c:887 #: panels/network/connection-editor/vpn-helpers.c:300 +#: panels/wwan/cc-wwan-apn-dialog.ui:64 msgid "_Save" msgstr "_Lagre" @@ -928,7 +935,7 @@ #. translators: Text used in link to privacy policy #: panels/color/cc-color-panel.ui:810 -#: panels/diagnostics/cc-diagnostics-panel.c:143 +#: panels/diagnostics/cc-diagnostics-panel.c:144 msgid "Learn more" msgstr "Lær mer" @@ -1166,7 +1173,7 @@ msgid "No languages found" msgstr "Fant ingen språk" -#: panels/common/cc-language-chooser.ui:78 +#: panels/common/cc-language-chooser.ui:82 #: panels/keyboard/cc-input-chooser.c:178 msgid "More…" msgstr "Mer …" @@ -1212,12 +1219,12 @@ msgstr "Velg _alle" #: panels/common/cc-util.c:127 -#: panels/network/connection-editor/ce-page-details.c:160 +#: panels/network/connection-editor/ce-page-details.c:162 msgid "Today" msgstr "I dag" #: panels/common/cc-util.c:131 -#: panels/network/connection-editor/ce-page-details.c:162 +#: panels/network/connection-editor/ce-page-details.c:164 msgid "Yesterday" msgstr "I går" @@ -1238,7 +1245,8 @@ msgstr[0] "%d time" msgstr[1] "%d timer" -#: panels/common/cc-util.c:166 +#. Translators: Option for "Blank Screen" in "Power" panel +#: panels/common/cc-util.c:166 panels/power/cc-power-panel.c:973 #, c-format msgid "%d minute" msgid_plural "%d minutes" @@ -1420,40 +1428,40 @@ msgid "Search for a city" msgstr "Søk etter en by" -#: panels/datetime/cc-datetime-panel.ui:378 +#: panels/datetime/cc-datetime-panel.ui:375 msgid "Automatic _Date & Time" msgstr "Automatisk _dato og klokkeslett" -#: panels/datetime/cc-datetime-panel.ui:379 +#: panels/datetime/cc-datetime-panel.ui:376 msgid "Requires internet access" msgstr "Krever tilkobling til internett" -#: panels/datetime/cc-datetime-panel.ui:399 +#: panels/datetime/cc-datetime-panel.ui:396 msgid "Date & _Time" msgstr "Da_to og klokkeslett" -#: panels/datetime/cc-datetime-panel.ui:438 +#: panels/datetime/cc-datetime-panel.ui:430 msgid "Automatic Time _Zone" msgstr "Automatisk tids_sone" -#: panels/datetime/cc-datetime-panel.ui:439 +#: panels/datetime/cc-datetime-panel.ui:431 msgid "Requires location services enabled and internet access" msgstr "" "Krever tilgang til internett og at tjeneste for stedsinformasjon kjører" -#: panels/datetime/cc-datetime-panel.ui:454 +#: panels/datetime/cc-datetime-panel.ui:446 msgid "Time Z_one" msgstr "Tidss_one" -#: panels/datetime/cc-datetime-panel.ui:494 +#: panels/datetime/cc-datetime-panel.ui:481 msgid "Time _Format" msgstr "Tids_format" -#: panels/datetime/cc-datetime-panel.ui:503 +#: panels/datetime/cc-datetime-panel.ui:490 msgid "24-hour" msgstr "24-timer" -#: panels/datetime/cc-datetime-panel.ui:504 +#: panels/datetime/cc-datetime-panel.ui:491 msgid "AM / PM" msgstr "AM / PM" @@ -1513,7 +1521,7 @@ msgstr "forvalgt;program;foretrukket;medie;" #. translators: The first '%s' is the distributor's name, such as 'Fedora', the second '%s' is a link to the privacy policy -#: panels/diagnostics/cc-diagnostics-panel.c:145 +#: panels/diagnostics/cc-diagnostics-panel.c:146 #, c-format msgid "" "Sending reports of technical problems helps us improve %s. Reports are sent " @@ -1551,20 +1559,20 @@ "skjerm;lås;diagnostikk;krash;privat;nylige filer;midlertidig;tmp;indeks;navn;" "nettverk;identitet;personvern;" -#: panels/display/cc-display-panel.c:1014 +#: panels/display/cc-display-panel.c:1017 #: panels/network/connection-editor/connection-editor.ui:27 msgid "_Apply" msgstr "_Bruk" -#: panels/display/cc-display-panel.c:1035 +#: panels/display/cc-display-panel.c:1038 msgid "Apply Changes?" msgstr "Bruk endringer?" -#: panels/display/cc-display-panel.c:1040 +#: panels/display/cc-display-panel.c:1043 msgid "Changes Cannot be Applied" msgstr "Endringer kan ikke brukes" -#: panels/display/cc-display-panel.c:1041 +#: panels/display/cc-display-panel.c:1044 msgid "This could be due to hardware limitations." msgstr "Dette kan være på grunn av begrensninger i maskinvaren." @@ -1624,27 +1632,27 @@ msgid "Night Light" msgstr "Nattlys" -#: panels/display/cc-display-settings.c:103 +#: panels/display/cc-display-settings.c:107 msgctxt "Display rotation" msgid "Landscape" msgstr "Landskap" -#: panels/display/cc-display-settings.c:106 +#: panels/display/cc-display-settings.c:110 msgctxt "Display rotation" msgid "Portrait Right" msgstr "Portrett høyre" -#: panels/display/cc-display-settings.c:109 +#: panels/display/cc-display-settings.c:113 msgctxt "Display rotation" msgid "Portrait Left" msgstr "Portrett venstre" -#: panels/display/cc-display-settings.c:112 +#: panels/display/cc-display-settings.c:116 msgctxt "Display rotation" msgid "Landscape (flipped)" msgstr "Landskap (vendt)" -#: panels/display/cc-display-settings.c:186 +#: panels/display/cc-display-settings.c:190 #, c-format msgid "%.2lf Hz" msgstr "%.2lf Hz" @@ -1668,6 +1676,7 @@ msgstr "Juster for TV" #: panels/display/cc-display-settings.ui:59 +#: panels/display/cc-display-settings.ui:76 msgctxt "display setting" msgid "Scale" msgstr "Skalering" @@ -1767,11 +1776,11 @@ "Panel;Prosjektor;xrandr;Skjerm;Oppløsning;Oppdater;Skjerm;Natt;Lys;Blå;" "redshift;farge;solnedgang;soloppgang;" -#: panels/info-overview/cc-info-overview-panel.c:418 -#: panels/info-overview/cc-info-overview-panel.c:433 -#: panels/info-overview/cc-info-overview-panel.c:445 -#: panels/info-overview/cc-info-overview-panel.c:491 -#: panels/info-overview/cc-info-overview-panel.c:521 +#: panels/info-overview/cc-info-overview-panel.c:413 +#: panels/info-overview/cc-info-overview-panel.c:437 +#: panels/info-overview/cc-info-overview-panel.c:483 +#: panels/info-overview/cc-info-overview-panel.c:513 +#: panels/wwan/cc-wwan-details-dialog.c:101 msgid "Unknown" msgstr "Ukjent" @@ -1779,94 +1788,94 @@ #. * example: #. * "Fedora 25 (Workstation Edition); Build ID: xyz" or #. * "Ubuntu 16.04 LTS; Build ID: jki" -#: panels/info-overview/cc-info-overview-panel.c:453 +#: panels/info-overview/cc-info-overview-panel.c:445 #, c-format msgid "%s; Build ID: %s" msgstr "%s; bygg-ID: %s" #. translators: This is the type of architecture for the OS -#: panels/info-overview/cc-info-overview-panel.c:468 +#: panels/info-overview/cc-info-overview-panel.c:460 #, c-format msgid "64-bit" msgstr "64-bit" #. translators: This is the type of architecture for the OS -#: panels/info-overview/cc-info-overview-panel.c:471 +#: panels/info-overview/cc-info-overview-panel.c:463 #, c-format msgid "32-bit" msgstr "32-bit" -#: panels/info-overview/cc-info-overview-panel.c:728 +#: panels/info-overview/cc-info-overview-panel.c:720 msgid "X11" msgstr "X11" -#: panels/info-overview/cc-info-overview-panel.c:732 +#: panels/info-overview/cc-info-overview-panel.c:724 msgid "Wayland" msgstr "Wayland" -#: panels/info-overview/cc-info-overview-panel.c:734 +#: panels/info-overview/cc-info-overview-panel.c:726 msgctxt "Windowing system (Wayland, X11, or Unknown)" msgid "Unknown" msgstr "Ukjent" -#: panels/info-overview/cc-info-overview-panel.ui:51 +#: panels/info-overview/cc-info-overview-panel.ui:52 msgid "Device Name" msgstr "Navn på enhet" -#: panels/info-overview/cc-info-overview-panel.ui:73 +#: panels/info-overview/cc-info-overview-panel.ui:74 msgid "Hardware Model" msgstr "Maskinvaremodell" -#: panels/info-overview/cc-info-overview-panel.ui:82 +#: panels/info-overview/cc-info-overview-panel.ui:83 msgid "Memory" msgstr "Minne" -#: panels/info-overview/cc-info-overview-panel.ui:91 +#: panels/info-overview/cc-info-overview-panel.ui:92 msgid "Processor" msgstr "Prosessor" -#: panels/info-overview/cc-info-overview-panel.ui:100 +#: panels/info-overview/cc-info-overview-panel.ui:101 msgid "Graphics" msgstr "Grafikk" -#: panels/info-overview/cc-info-overview-panel.ui:109 +#: panels/info-overview/cc-info-overview-panel.ui:110 msgid "Disk Capacity" msgstr "Diskkapasitet" -#: panels/info-overview/cc-info-overview-panel.ui:110 +#: panels/info-overview/cc-info-overview-panel.ui:111 msgid "Calculating…" msgstr "Beregner …" #. translators: this field contains the distro name and version -#: panels/info-overview/cc-info-overview-panel.ui:132 +#: panels/info-overview/cc-info-overview-panel.ui:133 msgid "OS Name" msgstr "Navn på operativsystem" -#: panels/info-overview/cc-info-overview-panel.ui:141 +#: panels/info-overview/cc-info-overview-panel.ui:142 msgid "OS Type" msgstr "Type operativsystem" -#: panels/info-overview/cc-info-overview-panel.ui:150 +#: panels/info-overview/cc-info-overview-panel.ui:151 msgid "GNOME Version" msgstr "GNOME versjon" -#: panels/info-overview/cc-info-overview-panel.ui:160 +#: panels/info-overview/cc-info-overview-panel.ui:161 msgid "Windowing System" -msgstr "Vindusytem" +msgstr "Vindussystem" -#: panels/info-overview/cc-info-overview-panel.ui:168 +#: panels/info-overview/cc-info-overview-panel.ui:169 msgid "Virtualization" msgstr "Virtualisering" -#: panels/info-overview/cc-info-overview-panel.ui:177 +#: panels/info-overview/cc-info-overview-panel.ui:178 msgid "Software Updates" msgstr "Programvareoppdateringer" -#: panels/info-overview/cc-info-overview-panel.ui:198 +#: panels/info-overview/cc-info-overview-panel.ui:199 msgid "Rename Device" msgstr "Endre navn på enhet" -#: panels/info-overview/cc-info-overview-panel.ui:215 +#: panels/info-overview/cc-info-overview-panel.ui:216 msgid "" "The device name is used to identify this device when it is viewed over the " "network, or when pairing Bluetooth devices." @@ -1874,7 +1883,7 @@ "Enhetsnavnet brukes til å identifisere denne enheten når den vises over " "nettverket eller ved paring med Bluetooth-enheter." -#: panels/info-overview/cc-info-overview-panel.ui:233 +#: panels/info-overview/cc-info-overview-panel.ui:235 msgid "_Rename" msgstr "End_re navn" @@ -1948,7 +1957,7 @@ msgstr "Utløs" #: panels/keyboard/01-input-sources.xml.in:4 -#: panels/universal-access/cc-ua-panel.ui:542 +#: panels/universal-access/cc-ua-panel.ui:580 msgid "Typing" msgstr "Skriving" @@ -2087,7 +2096,7 @@ msgid "Input methods can’t be used on the login screen" msgstr "Inndatametoder kan ikke brukes på påloggingsskjermen" -#: panels/keyboard/cc-input-list-box.ui:20 +#: panels/keyboard/cc-input-list-box.ui:23 msgid "No input source selected" msgstr "Ingen inndatakilder valgt" @@ -2118,12 +2127,12 @@ msgid "Custom Shortcuts" msgstr "Egendefinerte snarveier" -#: panels/keyboard/cc-keyboard-panel.c:71 -#: panels/keyboard/cc-keyboard-panel.ui:179 +#: panels/keyboard/cc-keyboard-panel.c:68 +#: panels/keyboard/cc-keyboard-panel.ui:213 msgid "Alternate Characters Key" msgstr "Tast for alternative tegn" -#: panels/keyboard/cc-keyboard-panel.c:72 +#: panels/keyboard/cc-keyboard-panel.c:69 msgid "" "The alternate characters key can be used to enter additional characters. " "These are sometimes printed as a third-option on your keyboard." @@ -2131,121 +2140,136 @@ "Tasten for alternative taster kan brukes til å skrive flere tegn. Disse " "vises noen ganger som et tredje alternativ på tastaturet ditt." -#: panels/keyboard/cc-keyboard-panel.c:74 -#: panels/keyboard/cc-keyboard-panel.c:92 +#: panels/keyboard/cc-keyboard-panel.c:71 +#: panels/keyboard/cc-keyboard-panel.c:89 msgctxt "keyboard key" msgid "Left Alt" msgstr "Venstre Alt" -#: panels/keyboard/cc-keyboard-panel.c:75 -#: panels/keyboard/cc-keyboard-panel.c:93 +#: panels/keyboard/cc-keyboard-panel.c:72 +#: panels/keyboard/cc-keyboard-panel.c:90 msgctxt "keyboard key" msgid "Right Alt" msgstr "Høyre Alt" -#: panels/keyboard/cc-keyboard-panel.c:76 -#: panels/keyboard/cc-keyboard-panel.c:94 +#: panels/keyboard/cc-keyboard-panel.c:73 +#: panels/keyboard/cc-keyboard-panel.c:91 msgctxt "keyboard key" msgid "Left Super" msgstr "Venstre super" -#: panels/keyboard/cc-keyboard-panel.c:77 -#: panels/keyboard/cc-keyboard-panel.c:95 +#: panels/keyboard/cc-keyboard-panel.c:74 +#: panels/keyboard/cc-keyboard-panel.c:92 msgctxt "keyboard key" msgid "Right Super" msgstr "Høyre super" -#: panels/keyboard/cc-keyboard-panel.c:78 -#: panels/keyboard/cc-keyboard-panel.c:96 +#: panels/keyboard/cc-keyboard-panel.c:75 +#: panels/keyboard/cc-keyboard-panel.c:93 msgctxt "keyboard key" msgid "Menu key" msgstr "Menytast" -#: panels/keyboard/cc-keyboard-panel.c:79 -#: panels/keyboard/cc-keyboard-panel.c:97 +#: panels/keyboard/cc-keyboard-panel.c:76 +#: panels/keyboard/cc-keyboard-panel.c:94 msgctxt "keyboard key" msgid "Right Ctrl" msgstr "Høyre Ctrl" -#: panels/keyboard/cc-keyboard-panel.c:87 -#: panels/keyboard/cc-keyboard-panel.ui:204 +#: panels/keyboard/cc-keyboard-panel.c:84 +#: panels/keyboard/cc-keyboard-panel.ui:237 msgid "Compose Key" msgstr "Komponeringstast" -#: panels/keyboard/cc-keyboard-panel.c:88 +#: panels/keyboard/cc-keyboard-panel.c:85 msgid "" "The compose key allows a wide variety of characters to be entered. To use " "it, press compose then a sequence of characters. For example, compose key " "followed by C and o will enter ©, a followed by " "' will enter á." -msgstr "Compose-tasten lar deg skrive en stor variasjon av tegn. For å bruke den trykker du Compose og så en sekvens med tegn. For eksempel Compose-tasten fulgt av C og o vil skrive ©, a fulgt av ' vil skrive á." +msgstr "" +"Compose-tasten lar deg skrive en stor variasjon av tegn. For å bruke den " +"trykker du Compose og så en sekvens med tegn. For eksempel Compose-tasten " +"fulgt av C og o vil skrive ©, a fulgt av ' vil skrive á." -#: panels/keyboard/cc-keyboard-panel.c:98 +#: panels/keyboard/cc-keyboard-panel.c:95 msgctxt "keyboard key" msgid "Caps Lock" msgstr "Caps Lock" -#: panels/keyboard/cc-keyboard-panel.c:99 +#: panels/keyboard/cc-keyboard-panel.c:96 msgctxt "keyboard key" msgid "Scroll Lock" msgstr "Scroll Lock" -#: panels/keyboard/cc-keyboard-panel.c:100 +#: panels/keyboard/cc-keyboard-panel.c:97 msgctxt "keyboard key" msgid "Print Screen" msgstr "Print Screen" -#: panels/keyboard/cc-keyboard-panel.ui:43 +#: panels/keyboard/cc-keyboard-panel.c:233 +#, c-format +msgid "" +"Input sources can be switched using the %s keyboard shortcut.\n" +"This can be changed in the keyboard shortcut settings." +msgstr "" + +#: panels/keyboard/cc-keyboard-panel.ui:48 msgid "Input Sources" msgstr "Inndatakilder" -#: panels/keyboard/cc-keyboard-panel.ui:66 +#: panels/keyboard/cc-keyboard-panel.ui:59 +msgid "Includes keyboard layouts and input methods." +msgstr "" + +#: panels/keyboard/cc-keyboard-panel.ui:85 msgid "Input Source Switching" msgstr "Bytt inndatakilde" -#: panels/keyboard/cc-keyboard-panel.ui:99 +#: panels/keyboard/cc-keyboard-panel.ui:131 msgid "Use the _same source for all windows" msgstr "Bruk _samme kilde for alle vinduer" -#: panels/keyboard/cc-keyboard-panel.ui:126 +#: panels/keyboard/cc-keyboard-panel.ui:158 msgid "Switch input sources _individually for each window" msgstr "Bytt inndatakilder _individuelt for hvert vindu" -#: panels/keyboard/cc-keyboard-panel.ui:138 -msgid "Keyboard Shortcut" -msgstr "Tastatursnarvei" - -#: panels/keyboard/cc-keyboard-panel.ui:139 -msgid "This can be changed in Customize Shortcuts" -msgstr "Denne kan endres i Tilpass snarveier" - -#: panels/keyboard/cc-keyboard-panel.ui:157 -msgid "Type Special Characters" +#: panels/keyboard/cc-keyboard-panel.ui:177 +#, fuzzy +#| msgid "Type Special Characters" +msgid "Special Character Entry" msgstr "Skriv spesielle tegn" -#: panels/keyboard/cc-keyboard-panel.ui:180 -msgid "Hold down and type to enter different characters" -msgstr "Hold nede og skriv for å skrive andre tegn" - -#: panels/keyboard/cc-keyboard-panel.ui:232 -#: panels/keyboard/cc-keyboard-shortcut-dialog.c:301 -#: panels/keyboard/cc-keyboard-shortcut-dialog.c:317 shell/cc-window.ui:326 +#: panels/keyboard/cc-keyboard-panel.ui:188 +msgid "Methods for entering symbols and letter variants using the keyboard." +msgstr "" + +#: panels/keyboard/cc-keyboard-panel.ui:263 +#: panels/keyboard/cc-keyboard-shortcut-dialog.c:306 +#: panels/keyboard/cc-keyboard-shortcut-dialog.c:322 shell/cc-window.ui:326 msgid "Keyboard Shortcuts" msgstr "Tastatursnarveier" -#: panels/keyboard/cc-keyboard-panel.ui:253 -msgid "Customize Shortcuts" +#: panels/keyboard/cc-keyboard-panel.ui:283 +#, fuzzy +#| msgid "Customize Shortcuts" +msgid "View and Customize Shortcuts" msgstr "Tilpass snarveier" -#: panels/keyboard/cc-keyboard-shortcut-dialog.c:281 -msgid "modified" -msgstr "endret" +#: panels/keyboard/cc-keyboard-shortcut-dialog.c:283 +#, fuzzy, c-format +#| msgid "modified" +msgid "%d modified" +msgid_plural "%d modified" +msgstr[0] "endret" +msgstr[1] "endret" -#: panels/keyboard/cc-keyboard-shortcut-dialog.c:423 +#: panels/keyboard/cc-keyboard-shortcut-dialog.c:428 msgid "Reset All Shortcuts?" msgstr "Nullstill alle snarveier?" -#: panels/keyboard/cc-keyboard-shortcut-dialog.c:426 +#: panels/keyboard/cc-keyboard-shortcut-dialog.c:431 msgid "" "Resetting the shortcuts may affect your custom shortcuts. This cannot be " "undone." @@ -2253,14 +2277,15 @@ "Hvis du nullstiller snarveiene kan dette påvirke dine egendefinerte " "snarveier. Dette kan ikke angres." -#: panels/keyboard/cc-keyboard-shortcut-dialog.c:430 +#: panels/keyboard/cc-keyboard-shortcut-dialog.c:435 #: panels/keyboard/cc-keyboard-shortcut-editor.ui:275 #: panels/printers/authentication-dialog.ui:29 #: panels/printers/ppd-selection-dialog.ui:27 +#: panels/wwan/cc-wwan-device-page.c:190 msgid "Cancel" msgstr "Avbryt" -#: panels/keyboard/cc-keyboard-shortcut-dialog.c:431 +#: panels/keyboard/cc-keyboard-shortcut-dialog.c:436 msgid "Reset All" msgstr "Nullstill alle" @@ -2270,7 +2295,9 @@ #: panels/keyboard/cc-keyboard-shortcut-dialog.ui:124 msgid "Set up custom shortcuts for launching apps, running scripts, and more." -msgstr "Sett opp egendefinerte snarveier for å starte programmer, kjøre skript og mer." +msgstr "" +"Sett opp egendefinerte snarveier for å starte programmer, kjøre skript og " +"mer." #: panels/keyboard/cc-keyboard-shortcut-dialog.ui:131 msgid "Add Shortcut" @@ -2283,7 +2310,8 @@ #: panels/keyboard/cc-keyboard-shortcut-dialog.ui:211 #: panels/region/cc-format-chooser.ui:48 #: panels/user-accounts/cc-fingerprint-dialog.ui:53 -#: panels/wacom/wacom-stylus-page.ui:37 shell/cc-window.ui:230 +#: panels/wacom/wacom-stylus-page.ui:37 panels/wwan/cc-wwan-apn-dialog.ui:21 +#: shell/cc-window.ui:230 msgid "Back" msgstr "Tilbake" @@ -2329,6 +2357,7 @@ #: panels/keyboard/cc-keyboard-shortcut-editor.ui:135 #: panels/printers/pp-details-dialog.ui:40 +#: panels/wwan/cc-wwan-apn-dialog.ui:132 msgid "Name" msgstr "Navn" @@ -2349,6 +2378,7 @@ msgstr "Ingen" #: panels/keyboard/cc-keyboard-shortcut-editor.ui:296 +#: panels/wwan/cc-wwan-apn-dialog.ui:44 msgid "Add" msgstr "Legg til" @@ -2369,7 +2399,11 @@ msgstr "Tastatur" #: panels/keyboard/gnome-keyboard-panel.desktop.in.in:4 -msgid "View and change keyboard shortcuts and set your typing preferences" +#, fuzzy +#| msgid "View and change keyboard shortcuts and set your typing preferences" +msgid "" +"Change keyboard shortcuts and set your typing preferences, keyboard layouts " +"and input sources" msgstr "Vis og bytt tastatursnarveier, og endre skriveoppsett" #. Translators: Search terms to find the Keyboard panel. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! @@ -2404,11 +2438,11 @@ "Bruker Mozilla Location Service: Personvernregler" -#: panels/location/cc-location-panel.ui:93 +#: panels/location/cc-location-panel.ui:94 msgid "Allow the applications below to determine your location." msgstr "Tillat programmene under å se din stedsinformasjon." -#: panels/location/cc-location-panel.ui:113 +#: panels/location/cc-location-panel.ui:114 msgid "No Applications Have Asked for Location Access" msgstr "Ingen programmer har bedt om stedsinformasjon" @@ -2510,61 +2544,61 @@ msgstr "1 time" #. Translators: Option for "Blank screen" in "Power" panel. -#: panels/lock/cc-lock-panel.ui:209 panels/power/cc-power-panel.ui:63 +#: panels/lock/cc-lock-panel.ui:209 msgctxt "blank_screen" msgid "1 minute" msgstr "1 minutt" #. Translators: Option for "Blank screen" in "Power" panel. -#: panels/lock/cc-lock-panel.ui:213 panels/power/cc-power-panel.ui:67 +#: panels/lock/cc-lock-panel.ui:213 msgctxt "blank_screen" msgid "2 minutes" msgstr "2 minutter" #. Translators: Option for "Blank screen" in "Power" panel. -#: panels/lock/cc-lock-panel.ui:217 panels/power/cc-power-panel.ui:71 +#: panels/lock/cc-lock-panel.ui:217 msgctxt "blank_screen" msgid "3 minutes" msgstr "3 minutter" #. Translators: Option for "Blank screen" in "Power" panel. -#: panels/lock/cc-lock-panel.ui:221 panels/power/cc-power-panel.ui:75 +#: panels/lock/cc-lock-panel.ui:221 msgctxt "blank_screen" msgid "4 minutes" msgstr "4 minutter" #. Translators: Option for "Blank screen" in "Power" panel. -#: panels/lock/cc-lock-panel.ui:225 panels/power/cc-power-panel.ui:79 +#: panels/lock/cc-lock-panel.ui:225 msgctxt "blank_screen" msgid "5 minutes" msgstr "5 minutter" #. Translators: Option for "Blank screen" in "Power" panel. -#: panels/lock/cc-lock-panel.ui:229 panels/power/cc-power-panel.ui:83 +#: panels/lock/cc-lock-panel.ui:229 msgctxt "blank_screen" msgid "8 minutes" msgstr "8 minutter" #. Translators: Option for "Blank screen" in "Power" panel. -#: panels/lock/cc-lock-panel.ui:233 panels/power/cc-power-panel.ui:87 +#: panels/lock/cc-lock-panel.ui:233 msgctxt "blank_screen" msgid "10 minutes" msgstr "10 minutter" #. Translators: Option for "Blank screen" in "Power" panel. -#: panels/lock/cc-lock-panel.ui:237 panels/power/cc-power-panel.ui:91 +#: panels/lock/cc-lock-panel.ui:237 msgctxt "blank_screen" msgid "12 minutes" msgstr "12 minutter" #. Translators: Option for "Blank screen" in "Power" panel. -#: panels/lock/cc-lock-panel.ui:241 panels/power/cc-power-panel.ui:95 +#: panels/lock/cc-lock-panel.ui:241 msgctxt "blank_screen" msgid "15 minutes" msgstr "15 minutter" #. Translators: Option for "Blank screen" in "Power" panel. -#: panels/lock/cc-lock-panel.ui:245 panels/power/cc-power-panel.ui:99 +#: panels/lock/cc-lock-panel.ui:245 msgctxt "blank_screen" msgid "Never" msgstr "Aldri" @@ -2609,68 +2643,69 @@ #. FIXME #: panels/mouse/cc-mouse-panel.ui:37 +#: panels/multitasking/cc-multitasking-panel.ui:31 msgid "General" msgstr "Generelt" -#: panels/mouse/cc-mouse-panel.ui:75 +#: panels/mouse/cc-mouse-panel.ui:57 msgid "Primary Button" msgstr "Primærknapp" -#: panels/mouse/cc-mouse-panel.ui:94 +#: panels/mouse/cc-mouse-panel.ui:58 msgid "Sets the order of physical buttons on mice and touchpads." msgstr "Setter rekkefølge for de fysiske knappene på mus og pekeflater." -#: panels/mouse/cc-mouse-panel.ui:123 panels/sound/cc-balance-slider.ui:13 +#: panels/mouse/cc-mouse-panel.ui:84 panels/sound/cc-balance-slider.ui:13 msgid "Left" msgstr "Venstre" -#: panels/mouse/cc-mouse-panel.ui:133 panels/sound/cc-balance-slider.ui:15 +#: panels/mouse/cc-mouse-panel.ui:94 panels/sound/cc-balance-slider.ui:15 msgid "Right" msgstr "Høyre" -#: panels/mouse/cc-mouse-panel.ui:169 +#: panels/mouse/cc-mouse-panel.ui:122 msgid "Mouse" msgstr "Mus" -#: panels/mouse/cc-mouse-panel.ui:208 +#: panels/mouse/cc-mouse-panel.ui:142 msgid "Mouse Speed" msgstr "Mushastighet" -#: panels/mouse/cc-mouse-panel.ui:230 panels/mouse/cc-mouse-panel.ui:522 +#: panels/mouse/cc-mouse-panel.ui:154 panels/mouse/cc-mouse-panel.ui:258 msgid "Double-click timeout" msgstr "Tidsavbrudd for dobbeltklikk" #. Translators: This switch reverses the scrolling direction for mices. The term used comes from OS X so use the same translation if possible. #. Translators: This switch reverses the scrolling direction for touchpads. The term used comes from OS X so use the same translation if possible. -#: panels/mouse/cc-mouse-panel.ui:267 panels/mouse/cc-mouse-panel.ui:430 +#: panels/mouse/cc-mouse-panel.ui:166 panels/mouse/cc-mouse-panel.ui:230 msgid "Natural Scrolling" msgstr "Naturlig rulling" -#: panels/mouse/cc-mouse-panel.ui:283 panels/mouse/cc-mouse-panel.ui:446 +#: panels/mouse/cc-mouse-panel.ui:167 panels/mouse/cc-mouse-panel.ui:231 msgid "Scrolling moves the content, not the view." msgstr "Rulling flytter innholdet, ikke visningen." -#: panels/mouse/cc-mouse-panel.ui:333 panels/mouse/cc-mouse-panel.ui:378 +#: panels/mouse/cc-mouse-panel.ui:193 panels/mouse/cc-mouse-panel.ui:213 msgid "Touchpad" msgstr "Pekeplate" -#: panels/mouse/cc-mouse-panel.ui:501 +#: panels/mouse/cc-mouse-panel.ui:247 msgid "Touchpad Speed" msgstr "Hastighet for pekeplate" -#: panels/mouse/cc-mouse-panel.ui:560 +#: panels/mouse/cc-mouse-panel.ui:270 msgid "Tap to Click" msgstr "Tapp for å klikke" -#: panels/mouse/cc-mouse-panel.ui:612 +#: panels/mouse/cc-mouse-panel.ui:286 msgid "Two-finger Scrolling" msgstr "Rulling med to fingre" -#: panels/mouse/cc-mouse-panel.ui:665 +#: panels/mouse/cc-mouse-panel.ui:303 msgid "Edge Scrolling" msgstr "Kantrulling" -#: panels/mouse/cc-mouse-panel.ui:719 panels/wacom/cc-wacom-panel.c:441 +#: panels/mouse/cc-mouse-panel.ui:335 panels/wacom/cc-wacom-panel.c:441 msgid "Test Your _Settings" msgstr "Test inn_stillinger" @@ -2722,11 +2757,98 @@ msgid "Trackpad;Pointer;Click;Tap;Double;Button;Trackball;Scroll;" msgstr "Styrepute;Peker;Klikk;Tapp;Dobbel;Knapp;Styrekule;Rull;" -#: panels/network/cc-network-panel.c:661 panels/network/cc-wifi-panel.ui:307 +#: panels/multitasking/cc-multitasking-panel.ui:56 +msgid "_Hot Corner" +msgstr "" + +#: panels/multitasking/cc-multitasking-panel.ui:57 +msgid "Touch the top-left corner to open the Activities Overview." +msgstr "" + +#: panels/multitasking/cc-multitasking-panel.ui:84 +msgid "_Active Screen Edges" +msgstr "" + +#: panels/multitasking/cc-multitasking-panel.ui:85 +msgid "" +"Drag windows against the top, left, and right screen edges to resize them." +msgstr "" + +#: panels/multitasking/cc-multitasking-panel.ui:114 +#, fuzzy +#| msgid "Colorspace: " +msgid "Workspaces" +msgstr "Fargeområde: " + +#: panels/multitasking/cc-multitasking-panel.ui:139 +msgid "_Dynamic workspaces" +msgstr "" + +#: panels/multitasking/cc-multitasking-panel.ui:140 +#, fuzzy +#| msgid "Automatically Delete Temporary _Files" +msgid "Automatically removes empty workspaces." +msgstr "Tøm _midlertidige filer automatisk" + +#: panels/multitasking/cc-multitasking-panel.ui:158 +msgid "_Fixed number of workspaces" +msgstr "" + +#: panels/multitasking/cc-multitasking-panel.ui:159 +msgid "Specify a number of permanent workspaces." +msgstr "" + +#: panels/multitasking/cc-multitasking-panel.ui:179 +msgid "_Number of Workspaces" +msgstr "" + +#: panels/multitasking/cc-multitasking-panel.ui:200 +#, fuzzy +#| msgid "%s Monitor" +msgid "Multi-Monitor" +msgstr "%s skjerm" + +#: panels/multitasking/cc-multitasking-panel.ui:225 +msgid "Workspaces on _primary display only" +msgstr "" + +#: panels/multitasking/cc-multitasking-panel.ui:252 +msgid "Workspaces on all d_isplays" +msgstr "" + +#: panels/multitasking/cc-multitasking-panel.ui:282 +#, fuzzy +#| msgctxt "Wacom action-type" +#| msgid "Application defined" +msgid "Application Switching" +msgstr "Program definert" + +#: panels/multitasking/cc-multitasking-panel.ui:307 +msgid "Include applications from all _workspaces" +msgstr "" + +#: panels/multitasking/cc-multitasking-panel.ui:325 +msgid "Include applications from the _current workspace only" +msgstr "" + +#: panels/multitasking/gnome-multitasking-panel.desktop.in.in:3 +msgid "Multitasking" +msgstr "" + +#: panels/multitasking/gnome-multitasking-panel.desktop.in.in:4 +msgid "Manage preferences for productivity and multitasking" +msgstr "" + +#. Translators: Search terms to find the Search panel. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#: panels/multitasking/gnome-multitasking-panel.desktop.in.in:15 +msgid "Multitasking;Multitask;Productivity;Customize;Desktop;" +msgstr "" + +#: panels/network/cc-network-panel.c:686 panels/network/cc-wifi-panel.ui:307 msgid "Oops, something has gone wrong. Please contact your software vendor." msgstr "Oi! Noe gikk galt. Kontakt programvareleverandøren." -#: panels/network/cc-network-panel.c:667 +#: panels/network/cc-network-panel.c:692 msgid "NetworkManager needs to be running." msgstr "NetworkManager må kjøre." @@ -2750,23 +2872,23 @@ msgid "%s (SSID: %s)" msgstr "%s (SSID: %s)" -#: panels/network/cc-wifi-connection-row.c:268 +#: panels/network/cc-wifi-connection-row.c:264 msgid "Insecure network (WEP)" msgstr "Usikret nettverk (WEP)" -#: panels/network/cc-wifi-connection-row.c:273 +#: panels/network/cc-wifi-connection-row.c:269 msgid "Secure network (WPA)" msgstr "Sikret nettverk (WPA)" -#: panels/network/cc-wifi-connection-row.c:278 +#: panels/network/cc-wifi-connection-row.c:274 msgid "Secure network (WPA2)" msgstr "Sikret nettverk (WPA2)" -#: panels/network/cc-wifi-connection-row.c:283 +#: panels/network/cc-wifi-connection-row.c:279 msgid "Secure network (WPA3)" msgstr "Sikret nettverk (WPA3)" -#: panels/network/cc-wifi-connection-row.c:288 +#: panels/network/cc-wifi-connection-row.c:284 msgid "Secure network" msgstr "Sikret nettverk" @@ -2775,8 +2897,8 @@ msgid "Connected" msgstr "Tilkoblet" -#: panels/network/cc-wifi-connection-row.ui:100 -#: panels/network/net-device-ethernet.c:327 +#: panels/network/cc-wifi-connection-row.ui:102 +#: panels/network/net-device-ethernet.c:333 #: panels/network/network-bluetooth.ui:76 #: panels/network/network-ethernet.ui:111 panels/network/network-mobile.ui:450 #: panels/network/network-vpn.ui:77 @@ -2793,11 +2915,17 @@ "Hvis du slår på hotspot vil du bli koblet fra %s, og det vil ikke være mulig " "å aksessere internett via Wi-Fi." -#: panels/network/cc-wifi-hotspot-dialog.c:265 +#: panels/network/cc-wifi-hotspot-dialog.c:267 msgid "Must have a minimum of 8 characters" msgstr "Må bestå av minst 8 tegn" -#: panels/network/cc-wifi-hotspot-dialog.c:479 +#: panels/network/cc-wifi-hotspot-dialog.c:272 +#, fuzzy, c-format +#| msgid "Must have a minimum of 8 characters" +msgid "Must have a maximum of %d characters" +msgstr "Må bestå av minst 8 tegn" + +#: panels/network/cc-wifi-hotspot-dialog.c:488 msgid "Turn On Wi-Fi Hotspot?" msgstr "Slå på trådløst aksesspunkt?" @@ -2821,6 +2949,7 @@ #: panels/printers/new-printer-dialog.ui:389 #: panels/printers/pp-jobs-dialog.ui:70 #: panels/user-accounts/cc-add-user-dialog.ui:249 +#: panels/wwan/cc-wwan-apn-dialog.ui:214 msgid "Password" msgstr "Passord" @@ -2866,7 +2995,7 @@ msgid "Make sure you have a Wi-Fi adapter plugged and turned on" msgstr "Sjekk at du har et Wi-Fi-kort som er satt inn og slått på" -#: panels/network/cc-wifi-panel.ui:134 +#: panels/network/cc-wifi-panel.ui:134 panels/wwan/cc-wwan-panel.ui:143 msgid "Airplane Mode On" msgstr "Flymodus er på" @@ -2936,167 +3065,167 @@ msgstr "Profil %d" #. TRANSLATORS: this WEP WiFi security -#: panels/network/connection-editor/ce-page-details.c:95 +#: panels/network/connection-editor/ce-page-details.c:97 #: panels/network/net-device-wifi.c:228 msgid "WEP" msgstr "WEP" #. TRANSLATORS: this WPA WiFi security -#: panels/network/connection-editor/ce-page-details.c:99 +#: panels/network/connection-editor/ce-page-details.c:101 #: panels/network/net-device-wifi.c:233 msgid "WPA" msgstr "WPA" #. TRANSLATORS: this WPA3 WiFi security -#: panels/network/connection-editor/ce-page-details.c:105 +#: panels/network/connection-editor/ce-page-details.c:107 msgid "WPA3" msgstr "WPA3" #. TRANSLATORS: this Enhanced Open WiFi security -#: panels/network/connection-editor/ce-page-details.c:110 +#: panels/network/connection-editor/ce-page-details.c:112 #: panels/network/connection-editor/ce-page-security.c:279 msgid "Enhanced Open" msgstr "Enhanced Open" #. TRANSLATORS: this WPA WiFi security -#: panels/network/connection-editor/ce-page-details.c:117 +#: panels/network/connection-editor/ce-page-details.c:119 msgid "WPA2" msgstr "WPA2" #. TRANSLATORS: this Enterprise WiFi security -#: panels/network/connection-editor/ce-page-details.c:123 +#: panels/network/connection-editor/ce-page-details.c:125 msgid "Enterprise" msgstr "Bedrift" -#: panels/network/connection-editor/ce-page-details.c:128 +#: panels/network/connection-editor/ce-page-details.c:130 #: panels/network/net-device-wifi.c:218 msgctxt "Wifi security" msgid "None" msgstr "Ingen" -#: panels/network/connection-editor/ce-page-details.c:149 +#: panels/network/connection-editor/ce-page-details.c:151 msgid "Never" msgstr "Aldri" -#: panels/network/connection-editor/ce-page-details.c:164 -#: panels/network/net-device-ethernet.c:107 +#: panels/network/connection-editor/ce-page-details.c:166 +#: panels/network/net-device-ethernet.c:108 #, c-format msgid "%i day ago" msgid_plural "%i days ago" msgstr[0] "%i dag siden" msgstr[1] "%i dager siden" -#: panels/network/connection-editor/ce-page-details.c:291 +#: panels/network/connection-editor/ce-page-details.c:293 #, c-format msgid "%d Mb/s (%1.1f GHz)" msgstr "%d Mb/s (%1.1f GHz)" #. Translators: network device speed -#: panels/network/connection-editor/ce-page-details.c:293 -#: panels/network/net-device-ethernet.c:214 +#: panels/network/connection-editor/ce-page-details.c:295 +#: panels/network/net-device-ethernet.c:220 #, c-format msgid "%d Mb/s" msgstr "%d Mb/s" -#: panels/network/connection-editor/ce-page-details.c:306 +#: panels/network/connection-editor/ce-page-details.c:308 msgid "2.4 GHz / 5 GHz" msgstr "2.4 GHz / 5 GHz" -#: panels/network/connection-editor/ce-page-details.c:308 +#: panels/network/connection-editor/ce-page-details.c:310 msgid "2.4 GHz" msgstr "2.4 GHz" -#: panels/network/connection-editor/ce-page-details.c:310 +#: panels/network/connection-editor/ce-page-details.c:312 msgid "5 GHz" msgstr "5 GHz" -#: panels/network/connection-editor/ce-page-details.c:330 +#: panels/network/connection-editor/ce-page-details.c:332 msgctxt "Signal strength" msgid "None" msgstr "Ingen" -#: panels/network/connection-editor/ce-page-details.c:332 +#: panels/network/connection-editor/ce-page-details.c:334 msgctxt "Signal strength" msgid "Weak" msgstr "Svak" -#: panels/network/connection-editor/ce-page-details.c:334 +#: panels/network/connection-editor/ce-page-details.c:336 msgctxt "Signal strength" msgid "Ok" msgstr "Ok" -#: panels/network/connection-editor/ce-page-details.c:336 +#: panels/network/connection-editor/ce-page-details.c:338 msgctxt "Signal strength" msgid "Good" msgstr "God" -#: panels/network/connection-editor/ce-page-details.c:338 +#: panels/network/connection-editor/ce-page-details.c:340 msgctxt "Signal strength" msgid "Excellent" msgstr "Utmerket" -#: panels/network/connection-editor/ce-page-details.c:410 +#: panels/network/connection-editor/ce-page-details.c:407 #: panels/network/connection-editor/details-page.ui:108 -#: panels/network/net-device-ethernet.c:149 -#: panels/network/net-device-mobile.c:447 +#: panels/network/net-device-ethernet.c:147 +#: panels/network/net-device-mobile.c:442 msgid "IPv4 Address" msgstr "IPv4-adresse" -#: panels/network/connection-editor/ce-page-details.c:411 +#: panels/network/connection-editor/ce-page-details.c:408 #: panels/network/connection-editor/details-page.ui:126 -#: panels/network/net-device-ethernet.c:150 -#: panels/network/net-device-mobile.c:448 panels/network/network-mobile.ui:218 +#: panels/network/net-device-ethernet.c:149 +#: panels/network/net-device-mobile.c:443 panels/network/network-mobile.ui:218 msgid "IPv6 Address" msgstr "IPv6-adresse" -#: panels/network/connection-editor/ce-page-details.c:414 -#: panels/network/connection-editor/ce-page-details.c:415 +#: panels/network/connection-editor/ce-page-details.c:410 +#: panels/network/connection-editor/ce-page-details.c:411 #: panels/network/net-device-ethernet.c:152 #: panels/network/net-device-ethernet.c:154 -#: panels/network/net-device-mobile.c:451 -#: panels/network/net-device-mobile.c:452 panels/network/network-mobile.ui:201 +#: panels/network/net-device-mobile.c:446 +#: panels/network/net-device-mobile.c:447 panels/network/network-mobile.ui:201 msgid "IP Address" msgstr "IP-adresse" -#: panels/network/connection-editor/ce-page-details.c:419 -#: panels/network/net-device-ethernet.c:163 -#: panels/network/net-device-mobile.c:456 +#: panels/network/connection-editor/ce-page-details.c:415 +#: panels/network/net-device-ethernet.c:169 +#: panels/network/net-device-mobile.c:451 msgid "DNS4" msgstr "DNS4" -#: panels/network/connection-editor/ce-page-details.c:420 -#: panels/network/net-device-ethernet.c:164 -#: panels/network/net-device-mobile.c:457 +#: panels/network/connection-editor/ce-page-details.c:416 +#: panels/network/net-device-ethernet.c:170 +#: panels/network/net-device-mobile.c:452 msgid "DNS6" msgstr "DNS6" -#: panels/network/connection-editor/ce-page-details.c:423 -#: panels/network/connection-editor/ce-page-details.c:424 +#: panels/network/connection-editor/ce-page-details.c:418 +#: panels/network/connection-editor/ce-page-details.c:419 #: panels/network/connection-editor/details-page.ui:199 #: panels/network/connection-editor/details-page.ui:218 #: panels/network/connection-editor/ip4-page.ui:211 #: panels/network/connection-editor/ip6-page.ui:225 -#: panels/network/net-device-ethernet.c:166 -#: panels/network/net-device-ethernet.c:168 -#: panels/network/net-device-mobile.c:459 -#: panels/network/net-device-mobile.c:460 panels/network/network-mobile.ui:253 +#: panels/network/net-device-ethernet.c:172 +#: panels/network/net-device-ethernet.c:174 +#: panels/network/net-device-mobile.c:454 +#: panels/network/net-device-mobile.c:455 panels/network/network-mobile.ui:253 #: panels/network/network-mobile.ui:271 msgid "DNS" msgstr "DNS" -#: panels/network/connection-editor/ce-page-details.c:457 +#: panels/network/connection-editor/ce-page-details.c:471 msgid "Forget Connection" msgstr "Glem tilkobling" -#: panels/network/connection-editor/ce-page-details.c:459 +#: panels/network/connection-editor/ce-page-details.c:473 msgid "Remove Connection Profile" msgstr "Fjern tilkoblingsprofil" -#: panels/network/connection-editor/ce-page-details.c:461 +#: panels/network/connection-editor/ce-page-details.c:475 msgid "Remove VPN" msgstr "Fjern VPN" -#: panels/network/connection-editor/ce-page-details.c:479 +#: panels/network/connection-editor/ce-page-details.c:493 msgid "Details" msgstr "Detaljer" @@ -3110,21 +3239,21 @@ msgid "Identity" msgstr "Identitet" -#: panels/network/connection-editor/ce-page-ip4.c:244 -#: panels/network/connection-editor/ce-page-ip6.c:225 +#: panels/network/connection-editor/ce-page-ip4.c:245 +#: panels/network/connection-editor/ce-page-ip6.c:226 msgid "Delete Address" msgstr "Slett adresse" -#: panels/network/connection-editor/ce-page-ip4.c:399 -#: panels/network/connection-editor/ce-page-ip6.c:369 +#: panels/network/connection-editor/ce-page-ip4.c:400 +#: panels/network/connection-editor/ce-page-ip6.c:370 msgid "Delete Route" msgstr "Slett rute" -#: panels/network/connection-editor/ce-page-ip4.c:750 +#: panels/network/connection-editor/ce-page-ip4.c:754 msgid "IPv4" msgstr "IPv4" -#: panels/network/connection-editor/ce-page-ip6.c:722 +#: panels/network/connection-editor/ce-page-ip6.c:726 msgid "IPv6" msgstr "IPv6" @@ -3164,6 +3293,7 @@ msgstr "WPA3 personlig" #: panels/network/connection-editor/details-page.ui:18 +#: panels/wwan/cc-wwan-details-dialog.ui:105 msgid "Signal Strength" msgstr "Signalstyrke" @@ -3181,7 +3311,9 @@ msgstr "Støttede frekvenser" #: panels/network/connection-editor/details-page.ui:180 -#: panels/network/net-device-ethernet.c:160 +#: panels/network/net-device-ethernet.c:161 +#: panels/network/net-device-ethernet.c:163 +#: panels/network/net-device-ethernet.c:165 #: panels/network/network-mobile.ui:235 msgid "Default Route" msgstr "Forvalgt rute" @@ -3445,19 +3577,19 @@ msgid "Network;Wireless;Wi-Fi;Wifi;IP;LAN;Broadband;DNS;Hotspot;" msgstr "Nettverk;Trådløst;Wi-Fi;Wifi;IP;LAN;Bredbånd;DNS;Aksesspunkt;" -#: panels/network/net-device-ethernet.c:95 +#: panels/network/net-device-ethernet.c:96 msgid "never" msgstr "aldri" -#: panels/network/net-device-ethernet.c:103 +#: panels/network/net-device-ethernet.c:104 msgid "today" msgstr "i dag" -#: panels/network/net-device-ethernet.c:105 +#: panels/network/net-device-ethernet.c:106 msgid "yesterday" msgstr "i går" -#: panels/network/net-device-ethernet.c:174 +#: panels/network/net-device-ethernet.c:180 msgid "Last used" msgstr "Sist brukt" @@ -3466,7 +3598,7 @@ #. * profile. It is also used to display ethernet in the #. * device list. #. -#: panels/network/net-device-ethernet.c:261 +#: panels/network/net-device-ethernet.c:267 #: panels/network/network-bluetooth.ui:38 panels/network/network-ethernet.ui:18 msgid "Wired" msgstr "Kablet" @@ -3506,21 +3638,21 @@ msgstr "Trådløs enhet støtter ikke hotspotmodus" #: panels/network/net-proxy.c:69 -#: panels/notifications/cc-notifications-panel.c:266 -#: panels/power/cc-power-panel.c:1133 panels/power/cc-power-panel.c:1144 -#: panels/universal-access/cc-ua-panel.c:328 -#: panels/universal-access/cc-ua-panel.c:603 -#: panels/universal-access/cc-ua-panel.c:613 -#: panels/universal-access/cc-ua-panel.c:625 -#: panels/universal-access/cc-ua-panel.c:668 -#: panels/universal-access/cc-ua-panel.ui:300 -#: panels/universal-access/cc-ua-panel.ui:346 -#: panels/universal-access/cc-ua-panel.ui:392 -#: panels/universal-access/cc-ua-panel.ui:498 -#: panels/universal-access/cc-ua-panel.ui:651 -#: panels/universal-access/cc-ua-panel.ui:697 -#: panels/universal-access/cc-ua-panel.ui:743 -#: panels/universal-access/cc-ua-panel.ui:927 +#: panels/notifications/cc-notifications-panel.c:260 +#: panels/power/cc-power-panel.c:856 panels/power/cc-power-panel.c:867 +#: panels/universal-access/cc-ua-panel.c:331 +#: panels/universal-access/cc-ua-panel.c:612 +#: panels/universal-access/cc-ua-panel.c:622 +#: panels/universal-access/cc-ua-panel.c:634 +#: panels/universal-access/cc-ua-panel.c:677 +#: panels/universal-access/cc-ua-panel.ui:338 +#: panels/universal-access/cc-ua-panel.ui:384 +#: panels/universal-access/cc-ua-panel.ui:430 +#: panels/universal-access/cc-ua-panel.ui:536 +#: panels/universal-access/cc-ua-panel.ui:689 +#: panels/universal-access/cc-ua-panel.ui:735 +#: panels/universal-access/cc-ua-panel.ui:781 +#: panels/universal-access/cc-ua-panel.ui:965 msgid "Off" msgstr "Av" @@ -3555,6 +3687,7 @@ msgstr "Slå enhet av" #: panels/network/network-mobile.ui:29 +#: panels/wwan/cc-wwan-details-dialog.ui:286 msgid "IMEI" msgstr "IMEI" @@ -3652,8 +3785,7 @@ msgstr "Ikke administrert" #. TRANSLATORS: device status -#. TRANSLATORS: Status of Parental Controls setup -#: panels/network/panel-common.c:45 panels/user-accounts/cc-user-panel.c:928 +#: panels/network/panel-common.c:45 msgid "Unavailable" msgstr "Ikke tilgjengelig" @@ -3878,7 +4010,7 @@ msgstr "Puk for SIM kreves" #. TRANSLATORS: device status reason -#: panels/network/panel-common.c:252 +#: panels/network/panel-common.c:252 panels/wwan/cc-wwan-errors-private.h:53 msgid "SIM wrong" msgstr "Feil SIM" @@ -3997,7 +4129,7 @@ #: panels/sharing/cc-sharing-panel.ui:202 #: panels/user-accounts/cc-add-user-dialog.ui:310 #: panels/user-accounts/cc-add-user-dialog.ui:547 -#: panels/user-accounts/cc-user-panel.ui:478 +#: panels/user-accounts/cc-user-panel.ui:365 msgid "_Password" msgstr "_Passord" @@ -4322,21 +4454,21 @@ msgid "Show Message C_ontent on Lock Screen" msgstr "Vis meldingsinnh_old på låseskjerm" -#: panels/notifications/cc-notifications-panel.c:266 -#: panels/power/cc-power-panel.c:1139 panels/power/cc-power-panel.c:1146 -#: panels/universal-access/cc-ua-panel.c:328 -#: panels/universal-access/cc-ua-panel.c:603 -#: panels/universal-access/cc-ua-panel.c:613 -#: panels/universal-access/cc-ua-panel.c:625 -#: panels/universal-access/cc-ua-panel.c:668 +#: panels/notifications/cc-notifications-panel.c:260 +#: panels/power/cc-power-panel.c:862 panels/power/cc-power-panel.c:869 +#: panels/universal-access/cc-ua-panel.c:331 +#: panels/universal-access/cc-ua-panel.c:612 +#: panels/universal-access/cc-ua-panel.c:622 +#: panels/universal-access/cc-ua-panel.c:634 +#: panels/universal-access/cc-ua-panel.c:677 msgid "On" msgstr "På" -#: panels/notifications/cc-notifications-panel.ui:48 +#: panels/notifications/cc-notifications-panel.ui:44 msgid "_Do Not Disturb" msgstr "_Ikke forstyrr" -#: panels/notifications/cc-notifications-panel.ui:56 +#: panels/notifications/cc-notifications-panel.ui:52 msgid "_Lock Screen Notifications" msgstr "Vars_linger på låseskjerm" @@ -4349,26 +4481,26 @@ msgid "Notifications;Banner;Message;Tray;Popup;" msgstr "Varslinger;Banner;Melding;Trau;Oppsprett;" -#: panels/online-accounts/cc-online-accounts-panel.c:150 +#: panels/online-accounts/cc-online-accounts-panel.c:148 msgctxt "Online Account" msgid "Other" msgstr "Annen" #. translators: This is the title of the "Show Account" dialog. The #. * %s is the name of the provider. e.g., 'Google'. -#: panels/online-accounts/cc-online-accounts-panel.c:622 +#: panels/online-accounts/cc-online-accounts-panel.c:576 #, c-format msgid "%s Account" msgstr "%s-konto" -#: panels/online-accounts/cc-online-accounts-panel.c:916 +#: panels/online-accounts/cc-online-accounts-panel.c:870 msgid "Error removing account" msgstr "Feil ved fjerning av konto" #. Translators: The %s is the username (eg., debarshi.ray@gmail.com #. * or rishi). #. -#: panels/online-accounts/cc-online-accounts-panel.c:982 +#: panels/online-accounts/cc-online-accounts-panel.c:936 #, c-format msgid "%s removed" msgstr "%s fjernet" @@ -4412,7 +4544,7 @@ msgid "Add an account" msgstr "Legg til konto" -#: panels/online-accounts/online-accounts.ui:238 +#: panels/online-accounts/online-accounts.ui:223 msgid "Remove Account" msgstr "Fjern konto" @@ -4542,8 +4674,8 @@ msgstr "Inndataenhet for spill" #. TRANSLATORS: secondary battery, misc -#: panels/power/cc-battery-row.c:218 panels/power/cc-power-panel.c:413 -#: panels/power/cc-power-panel.c:1779 +#: panels/power/cc-battery-row.c:218 panels/power/cc-power-panel.c:384 +#: panels/power/cc-power-panel.ui:63 msgid "Battery" msgstr "Batteri" @@ -4557,53 +4689,84 @@ msgid "Extra" msgstr "Ekstra" -#: panels/power/cc-power-panel.c:411 +#: panels/power/cc-power-panel.c:382 msgid "Batteries" msgstr "Batterier" -#: panels/power/cc-power-panel.c:632 +#: panels/power/cc-power-panel.c:644 msgid "When _idle" msgstr "Når led_ig" -#: panels/power/cc-power-panel.c:1081 +#: panels/power/cc-power-panel.c:796 msgid "Suspend" msgstr "Hvilemodus" -#: panels/power/cc-power-panel.c:1082 +#: panels/power/cc-power-panel.c:797 msgid "Power Off" msgstr "Slå av" -#: panels/power/cc-power-panel.c:1083 +#: panels/power/cc-power-panel.c:798 msgid "Hibernate" msgstr "Dvalemodus" -#: panels/power/cc-power-panel.c:1084 +#: panels/power/cc-power-panel.c:799 msgid "Nothing" msgstr "Ingenting" -#: panels/power/cc-power-panel.c:1135 +#: panels/power/cc-power-panel.c:858 msgid "When on battery power" msgstr "På batteristrøm" -#: panels/power/cc-power-panel.c:1137 +#: panels/power/cc-power-panel.c:860 msgid "When plugged in" msgstr "Når den er koblet til strøm" -#: panels/power/cc-power-panel.c:1277 +#: panels/power/cc-power-panel.c:980 +#, fuzzy +#| msgid "Never" +msgctxt "Idle time" +msgid "Never" +msgstr "Aldri" + +#: panels/power/cc-power-panel.c:1066 msgid "Automatic suspend" msgstr "Automatisk hvilemodus" -#: panels/power/cc-power-panel.c:1799 -msgid "Power Mode" -msgstr "Strømmodus" +#: panels/power/cc-power-panel.c:1171 +msgid "" +"Performance mode temporarily disabled due to high operating temperature." +msgstr "" -#: panels/power/cc-power-panel.c:1809 -msgid "Power Saving" -msgstr "Strømsparing" +#: panels/power/cc-power-panel.c:1173 +msgid "" +"Lap detected: performance mode temporarily unavailable. Move the device to a " +"stable surface to restore." +msgstr "" -#: panels/power/cc-power-panel.c:1817 -msgid "Suspend & Power Button" -msgstr "Hvilemodus og strømknapp" +#: panels/power/cc-power-panel.c:1175 +#, fuzzy +#| msgid "Performance mode unavailable" +msgid "Performance mode temporarily disabled." +msgstr "Ytelsesmodus ikke tilgjengelig" + +#: panels/power/cc-power-panel.c:1218 +msgid "" +"Low battery: power saver enabled. Previous mode will be restored when " +"battery is sufficiently charged." +msgstr "" + +#. translators: "%s" is an application name +#: panels/power/cc-power-panel.c:1226 +#, c-format +msgid "Power Saver mode activated by “%s”." +msgstr "" + +#. translators: "%s" is an application name +#: panels/power/cc-power-panel.c:1230 +#, fuzzy, c-format +#| msgid "Performance mode unavailable" +msgid "Performance mode activated by “%s”." +msgstr "Ytelsesmodus ikke tilgjengelig" #. Translators: Option for "Delay" in "Automatic suspend" dialog. #: panels/power/cc-power-panel.ui:13 @@ -4665,117 +4828,140 @@ msgid "2 hours" msgstr "2 timer" -#: panels/power/cc-power-panel.ui:227 +#: panels/power/cc-power-panel.ui:107 +msgid "Power Mode" +msgstr "Strømmodus" + +#: panels/power/cc-power-panel.ui:108 msgid "Affects system performance and power usage." msgstr "Påvirker systemets ytelse og strømbruk." -#: panels/power/cc-power-panel.ui:297 -msgid "_Screen Brightness" -msgstr "Lysstyrke for _skjerm" +#: panels/power/cc-power-panel.ui:142 +#, fuzzy +#| msgid "Power Saving" +msgid "Power Saving Options" +msgstr "Strømsparing" -#: panels/power/cc-power-panel.ui:346 -msgid "Automatic Brightness" +#: panels/power/cc-power-panel.ui:146 +#, fuzzy +#| msgid "Automatic Brightness" +msgid "Automatic Screen Brightness" msgstr "Automatisk lysstyrke" -#: panels/power/cc-power-panel.ui:382 -msgid "_Keyboard Brightness" -msgstr "Lysstyr_ke for tastatur" - -#: panels/power/cc-power-panel.ui:431 -msgid "Dim Screen When Inactive" -msgstr "Demp skjermen når inaktiv" - -#: panels/power/cc-power-panel.ui:466 -msgid "_Blank Screen" -msgstr "_Slå av skjerm" +#: panels/power/cc-power-panel.ui:147 +msgid "Screen brightness adjusts to the surrounding light." +msgstr "" + +#: panels/power/cc-power-panel.ui:160 +#, fuzzy +#| msgid "Screen" +msgid "Dim Screen" +msgstr "Skjerm" + +#: panels/power/cc-power-panel.ui:161 +msgid "Reduces the screen brightness when the computer is inactive." +msgstr "" + +#: panels/power/cc-power-panel.ui:174 +#, fuzzy +#| msgid "Screen _Reader" +msgid "Screen _Blank" +msgstr "Skjermlese_r" + +#: panels/power/cc-power-panel.ui:175 +msgid "Turns the screen off after a period of inactivity." +msgstr "" + +#: panels/power/cc-power-panel.ui:183 +#, fuzzy +#| msgid "Power Saver" +msgid "Automatic Power Saver" +msgstr "Strømsparing" + +#: panels/power/cc-power-panel.ui:184 +msgid "Enables power saver mode when battery is low." +msgstr "" -#: panels/power/cc-power-panel.ui:502 +#: panels/power/cc-power-panel.ui:198 msgid "_Automatic Suspend" msgstr "_Automatisk hvilemodus" -#: panels/power/cc-power-panel.ui:547 -msgid "_Wi-Fi" -msgstr "_Trådløs" - -#: panels/power/cc-power-panel.ui:559 -msgid "Wi-Fi can be turned off to save power." -msgstr "Wi-Fi kan slås av for å spare strøm." - -#: panels/power/cc-power-panel.ui:609 -msgid "_Mobile Broadband" -msgstr "_Mobilt bredbånd" +#: panels/power/cc-power-panel.ui:199 +msgid "Pauses the computer after a period of inactivity." +msgstr "" -#: panels/power/cc-power-panel.ui:621 -msgid "Mobile broadband (LTE, 4G, 3G, etc.) can be turned off to save power." -msgstr "Mobilt bredbånd (3G, 4G, LTE, etc.) kan slås av for å spare strøm." - -#: panels/power/cc-power-panel.ui:671 -msgid "_Bluetooth" -msgstr "_Blåtann" - -#: panels/power/cc-power-panel.ui:683 -msgid "Bluetooth can be turned off to save power." -msgstr "Blåtann kan slås av for å spare strøm." +#: panels/power/cc-power-panel.ui:217 +msgid "Suspend & Power Button" +msgstr "Hvilemodus og strømknapp" -#: panels/power/cc-power-panel.ui:759 +#: panels/power/cc-power-panel.ui:221 msgid "Po_wer Button Behavior" msgstr "Handling for str_ømknapp" -#: panels/power/cc-power-panel.ui:797 +#: panels/power/cc-power-panel.ui:229 msgid "Show Battery _Percentage" msgstr "Vis batteri_prosent" -#: panels/power/cc-power-panel.ui:872 +#: panels/power/cc-power-panel.ui:268 msgid "Automatic Suspend" msgstr "Automatisk hvilemodus" -#: panels/power/cc-power-panel.ui:897 +#: panels/power/cc-power-panel.ui:293 msgid "_Plugged In" msgstr "Når den er _koblet til strøm" -#: panels/power/cc-power-panel.ui:913 +#: panels/power/cc-power-panel.ui:309 msgid "On _Battery Power" msgstr "På _batteristrøm" -#: panels/power/cc-power-panel.ui:958 panels/power/cc-power-panel.ui:1018 +#: panels/power/cc-power-panel.ui:354 panels/power/cc-power-panel.ui:414 #: panels/universal-access/cc-repeat-keys-dialog.ui:74 msgid "Delay" msgstr "Pause" -#: panels/power/cc-power-profile-row.c:62 +#: panels/power/cc-power-profile-row.c:61 msgid "Lap detected: performance mode unavailable" msgstr "Fang oppdaget: ytelsesmodus ikke tilgjengelig" -#: panels/power/cc-power-profile-row.c:64 +#: panels/power/cc-power-profile-row.c:63 msgid "High hardware temperature: performance mode unavailable" msgstr "Høy temperatur: ytelsesmodus ikke tilgjengelig" -#: panels/power/cc-power-profile-row.c:65 +#: panels/power/cc-power-profile-row.c:64 msgid "Performance mode unavailable" msgstr "Ytelsesmodus ikke tilgjengelig" -#: panels/power/cc-power-profile-row.c:87 -#: panels/power/cc-power-profile-row.c:187 +#: panels/power/cc-power-profile-row.c:86 +#: panels/power/cc-power-profile-row.c:185 msgid "High performance and power usage." msgstr "Høy ytelse og strømbruk." -#: panels/power/cc-power-profile-row.c:186 +#: panels/power/cc-power-profile-row.c:184 +#, fuzzy +#| msgid "Performance" +msgctxt "Power profile" msgid "Performance" msgstr "Ytelse" -#: panels/power/cc-power-profile-row.c:192 -msgid "Balanced Power" -msgstr "Balansert strømbruk" +#: panels/power/cc-power-profile-row.c:188 +#, fuzzy +#| msgid "Balance" +msgctxt "Power profile" +msgid "Balanced" +msgstr "Balanse" -#: panels/power/cc-power-profile-row.c:193 +#: panels/power/cc-power-profile-row.c:189 msgid "Standard performance and power usage." msgstr "Standard ytelse og strømbruk." -#: panels/power/cc-power-profile-row.c:198 +#: panels/power/cc-power-profile-row.c:192 +#, fuzzy +#| msgid "Power Saver" +msgctxt "Power profile" msgid "Power Saver" msgstr "Strømsparing" -#: panels/power/cc-power-profile-row.c:199 +#: panels/power/cc-power-profile-row.c:193 msgid "Reduced performance and power usage." msgstr "Redusert ytelse og strømbruk." @@ -4807,7 +4993,7 @@ #. Translators: This is a username on a print server. #: panels/printers/authentication-dialog.ui:80 #: panels/printers/new-printer-dialog.ui:366 -#: panels/printers/pp-jobs-dialog.ui:57 +#: panels/printers/pp-jobs-dialog.ui:57 panels/wwan/cc-wwan-apn-dialog.ui:188 msgid "Username" msgstr "Brukernavn" @@ -4823,16 +5009,22 @@ msgstr "Skriver «%s» er slettet" #. Translators: Addition of the new printer failed. -#: panels/printers/cc-printers-panel.c:930 +#: panels/printers/cc-printers-panel.c:926 msgid "Failed to add new printer." msgstr "Klarte ikke å legge til ny skriver." #. Translators: The XML file containing user interface can not be loaded -#: panels/printers/cc-printers-panel.c:1209 +#: panels/printers/cc-printers-panel.c:1225 #, c-format msgid "Could not load ui: %s" msgstr "Klarte ikke å laste brukergrensesnitt: %s" +#: panels/printers/cc-printers-panel.c:1293 +#, fuzzy +#| msgid "Unlock to Add Users and Change Settings" +msgid "Unlock to Add Printers and Change Settings" +msgstr "Lås opp for å legge til brukere og endre innstillinger" + #: panels/printers/gnome-printers-panel.desktop.in.in:3 msgid "Printers" msgstr "Skrivere" @@ -4850,8 +5042,8 @@ #. Translators: This is the title presented at top of the dialog. #: panels/printers/new-printer-dialog.ui:29 -#: panels/printers/pp-new-printer-dialog.c:344 -#: panels/printers/pp-new-printer-dialog.c:401 +#: panels/printers/pp-new-printer-dialog.c:254 +#: panels/printers/pp-new-printer-dialog.c:311 msgid "Add Printer" msgstr "Legg til skriver" @@ -4859,6 +5051,7 @@ #. Translators: This buttons submits the credentials for the selected server. #: panels/printers/new-printer-dialog.ui:96 #: panels/printers/new-printer-dialog.ui:111 +#: panels/wwan/cc-wwan-device-page.ui:90 msgid "_Unlock" msgstr "Lås _opp" @@ -4905,7 +5098,7 @@ #. Translators: Name of column showing printer drivers #: panels/printers/pp-details-dialog.ui:122 -#: panels/printers/pp-ppd-selection-dialog.c:239 +#: panels/printers/pp-ppd-selection-dialog.c:236 msgid "Driver" msgstr "Driver" @@ -5080,55 +5273,55 @@ msgid "No Active Printer Jobs" msgstr "Ingen aktive utskriftsjobber" -#: panels/printers/pp-new-printer-dialog.c:359 +#: panels/printers/pp-new-printer-dialog.c:269 msgid "Unlock Print Server" msgstr "Lås opp utskriftstjener" #. Translators: Samba server needs authentication of the user to show list of its printers. -#: panels/printers/pp-new-printer-dialog.c:363 +#: panels/printers/pp-new-printer-dialog.c:273 #, c-format msgid "Unlock %s." msgstr "Lås opp %s." #. Translators: Samba server needs authentication of the user to show list of its printers. -#: panels/printers/pp-new-printer-dialog.c:367 +#: panels/printers/pp-new-printer-dialog.c:277 #, c-format msgid "Enter username and password to view printers on %s." msgstr "Oppgi brukernavn og passord for å vise skrivere på %s." -#: panels/printers/pp-new-printer-dialog.c:790 +#: panels/printers/pp-new-printer-dialog.c:587 msgid "Searching for Printers" msgstr "Søker etter skrivere" #. Translators: The found device is a printer connected via USB -#: panels/printers/pp-new-printer-dialog.c:1578 +#: panels/printers/pp-new-printer-dialog.c:1375 msgid "USB" msgstr "USB" #. Translators: The found device is a printer connected via serial port -#: panels/printers/pp-new-printer-dialog.c:1583 +#: panels/printers/pp-new-printer-dialog.c:1380 msgid "Serial Port" msgstr "Seriellport" #. Translators: The found device is a printer connected via parallel port -#: panels/printers/pp-new-printer-dialog.c:1590 +#: panels/printers/pp-new-printer-dialog.c:1387 msgid "Parallel Port" msgstr "Parallellport" #. Translators: Location of found network printer (e.g. Kitchen, Reception) -#: panels/printers/pp-new-printer-dialog.c:1632 +#: panels/printers/pp-new-printer-dialog.c:1429 #, c-format msgid "Location: %s" msgstr "Plassering: %s" #. Translators: Network address of found printer -#: panels/printers/pp-new-printer-dialog.c:1637 +#: panels/printers/pp-new-printer-dialog.c:1434 #, c-format msgid "Address: %s" msgstr "Adresse: %s" #. Translators: This item is a server which needs authentication to show its printers -#: panels/printers/pp-new-printer-dialog.c:1664 +#: panels/printers/pp-new-printer-dialog.c:1461 msgid "Server requires authentication" msgstr "Tjener krever autentisering" @@ -5269,7 +5462,8 @@ msgstr "Ingen forhåndsfiltrering" #. Translators: Name of column showing printer manufacturers -#: panels/printers/pp-ppd-selection-dialog.c:223 +#: panels/printers/pp-ppd-selection-dialog.c:220 +#: panels/wwan/cc-wwan-details-dialog.ui:203 msgid "Manufacturer" msgstr "Produsent" @@ -5418,6 +5612,7 @@ msgstr "Fjern skriver" #: panels/printers/printer-entry.ui:193 +#: panels/wwan/cc-wwan-details-dialog.ui:229 msgid "Model" msgstr "Modell" @@ -5437,8 +5632,10 @@ #. Translators: This button adds new printer. #: panels/printers/printers.ui:12 -msgid "Add…" -msgstr "Legg til …" +#, fuzzy +#| msgid "Add a Printer…" +msgid "Add Printer…" +msgstr "Legg til en skriver …" #: panels/printers/printers.ui:187 msgid "No printers" @@ -5459,7 +5656,7 @@ "ser ikke ut til å være tilgjengelig." #: panels/region/cc-format-chooser.c:148 panels/region/cc-format-chooser.c:189 -#: panels/region/cc-format-chooser.ui:6 panels/region/cc-region-panel.ui:159 +#: panels/region/cc-format-chooser.ui:6 panels/region/cc-region-panel.ui:203 msgid "Formats" msgstr "Formater" @@ -5525,40 +5722,48 @@ msgid "Paper" msgstr "Papir" -#: panels/region/cc-region-panel.c:740 -msgid "Login _Screen" +#: panels/region/cc-region-panel.ui:42 +#, fuzzy +#| msgid "%s Account" +msgid "My Account" +msgstr "%s-konto" + +#: panels/region/cc-region-panel.ui:53 +#, fuzzy +#| msgid "Login _Screen" +msgid "Login Screen" msgstr "Påloggings_skjerm" -#: panels/region/cc-region-panel.ui:34 +#: panels/region/cc-region-panel.ui:78 msgid "Language" msgstr "Språk" -#: panels/region/cc-region-panel.ui:45 +#: panels/region/cc-region-panel.ui:89 msgid "The language used for text in windows and web pages." msgstr "Språk som brukes for tekst i vinduer og på nettsider." -#: panels/region/cc-region-panel.ui:85 -#: panels/user-accounts/cc-user-panel.ui:406 +#: panels/region/cc-region-panel.ui:129 +#: panels/user-accounts/cc-user-panel.ui:311 msgid "_Language" msgstr "_Språk" -#: panels/region/cc-region-panel.ui:120 +#: panels/region/cc-region-panel.ui:164 msgid "Restart the session for changes to take effect" msgstr "Start økten på nytt for at endringene skal tre i kraft" -#: panels/region/cc-region-panel.ui:135 +#: panels/region/cc-region-panel.ui:179 msgid "Restart…" msgstr "Start på nytt …" -#: panels/region/cc-region-panel.ui:170 +#: panels/region/cc-region-panel.ui:214 msgid "The format used for numbers, dates, and currencies." msgstr "Format for tall, datoer og valutaer." -#: panels/region/cc-region-panel.ui:204 +#: panels/region/cc-region-panel.ui:248 msgid "_Formats" msgstr "_Formater" -#: panels/region/cc-region-panel.ui:231 +#: panels/region/cc-region-panel.ui:275 msgid "Login settings are used by all users when logging into the system" msgstr "" "Innstillinger for pålogging brukes av alle brukere når de logger på systemet" @@ -5568,8 +5773,10 @@ msgstr "Region og språk" #: panels/region/gnome-region-panel.desktop.in.in:4 -msgid "" -"Select your display language, formats, keyboard layouts and input sources" +#, fuzzy +#| msgid "" +#| "Select your display language, formats, keyboard layouts and input sources" +msgid "Select your display language and formats" msgstr "Velg språk for visning, formater, tastaturutforminger og inndatakilder" #. Translators: Search terms to find the Region and Language panel. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! @@ -5732,7 +5939,7 @@ msgstr "_OK" #: panels/search/cc-search-locations-dialog.ui:9 -#: panels/search/cc-search-panel.ui:59 +#: panels/search/cc-search-panel.ui:57 msgid "Search Locations" msgstr "Søkelokasjoner" @@ -5757,7 +5964,7 @@ msgid "Other" msgstr "Annen" -#: panels/search/cc-search-panel.c:152 +#: panels/search/cc-search-panel.c:151 msgid "No applications found" msgstr "Fant ingen programmer" @@ -6008,51 +6215,51 @@ msgid "Volume Levels" msgstr "Volumnivåer" -#: panels/sound/cc-sound-panel.ui:65 +#: panels/sound/cc-sound-panel.ui:63 msgid "Output" msgstr "Utgang" -#: panels/sound/cc-sound-panel.ui:92 +#: panels/sound/cc-sound-panel.ui:90 msgid "Output Device" msgstr "Utgangsenhet" -#: panels/sound/cc-sound-panel.ui:115 +#: panels/sound/cc-sound-panel.ui:113 msgid "Test" msgstr "Test" -#: panels/sound/cc-sound-panel.ui:146 panels/sound/cc-sound-panel.ui:323 +#: panels/sound/cc-sound-panel.ui:144 panels/sound/cc-sound-panel.ui:319 msgid "Configuration" msgstr "Konfigurasjon" -#: panels/sound/cc-sound-panel.ui:179 +#: panels/sound/cc-sound-panel.ui:177 msgid "Balance" msgstr "Balanse" -#: panels/sound/cc-sound-panel.ui:206 +#: panels/sound/cc-sound-panel.ui:204 msgid "Fade" msgstr "Fade" -#: panels/sound/cc-sound-panel.ui:233 +#: panels/sound/cc-sound-panel.ui:231 msgid "Subwoofer" msgstr "Basselement" -#: panels/sound/cc-sound-panel.ui:255 +#: panels/sound/cc-sound-panel.ui:251 msgid "Input" msgstr "Inngang" -#: panels/sound/cc-sound-panel.ui:282 +#: panels/sound/cc-sound-panel.ui:278 msgid "Input Device" msgstr "Inngangsenhet" -#: panels/sound/cc-sound-panel.ui:356 +#: panels/sound/cc-sound-panel.ui:352 msgid "Volume" msgstr "Volum" -#: panels/sound/cc-sound-panel.ui:378 +#: panels/sound/cc-sound-panel.ui:372 msgid "Alert Sound" msgstr "Varsellyd" -#: panels/sound/cc-volume-slider.c:115 +#: panels/sound/cc-volume-slider.c:117 msgctxt "volume" msgid "100%" msgstr "100%" @@ -6367,7 +6574,7 @@ msgstr "Pip når Num Lock eller Caps Lock slås på eller av." #: panels/universal-access/cc-sound-keys-dialog.ui:45 -#: panels/universal-access/cc-ua-panel.ui:374 +#: panels/universal-access/cc-ua-panel.ui:412 msgid "_Sound Keys" msgstr "_Lydtaster" @@ -6470,32 +6677,32 @@ #. translators: the labels will read: #. * Cursor Size: Default -#: panels/universal-access/cc-ua-panel.c:348 +#: panels/universal-access/cc-ua-panel.c:351 msgctxt "cursor size" msgid "Default" msgstr "Forvalgt" -#: panels/universal-access/cc-ua-panel.c:351 +#: panels/universal-access/cc-ua-panel.c:354 msgctxt "cursor size" msgid "Medium" msgstr "Middels" -#: panels/universal-access/cc-ua-panel.c:354 +#: panels/universal-access/cc-ua-panel.c:357 msgctxt "cursor size" msgid "Large" msgstr "Stor" -#: panels/universal-access/cc-ua-panel.c:357 +#: panels/universal-access/cc-ua-panel.c:360 msgctxt "cursor size" msgid "Larger" msgstr "Større" -#: panels/universal-access/cc-ua-panel.c:360 +#: panels/universal-access/cc-ua-panel.c:363 msgctxt "cursor size" msgid "Largest" msgstr "Størst" -#: panels/universal-access/cc-ua-panel.c:364 +#: panels/universal-access/cc-ua-panel.c:367 #, c-format msgid "%d pixel" msgid_plural "%d pixels" @@ -6518,65 +6725,69 @@ msgid "_Large Text" msgstr "_Stor tekst" -#: panels/universal-access/cc-ua-panel.ui:235 +#: panels/universal-access/cc-ua-panel.ui:238 +msgid "Enable A_nimations" +msgstr "" + +#: panels/universal-access/cc-ua-panel.ui:273 msgid "C_ursor Size" msgstr "Mark_ørstørrelse" -#: panels/universal-access/cc-ua-panel.ui:282 +#: panels/universal-access/cc-ua-panel.ui:320 #: panels/universal-access/cc-zoom-options-dialog.ui:91 msgid "_Zoom" msgstr "_Zoom" -#: panels/universal-access/cc-ua-panel.ui:328 +#: panels/universal-access/cc-ua-panel.ui:366 msgid "Screen _Reader" msgstr "Skjermlese_r" -#: panels/universal-access/cc-ua-panel.ui:436 +#: panels/universal-access/cc-ua-panel.ui:474 msgid "Hearing" msgstr "Hørsel" -#: panels/universal-access/cc-ua-panel.ui:480 +#: panels/universal-access/cc-ua-panel.ui:518 #: panels/universal-access/cc-visual-alerts-dialog.ui:68 msgid "_Visual Alerts" msgstr "_Synlige varsel" -#: panels/universal-access/cc-ua-panel.ui:588 +#: panels/universal-access/cc-ua-panel.ui:626 msgid "Screen _Keyboard" msgstr "Tastatur på s_kjermen" -#: panels/universal-access/cc-ua-panel.ui:633 +#: panels/universal-access/cc-ua-panel.ui:671 msgid "R_epeat Keys" msgstr "R_epeter taster" -#: panels/universal-access/cc-ua-panel.ui:679 +#: panels/universal-access/cc-ua-panel.ui:717 msgid "Cursor _Blinking" msgstr "Markør_blinking" -#: panels/universal-access/cc-ua-panel.ui:725 +#: panels/universal-access/cc-ua-panel.ui:763 msgid "_Typing Assist (AccessX)" msgstr "_Skriveassistent (AccessX)" -#: panels/universal-access/cc-ua-panel.ui:786 +#: panels/universal-access/cc-ua-panel.ui:824 msgid "Pointing & Clicking" msgstr "Pek og klikk" -#: panels/universal-access/cc-ua-panel.ui:832 +#: panels/universal-access/cc-ua-panel.ui:870 msgid "_Mouse Keys" msgstr "_Mustaster" -#: panels/universal-access/cc-ua-panel.ui:877 +#: panels/universal-access/cc-ua-panel.ui:915 msgid "_Locate Pointer" msgstr "_Finn peker" -#: panels/universal-access/cc-ua-panel.ui:909 +#: panels/universal-access/cc-ua-panel.ui:947 msgid "_Click Assist" msgstr "_Klikkassistent" -#: panels/universal-access/cc-ua-panel.ui:955 +#: panels/universal-access/cc-ua-panel.ui:993 msgid "_Double-Click Delay" msgstr "Pause for _dobbeltklikk" -#: panels/universal-access/cc-ua-panel.ui:975 +#: panels/universal-access/cc-ua-panel.ui:1013 msgid "Double-Click Delay" msgstr "Pause for dobbeltklikk" @@ -7075,7 +7286,7 @@ msgid "_Enterprise Login" msgstr "Innlogging for b_edrifter" -#: panels/user-accounts/cc-avatar-chooser.c:220 +#: panels/user-accounts/cc-avatar-chooser.c:225 msgid "Browse for more pictures" msgstr "Se etter flere bilder" @@ -7339,7 +7550,7 @@ #. Translators: This is a time format string in the style of "22:58". #. It indicates a login time which follows a date. #: panels/user-accounts/cc-login-history-dialog.c:173 -#: panels/user-accounts/cc-user-panel.c:766 +#: panels/user-accounts/cc-user-panel.c:771 msgctxt "login date-time" msgid "%k:%M" msgstr "%k.%M" @@ -7347,7 +7558,7 @@ #. Translators: This indicates a login date-time. #. The first %s is a date, and the second %s a time. #: panels/user-accounts/cc-login-history-dialog.c:176 -#: panels/user-accounts/cc-user-panel.c:770 +#: panels/user-accounts/cc-user-panel.c:775 #, c-format msgctxt "login date-time" msgid "%s, %s" @@ -7435,26 +7646,26 @@ msgid "Your account" msgstr "Din konto" -#: panels/user-accounts/cc-user-panel.c:397 +#: panels/user-accounts/cc-user-panel.c:402 msgid "Failed to delete user" msgstr "Klarte ikke å slette bruker" -#: panels/user-accounts/cc-user-panel.c:452 -#: panels/user-accounts/cc-user-panel.c:507 -#: panels/user-accounts/cc-user-panel.c:553 +#: panels/user-accounts/cc-user-panel.c:457 +#: panels/user-accounts/cc-user-panel.c:512 +#: panels/user-accounts/cc-user-panel.c:558 msgid "Failed to revoke remotely managed user" msgstr "Klarte ikke å trekke tilbake eksternt håndtert bruker" -#: panels/user-accounts/cc-user-panel.c:602 +#: panels/user-accounts/cc-user-panel.c:607 msgid "You cannot delete your own account." msgstr "Du kan ikke slette din egen konto." -#: panels/user-accounts/cc-user-panel.c:611 +#: panels/user-accounts/cc-user-panel.c:616 #, c-format msgid "%s is still logged in" msgstr "%s er fremdeles logget inn" -#: panels/user-accounts/cc-user-panel.c:615 +#: panels/user-accounts/cc-user-panel.c:620 msgid "" "Deleting a user while they are logged in can leave the system in an " "inconsistent state." @@ -7462,12 +7673,12 @@ "Hvis du sletter en innlogget bruker kan systemet ende opp i en inkonsistent " "tilstand." -#: panels/user-accounts/cc-user-panel.c:624 +#: panels/user-accounts/cc-user-panel.c:629 #, c-format msgid "Do you want to keep %s’s files?" msgstr "Vil du beholde filene til %s?" -#: panels/user-accounts/cc-user-panel.c:628 +#: panels/user-accounts/cc-user-panel.c:633 msgid "" "It is possible to keep the home directory, mail spool and temporary files " "around when deleting a user account." @@ -7475,54 +7686,55 @@ "Det er mulig å beholde hjemmemappe, e-postkø og midlertidige filer når du " "sletter en brukerkonto." -#: panels/user-accounts/cc-user-panel.c:631 +#: panels/user-accounts/cc-user-panel.c:636 msgid "_Delete Files" msgstr "_Slett filer" -#: panels/user-accounts/cc-user-panel.c:632 +#: panels/user-accounts/cc-user-panel.c:637 msgid "_Keep Files" msgstr "_Behold filer" -#: panels/user-accounts/cc-user-panel.c:646 +#: panels/user-accounts/cc-user-panel.c:651 #, c-format msgid "Are you sure you want to revoke remotely managed %s’s account?" msgstr "" "Er du sikker på at du vil trekke tilbake eksternt håndtert konto for %s?" -#: panels/user-accounts/cc-user-panel.c:650 +#: panels/user-accounts/cc-user-panel.c:655 msgid "_Delete" msgstr "_Slett" -#: panels/user-accounts/cc-user-panel.c:700 +#: panels/user-accounts/cc-user-panel.c:705 msgctxt "Password mode" msgid "Account disabled" msgstr "Kontoen er sperret" -#: panels/user-accounts/cc-user-panel.c:708 +#: panels/user-accounts/cc-user-panel.c:713 msgctxt "Password mode" msgid "To be set at next login" msgstr "Velges ved neste innlogging" -#: panels/user-accounts/cc-user-panel.c:711 +#: panels/user-accounts/cc-user-panel.c:716 msgctxt "Password mode" msgid "None" msgstr "Ingen" -#: panels/user-accounts/cc-user-panel.c:754 +#: panels/user-accounts/cc-user-panel.c:759 msgid "Logged in" msgstr "Logget inn" #. TRANSLATORS: Status of Parental Controls setup -#: panels/user-accounts/cc-user-panel.c:841 +#: panels/user-accounts/cc-user-panel.c:846 #: panels/user-accounts/cc-user-panel.c:935 +#: panels/wwan/cc-wwan-device-page.c:477 msgid "Enabled" msgstr "Slått på" -#: panels/user-accounts/cc-user-panel.c:1254 +#: panels/user-accounts/cc-user-panel.c:1259 msgid "Failed to contact the accounts service" msgstr "Klarte ikke å kontakte kontotjenesten" -#: panels/user-accounts/cc-user-panel.c:1256 +#: panels/user-accounts/cc-user-panel.c:1261 msgid "Please make sure that the AccountService is installed and enabled." msgstr "Sjekk at kontotjenesten er installert og aktivert." @@ -7530,7 +7742,7 @@ #. * We split the line in 2 here to "make it look good", as there's #. * no good way to do this in GTK+ for tooltips. See: #. * https://bugzilla.gnome.org/show_bug.cgi?id=657168 -#: panels/user-accounts/cc-user-panel.c:1288 +#: panels/user-accounts/cc-user-panel.c:1293 msgid "" "To make changes,\n" "click the * icon first" @@ -7538,12 +7750,12 @@ "Klikk på *-ikonet\n" "for å gjøre endringer" -#: panels/user-accounts/cc-user-panel.c:1361 +#: panels/user-accounts/cc-user-panel.c:1366 msgid "Delete the selected user account" msgstr "Slett valgt brukerkonto" -#: panels/user-accounts/cc-user-panel.c:1373 -#: panels/user-accounts/cc-user-panel.c:1492 +#: panels/user-accounts/cc-user-panel.c:1378 +#: panels/user-accounts/cc-user-panel.c:1489 msgid "" "To delete the selected user account,\n" "click the * icon first" @@ -7551,7 +7763,7 @@ "Klikk på *-ikonet\n" "for å slette valgt brukerkonto" -#: panels/user-accounts/cc-user-panel.c:1545 +#: panels/user-accounts/cc-user-panel.c:1535 msgid "Unlock to Add Users and Change Settings" msgstr "Lås opp for å legge til brukere og endre innstillinger" @@ -7571,20 +7783,20 @@ msgid "Restart Now" msgstr "Start på nytt nå" -#: panels/user-accounts/cc-user-panel.ui:153 -#: panels/user-accounts/cc-user-panel.ui:169 +#: panels/user-accounts/cc-user-panel.ui:157 +#: panels/user-accounts/cc-user-panel.ui:173 msgid "User Icon" msgstr "Ikon for bruker" -#: panels/user-accounts/cc-user-panel.ui:245 +#: panels/user-accounts/cc-user-panel.ui:249 msgid "Account Settings" msgstr "Kontoinnstillinger" -#: panels/user-accounts/cc-user-panel.ui:272 +#: panels/user-accounts/cc-user-panel.ui:267 msgid "_Administrator" msgstr "_Administrator" -#: panels/user-accounts/cc-user-panel.ui:301 +#: panels/user-accounts/cc-user-panel.ui:268 msgid "" "Administrators can add and remove other users, and can change settings for " "all users." @@ -7592,40 +7804,40 @@ "Administratorer kan legge til og fjerne andre brukere, og kan endre " "innstillinger for alle brukere." -#: panels/user-accounts/cc-user-panel.ui:333 +#: panels/user-accounts/cc-user-panel.ui:284 msgid "_Parental Controls" msgstr "_Foreldrekontroll" -#: panels/user-accounts/cc-user-panel.ui:377 +#: panels/user-accounts/cc-user-panel.ui:285 msgid "Open the Parental Controls application." msgstr "Åpne programmet for foreldrekontroll" -#: panels/user-accounts/cc-user-panel.ui:452 +#: panels/user-accounts/cc-user-panel.ui:347 msgid "Authentication & Login" msgstr "Autentisering og innlogging" -#: panels/user-accounts/cc-user-panel.ui:521 +#: panels/user-accounts/cc-user-panel.ui:390 msgid "_Fingerprint Login" msgstr "Innlogging med _fingeravtrykk" -#: panels/user-accounts/cc-user-panel.ui:563 +#: panels/user-accounts/cc-user-panel.ui:415 msgid "A_utomatic Login" msgstr "A_utomatisk pålogging" -#: panels/user-accounts/cc-user-panel.ui:593 +#: panels/user-accounts/cc-user-panel.ui:429 msgid "Account Activity" msgstr "Kontoaktivitet" -#: panels/user-accounts/cc-user-panel.ui:634 +#: panels/user-accounts/cc-user-panel.ui:460 msgid "Remove User…" msgstr "Fjern bruker …" #. Translators: This is the empty state page label which states that there are no users to show in the panel. -#: panels/user-accounts/cc-user-panel.ui:673 +#: panels/user-accounts/cc-user-panel.ui:501 msgid "No Users Found" msgstr "Fant ingen brukere" -#: panels/user-accounts/cc-user-panel.ui:683 +#: panels/user-accounts/cc-user-panel.ui:511 msgid "Unlock to add a user account." msgstr "Lås opp for å legge til en brukerkonto." @@ -7639,8 +7851,10 @@ #. Translators: Search terms to find the Users panel. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! #: panels/user-accounts/data/gnome-user-accounts-panel.desktop.in.in:20 -msgid "Login;Name;Fingerprint;Avatar;Logo;Face;Password;" -msgstr "Login;Navn;Fingeravtrykk;Avatar;Logo;Ansikt;Passord;" +msgid "" +"Login;Name;Fingerprint;Avatar;Logo;Face;Password;Parental Controls;Screen " +"Time;App Restrictions;Web Restrictions;Usage;Usage Limit;Kid;Child;" +msgstr "" #. Translators: This button enrolls the computer in the domain in order to use enterprise logins. #: panels/user-accounts/data/join-dialog.ui:39 @@ -7828,6 +8042,7 @@ msgstr "Det nye passordet inneholder ikke nok spesielle tegn" #: panels/user-accounts/run-passwd.c:526 +#: panels/wwan/cc-wwan-errors-private.h:72 #, c-format msgid "Unknown error" msgstr "Ukjent feil" @@ -8073,6 +8288,543 @@ msgid "Tip Pressure Feel" msgstr "Følelse av trykk på tuppen" +#: panels/wwan/cc-wwan-apn-dialog.ui:11 +#, fuzzy +#| msgid "Access Options" +msgid "Access Points" +msgstr "Alternativer for tilgang" + +#: panels/wwan/cc-wwan-apn-dialog.ui:160 +#, fuzzy +#| msgid "VPN" +msgid "APN" +msgstr "VPN" + +#: panels/wwan/cc-wwan-data.c:543 +msgid "Operation Cancelled" +msgstr "" + +#: panels/wwan/cc-wwan-data.c:546 +msgid "Error: Access denied changing settings" +msgstr "" + +#: panels/wwan/cc-wwan-data.c:549 +msgid "Error: Mobile Equipment Error" +msgstr "" + +#: panels/wwan/cc-wwan-details-dialog.c:81 +msgid "Not Registered" +msgstr "" + +#: panels/wwan/cc-wwan-details-dialog.c:85 +#, fuzzy +#| msgid "Yesterday" +msgid "Registered" +msgstr "I går" + +#: panels/wwan/cc-wwan-details-dialog.c:89 +msgid "Roaming" +msgstr "" + +#: panels/wwan/cc-wwan-details-dialog.c:93 +#, fuzzy +#| msgid "Search" +msgid "Searching" +msgstr "Søk" + +#: panels/wwan/cc-wwan-details-dialog.c:97 +msgid "Denied" +msgstr "" + +#: panels/wwan/cc-wwan-details-dialog.ui:4 +#, fuzzy +#| msgid "Details" +msgid "Modem Details" +msgstr "Detaljer" + +#: panels/wwan/cc-wwan-details-dialog.ui:33 +#, fuzzy +#| msgid "Status:" +msgid "Modem Status" +msgstr "Status:" + +#: panels/wwan/cc-wwan-details-dialog.ui:53 +msgid "Carrier" +msgstr "" + +#: panels/wwan/cc-wwan-details-dialog.ui:79 +#, fuzzy +#| msgid "Network Name" +msgid "Network Type" +msgstr "Nettverksnavn" + +#: panels/wwan/cc-wwan-details-dialog.ui:131 +#, fuzzy +#| msgid "Networks" +msgid "Network Status" +msgstr "Nettverk" + +#: panels/wwan/cc-wwan-details-dialog.ui:158 +#, fuzzy +#| msgid "Numbers" +msgid "Own Number" +msgstr "Tall" + +#: panels/wwan/cc-wwan-details-dialog.ui:185 +#, fuzzy +#| msgid "Printer Details" +msgid "Device Details" +msgstr "Detaljer for skriver" + +#: panels/wwan/cc-wwan-details-dialog.ui:257 +#, fuzzy +#| msgid "Firmware missing" +msgid "Firmware Version" +msgstr "Fastvare mangler" + +#: panels/wwan/cc-wwan-device.c:988 +msgid "2G Only" +msgstr "" + +#: panels/wwan/cc-wwan-device.c:991 +msgid "3G Only" +msgstr "" + +#: panels/wwan/cc-wwan-device.c:994 +msgid "4G Only" +msgstr "" + +#: panels/wwan/cc-wwan-device.c:1003 +msgid "2G, 3G, 4G (Preferred)" +msgstr "" + +#: panels/wwan/cc-wwan-device.c:1005 +msgid "2G, 3G (Preferred), 4G" +msgstr "" + +#: panels/wwan/cc-wwan-device.c:1007 +msgid "2G (Preferred), 3G, 4G" +msgstr "" + +#: panels/wwan/cc-wwan-device.c:1009 +msgid "2G, 3G, 4G" +msgstr "" + +#: panels/wwan/cc-wwan-device.c:1015 +msgid "3G, 4G (Preferred)" +msgstr "" + +#: panels/wwan/cc-wwan-device.c:1017 +msgid "3G (Preferred), 4G" +msgstr "" + +#: panels/wwan/cc-wwan-device.c:1019 +msgid "3G, 4G" +msgstr "" + +#: panels/wwan/cc-wwan-device.c:1025 +msgid "2G, 4G (Preferred)" +msgstr "" + +#: panels/wwan/cc-wwan-device.c:1027 +msgid "2G (Preferred), 4G" +msgstr "" + +#: panels/wwan/cc-wwan-device.c:1029 +msgid "2G, 4G" +msgstr "" + +#: panels/wwan/cc-wwan-device.c:1035 +msgid "2G, 3G (Preferred)" +msgstr "" + +#: panels/wwan/cc-wwan-device.c:1037 +msgid "2G (Preferred), 3G" +msgstr "" + +#: panels/wwan/cc-wwan-device.c:1039 +msgid "2G, 3G" +msgstr "" + +#: panels/wwan/cc-wwan-device.c:1043 +#, fuzzy +#| msgid "Unknown" +msgctxt "Network mode" +msgid "Unknown" +msgstr "Ukjent" + +#: panels/wwan/cc-wwan-device-page.c:188 +msgid "Unlock SIM card" +msgstr "" + +#: panels/wwan/cc-wwan-device-page.c:189 panels/wwan/cc-wwan-device-page.c:237 +#, fuzzy +#| msgid "_Unlock" +msgid "Unlock" +msgstr "Lås _opp" + +#: panels/wwan/cc-wwan-device-page.c:194 +#, c-format +msgid "Please provide PIN code for SIM %d" +msgstr "" + +#: panels/wwan/cc-wwan-device-page.c:195 +msgid "Enter PIN to unlock your SIM card" +msgstr "" + +#: panels/wwan/cc-wwan-device-page.c:199 +#, c-format +msgid "Please provide PUK code for SIM %d" +msgstr "" + +#: panels/wwan/cc-wwan-device-page.c:200 +msgid "Enter PUK to unlock your SIM card" +msgstr "" + +#: panels/wwan/cc-wwan-device-page.c:218 +#, c-format +msgid "Wrong password entered. You have %1$u try left" +msgid_plural "Wrong password entered. You have %1$u tries left" +msgstr[0] "" +msgstr[1] "" + +#: panels/wwan/cc-wwan-device-page.c:221 +#, c-format +msgid "You have %u try left" +msgid_plural "You have %u tries left" +msgstr[0] "" +msgstr[1] "" + +#: panels/wwan/cc-wwan-device-page.c:226 +msgid "Wrong password entered." +msgstr "" + +#: panels/wwan/cc-wwan-device-page.c:271 +msgid "PUK code should be an 8 digit number" +msgstr "" + +#: panels/wwan/cc-wwan-device-page.c:295 +msgid "Enter New PIN" +msgstr "" + +#: panels/wwan/cc-wwan-device-page.c:299 +msgid "PIN code should be a 4-8 digit number" +msgstr "" + +#: panels/wwan/cc-wwan-device-page.c:317 +#, fuzzy +#| msgid "Unlock %s." +msgid "Unlocking..." +msgstr "Lås opp %s." + +#: panels/wwan/cc-wwan-device-page.ui:34 +msgid "No SIM" +msgstr "" + +#: panels/wwan/cc-wwan-device-page.ui:45 +msgid "Insert a SIM card to use this modem" +msgstr "" + +#: panels/wwan/cc-wwan-device-page.ui:78 +msgid "SIM Locked" +msgstr "" + +#: panels/wwan/cc-wwan-device-page.ui:139 +#, fuzzy +#| msgid "_Mobile Broadband" +msgid "_Mobile Data" +msgstr "_Mobilt bredbånd" + +#: panels/wwan/cc-wwan-device-page.ui:140 +msgid "Access data using mobile network" +msgstr "" + +#: panels/wwan/cc-wwan-device-page.ui:151 +msgid "_Data Roaming" +msgstr "" + +#: panels/wwan/cc-wwan-device-page.ui:152 +msgid "Use mobile data when roaming" +msgstr "" + +#: panels/wwan/cc-wwan-device-page.ui:177 +#, fuzzy +#| msgid "Network Name" +msgid "_Network Mode" +msgstr "Nettverksnavn" + +#: panels/wwan/cc-wwan-device-page.ui:187 +#, fuzzy +#| msgid "Network" +msgid "N_etwork" +msgstr "Nettverk" + +#: panels/wwan/cc-wwan-device-page.ui:199 +#, fuzzy +#| msgctxt "Printer Option Group" +#| msgid "Advanced" +msgid "Advanced" +msgstr "Avansert" + +#: panels/wwan/cc-wwan-device-page.ui:225 +#, fuzzy +#| msgid "Access Options" +msgid "_Access Point Names" +msgstr "Alternativer for tilgang" + +#: panels/wwan/cc-wwan-device-page.ui:235 +#, fuzzy +#| msgid "Screen Lock" +msgid "_SIM Lock" +msgstr "Lås skjerm" + +#: panels/wwan/cc-wwan-device-page.ui:236 +msgid "Lock SIM with PIN" +msgstr "" + +#: panels/wwan/cc-wwan-device-page.ui:246 +#, fuzzy +#| msgid "%s Details" +msgid "M_odem Details" +msgstr "Detaljer for %s" + +#: panels/wwan/cc-wwan-errors-private.h:40 +#, fuzzy +#| msgid "PIN check failed" +msgid "Phone failure" +msgstr "PIN-sjekk mislyktes" + +#: panels/wwan/cc-wwan-errors-private.h:41 +#, fuzzy +#| msgid "Turn VPN connection off" +msgid "No connection to phone" +msgstr "Slå av VPN-forbindelse" + +#: panels/wwan/cc-wwan-errors-private.h:43 +msgid "Operation not allowed" +msgstr "" + +#: panels/wwan/cc-wwan-errors-private.h:44 +msgid "Operation not supported" +msgstr "" + +#: panels/wwan/cc-wwan-errors-private.h:48 +#, fuzzy +#| msgid "SIM Card not inserted" +msgid "SIM not inserted" +msgstr "SIM-kort er ikke satt inn" + +#: panels/wwan/cc-wwan-errors-private.h:49 +#, fuzzy +#| msgid "SIM Pin required" +msgid "SIM PIN required" +msgstr "Pin for SIM kreves" + +#: panels/wwan/cc-wwan-errors-private.h:50 +#, fuzzy +#| msgid "SIM Pin required" +msgid "SIM PUK required" +msgstr "Pin for SIM kreves" + +#: panels/wwan/cc-wwan-errors-private.h:51 +msgid "SIM failure" +msgstr "" + +#: panels/wwan/cc-wwan-errors-private.h:52 +msgid "SIM busy" +msgstr "" + +#: panels/wwan/cc-wwan-errors-private.h:54 +#, fuzzy +#| msgid "Current _Password" +msgid "Incorrect password" +msgstr "Gjeldende _passord" + +#: panels/wwan/cc-wwan-errors-private.h:55 +#, fuzzy +#| msgid "SIM Pin required" +msgid "SIM PIN2 required" +msgstr "Pin for SIM kreves" + +#: panels/wwan/cc-wwan-errors-private.h:56 +#, fuzzy +#| msgid "SIM Pin required" +msgid "SIM PUK2 required" +msgstr "Pin for SIM kreves" + +#: panels/wwan/cc-wwan-errors-private.h:59 +#, fuzzy +#| msgid "No stylus found" +msgid "Not found" +msgstr "Fant ingen penn" + +#: panels/wwan/cc-wwan-errors-private.h:61 +#, fuzzy +#| msgid "Networks" +msgid "No network service" +msgstr "Nettverk" + +#: panels/wwan/cc-wwan-errors-private.h:62 +#, fuzzy +#| msgid "Network Name" +msgid "Network timeout" +msgstr "Nettverksnavn" + +#: panels/wwan/cc-wwan-errors-private.h:75 +#, fuzzy +#| msgid "AutoIP service failed" +msgid "GPRS services not allowed" +msgstr "AutoIP-tjeneste mislyktes" + +#: panels/wwan/cc-wwan-errors-private.h:78 +msgid "Roaming not allowed in this location area" +msgstr "" + +#: panels/wwan/cc-wwan-errors-private.h:82 +msgid "Unspecified GPRS error" +msgstr "" + +#: panels/wwan/cc-wwan-errors-private.h:91 +#, fuzzy +#| msgctxt "print job" +#| msgid "Canceled" +msgid "Action Cancelled" +msgstr "Avbrutt" + +#: panels/wwan/cc-wwan-errors-private.h:94 +msgid "Access denied" +msgstr "" + +#: panels/wwan/cc-wwan-errors-private.h:103 +#, fuzzy +#| msgid "Unknown error" +msgid "Unknown Error" +msgstr "Ukjent feil" + +#: panels/wwan/cc-wwan-mode-dialog.ui:4 +#, fuzzy +#| msgid "Network Name" +msgid "Network Mode" +msgstr "Nettverksnavn" + +#: panels/wwan/cc-wwan-mode-dialog.ui:44 +#: panels/wwan/cc-wwan-network-dialog.ui:175 +#: panels/wwan/cc-wwan-sim-lock-dialog.c:230 +msgid "_Set" +msgstr "" + +#: panels/wwan/cc-wwan-network-dialog.ui:46 panels/wwan/cc-wwan-panel.ui:39 +#: panels/wwan/cc-wwan-sim-lock-dialog.ui:101 +#, fuzzy +#| msgid "_Close" +msgid "Close" +msgstr "_Lukk" + +#: panels/wwan/cc-wwan-network-dialog.ui:84 +#, fuzzy +#| msgid "Automatic" +msgid "_Automatic" +msgstr "Automatisk" + +#: panels/wwan/cc-wwan-network-dialog.ui:100 +#, fuzzy +#| msgid "Visible Networks" +msgid "Choose Network" +msgstr "Synlige nettverk" + +#: panels/wwan/cc-wwan-network-dialog.ui:118 +msgid "Refresh Network Providers" +msgstr "" + +#: panels/wwan/cc-wwan-panel.c:453 panels/wwan/cc-wwan-panel.c:482 +#, c-format +msgid "SIM %d" +msgstr "" + +#: panels/wwan/cc-wwan-panel.ui:101 +#, fuzzy +#| msgid "No Wi-Fi Adapter Found" +msgid "No WWAN Adapter Found" +msgstr "Fant ingen trådløse kort" + +#: panels/wwan/cc-wwan-panel.ui:112 +#, fuzzy +#| msgid "Make sure you have a Wi-Fi adapter plugged and turned on" +msgid "Make sure you have a Wireless Wan/Cellular device" +msgstr "Sjekk at du har et Wi-Fi-kort som er satt inn og slått på" + +#: panels/wwan/cc-wwan-panel.ui:154 +#, fuzzy +#| msgid "Bluetooth is disabled when airplane mode is on." +msgid "Wireless Wan is disabled when airplane mode is on" +msgstr "Bluetooth er slått av når flymodus er på." + +#: panels/wwan/cc-wwan-panel.ui:163 +#, fuzzy +#| msgid "Turn Off Airplane Mode" +msgid "_Turn off Airplane Mode" +msgstr "Slå av flymodus" + +#: panels/wwan/cc-wwan-panel.ui:210 +#, fuzzy +#| msgid "Forget Connection" +msgid "Data Connection" +msgstr "Glem tilkobling" + +#: panels/wwan/cc-wwan-panel.ui:224 +#, fuzzy +#| msgid "SIM Card not inserted" +msgid "SIM card used for internet" +msgstr "SIM-kort er ikke satt inn" + +#: panels/wwan/cc-wwan-panel.ui:332 +#, fuzzy +#| msgid "_Enable by Keyboard" +msgid "Enable Mobile Network" +msgstr "Slå _på via tastatur" + +#: panels/wwan/cc-wwan-sim-lock-dialog.ui:11 +#, fuzzy +#| msgid "Screen Lock" +msgid "SIM Lock" +msgstr "Lås skjerm" + +#: panels/wwan/cc-wwan-sim-lock-dialog.ui:22 +msgid "_Next" +msgstr "" + +#: panels/wwan/cc-wwan-sim-lock-dialog.ui:141 +msgid "_Lock SIM with PIN" +msgstr "" + +#: panels/wwan/cc-wwan-sim-lock-dialog.ui:158 +#, fuzzy +#| msgid "Ch_ange" +msgid "Change PIN" +msgstr "_Endre" + +#: panels/wwan/cc-wwan-sim-lock-dialog.ui:256 +msgid "Enter current PIN to change SIM lock settings" +msgstr "" + +#: panels/wwan/gnome-wwan-panel.desktop.in.in:3 +#, fuzzy +#| msgid "Visible Networks" +msgid "Mobile Network" +msgstr "Synlige nettverk" + +#: panels/wwan/gnome-wwan-panel.desktop.in.in:4 +#, fuzzy +#| msgid "Configure Removable Media settings" +msgid "Configure Telephony and mobile data connections" +msgstr "Konfigurer innstillinger for avtagbare medier" + +#. FIXME +#. Translators: Search terms to find the WWAN panel. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#: panels/wwan/gnome-wwan-panel.desktop.in.in:17 +msgid "cellular;wwan;telephony;sim;mobile;" +msgstr "" + #: shell/appdata/gnome-control-center.appdata.xml.in:7 msgid "GNOME Settings" msgstr "GNOME kontrollpanel" @@ -8117,7 +8869,7 @@ msgid "Privacy" msgstr "Personvern" -#: shell/cc-panel-loader.c:288 +#: shell/cc-panel-loader.c:299 msgid "Available panels:" msgstr "Tilgjengelige paneler:" @@ -8221,3 +8973,49 @@ #: subprojects/gvc/gvc-mixer-control.c:2867 msgid "System Sounds" msgstr "Systemlyder" + +#~ msgid "Keyboard Shortcut" +#~ msgstr "Tastatursnarvei" + +#~ msgid "This can be changed in Customize Shortcuts" +#~ msgstr "Denne kan endres i Tilpass snarveier" + +#~ msgid "Hold down and type to enter different characters" +#~ msgstr "Hold nede og skriv for å skrive andre tegn" + +#~ msgid "_Screen Brightness" +#~ msgstr "Lysstyrke for _skjerm" + +#~ msgid "_Keyboard Brightness" +#~ msgstr "Lysstyr_ke for tastatur" + +#~ msgid "Dim Screen When Inactive" +#~ msgstr "Demp skjermen når inaktiv" + +#~ msgid "_Blank Screen" +#~ msgstr "_Slå av skjerm" + +#~ msgid "_Wi-Fi" +#~ msgstr "_Trådløs" + +#~ msgid "Wi-Fi can be turned off to save power." +#~ msgstr "Wi-Fi kan slås av for å spare strøm." + +#~ msgid "" +#~ "Mobile broadband (LTE, 4G, 3G, etc.) can be turned off to save power." +#~ msgstr "Mobilt bredbånd (3G, 4G, LTE, etc.) kan slås av for å spare strøm." + +#~ msgid "_Bluetooth" +#~ msgstr "_Blåtann" + +#~ msgid "Bluetooth can be turned off to save power." +#~ msgstr "Blåtann kan slås av for å spare strøm." + +#~ msgid "Balanced Power" +#~ msgstr "Balansert strømbruk" + +#~ msgid "Add…" +#~ msgstr "Legg til …" + +#~ msgid "Login;Name;Fingerprint;Avatar;Logo;Face;Password;" +#~ msgstr "Login;Navn;Fingeravtrykk;Avatar;Logo;Ansikt;Passord;" diff -Nru gnome-control-center-41.4/po/oc.po gnome-control-center-41.7/po/oc.po --- gnome-control-center-41.4/po/oc.po 2022-02-13 21:57:02.000000000 +0000 +++ gnome-control-center-41.7/po/oc.po 2022-05-27 03:08:12.000000000 +0000 @@ -9,8 +9,8 @@ "Project-Id-Version: gnome-control-center HEAD\n" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-control-center/" "issues\n" -"POT-Creation-Date: 2021-09-09 16:10+0000\n" -"PO-Revision-Date: 2021-09-17 19:25+0200\n" +"POT-Creation-Date: 2022-02-15 22:16+0000\n" +"PO-Revision-Date: 2022-02-20 19:35+0100\n" "Last-Translator: Quentin PAGÈS\n" "Language-Team: Tot en òc\n" "Language: oc\n" @@ -203,7 +203,7 @@ #: panels/keyboard/keyboard-shortcuts.c:367 panels/network/network-proxy.ui:129 #: panels/user-accounts/cc-user-panel.c:848 #: panels/user-accounts/cc-user-panel.c:938 -#: panels/wwan/cc-wwan-device-page.c:445 +#: panels/wwan/cc-wwan-device-page.c:479 #: subprojects/gvc/gvc-mixer-control.c:1900 msgid "Disabled" msgstr "Desactivat" @@ -456,7 +456,7 @@ #: panels/bluetooth/cc-bluetooth-panel.ui:118 msgid "Bluetooth is disabled when airplane mode is on." -msgstr "Lo comutator material del Bluetooth es desactivat." +msgstr "Lo Bluetooth es desactivat en mòde avion." #: panels/bluetooth/cc-bluetooth-panel.ui:124 msgid "Turn Off Airplane Mode" @@ -2300,7 +2300,7 @@ #: panels/keyboard/cc-keyboard-shortcut-editor.ui:275 #: panels/printers/authentication-dialog.ui:29 #: panels/printers/ppd-selection-dialog.ui:27 -#: panels/wwan/cc-wwan-device-page.c:143 +#: panels/wwan/cc-wwan-device-page.c:190 msgid "Cancel" msgstr "Anullar" @@ -2883,29 +2883,29 @@ msgstr "Pas configurat" #. TRANSLATORS: This happens when the connection name does not contain the SSID. -#: panels/network/cc-wifi-connection-row.c:207 +#: panels/network/cc-wifi-connection-row.c:208 #, c-format msgctxt "Wi-Fi Connection" msgid "%s (SSID: %s)" msgstr "%s (SSID : %s)" -#: panels/network/cc-wifi-connection-row.c:262 +#: panels/network/cc-wifi-connection-row.c:264 msgid "Insecure network (WEP)" msgstr "Ret pas segur (WEP)" -#: panels/network/cc-wifi-connection-row.c:267 +#: panels/network/cc-wifi-connection-row.c:269 msgid "Secure network (WPA)" msgstr "Ret segur (WPA)" -#: panels/network/cc-wifi-connection-row.c:272 +#: panels/network/cc-wifi-connection-row.c:274 msgid "Secure network (WPA2)" msgstr "Ret segur (WPA2)" -#: panels/network/cc-wifi-connection-row.c:277 +#: panels/network/cc-wifi-connection-row.c:279 msgid "Secure network (WPA3)" msgstr "Ret segur (WPA3)" -#: panels/network/cc-wifi-connection-row.c:282 +#: panels/network/cc-wifi-connection-row.c:284 msgid "Secure network" msgstr "Ret segur" @@ -7746,7 +7746,7 @@ #. TRANSLATORS: Status of Parental Controls setup #: panels/user-accounts/cc-user-panel.c:846 #: panels/user-accounts/cc-user-panel.c:935 -#: panels/wwan/cc-wwan-device-page.c:443 +#: panels/wwan/cc-wwan-device-page.c:477 msgid "Enabled" msgstr "Activat" @@ -8456,63 +8456,63 @@ msgid "Unknown" msgstr "Desconegut" -#: panels/wwan/cc-wwan-device-page.c:141 +#: panels/wwan/cc-wwan-device-page.c:188 msgid "Unlock SIM card" msgstr "Desverrolhar la carta SIM" -#: panels/wwan/cc-wwan-device-page.c:142 panels/wwan/cc-wwan-device-page.c:190 +#: panels/wwan/cc-wwan-device-page.c:189 panels/wwan/cc-wwan-device-page.c:237 msgid "Unlock" msgstr "Desverrolhar" -#: panels/wwan/cc-wwan-device-page.c:147 +#: panels/wwan/cc-wwan-device-page.c:194 #, c-format msgid "Please provide PIN code for SIM %d" msgstr "Picatz lo còdi PIN per la carta SIM %d" -#: panels/wwan/cc-wwan-device-page.c:148 +#: panels/wwan/cc-wwan-device-page.c:195 msgid "Enter PIN to unlock your SIM card" msgstr "Picatz lo còdi PIN per desverrolhar la carta SIM" -#: panels/wwan/cc-wwan-device-page.c:152 +#: panels/wwan/cc-wwan-device-page.c:199 #, c-format msgid "Please provide PUK code for SIM %d" msgstr "Picatz lo còdi PUK per la carta SIM %d" -#: panels/wwan/cc-wwan-device-page.c:153 +#: panels/wwan/cc-wwan-device-page.c:200 msgid "Enter PUK to unlock your SIM card" msgstr "Picatz lo còdi PUK per desverrolhar la carta SIM" -#: panels/wwan/cc-wwan-device-page.c:171 +#: panels/wwan/cc-wwan-device-page.c:218 #, c-format msgid "Wrong password entered. You have %1$u try left" msgid_plural "Wrong password entered. You have %1$u tries left" msgstr[0] "Marrit senhal picat. Vos demòra %1$u ensag" msgstr[1] "Marrit senhal picat. Vos demòran %1$u ensages" -#: panels/wwan/cc-wwan-device-page.c:174 +#: panels/wwan/cc-wwan-device-page.c:221 #, c-format msgid "You have %u try left" msgid_plural "You have %u tries left" msgstr[0] "Vos demòra %u ensag" msgstr[1] "Vos demòran %u ensages" -#: panels/wwan/cc-wwan-device-page.c:179 +#: panels/wwan/cc-wwan-device-page.c:226 msgid "Wrong password entered." msgstr "Marrit senhal picat." -#: panels/wwan/cc-wwan-device-page.c:224 +#: panels/wwan/cc-wwan-device-page.c:271 msgid "PUK code should be an 8 digit number" msgstr "Lo còdi PIM deu èsser un nombre de 8 chifras" -#: panels/wwan/cc-wwan-device-page.c:248 +#: panels/wwan/cc-wwan-device-page.c:295 msgid "Enter New PIN" msgstr "Picatz lo novèl còdi PIN" -#: panels/wwan/cc-wwan-device-page.c:252 +#: panels/wwan/cc-wwan-device-page.c:299 msgid "PIN code should be a 4-8 digit number" msgstr "Lo còdi PIM deu èsser un nombre de 4 a 8 chifras" -#: panels/wwan/cc-wwan-device-page.c:270 +#: panels/wwan/cc-wwan-device-page.c:317 msgid "Unlocking..." msgstr "Desverrolhar..." diff -Nru gnome-control-center-41.4/po/pt_BR.po gnome-control-center-41.7/po/pt_BR.po --- gnome-control-center-41.4/po/pt_BR.po 2022-02-13 21:57:02.000000000 +0000 +++ gnome-control-center-41.7/po/pt_BR.po 2022-05-27 03:08:12.000000000 +0000 @@ -34,8 +34,8 @@ "Project-Id-Version: gnome-control-center\n" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-control-center/" "issues\n" -"POT-Creation-Date: 2021-11-13 18:02+0000\n" -"PO-Revision-Date: 2021-11-23 04:32-0300\n" +"POT-Creation-Date: 2022-03-10 15:28+0000\n" +"PO-Revision-Date: 2022-03-10 19:23-0300\n" "Last-Translator: Rafael Fontenelle \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" @@ -43,7 +43,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.0\n" +"X-Generator: Poedit 3.0.1\n" "X-Project-Style: gnome\n" #: panels/applications/cc-applications-panel.c:823 @@ -384,7 +384,7 @@ #: panels/color/cc-color-panel.c:886 panels/color/cc-color-panel.ui:657 #: panels/common/cc-language-chooser.ui:25 #: panels/display/cc-display-panel.c:1006 -#: panels/info-overview/cc-info-overview-panel.ui:243 +#: panels/info-overview/cc-info-overview-panel.ui:244 #: panels/keyboard/cc-input-chooser.ui:11 #: panels/network/cc-wifi-hotspot-dialog.ui:122 #: panels/network/cc-wifi-panel.c:866 @@ -1935,7 +1935,7 @@ "O nome do dispositivo é usado para identificar este dispositivo quando é " "visualizado na rede ou ao parear dispositivos Bluetooth." -#: panels/info-overview/cc-info-overview-panel.ui:234 +#: panels/info-overview/cc-info-overview-panel.ui:235 msgid "_Rename" msgstr "_Renomear" @@ -2928,29 +2928,29 @@ msgstr "Não configurado" #. TRANSLATORS: This happens when the connection name does not contain the SSID. -#: panels/network/cc-wifi-connection-row.c:207 +#: panels/network/cc-wifi-connection-row.c:208 #, c-format msgctxt "Wi-Fi Connection" msgid "%s (SSID: %s)" msgstr "%s (SSID: %s)" -#: panels/network/cc-wifi-connection-row.c:262 +#: panels/network/cc-wifi-connection-row.c:264 msgid "Insecure network (WEP)" msgstr "Rede insegura (WEP)" -#: panels/network/cc-wifi-connection-row.c:267 +#: panels/network/cc-wifi-connection-row.c:269 msgid "Secure network (WPA)" msgstr "Rede segura (WPA)" -#: panels/network/cc-wifi-connection-row.c:272 +#: panels/network/cc-wifi-connection-row.c:274 msgid "Secure network (WPA2)" msgstr "Rede segura (WPA2)" -#: panels/network/cc-wifi-connection-row.c:277 +#: panels/network/cc-wifi-connection-row.c:279 msgid "Secure network (WPA3)" msgstr "Rede segura (WPA3)" -#: panels/network/cc-wifi-connection-row.c:282 +#: panels/network/cc-wifi-connection-row.c:284 msgid "Secure network" msgstr "Rede segura" @@ -5808,7 +5808,7 @@ #: panels/region/cc-region-panel.ui:164 msgid "Restart the session for changes to take effect" -msgstr "Reiniciar a sessão para as alterações sejam efetivadas" +msgstr "Reinicie a sessão para que as alterações sejam efetivadas" #: panels/region/cc-region-panel.ui:179 msgid "Restart…" diff -Nru gnome-control-center-41.4/po/pt.po gnome-control-center-41.7/po/pt.po --- gnome-control-center-41.4/po/pt.po 2022-02-13 21:57:02.000000000 +0000 +++ gnome-control-center-41.7/po/pt.po 2022-05-27 03:08:12.000000000 +0000 @@ -7,18 +7,18 @@ # Tiago Santos , 2014 - 2016. # Pedro Albuquerque , 2015. # Sérgio Cardeira , 2016. -# Juliano de Souza Camargo , 2020. -# Hugo Carvalho , 2021. +# Hugo Carvalho , 2021-2022. +# Juliano de Souza Camargo , 2020-2022. # msgid "" msgstr "" "Project-Id-Version: 3.8\n" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-control-center/" "issues\n" -"POT-Creation-Date: 2021-12-03 03:00+0000\n" -"PO-Revision-Date: 2021-12-18 13:39+0000\n" +"POT-Creation-Date: 2022-02-15 18:11+0000\n" +"PO-Revision-Date: 2022-02-15 22:14+0000\n" "Last-Translator: Hugo Carvalho \n" -"Language-Team: Portuguese \n" +"Language-Team: Portuguese < https://l10n.gnome.org/teams/pt/>\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,6 +28,11 @@ "X-Language: pt_PT\n" "X-Source-Language: C\n" "X-Project-Style: gnome\n" +"X-DL-Team: pt\n" +"X-DL-Module: gnome-control-center\n" +"X-DL-Branch: gnome-41\n" +"X-DL-Domain: po\n" +"X-DL-State: Translating\n" #: panels/applications/cc-applications-panel.c:823 msgid "System Bus" @@ -421,7 +426,7 @@ #: panels/background/cc-background-panel.ui:55 msgid "Add Picture…" -msgstr "Adicionar uma foto…" +msgstr "Adicionar imagem…" #: panels/background/cc-background-preview.ui:55 msgid "Activities" @@ -494,19 +499,19 @@ #: panels/camera/cc-camera-panel.ui:34 msgid "Camera is turned off" -msgstr "A câmara está ligada" +msgstr "A câmara está desligada" #: panels/camera/cc-camera-panel.ui:43 msgid "No applications can capture photos or video." -msgstr "Nenhuma aplicação pode capturar fotos ou vídeo." +msgstr "Nenhuma aplicação pode capturar fotos ou vídeos." #: panels/camera/cc-camera-panel.ui:75 msgid "" "Use of the camera allows applications to capture photos and video. Disabling " "the camera may cause some applications to not function properly." msgstr "" -"O uso da câmara permite a aplicações capturarem fotos e vídeos. Desativá-la " -"pode impedir que algumas aplicações funcionem corretamente." +"O uso da câmara permite que as aplicações capturarem fotos e vídeos. " +"Desativá-la pode impedir que algumas aplicações funcionem corretamente." #: panels/camera/cc-camera-panel.ui:85 msgid "Allow the applications below to use your camera." @@ -518,7 +523,7 @@ #: panels/camera/gnome-camera-panel.desktop.in.in:4 msgid "Protect your pictures" -msgstr "Proteja suas fotos" +msgstr "Proteja as suas fotos" #. FIXME #. Translators: Search terms to find the Privacy panel. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! @@ -671,7 +676,7 @@ #: panels/color/cc-color-common.c:81 #, c-format msgid "%s Webcam" -msgstr "Câmara web %s" +msgstr "Webcam %s" #: panels/color/cc-color-device.c:90 #, c-format @@ -2214,8 +2219,8 @@ msgstr "" "A tecla de composição permite a introdução de uma grande variedade de " "caracteres. Para a utilizar, prima composição depois uma sequência de " -"caracteres. Por exemplo, a tecla composição seguida de C e o " -"irá introduzir ©, uma seguida de ' irá introduzir áC e o " +"irá introduzir ©, a seguida de ' irá introduzir á." #: panels/keyboard/cc-keyboard-panel.c:95 @@ -2882,29 +2887,29 @@ msgstr "Indefinido" #. TRANSLATORS: This happens when the connection name does not contain the SSID. -#: panels/network/cc-wifi-connection-row.c:207 +#: panels/network/cc-wifi-connection-row.c:208 #, c-format msgctxt "Wi-Fi Connection" msgid "%s (SSID: %s)" msgstr "%s (SSID: %s)" -#: panels/network/cc-wifi-connection-row.c:262 +#: panels/network/cc-wifi-connection-row.c:264 msgid "Insecure network (WEP)" msgstr "Rede insegura (WEP)" -#: panels/network/cc-wifi-connection-row.c:267 +#: panels/network/cc-wifi-connection-row.c:269 msgid "Secure network (WPA)" msgstr "Rede segura (WPA)" -#: panels/network/cc-wifi-connection-row.c:272 +#: panels/network/cc-wifi-connection-row.c:274 msgid "Secure network (WPA2)" msgstr "Rede segura (WPA2)" -#: panels/network/cc-wifi-connection-row.c:277 +#: panels/network/cc-wifi-connection-row.c:279 msgid "Secure network (WPA3)" msgstr "Rede segura (WPA3)" -#: panels/network/cc-wifi-connection-row.c:282 +#: panels/network/cc-wifi-connection-row.c:284 msgid "Secure network" msgstr "Rede segura" @@ -5831,7 +5836,7 @@ #. #: panels/removable-media/cc-removable-media-panel.c:378 msgid "audio DVD" -msgstr "DVD de áudio" +msgstr "áudio DVD" #: panels/removable-media/cc-removable-media-panel.c:379 msgid "blank Blu-ray disc" diff -Nru gnome-control-center-41.4/po/uk.po gnome-control-center-41.7/po/uk.po --- gnome-control-center-41.4/po/uk.po 2022-02-13 21:57:02.000000000 +0000 +++ gnome-control-center-41.7/po/uk.po 2022-05-27 03:08:12.000000000 +0000 @@ -4,20 +4,22 @@ # Maxim Dzumanenko , 2002-2009. # Wanderlust , 2009. # Daniel Korostil , 2013, 2014, 2015, 2016, 2017. -# Yuri Chornoivan , 2020, 2021. +# Yuri Chornoivan , 2020, 2021, 2022. msgid "" msgstr "" "Project-Id-Version: gnome-control-center\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-control-center/issues\n" -"POT-Creation-Date: 2021-09-08 08:29+0000\n" -"PO-Revision-Date: 2021-09-08 12:56+0300\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-control-center/issu" +"es\n" +"POT-Creation-Date: 2022-03-16 12:03+0000\n" +"PO-Revision-Date: 2022-04-03 12:16+0300\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n" +"%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Lokalize 20.12.0\n" "X-Project-Style: gnome\n" @@ -201,7 +203,7 @@ #: panels/keyboard/keyboard-shortcuts.c:367 panels/network/network-proxy.ui:129 #: panels/user-accounts/cc-user-panel.c:848 #: panels/user-accounts/cc-user-panel.c:938 -#: panels/wwan/cc-wwan-device-page.c:445 +#: panels/wwan/cc-wwan-device-page.c:479 #: subprojects/gvc/gvc-mixer-control.c:1900 msgid "Disabled" msgstr "Вимкнено" @@ -357,7 +359,7 @@ #: panels/color/cc-color-panel.c:886 panels/color/cc-color-panel.ui:657 #: panels/common/cc-language-chooser.ui:25 #: panels/display/cc-display-panel.c:1006 -#: panels/info-overview/cc-info-overview-panel.ui:243 +#: panels/info-overview/cc-info-overview-panel.ui:244 #: panels/keyboard/cc-input-chooser.ui:11 #: panels/network/cc-wifi-hotspot-dialog.ui:122 #: panels/network/cc-wifi-panel.c:866 @@ -1897,7 +1899,7 @@ "Назва пристрою використовується для ідентифікації цього пристрою при " "перегляді у мережі або при прив'язуванні пристроїв Bluetooth." -#: panels/info-overview/cc-info-overview-panel.ui:234 +#: panels/info-overview/cc-info-overview-panel.ui:235 msgid "_Rename" msgstr "Перей_менувати" @@ -2299,7 +2301,7 @@ #: panels/keyboard/cc-keyboard-shortcut-editor.ui:275 #: panels/printers/authentication-dialog.ui:29 #: panels/printers/ppd-selection-dialog.ui:27 -#: panels/wwan/cc-wwan-device-page.c:143 +#: panels/wwan/cc-wwan-device-page.c:190 msgid "Cancel" msgstr "Скасувати" @@ -2886,29 +2888,29 @@ msgstr "Не налаштовано" #. TRANSLATORS: This happens when the connection name does not contain the SSID. -#: panels/network/cc-wifi-connection-row.c:207 +#: panels/network/cc-wifi-connection-row.c:208 #, c-format msgctxt "Wi-Fi Connection" msgid "%s (SSID: %s)" msgstr "%s (SSID: %s)" -#: panels/network/cc-wifi-connection-row.c:262 +#: panels/network/cc-wifi-connection-row.c:264 msgid "Insecure network (WEP)" msgstr "Незахищена мережа (WEP)" -#: panels/network/cc-wifi-connection-row.c:267 +#: panels/network/cc-wifi-connection-row.c:269 msgid "Secure network (WPA)" msgstr "Захищена мережа (WPA)" -#: panels/network/cc-wifi-connection-row.c:272 +#: panels/network/cc-wifi-connection-row.c:274 msgid "Secure network (WPA2)" msgstr "Захищена мережа (WPA2)" -#: panels/network/cc-wifi-connection-row.c:277 +#: panels/network/cc-wifi-connection-row.c:279 msgid "Secure network (WPA3)" msgstr "Захищена мережа (WPA3)" -#: panels/network/cc-wifi-connection-row.c:282 +#: panels/network/cc-wifi-connection-row.c:284 msgid "Secure network" msgstr "Захищена мережа" @@ -7758,7 +7760,7 @@ #. TRANSLATORS: Status of Parental Controls setup #: panels/user-accounts/cc-user-panel.c:846 #: panels/user-accounts/cc-user-panel.c:935 -#: panels/wwan/cc-wwan-device-page.c:443 +#: panels/wwan/cc-wwan-device-page.c:477 msgid "Enabled" msgstr "Увімкнено" @@ -7888,7 +7890,10 @@ "Time;App Restrictions;Web Restrictions;Usage;Usage Limit;Kid;Child;" msgstr "" "Login;Name;Fingerprint;Avatar;Logo;Face;Password;Parental Controls;Screen " -"Time;App Restrictions;Web Restrictions;Usage;Usage Limit;Kid;Child;вхід;логін;лоґін;назва;ім'я;відбиток;аватар;логотип;обличчя;пароль;батьківський контроль;час за екраном;обмеження програм;обмеження інтернету;використання;користування;обмеження користування;діти;дитина;дитячий;" +"Time;App Restrictions;Web Restrictions;Usage;Usage Limit;Kid;Child;вхід;" +"логін;лоґін;назва;ім'я;відбиток;аватар;логотип;обличчя;пароль;батьківський " +"контроль;час за екраном;обмеження програм;обмеження інтернету;використання;" +"користування;обмеження користування;діти;дитина;дитячий;" #. Translators: This button enrolls the computer in the domain in order to use enterprise logins. #: panels/user-accounts/data/join-dialog.ui:39 @@ -8103,7 +8108,7 @@ #: panels/wacom/button-mapping.ui:9 msgid "Map Buttons" -msgstr "Кнопка відбиття" +msgstr "Прив'язування кнопок" #: panels/wacom/button-mapping.ui:37 panels/wacom/cc-wacom-page.c:519 #: panels/wacom/gnome-wacom-properties.ui:60 @@ -8112,7 +8117,7 @@ #: panels/wacom/button-mapping.ui:71 msgid "Map buttons to functions" -msgstr "Кнопка відбиття для функцій" +msgstr "Прив'язування кнопок до функцій" #: panels/wacom/button-mapping.ui:119 msgid "" @@ -8181,7 +8186,7 @@ #: panels/wacom/cc-wacom-page.c:516 msgid "Display Mapping" -msgstr "Відбиття екрана" +msgstr "Прив'язування екрана" #: panels/wacom/cc-wacom-panel.c:725 panels/wacom/wacom-stylus-page.ui:119 msgid "Stylus" @@ -8199,7 +8204,8 @@ #: panels/wacom/gnome-wacom-panel.desktop.in.in:4 msgid "Set button mappings and adjust stylus sensitivity for graphics tablets" msgstr "" -"Вкажіть відбиття кнопок і скоригуйте чутливість стила для графічних планшетів" +"Вкажіть прив'язування кнопок і скоригуйте чутливість стила для графічних" +" планшетів" #. Translators: Search terms to find the Wacom Tablet panel. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! #: panels/wacom/gnome-wacom-panel.desktop.in.in:19 @@ -8249,7 +8255,7 @@ #: panels/wacom/gnome-wacom-properties.ui:309 msgid "Map Buttons…" -msgstr "Кнопки відбиття…" +msgstr "Прив'язування кнопок…" #: panels/wacom/gnome-wacom-properties.ui:322 msgid "Calibrate…" @@ -8465,33 +8471,33 @@ msgid "Unknown" msgstr "Невідомий" -#: panels/wwan/cc-wwan-device-page.c:141 +#: panels/wwan/cc-wwan-device-page.c:188 msgid "Unlock SIM card" msgstr "Розблокувати SIM-картку" -#: panels/wwan/cc-wwan-device-page.c:142 panels/wwan/cc-wwan-device-page.c:190 +#: panels/wwan/cc-wwan-device-page.c:189 panels/wwan/cc-wwan-device-page.c:237 msgid "Unlock" msgstr "Розблокувати" -#: panels/wwan/cc-wwan-device-page.c:147 +#: panels/wwan/cc-wwan-device-page.c:194 #, c-format msgid "Please provide PIN code for SIM %d" msgstr "Будь ласка, вкажіть пінкод для SIM-картки %d" -#: panels/wwan/cc-wwan-device-page.c:148 +#: panels/wwan/cc-wwan-device-page.c:195 msgid "Enter PIN to unlock your SIM card" msgstr "Введіть пінкод для розблокування вашої SIM-картки" -#: panels/wwan/cc-wwan-device-page.c:152 +#: panels/wwan/cc-wwan-device-page.c:199 #, c-format msgid "Please provide PUK code for SIM %d" msgstr "Будь ласка, вкажіть PUK-код для SIM-картки %d" -#: panels/wwan/cc-wwan-device-page.c:153 +#: panels/wwan/cc-wwan-device-page.c:200 msgid "Enter PUK to unlock your SIM card" msgstr "Введіть PUK-код для розблокування вашої SIM-картки" -#: panels/wwan/cc-wwan-device-page.c:171 +#: panels/wwan/cc-wwan-device-page.c:218 #, c-format msgid "Wrong password entered. You have %1$u try left" msgid_plural "Wrong password entered. You have %1$u tries left" @@ -8500,7 +8506,7 @@ msgstr[2] "Введено помилковий пароль. У вас лишилося %1$u спроб" msgstr[3] "Введено помилковий пароль. У вас лишилася %1$u спроба" -#: panels/wwan/cc-wwan-device-page.c:174 +#: panels/wwan/cc-wwan-device-page.c:221 #, c-format msgid "You have %u try left" msgid_plural "You have %u tries left" @@ -8509,23 +8515,23 @@ msgstr[2] "У вас лишилося %u спроб" msgstr[3] "У вас лишилася одна спроба" -#: panels/wwan/cc-wwan-device-page.c:179 +#: panels/wwan/cc-wwan-device-page.c:226 msgid "Wrong password entered." msgstr "Введено помилковий пароль." -#: panels/wwan/cc-wwan-device-page.c:224 +#: panels/wwan/cc-wwan-device-page.c:271 msgid "PUK code should be an 8 digit number" msgstr "PUK-код має бути 8-цифровим числом" -#: panels/wwan/cc-wwan-device-page.c:248 +#: panels/wwan/cc-wwan-device-page.c:295 msgid "Enter New PIN" msgstr "Введіть новий пінкод" -#: panels/wwan/cc-wwan-device-page.c:252 +#: panels/wwan/cc-wwan-device-page.c:299 msgid "PIN code should be a 4-8 digit number" msgstr "Пінкод має бути числом, у якому має бути від 4 до 8 цифр" -#: panels/wwan/cc-wwan-device-page.c:270 +#: panels/wwan/cc-wwan-device-page.c:317 msgid "Unlocking..." msgstr "Розблоковування…"