From 57bc605e57faa007cef8e856fc5fee71c89a20d5 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Aug 01 2017 03:47:36 +0000 Subject: import control-center-3.22.2-5.el7 --- diff --git a/.control-center.metadata b/.control-center.metadata index ae744e1..9966877 100644 --- a/.control-center.metadata +++ b/.control-center.metadata @@ -1,5 +1 @@ -0c956f9c9ee5602f821fb20ccbcc36f1486e15b2 SOURCES/gnome-control-center-3.14.5.tar.xz -eae8a8783349f47f288bae679a11a5d6a1fc6413 SOURCES/timezone_8.5.png -17066ba53eb76178e81d81f918d6b6366e03f246 SOURCES/timezone_8.5_dim.png -c227933c171a413f68263607636d991e6cd0de5f SOURCES/timezone_9.png -735a2eedf9461416196e91399d02589a460675a4 SOURCES/timezone_9_dim.png +65bef295fc8c9508fb2110847dd4d071763206a2 SOURCES/gnome-control-center-3.22.2.tar.xz diff --git a/.gitignore b/.gitignore index 8a09608..bc8753a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1 @@ -SOURCES/gnome-control-center-3.14.5.tar.xz -SOURCES/timezone_8.5.png -SOURCES/timezone_8.5_dim.png -SOURCES/timezone_9.png -SOURCES/timezone_9_dim.png +SOURCES/gnome-control-center-3.22.2.tar.xz diff --git a/SOURCES/0001-datetime-update-timezones-for-new-Pyongyang-Time.patch b/SOURCES/0001-datetime-update-timezones-for-new-Pyongyang-Time.patch deleted file mode 100644 index 6a52092..0000000 --- a/SOURCES/0001-datetime-update-timezones-for-new-Pyongyang-Time.patch +++ /dev/null @@ -1,26 +0,0 @@ -From 8653171fe5c2cd067f299ca640a2adf3dc878309 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= -Date: Tue, 18 Aug 2015 00:16:44 +0200 -Subject: [PATCH] datetime: update timezones for new "Pyongyang Time" - -https://bugzilla.gnome.org/show_bug.cgi?id=753643 ---- - panels/datetime/datetime.gresource.xml | 2 ++ - 1 files changed, 2 insertions(+) - -diff --git a/panels/datetime/datetime.gresource.xml b/panels/datetime/datetime.gresource.xml -index 9b55358..1dab8f5 100644 ---- a/panels/datetime/datetime.gresource.xml -+++ b/panels/datetime/datetime.gresource.xml -@@ -76,6 +76,8 @@ - data/timezone_-8_dim.png - data/timezone_8.png - data/timezone_8_dim.png -+ data/timezone_8.5.png -+ data/timezone_8.5_dim.png - data/timezone_8.75.png - data/timezone_8.75_dim.png - data/timezone_-9.png --- -2.4.3 - diff --git a/SOURCES/0001-hostname-helper-don-t-read-past-0.patch b/SOURCES/0001-hostname-helper-don-t-read-past-0.patch new file mode 100644 index 0000000..5c419ef --- /dev/null +++ b/SOURCES/0001-hostname-helper-don-t-read-past-0.patch @@ -0,0 +1,37 @@ +From 96976105f3dc50bdc75cd23b5d163373a6c4d02f Mon Sep 17 00:00:00 2001 +From: Mohammed Sadiq +Date: Fri, 5 May 2017 17:40:33 +0530 +Subject: [PATCH 1/3] hostname-helper: don't read past '\0' + +g_utf8_find_next_char() doesn't do checks whether the char +is '\0' or not. We have to take care of that ourself. + +This commit fixes heap-buffer-overflow found by test-hostname + +ERROR: AddressSanitizer: heap-buffer-overflow on address +READ of size 1 at 0x60200000cd76 thread T0 + #0 0x7f8b26920d08 in g_utf8_find_next_char glib/glib/gutf8.c:179 + #1 0x55c2b8eacaee in pretty_hostname_to_ssid gnome-control-center/shell/hostname-helper.c:199 + +https://bugzilla.gnome.org/show_bug.cgi?id=782216 +--- + shell/hostname-helper.c | 3 +++ + 1 file changed, 3 insertions(+) + +diff --git a/shell/hostname-helper.c b/shell/hostname-helper.c +index 45baf5184..ab889b96b 100644 +--- a/shell/hostname-helper.c ++++ b/shell/hostname-helper.c +@@ -208,6 +208,9 @@ pretty_hostname_to_ssid (const char *pretty) + break; + } + ++ if (*p == '\0') ++ break; ++ + prev = p; + } + +-- +2.12.2 + diff --git a/SOURCES/0001-info-Fix-build-when-Wayland-is-disabled.patch b/SOURCES/0001-info-Fix-build-when-Wayland-is-disabled.patch new file mode 100644 index 0000000..339d18c --- /dev/null +++ b/SOURCES/0001-info-Fix-build-when-Wayland-is-disabled.patch @@ -0,0 +1,35 @@ +From 135d17454c109f18110330478a3d28c1bf7e8077 Mon Sep 17 00:00:00 2001 +From: Ting-Wei Lan +Date: Thu, 10 Nov 2016 22:27:11 +0800 +Subject: [PATCH] info: Fix build when Wayland is disabled + +https://bugzilla.gnome.org/show_bug.cgi?id=774324 +--- + panels/info/cc-info-panel.c | 11 +++++++++-- + 1 file changed, 9 insertions(+), 2 deletions(-) + +diff --git a/panels/info/cc-info-panel.c b/panels/info/cc-info-panel.c +index 458476660..1d596a3c9 100644 +--- a/panels/info/cc-info-panel.c ++++ b/panels/info/cc-info-panel.c +@@ -351,8 +351,15 @@ get_graphics_data (void) + display = gdk_display_get_default (); + + #if defined(GDK_WINDOWING_X11) || defined(GDK_WINDOWING_WAYLAND) +- if (GDK_IS_X11_DISPLAY (display) || +- GDK_IS_WAYLAND_DISPLAY (display)) ++ gboolean x11_or_wayland = FALSE; ++#ifdef GDK_WINDOWING_X11 ++ x11_or_wayland = GDK_IS_X11_DISPLAY (display); ++#endif ++#ifdef GDK_WINDOWING_WAYLAND ++ x11_or_wayland = x11_or_wayland || GDK_IS_WAYLAND_DISPLAY (display); ++#endif ++ ++ if (x11_or_wayland) + { + char *discrete_renderer = NULL; + char *renderer; +-- +2.12.0 + diff --git a/SOURCES/0001-network-Fix-empty-Wifi-list.patch b/SOURCES/0001-network-Fix-empty-Wifi-list.patch deleted file mode 100644 index 416e0e8..0000000 --- a/SOURCES/0001-network-Fix-empty-Wifi-list.patch +++ /dev/null @@ -1,53 +0,0 @@ -From 28c54f3d551af09c414fbf2e2e13a9f7b61781f9 Mon Sep 17 00:00:00 2001 -From: Jonathan Kang -Date: Tue, 5 Apr 2016 14:15:20 +0800 -Subject: [PATCH] network: Fix empty Wifi list - -Add a callback function for signals "access-point-added" and -"access-point-removed" to update the Wifi list. - -https://bugzilla.gnome.org/show_bug.cgi?id=709641 ---- - panels/network/net-device-wifi.c | 19 +++++++++++++++++++ - 1 file changed, 19 insertions(+) - -diff --git a/panels/network/net-device-wifi.c b/panels/network/net-device-wifi.c -index e7d0c93..ca55d94 100644 ---- a/panels/network/net-device-wifi.c -+++ b/panels/network/net-device-wifi.c -@@ -240,6 +240,18 @@ get_ap_security_string (NMAccessPoint *ap) - } - - static void -+net_device_wifi_access_point_changed (NMDeviceWifi *nm_device_wifi, -+ NMAccessPoint *ap, -+ gpointer user_data) -+{ -+ NetDeviceWifi *device_wifi; -+ -+ device_wifi = NET_DEVICE_WIFI (user_data); -+ -+ populate_ap_list (device_wifi); -+} -+ -+static void - wireless_enabled_toggled (NMClient *client, - GParamSpec *pspec, - NetDeviceWifi *device_wifi) -@@ -1317,6 +1329,13 @@ net_device_wifi_constructed (GObject *object) - - nm_device = net_device_get_nm_device (NET_DEVICE (device_wifi)); - -+ g_signal_connect_object (nm_device, "access-point-added", -+ G_CALLBACK (net_device_wifi_access_point_changed), -+ device_wifi, 0); -+ g_signal_connect_object (nm_device, "access-point-removed", -+ G_CALLBACK (net_device_wifi_access_point_changed), -+ device_wifi, 0); -+ - /* only enable the button if the user can create a hotspot */ - widget = GTK_WIDGET (gtk_builder_get_object (device_wifi->priv->builder, - "start_hotspot_button")); --- -2.7.4 - diff --git a/SOURCES/0001-network-Prevent-a-use-after-free-crash-when-removing.patch b/SOURCES/0001-network-Prevent-a-use-after-free-crash-when-removing.patch deleted file mode 100644 index e225310..0000000 --- a/SOURCES/0001-network-Prevent-a-use-after-free-crash-when-removing.patch +++ /dev/null @@ -1,68 +0,0 @@ -From 51988f5a41f10696cee74d6f9ff5f92d14baa60b Mon Sep 17 00:00:00 2001 -From: Rui Matos -Date: Wed, 27 May 2015 16:45:03 +0200 -Subject: [PATCH] network: Prevent a use after free crash when removing virtual - devices - -When a virtual device is removed and the instance gets finalized we're -not disconnecting from the real NMDevice's notify signal and thus end -up crashing when the signal fires afterwards. - -Avoid that by using g_signal_connect_object() so that when we're -finalized the disconnection happens automatically. - -https://bugzilla.gnome.org/show_bug.cgi?id=749972 ---- - panels/network/net-device-bond.c | 4 ++-- - panels/network/net-device-bridge.c | 4 ++-- - panels/network/net-device-team.c | 4 ++-- - 3 files changed, 6 insertions(+), 6 deletions(-) - -diff --git a/panels/network/net-device-bond.c b/panels/network/net-device-bond.c -index abf0829..67123ff 100644 ---- a/panels/network/net-device-bond.c -+++ b/panels/network/net-device-bond.c -@@ -133,8 +133,8 @@ net_device_bond_device_set (NetVirtualDevice *virtual_device, - { - NetDeviceBond *device_bond = NET_DEVICE_BOND (virtual_device); - -- g_signal_connect (nm_device, "notify::slaves", -- G_CALLBACK (nm_device_slaves_changed), device_bond); -+ g_signal_connect_object (nm_device, "notify::slaves", -+ G_CALLBACK (nm_device_slaves_changed), device_bond, 0); - nm_device_slaves_changed (G_OBJECT (nm_device), NULL, device_bond); - } - -diff --git a/panels/network/net-device-bridge.c b/panels/network/net-device-bridge.c -index 16251e0..2335ff8 100644 ---- a/panels/network/net-device-bridge.c -+++ b/panels/network/net-device-bridge.c -@@ -133,8 +133,8 @@ net_device_bridge_device_set (NetVirtualDevice *virtual_device, - { - NetDeviceBridge *device_bridge = NET_DEVICE_BRIDGE (virtual_device); - -- g_signal_connect (nm_device, "notify::slaves", -- G_CALLBACK (nm_device_slaves_changed), device_bridge); -+ g_signal_connect_object (nm_device, "notify::slaves", -+ G_CALLBACK (nm_device_slaves_changed), device_bridge, 0); - nm_device_slaves_changed (G_OBJECT (nm_device), NULL, device_bridge); - } - -diff --git a/panels/network/net-device-team.c b/panels/network/net-device-team.c -index 09a6142..55bfbca 100644 ---- a/panels/network/net-device-team.c -+++ b/panels/network/net-device-team.c -@@ -133,8 +133,8 @@ net_device_team_device_set (NetVirtualDevice *virtual_device, - { - NetDeviceTeam *device_team = NET_DEVICE_TEAM (virtual_device); - -- g_signal_connect (nm_device, "notify::slaves", -- G_CALLBACK (nm_device_slaves_changed), device_team); -+ g_signal_connect_object (nm_device, "notify::slaves", -+ G_CALLBACK (nm_device_slaves_changed), device_team, 0); - nm_device_slaves_changed (G_OBJECT (nm_device), NULL, device_team); - } - --- -2.4.0 - diff --git a/SOURCES/0001-network-Simplify-the-ignored-Network-interface-types.patch b/SOURCES/0001-network-Simplify-the-ignored-Network-interface-types.patch new file mode 100644 index 0000000..aa8186c --- /dev/null +++ b/SOURCES/0001-network-Simplify-the-ignored-Network-interface-types.patch @@ -0,0 +1,58 @@ +From d5eaacc6ef749346cc83d6f142e28e0ae15a2623 Mon Sep 17 00:00:00 2001 +From: Bastien Nocera +Date: Tue, 20 Jun 2017 15:40:51 +0200 +Subject: [PATCH] network: Simplify the ignored Network interface types + +We might want to add more ignored types later on, but this is a simple +cleanup. + +https://bugzilla.gnome.org/show_bug.cgi?id=783998 +--- + panels/network/cc-network-panel.c | 19 +++++++++++-------- + 1 file changed, 11 insertions(+), 8 deletions(-) + +diff --git a/panels/network/cc-network-panel.c b/panels/network/cc-network-panel.c +index 0a29c927f..5eca8429e 100644 +--- a/panels/network/cc-network-panel.c ++++ b/panels/network/cc-network-panel.c +@@ -696,19 +696,12 @@ panel_add_device (CcNetworkPanel *panel, NMDevice *device) + if (find_in_model_by_id (panel, udi, NULL) != NULL) + goto out; + +- /* Don't add the libvirtd bridge to the UI */ +- if (g_strrstr (udi, "/virbr0") != NULL) +- goto out; +- /* Don't add VPN devices either */ +- if (g_strrstr (udi, "/tun0") != NULL) +- goto out; +- + type = nm_device_get_device_type (device); + + g_debug ("device %s type %i path %s", + udi, type, nm_object_get_path (NM_OBJECT (device))); + +- /* map the NMDeviceType to the GType */ ++ /* map the NMDeviceType to the GType, or ignore */ + switch (type) { + case NM_DEVICE_TYPE_ETHERNET: + device_g_type = NET_TYPE_DEVICE_ETHERNET; +@@ -719,6 +712,16 @@ panel_add_device (CcNetworkPanel *panel, NMDevice *device) + case NM_DEVICE_TYPE_WIFI: + device_g_type = NET_TYPE_DEVICE_WIFI; + break; ++ /* not going to set up a cluster in GNOME */ ++ case NM_DEVICE_TYPE_VETH: ++ /* enterprise features */ ++ case NM_DEVICE_TYPE_BOND: ++ case NM_DEVICE_TYPE_TEAM: ++ /* Don't need the libvirtd bridge */ ++ case NM_DEVICE_TYPE_BRIDGE: ++ /* Don't add VPN devices */ ++ case NM_DEVICE_TYPE_TUN: ++ goto out; + default: + device_g_type = NET_TYPE_DEVICE_SIMPLE; + break; +-- +2.13.0 + diff --git a/SOURCES/0001-network-read-secrets-for-the-VPN-connections.patch b/SOURCES/0001-network-read-secrets-for-the-VPN-connections.patch deleted file mode 100644 index 03f026a..0000000 --- a/SOURCES/0001-network-read-secrets-for-the-VPN-connections.patch +++ /dev/null @@ -1,69 +0,0 @@ -From 62683047c5cd804c2b275501a65f80181a3883c5 Mon Sep 17 00:00:00 2001 -From: Lubomir Rintel -Date: Fri, 22 Jan 2016 21:48:56 +0100 -Subject: [PATCH 1/4] network: read secrets for the VPN connections - -The VPN page needs secrets too. Don't initialize it until the secrets are -loaded, otherwise the secrets are lost on each connection edit. - -https://bugzilla.gnome.org/show_bug.cgi?id=761004 ---- - panels/network/connection-editor/ce-page-vpn.c | 28 +++++++++++++++++--------- - 1 file changed, 19 insertions(+), 9 deletions(-) - -diff --git a/panels/network/connection-editor/ce-page-vpn.c b/panels/network/connection-editor/ce-page-vpn.c -index c77d753..44f33a0 100644 ---- a/panels/network/connection-editor/ce-page-vpn.c -+++ b/panels/network/connection-editor/ce-page-vpn.c -@@ -188,13 +188,29 @@ ce_page_vpn_class_init (CEPageVpnClass *class) - page_class->validate = validate; - } - -+static void -+finish_setup (CEPageVpn *page, gpointer unused, GError *error, gpointer user_data) -+{ -+ NMConnection *connection = CE_PAGE (page)->connection; -+ const char *vpn_type; -+ -+ page->setting_connection = nm_connection_get_setting_connection (connection); -+ page->setting_vpn = nm_connection_get_setting_vpn (connection); -+ vpn_type = nm_setting_vpn_get_service_type (page->setting_vpn); -+ -+ page->plugin = vpn_get_plugin_by_service (vpn_type); -+ if (page->plugin) -+ load_vpn_plugin (page, connection); -+ -+ connect_vpn_page (page); -+} -+ - CEPage * - ce_page_vpn_new (NMConnection *connection, - NMClient *client, - NMRemoteSettings *settings) - { - CEPageVpn *page; -- const char *vpn_type; - - page = CE_PAGE_VPN (ce_page_new (CE_TYPE_PAGE_VPN, - connection, -@@ -206,15 +222,9 @@ ce_page_vpn_new (NMConnection *connection, - page->name = GTK_ENTRY (gtk_builder_get_object (CE_PAGE (page)->builder, "entry_name")); - page->box = GTK_BOX (gtk_builder_get_object (CE_PAGE (page)->builder, "page")); - -- page->setting_connection = nm_connection_get_setting_connection (connection); -- page->setting_vpn = nm_connection_get_setting_vpn (connection); -- vpn_type = nm_setting_vpn_get_service_type (page->setting_vpn); -+ g_signal_connect (page, "initialized", G_CALLBACK (finish_setup), NULL); - -- page->plugin = vpn_get_plugin_by_service (vpn_type); -- if (page->plugin) -- load_vpn_plugin (page, connection); -- -- connect_vpn_page (page); -+ CE_PAGE (page)->security_setting = NM_SETTING_VPN_SETTING_NAME; - - return CE_PAGE (page); - } --- -2.7.4 - diff --git a/SOURCES/0001-printers-Remove-unused-function.patch b/SOURCES/0001-printers-Remove-unused-function.patch deleted file mode 100644 index 8948b15..0000000 --- a/SOURCES/0001-printers-Remove-unused-function.patch +++ /dev/null @@ -1,99 +0,0 @@ -From 80dce1ee4ccf3807761da5a6b16057e81f17a319 Mon Sep 17 00:00:00 2001 -From: Marek Kasik -Date: Fri, 22 May 2015 11:17:07 +0200 -Subject: [PATCH 1/2] printers: Remove unused function - -Function printer_set_default_media_size() is not used anywhere -in Printer panel. - -https://bugzilla.gnome.org/show_bug.cgi?id=748569 ---- - panels/printers/pp-utils.c | 58 ---------------------------------------------- - panels/printers/pp-utils.h | 2 -- - 2 files changed, 60 deletions(-) - -diff --git a/panels/printers/pp-utils.c b/panels/printers/pp-utils.c -index 7d84dea..3eb8e60 100644 ---- a/panels/printers/pp-utils.c -+++ b/panels/printers/pp-utils.c -@@ -1341,64 +1341,6 @@ get_paper_size_from_locale () - return "iso-a4"; - } - --/* Set default media size according to the locale */ --void --printer_set_default_media_size (const gchar *printer_name) --{ -- GVariantBuilder array_builder; -- GDBusConnection *bus; -- GVariant *output; -- GError *error = NULL; -- -- bus = g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, &error); -- if (!bus) -- { -- g_warning ("Failed to get system bus: %s", error->message); -- g_error_free (error); -- return; -- } -- -- g_variant_builder_init (&array_builder, G_VARIANT_TYPE ("as")); -- g_variant_builder_add (&array_builder, "s", get_paper_size_from_locale ()); -- -- output = g_dbus_connection_call_sync (bus, -- MECHANISM_BUS, -- "/", -- MECHANISM_BUS, -- "PrinterAddOption", -- g_variant_new ("(ssas)", -- printer_name, -- "media", -- &array_builder), -- G_VARIANT_TYPE ("(s)"), -- G_DBUS_CALL_FLAGS_NONE, -- -1, -- NULL, -- &error); -- -- g_object_unref (bus); -- -- if (output) -- { -- const gchar *ret_error; -- -- g_variant_get (output, "(&s)", &ret_error); -- if (ret_error[0] != '\0') -- g_warning ("cups-pk-helper: setting of media size for printer %s failed: %s", printer_name, ret_error); -- -- g_variant_unref (output); -- } -- else -- { -- if (!(error->domain == G_DBUS_ERROR && -- (error->code == G_DBUS_ERROR_SERVICE_UNKNOWN || -- error->code == G_DBUS_ERROR_UNKNOWN_METHOD))) -- g_warning ("%s", error->message); -- g_error_free (error); -- } --} -- -- - typedef struct - { - gchar *printer_name; -diff --git a/panels/printers/pp-utils.h b/panels/printers/pp-utils.h -index 6543181..37af065 100644 ---- a/panels/printers/pp-utils.h -+++ b/panels/printers/pp-utils.h -@@ -144,8 +144,6 @@ gchar *printer_get_hostname (cups_ptype_t printer_type, - const gchar *device_uri, - const gchar *printer_uri); - --void printer_set_default_media_size (const gchar *printer_name); -- - typedef void (*PSPCallback) (gchar *printer_name, - gboolean success, - gpointer user_data); --- -2.4.3 - diff --git a/SOURCES/0001-printers-Show-border-around-No-printers-detected-tex.patch b/SOURCES/0001-printers-Show-border-around-No-printers-detected-tex.patch deleted file mode 100644 index 843d463..0000000 --- a/SOURCES/0001-printers-Show-border-around-No-printers-detected-tex.patch +++ /dev/null @@ -1,49 +0,0 @@ -From bd4fcd5706b2bc20c2bf62e33be5c769153512fb Mon Sep 17 00:00:00 2001 -From: Marek Kasik -Date: Tue, 26 May 2015 11:43:08 +0200 -Subject: [PATCH] printers: Show border around 'No printers detected' text - -The GtkStack page which shows the label 'No printers detected' in the -'New printer dialog' misses border. -This commit places the GtkLabel into a GtkFrame to achieve that. - -https://bugzilla.gnome.org/show_bug.cgi?id=749883 ---- - panels/printers/new-printer-dialog.ui | 19 +++++++++++++------ - 1 file changed, 13 insertions(+), 6 deletions(-) - -diff --git a/panels/printers/new-printer-dialog.ui b/panels/printers/new-printer-dialog.ui -index 751bce2..2024978 100644 ---- a/panels/printers/new-printer-dialog.ui -+++ b/panels/printers/new-printer-dialog.ui -@@ -148,14 +148,21 @@ - - - -- -+ - True - False -- False -- No printers detected. -- -- -- -+ in -+ -+ -+ True -+ False -+ False -+ No printers detected. -+ -+ -+ -+ -+ - - - no-printers-page --- -2.4.3 - diff --git a/SOURCES/0001-printers-actualize-printers-list.patch b/SOURCES/0001-printers-actualize-printers-list.patch new file mode 100644 index 0000000..c7e6cd8 --- /dev/null +++ b/SOURCES/0001-printers-actualize-printers-list.patch @@ -0,0 +1,127 @@ +From b8b0347edfb6896b72fd5a207e6cd12d0e578505 Mon Sep 17 00:00:00 2001 +From: Felipe Borges +Date: Thu, 6 Apr 2017 13:11:36 +0200 +Subject: [PATCH] printers: Make actualize_printers_list* cancellable + +This way we can safely interrupt an update without crashing +g-c-c. + +https://bugzilla.gnome.org/show_bug.cgi?id=780299 +--- + panels/printers/cc-printers-panel.c | 31 ++++++++++++++++++++++++++++--- + panels/printers/pp-cups.c | 6 +++++- + 2 files changed, 33 insertions(+), 4 deletions(-) + +diff --git a/panels/printers/cc-printers-panel.c b/panels/printers/cc-printers-panel.c +index fb5560843..fb1299982 100644 +--- a/panels/printers/cc-printers-panel.c ++++ b/panels/printers/cc-printers-panel.c +@@ -107,6 +107,7 @@ struct _CcPrintersPanelPrivate + GHashTable *preferred_drivers; + GCancellable *get_all_ppds_cancellable; + GCancellable *subscription_renew_cancellable; ++ GCancellable *actualize_printers_list_cancellable; + + gchar *new_printer_name; + gchar *new_printer_location; +@@ -196,6 +197,9 @@ cc_printers_panel_dispose (GObject *object) + g_cancellable_cancel (priv->subscription_renew_cancellable); + g_clear_object (&priv->subscription_renew_cancellable); + ++ g_cancellable_cancel (priv->actualize_printers_list_cancellable); ++ g_clear_object (&priv->actualize_printers_list_cancellable); ++ + detach_from_cups_notifier (CC_PRINTERS_PANEL (object)); + + if (priv->cups_status_check_id > 0) +@@ -1172,6 +1176,7 @@ actualize_printers_list_cb (GObject *source_object, + gboolean valid = FALSE; + PpCups *cups = PP_CUPS (source_object); + PpCupsDests *cups_dests; ++ GError *error = NULL; + gchar *current_printer_name = NULL; + gchar *printer_icon_name = NULL; + gchar *default_icon_name = NULL; +@@ -1181,6 +1186,19 @@ actualize_printers_list_cb (GObject *source_object, + int i, j; + int num_jobs = 0; + ++ cups_dests = pp_cups_get_dests_finish (cups, result, &error); ++ ++ if (cups_dests == NULL && error != NULL) ++ { ++ if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) ++ { ++ g_warning ("Could not get dests: %s", error->message); ++ } ++ ++ g_error_free (error); ++ return; ++ } ++ + priv = PRINTERS_PANEL_PRIVATE (self); + + treeview = (GtkTreeView*) +@@ -1210,7 +1228,6 @@ actualize_printers_list_cb (GObject *source_object, + } + + free_dests (self); +- cups_dests = pp_cups_get_dests_finish (cups, result, NULL); + + priv->dests = cups_dests->dests; + priv->num_dests = cups_dests->num_of_dests; +@@ -1413,10 +1430,16 @@ actualize_printers_list_cb (GObject *source_object, + static void + actualize_printers_list (CcPrintersPanel *self) + { +- PpCups *cups; ++ CcPrintersPanelPrivate *priv; ++ PpCups *cups; ++ ++ priv = PRINTERS_PANEL_PRIVATE (self); + + cups = pp_cups_new (); +- pp_cups_get_dests_async (cups, NULL, actualize_printers_list_cb, self); ++ pp_cups_get_dests_async (cups, ++ priv->actualize_printers_list_cancellable, ++ actualize_printers_list_cb, ++ self); + } + + static void +@@ -3106,6 +3129,8 @@ cc_printers_panel_init (CcPrintersPanel *self) + + priv->preferred_drivers = NULL; + ++ priv->actualize_printers_list_cancellable = g_cancellable_new (); ++ + builder_result = gtk_builder_add_objects_from_resource (priv->builder, + "/org/gnome/control-center/printers/printers.ui", + objects, &error); +diff --git a/panels/printers/pp-cups.c b/panels/printers/pp-cups.c +index 6521b90ba..0d0d4a52b 100644 +--- a/panels/printers/pp-cups.c ++++ b/panels/printers/pp-cups.c +@@ -73,7 +73,10 @@ _pp_cups_get_dests_thread (GTask *task, + dests = g_new0 (PpCupsDests, 1); + dests->num_of_dests = cupsGetDests (&dests->dests); + +- g_task_return_pointer (task, dests, (GDestroyNotify) pp_cups_dests_free); ++ if (g_task_set_return_on_cancel (task, FALSE)) ++ { ++ g_task_return_pointer (task, dests, (GDestroyNotify) pp_cups_dests_free); ++ } + } + + void +@@ -85,6 +88,7 @@ pp_cups_get_dests_async (PpCups *cups, + GTask *task; + + task = g_task_new (cups, cancellable, callback, user_data); ++ g_task_set_return_on_cancel (task, TRUE); + g_task_run_in_thread (task, (GTaskThreadFunc) _pp_cups_get_dests_thread); + g_object_unref (task); + } +-- +2.12.2 + diff --git a/SOURCES/0001-printers-avoid-crashes-when-searching-with-special-chars.patch b/SOURCES/0001-printers-avoid-crashes-when-searching-with-special-chars.patch deleted file mode 100644 index d0fe5d9..0000000 --- a/SOURCES/0001-printers-avoid-crashes-when-searching-with-special-chars.patch +++ /dev/null @@ -1,34 +0,0 @@ -From ac6b1acc1f6972e79776fb5d7f5b85d06fbc8cb7 Mon Sep 17 00:00:00 2001 -From: Felipe Borges -Date: Thu, 3 Sep 2015 13:16:37 +0200 -Subject: [PATCH] printers: avoid crashes when searching for printers w/ - special chars - -Since the dialog considers just the hostname part from the URL, -unespacing the url avoids a backend crash. - -https://bugzilla.gnome.org/show_bug.cgi?id=754248 ---- - panels/printers/pp-new-printer-dialog.c | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -diff --git a/panels/printers/pp-new-printer-dialog.c b/panels/printers/pp-new-printer-dialog.c -index e74cc65..cdedd7e 100644 ---- a/panels/printers/pp-new-printer-dialog.c -+++ b/panels/printers/pp-new-printer-dialog.c -@@ -1386,7 +1386,11 @@ parse_uri (const gchar *uri, - *port = atoi (position + 1); - } - -- *host = resulting_host; -+ *host = g_uri_unescape_string (resulting_host, -+ G_URI_RESERVED_CHARS_GENERIC_DELIMITERS -+ G_URI_RESERVED_CHARS_SUBCOMPONENT_DELIMITERS); -+ -+ g_free (resulting_host); - - return TRUE; - } --- -2.5.0 - diff --git a/SOURCES/0001-region-Avoid-overly-long-labels-causing-horizontal-s.patch b/SOURCES/0001-region-Avoid-overly-long-labels-causing-horizontal-s.patch deleted file mode 100644 index 52754d5..0000000 --- a/SOURCES/0001-region-Avoid-overly-long-labels-causing-horizontal-s.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 2689e36489ebb59d04b8f64860e28ac3d39fe88b Mon Sep 17 00:00:00 2001 -From: Rui Matos -Date: Mon, 13 Jul 2015 14:29:46 +0200 -Subject: [PATCH 1/3] region: Avoid overly long labels causing horizontal - scrolling - -Just ellipsize them instead. - -https://bugzilla.gnome.org/show_bug.cgi?id=752383 ---- - panels/region/cc-input-chooser.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/panels/region/cc-input-chooser.c b/panels/region/cc-input-chooser.c -index 297b79e..74a0f6d 100644 ---- a/panels/region/cc-input-chooser.c -+++ b/panels/region/cc-input-chooser.c -@@ -138,6 +138,7 @@ padded_label_new (const gchar *text, - - label = gtk_label_new (text); - gtk_misc_set_alignment (GTK_MISC (label), alignment, 0.5); -+ gtk_label_set_ellipsize (GTK_LABEL (label), PANGO_ELLIPSIZE_MIDDLE); - set_row_widget_margins (label); - gtk_box_pack_start (GTK_BOX (widget), label, TRUE, TRUE, 0); - if (dim_label) --- -2.5.0 - diff --git a/SOURCES/0001-region-If-language-isn-t-set-in-AccountsService-show.patch b/SOURCES/0001-region-If-language-isn-t-set-in-AccountsService-show.patch deleted file mode 100644 index 14748c3..0000000 --- a/SOURCES/0001-region-If-language-isn-t-set-in-AccountsService-show.patch +++ /dev/null @@ -1,37 +0,0 @@ -From f31897f7a3ad9fb1a1e144064bfc8611f598e218 Mon Sep 17 00:00:00 2001 -From: Rui Matos -Date: Wed, 19 Aug 2015 15:50:29 +0200 -Subject: [PATCH] region: If language isn't set in AccountsService, show - current locale - -For newly created user accounts, AccountsService won't have the -language property set. Instead of defaulting to en_US in that case, -let's fallback to the current locale. - -https://bugzilla.gnome.org/show_bug.cgi?id=753828 ---- - panels/region/cc-region-panel.c | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) - -diff --git a/panels/region/cc-region-panel.c b/panels/region/cc-region-panel.c -index e89268b..0955dd7 100644 ---- a/panels/region/cc-region-panel.c -+++ b/panels/region/cc-region-panel.c -@@ -614,11 +614,12 @@ static void - update_language_from_user (CcRegionPanel *self) - { - CcRegionPanelPrivate *priv = self->priv; -- const gchar *language; -+ const gchar *language = NULL; - - if (act_user_is_loaded (priv->user)) - language = act_user_get_language (priv->user); -- else -+ -+ if (language == NULL || *language == '\0') - language = setlocale (LC_MESSAGES, NULL); - - g_free (priv->language); --- -2.4.3 - diff --git a/SOURCES/0001-user-accounts-fix-enterprise-accounts-deleting.patch b/SOURCES/0001-user-accounts-fix-enterprise-accounts-deleting.patch deleted file mode 100644 index 84c677f..0000000 --- a/SOURCES/0001-user-accounts-fix-enterprise-accounts-deleting.patch +++ /dev/null @@ -1,319 +0,0 @@ -From 157887981b34e1fcdccdf0c748e7d3936524d7ea Mon Sep 17 00:00:00 2001 -From: Ondrej Holy -Date: Tue, 30 Sep 2014 11:08:08 +0200 -Subject: [PATCH] user-accounts: fix enterprise accounts deleting - -Deleting enterprise accounts using act_user_manager_delete_user fails -with error: userdel failed, because enterprise accounts are added -using act_user_manager_cache_user and don't have entries in passwd -file. Thus enterprise accounts should be removed by -act_user_manager_uncache_user. - -https://bugzilla.gnome.org/show_bug.cgi?id=727871 ---- - panels/user-accounts/um-user-panel.c | 217 ++++++++++++++++++++++++++++++++++- - 1 file changed, 212 insertions(+), 5 deletions(-) - -diff --git a/panels/user-accounts/um-user-panel.c b/panels/user-accounts/um-user-panel.c -index 0511cde..af39fae 100644 ---- a/panels/user-accounts/um-user-panel.c -+++ b/panels/user-accounts/um-user-panel.c -@@ -58,6 +58,8 @@ - - #include "cc-common-language.h" - -+#include "um-realm-manager.h" -+ - #define USER_ACCOUNTS_PERMISSION "org.gnome.controlcenter.user-accounts.administration" - - CC_PANEL_REGISTER (CcUserPanel, cc_user_panel) -@@ -67,6 +69,7 @@ CC_PANEL_REGISTER (CcUserPanel, cc_user_panel) - - struct _CcUserPanelPrivate { - ActUserManager *um; -+ GCancellable *cancellable; - GtkBuilder *builder; - GtkWidget *notification; - -@@ -101,6 +104,21 @@ enum { - NUM_USER_LIST_COLS - }; - -+typedef struct { -+ CcUserPanel *self; -+ GCancellable *cancellable; -+ gchar *login; -+} AsyncDeleteData; -+ -+static void -+async_delete_data_free (AsyncDeleteData *data) -+{ -+ g_object_unref (data->self); -+ g_object_unref (data->cancellable); -+ g_free (data->login); -+ g_slice_free (AsyncDeleteData, data); -+} -+ - static void - show_error_dialog (CcUserPanelPrivate *d, - const gchar *message, -@@ -476,8 +494,174 @@ delete_user_response (GtkWidget *dialog, - } - - static void --delete_user (GtkButton *button, CcUserPanelPrivate *d) -+enterprise_user_revoked (GObject *source, -+ GAsyncResult *result, -+ gpointer user_data) -+{ -+ AsyncDeleteData *data = user_data; -+ CcUserPanelPrivate *d = data->self->priv; -+ UmRealmCommon *common = UM_REALM_COMMON (source); -+ GError *error = NULL; -+ -+ if (g_cancellable_is_cancelled (data->cancellable)) { -+ async_delete_data_free (data); -+ return; -+ } -+ -+ um_realm_common_call_change_login_policy_finish (common, result, &error); -+ if (error != NULL) { -+ show_error_dialog (d, _("Failed to revoke remotely managed user"), error); -+ g_error_free (error); -+ } -+ -+ async_delete_data_free (data); -+} -+ -+static UmRealmCommon * -+find_matching_realm (UmRealmManager *realm_manager, const gchar *login) -+{ -+ UmRealmCommon *common = NULL; -+ GList *realms, *l; -+ -+ realms = um_realm_manager_get_realms (realm_manager); -+ for (l = realms; l != NULL; l = g_list_next (l)) { -+ const gchar * const *permitted_logins; -+ gint i; -+ -+ common = um_realm_object_get_common (l->data); -+ permitted_logins = um_realm_common_get_permitted_logins (common); -+ for (i = 0; permitted_logins[i] != NULL; i++) { -+ if (g_strcmp0 (permitted_logins[i], login) == 0) -+ break; -+ } -+ -+ if (permitted_logins[i] != NULL) -+ break; -+ -+ g_clear_object (&common); -+ } -+ g_list_free_full (realms, g_object_unref); -+ -+ return common; -+} -+ -+static void -+realm_manager_found (GObject *source, -+ GAsyncResult *result, -+ gpointer user_data) -+{ -+ AsyncDeleteData *data = user_data; -+ CcUserPanelPrivate *d = data->self->priv; -+ UmRealmCommon *common; -+ UmRealmManager *realm_manager; -+ const gchar *add[1]; -+ const gchar *remove[2]; -+ GVariant *options; -+ GError *error = NULL; -+ -+ if (g_cancellable_is_cancelled (data->cancellable)) { -+ async_delete_data_free (data); -+ return; -+ } -+ -+ realm_manager = um_realm_manager_new_finish (result, &error); -+ if (error != NULL) { -+ show_error_dialog (d, _("Failed to revoke remotely managed user"), error); -+ g_error_free (error); -+ async_delete_data_free (data); -+ return; -+ } -+ -+ /* Find matching realm */ -+ common = find_matching_realm (realm_manager, data->login); -+ if (common == NULL) { -+ /* The realm was probably left */ -+ async_delete_data_free (data); -+ return; -+ } -+ -+ /* Remove the user from permitted logins */ -+ g_debug ("Denying future login for: %s", data->login); -+ -+ add[0] = NULL; -+ remove[0] = data->login; -+ remove[1] = NULL; -+ -+ options = g_variant_new_array (G_VARIANT_TYPE ("{sv}"), NULL, 0); -+ um_realm_common_call_change_login_policy (common, "", -+ add, remove, options, -+ data->cancellable, -+ enterprise_user_revoked, -+ data); -+ -+ g_object_unref (common); -+} -+ -+static void -+enterprise_user_uncached (GObject *source, -+ GAsyncResult *res, -+ gpointer user_data) -+{ -+ AsyncDeleteData *data = user_data; -+ CcUserPanelPrivate *d = data->self->priv; -+ ActUserManager *manager = ACT_USER_MANAGER (source); -+ GError *error = NULL; -+ -+ if (g_cancellable_is_cancelled (data->cancellable)) { -+ async_delete_data_free (data); -+ return; -+ } -+ -+ act_user_manager_uncache_user_finish (manager, res, &error); -+ if (error == NULL) { -+ /* Find realm manager */ -+ um_realm_manager_new (d->cancellable, realm_manager_found, data); -+ } -+ else { -+ show_error_dialog (d, _("Failed to revoke remotely managed user"), error); -+ g_error_free (error); -+ async_delete_data_free (data); -+ } -+} -+ -+static void -+delete_enterprise_user_response (GtkWidget *dialog, -+ gint response_id, -+ gpointer user_data) -+{ -+ CcUserPanel *self = UM_USER_PANEL (user_data); -+ CcUserPanelPrivate *d = self->priv; -+ AsyncDeleteData *data; -+ ActUser *user; -+ -+ gtk_widget_destroy (dialog); -+ -+ if (response_id != GTK_RESPONSE_ACCEPT) { -+ return; -+ } -+ -+ user = get_selected_user (self->priv); -+ -+ data = g_slice_new (AsyncDeleteData); -+ data->self = g_object_ref (self); -+ data->cancellable = g_object_ref (d->cancellable); -+ data->login = g_strdup (act_user_get_user_name (user)); -+ -+ g_object_unref (user); -+ -+ /* Uncache the user account from the accountsservice */ -+ g_debug ("Uncaching remote user: %s", data->login); -+ -+ act_user_manager_uncache_user_async (d->um, data->login, -+ data->cancellable, -+ enterprise_user_uncached, -+ data); -+} -+ -+static void -+delete_user (GtkButton *button, CcUserPanel *self) - { -+ CcUserPanelPrivate *d = self->priv; - ActUser *user; - GtkWidget *dialog; - -@@ -507,7 +691,7 @@ delete_user (GtkButton *button, CcUserPanelPrivate *d) - g_signal_connect (dialog, "response", - G_CALLBACK (gtk_widget_destroy), NULL); - } -- else { -+ else if (act_user_is_local_account (user)) { - dialog = gtk_message_dialog_new (GTK_WINDOW (gtk_widget_get_toplevel (d->main_box)), - 0, - GTK_MESSAGE_QUESTION, -@@ -529,6 +713,24 @@ delete_user (GtkButton *button, CcUserPanelPrivate *d) - g_signal_connect (dialog, "response", - G_CALLBACK (delete_user_response), d); - } -+ else { -+ dialog = gtk_message_dialog_new (GTK_WINDOW (gtk_widget_get_toplevel (d->main_box)), -+ 0, -+ GTK_MESSAGE_QUESTION, -+ GTK_BUTTONS_NONE, -+ _("Are you sure you want to permanently delete %s's account?"), -+ get_real_or_user_name (user)); -+ -+ gtk_dialog_add_buttons (GTK_DIALOG (dialog), -+ _("_Delete"), GTK_RESPONSE_ACCEPT, -+ _("_Cancel"), GTK_RESPONSE_CANCEL, -+ NULL); -+ -+ gtk_window_set_icon_name (GTK_WINDOW (dialog), "system-users"); -+ -+ g_signal_connect (dialog, "response", -+ G_CALLBACK (delete_enterprise_user_response), self); -+ } - - g_signal_connect (dialog, "close", - G_CALLBACK (gtk_widget_destroy), NULL); -@@ -1355,8 +1557,9 @@ update_padding (GtkWidget *button, GtkWidget *label) - } - - static void --setup_main_window (CcUserPanelPrivate *d) -+setup_main_window (CcUserPanel *self) - { -+ CcUserPanelPrivate *d = self->priv; - GtkWidget *userlist; - GtkTreeModel *model; - GtkListStore *store; -@@ -1434,7 +1637,7 @@ setup_main_window (CcUserPanelPrivate *d) - g_signal_connect (button, "clicked", G_CALLBACK (add_user), d); - - button = get_widget (d, "remove-user-toolbutton"); -- g_signal_connect (button, "clicked", G_CALLBACK (delete_user), d); -+ g_signal_connect (button, "clicked", G_CALLBACK (delete_user), self); - - button = get_widget (d, "user-icon-nonbutton"); - add_unlock_tooltip (button); -@@ -1517,6 +1720,7 @@ cc_user_panel_init (CcUserPanel *self) - - d->builder = gtk_builder_new (); - d->um = act_user_manager_get_default (); -+ d->cancellable = g_cancellable_new (); - - error = NULL; - if (!gtk_builder_add_from_resource (d->builder, -@@ -1533,7 +1737,7 @@ cc_user_panel_init (CcUserPanel *self) - d->main_box = get_widget (d, "accounts-vbox"); - gtk_container_add (GTK_CONTAINER (self), get_widget (d, "overlay")); - d->history_dialog = um_history_dialog_new (); -- setup_main_window (d); -+ setup_main_window (self); - - context = gtk_widget_get_style_context (get_widget (d, "list-scrolledwindow")); - gtk_style_context_set_junction_sides (context, GTK_JUNCTION_BOTTOM); -@@ -1546,6 +1750,9 @@ cc_user_panel_dispose (GObject *object) - { - CcUserPanelPrivate *priv = UM_USER_PANEL (object)->priv; - -+ g_cancellable_cancel (priv->cancellable); -+ g_clear_object (&priv->cancellable); -+ - if (priv->um) { - g_signal_handlers_disconnect_by_data (priv->um, priv); - priv->um = NULL; --- -1.9.3 - diff --git a/SOURCES/0001-user-accounts-use-common-function-for-error-messages.patch b/SOURCES/0001-user-accounts-use-common-function-for-error-messages.patch deleted file mode 100644 index 6aa8945..0000000 --- a/SOURCES/0001-user-accounts-use-common-function-for-error-messages.patch +++ /dev/null @@ -1,73 +0,0 @@ -From ff2cab9ee4d00e3b97732c0db04f91537514c52f Mon Sep 17 00:00:00 2001 -From: Ondrej Holy -Date: Tue, 30 Sep 2014 08:54:16 +0200 -Subject: [PATCH] user-accounts: use common function for error messages - -https://bugzilla.gnome.org/show_bug.cgi?id=727871 ---- - panels/user-accounts/um-user-panel.c | 41 +++++++++++++++++++++++------------- - 1 file changed, 26 insertions(+), 15 deletions(-) - -diff --git a/panels/user-accounts/um-user-panel.c b/panels/user-accounts/um-user-panel.c -index 2e3b516..0511cde 100644 ---- a/panels/user-accounts/um-user-panel.c -+++ b/panels/user-accounts/um-user-panel.c -@@ -101,6 +101,29 @@ enum { - NUM_USER_LIST_COLS - }; - -+static void -+show_error_dialog (CcUserPanelPrivate *d, -+ const gchar *message, -+ GError *error) -+{ -+ GtkWidget *dialog; -+ -+ dialog = gtk_message_dialog_new (GTK_WINDOW (gtk_widget_get_toplevel (d->main_box)), -+ GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_USE_HEADER_BAR, -+ GTK_MESSAGE_ERROR, -+ GTK_BUTTONS_CLOSE, -+ "%s", message); -+ -+ if (error != NULL) { -+ g_dbus_error_strip_remote_error (error); -+ gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), -+ "%s", error->message); -+ } -+ -+ g_signal_connect (dialog, "response", G_CALLBACK (gtk_widget_destroy), NULL); -+ gtk_window_present (GTK_WINDOW (dialog)); -+} -+ - static ActUser * - get_selected_user (CcUserPanelPrivate *d) - { -@@ -407,22 +430,10 @@ delete_user_done (ActUserManager *manager, - - error = NULL; - if (!act_user_manager_delete_user_finish (manager, res, &error)) { -- if (!g_error_matches (error, ACT_USER_MANAGER_ERROR, ACT_USER_MANAGER_ERROR_PERMISSION_DENIED)) { -- GtkWidget *dialog; -+ if (!g_error_matches (error, ACT_USER_MANAGER_ERROR, -+ ACT_USER_MANAGER_ERROR_PERMISSION_DENIED)) -+ show_error_dialog (d, _("Failed to delete user"), error); - -- dialog = gtk_message_dialog_new (GTK_WINDOW (gtk_widget_get_toplevel (d->main_box)), -- GTK_DIALOG_DESTROY_WITH_PARENT, -- GTK_MESSAGE_ERROR, -- GTK_BUTTONS_CLOSE, -- _("Failed to delete user")); -- -- gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), -- "%s", error->message); -- -- g_signal_connect (G_OBJECT (dialog), "response", -- G_CALLBACK (gtk_widget_destroy), NULL); -- gtk_window_present (GTK_WINDOW (dialog)); -- } - g_error_free (error); - } - } --- -1.9.3 - diff --git a/SOURCES/0001-wacom-Ensure-calibration-runs-on-the-builtin-display.patch b/SOURCES/0001-wacom-Ensure-calibration-runs-on-the-builtin-display.patch deleted file mode 100644 index 3749e75..0000000 --- a/SOURCES/0001-wacom-Ensure-calibration-runs-on-the-builtin-display.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 5d6dfbf0847f0ff1fa389496a388ebe36deb9ae8 Mon Sep 17 00:00:00 2001 -From: Carlos Garnacho -Date: Wed, 20 Apr 2016 17:07:18 +0200 -Subject: [PATCH] wacom: Ensure calibration runs on the builtin display for ISD - devices. - ---- - panels/wacom/gsd-wacom-device.c | 3 +++ - 1 file changed, 3 insertions(+) - -diff --git a/panels/wacom/gsd-wacom-device.c b/panels/wacom/gsd-wacom-device.c -index d656c2f..9bbb52b 100644 ---- a/panels/wacom/gsd-wacom-device.c -+++ b/panels/wacom/gsd-wacom-device.c -@@ -582,6 +582,9 @@ find_output_by_heuristic (GnomeRRScreen *rr_screen, GsdWacomDevice *device) - { - GnomeRROutput *rr_output; - -+ if (device->priv->is_isd) -+ return find_builtin_output (rr_screen); -+ - /* TODO: This heuristic will fail for non-Wacom display - * tablets and may give the wrong result if multiple Wacom - * display tablets are connected. --- -2.7.3 - diff --git a/SOURCES/0001-wacom-Fix-eraser-pressure-sensitivity.patch b/SOURCES/0001-wacom-Fix-eraser-pressure-sensitivity.patch new file mode 100644 index 0000000..cd58a66 --- /dev/null +++ b/SOURCES/0001-wacom-Fix-eraser-pressure-sensitivity.patch @@ -0,0 +1,195 @@ +From 563fc80c6baafd4e93b5e470a7666b0e3f7e539b Mon Sep 17 00:00:00 2001 +From: Carlos Garnacho +Date: Thu, 8 Jun 2017 16:51:58 +0200 +Subject: [PATCH] wacom: Fix eraser pressure sensitivity + +If was made to follow the very same GSettings path than the stylus tip. +Since we don't have easy access to the matching eraser from a GsdWacomStylus, +make it keep both GSettings whenever the stylus has an eraser. +--- + panels/wacom/cc-wacom-stylus-page.c | 2 +- + panels/wacom/gsd-wacom-device.c | 81 ++++++++++++++++++++++++++++++++----- + panels/wacom/gsd-wacom-device.h | 1 + + 3 files changed, 73 insertions(+), 11 deletions(-) + +diff --git a/panels/wacom/cc-wacom-stylus-page.c b/panels/wacom/cc-wacom-stylus-page.c +index 5b8f5b796..e7494c731 100644 +--- a/panels/wacom/cc-wacom-stylus-page.c ++++ b/panels/wacom/cc-wacom-stylus-page.c +@@ -451,7 +451,7 @@ cc_wacom_stylus_page_new (GsdWacomStylus *stylus) + priv->stylus_settings = gsd_wacom_stylus_get_settings (stylus); + has_eraser = gsd_wacom_stylus_get_has_eraser (stylus); + if (has_eraser) +- priv->eraser_settings = gsd_wacom_stylus_get_settings (stylus); ++ priv->eraser_settings = gsd_wacom_stylus_get_eraser_settings (stylus); + + /* Stylus name */ + gtk_label_set_text (GTK_LABEL (WID ("label-stylus")), gsd_wacom_stylus_get_name (stylus)); +diff --git a/panels/wacom/gsd-wacom-device.c b/panels/wacom/gsd-wacom-device.c +index 0cf725b35..b13050538 100644 +--- a/panels/wacom/gsd-wacom-device.c ++++ b/panels/wacom/gsd-wacom-device.c +@@ -69,6 +69,7 @@ struct GsdWacomStylusPrivate + char *name; + const char *icon_name; + GSettings *settings; ++ GSettings *eraser_settings; + gboolean has_eraser; + int num_buttons; + }; +@@ -115,6 +116,11 @@ gsd_wacom_stylus_finalize (GObject *object) + p->settings = NULL; + } + ++ if (p->eraser_settings != NULL) { ++ g_object_unref (p->eraser_settings); ++ p->eraser_settings = NULL; ++ } ++ + g_free (p->name); + p->name = NULL; + +@@ -148,7 +154,8 @@ get_icon_name_from_type (const WacomStylus *wstylus) + static GsdWacomStylus * + gsd_wacom_stylus_new (GsdWacomDevice *device, + const WacomStylus *wstylus, +- GSettings *settings) ++ GSettings *settings, ++ GSettings *eraser_settings) + { + GsdWacomStylus *stylus; + +@@ -161,6 +168,7 @@ gsd_wacom_stylus_new (GsdWacomDevice *device, + stylus->priv->id = libwacom_stylus_get_id (wstylus); + stylus->priv->name = g_strdup (libwacom_stylus_get_name (wstylus)); + stylus->priv->settings = settings; ++ stylus->priv->eraser_settings = eraser_settings; + stylus->priv->type = libwacom_stylus_get_type (wstylus); + stylus->priv->icon_name = get_icon_name_from_type (wstylus); + stylus->priv->has_eraser = libwacom_stylus_has_eraser (wstylus); +@@ -177,6 +185,14 @@ gsd_wacom_stylus_get_settings (GsdWacomStylus *stylus) + return stylus->priv->settings; + } + ++GSettings * ++gsd_wacom_stylus_get_eraser_settings (GsdWacomStylus *stylus) ++{ ++ g_return_val_if_fail (GSD_IS_WACOM_STYLUS (stylus), NULL); ++ ++ return stylus->priv->eraser_settings; ++} ++ + const char * + gsd_wacom_stylus_get_name (GsdWacomStylus *stylus) + { +@@ -878,8 +894,54 @@ gsd_wacom_device_get_display_rotation (GsdWacomDevice *device) + return get_rotation_wacom (rotation); + } + ++static GSettings * ++get_stylus_settings (const WacomStylus *stylus, ++ const gchar *settings_path, ++ const gchar *schema) ++{ ++ gchar *stylus_settings_path; ++ GSettings *settings; ++ ++ stylus_settings_path = g_strdup_printf ("%s0x%x/", settings_path, libwacom_stylus_get_id (stylus)); ++ settings = g_settings_new_with_path (schema, stylus_settings_path); ++ g_free (stylus_settings_path); ++ ++ return settings; ++} ++ ++static GSettings * ++find_eraser_settings (WacomDevice *device, ++ const WacomStylus *stylus, ++ const gchar *settings_path) ++{ ++ const WacomStylus *other; ++ const int *ids; ++ int i, num_styli; ++ ++ if (!libwacom_stylus_has_eraser (stylus) || ++ libwacom_stylus_is_eraser (stylus)) ++ return NULL; ++ ++ ids = libwacom_get_supported_styli (device, &num_styli); ++ ++ for (i = 0; i < num_styli; i++) { ++ if (ids[i] == libwacom_stylus_get_id (stylus)) ++ continue; ++ ++ other = libwacom_stylus_get_for_id (db, ids[i]); ++ ++ if (libwacom_stylus_is_eraser (other) && ++ libwacom_stylus_get_type (other) == libwacom_stylus_get_type (stylus)) { ++ return get_stylus_settings (other, settings_path, WACOM_ERASER_SCHEMA); ++ } ++ } ++ ++ return NULL; ++} ++ + static void + add_stylus_to_device (GsdWacomDevice *device, ++ WacomDevice *wacom_device, + const char *settings_path, + int id) + { +@@ -888,8 +950,7 @@ add_stylus_to_device (GsdWacomDevice *device, + wstylus = libwacom_stylus_get_for_id (db, id); + if (wstylus) { + GsdWacomStylus *stylus; +- char *stylus_settings_path; +- GSettings *settings; ++ GSettings *settings, *eraser_settings; + + if (device->priv->type == WACOM_TYPE_STYLUS && + libwacom_stylus_is_eraser (wstylus)) +@@ -898,15 +959,15 @@ add_stylus_to_device (GsdWacomDevice *device, + libwacom_stylus_is_eraser (wstylus) == FALSE) + return; + +- stylus_settings_path = g_strdup_printf ("%s0x%x/", settings_path, id); + if (device->priv->type == WACOM_TYPE_STYLUS) { +- settings = g_settings_new_with_path (WACOM_STYLUS_SCHEMA, stylus_settings_path); +- stylus = gsd_wacom_stylus_new (device, wstylus, settings); ++ settings = get_stylus_settings (wstylus, settings_path, WACOM_STYLUS_SCHEMA); ++ eraser_settings = find_eraser_settings (wacom_device, wstylus, settings_path); + } else { +- settings = g_settings_new_with_path (WACOM_ERASER_SCHEMA, stylus_settings_path); +- stylus = gsd_wacom_stylus_new (device, wstylus, settings); ++ settings = get_stylus_settings (wstylus, settings_path, WACOM_ERASER_SCHEMA); ++ eraser_settings = NULL; + } +- g_free (stylus_settings_path); ++ ++ stylus = gsd_wacom_stylus_new (device, wstylus, settings, eraser_settings); + device->priv->styli = g_list_prepend (device->priv->styli, stylus); + } + } +@@ -1421,7 +1482,7 @@ gsd_wacom_device_update_from_db (GsdWacomDevice *device, + ids = libwacom_get_supported_styli (wacom_device, &num_styli); + g_assert (num_styli >= 1); + for (i = 0; i < num_styli; i++) +- add_stylus_to_device (device, settings_path, ids[i]); ++ add_stylus_to_device (device, wacom_device, settings_path, ids[i]); + device->priv->styli = g_list_reverse (device->priv->styli); + } + g_free (settings_path); +diff --git a/panels/wacom/gsd-wacom-device.h b/panels/wacom/gsd-wacom-device.h +index 374eca91d..9feafd70b 100644 +--- a/panels/wacom/gsd-wacom-device.h ++++ b/panels/wacom/gsd-wacom-device.h +@@ -79,6 +79,7 @@ typedef enum { + + GType gsd_wacom_stylus_get_type (void); + GSettings * gsd_wacom_stylus_get_settings (GsdWacomStylus *stylus); ++GSettings * gsd_wacom_stylus_get_eraser_settings (GsdWacomStylus *stylus); + const char * gsd_wacom_stylus_get_name (GsdWacomStylus *stylus); + const char * gsd_wacom_stylus_get_icon_name (GsdWacomStylus *stylus); + GsdWacomDevice * gsd_wacom_stylus_get_device (GsdWacomStylus *stylus); +-- +2.13.0 + diff --git a/SOURCES/0002-hostname-helper-fall-back-to-kernel-hostname-when-th.patch b/SOURCES/0002-hostname-helper-fall-back-to-kernel-hostname-when-th.patch new file mode 100644 index 0000000..f2a5c5a --- /dev/null +++ b/SOURCES/0002-hostname-helper-fall-back-to-kernel-hostname-when-th.patch @@ -0,0 +1,32 @@ +From a80bb954e0f4809be57c95041051bb359bc98085 Mon Sep 17 00:00:00 2001 +From: Lubomir Rintel +Date: Wed, 2 Nov 2016 17:15:20 +0100 +Subject: [PATCH 2/3] hostname-helper: fall back to kernel hostname when the + pretty one is an empty string + +The empty string is not too useful as an SSID, an attempt to create a +hotspot fails: + + (gnome-control-center:19371): network-cc-panel-WARNING **: + Failed to add new connection: (2) + A 'wireless' setting with a valid SSID is required if no AP path was given. +--- + shell/hostname-helper.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/shell/hostname-helper.c b/shell/hostname-helper.c +index ab889b96b..1a063b5cd 100644 +--- a/shell/hostname-helper.c ++++ b/shell/hostname-helper.c +@@ -178,7 +178,7 @@ pretty_hostname_to_ssid (const char *pretty) + const char *p, *prev; + char *ret = NULL; + +- if (pretty == NULL) { ++ if (pretty == NULL || *pretty == '\0') { + pretty = g_get_host_name (); + if (g_strcmp0 (pretty, "localhost") == 0) + pretty = NULL; +-- +2.12.2 + diff --git a/SOURCES/0002-network-Don-t-try-to-get-secrets-for-new-connections.patch b/SOURCES/0002-network-Don-t-try-to-get-secrets-for-new-connections.patch deleted file mode 100644 index e9a4ed7..0000000 --- a/SOURCES/0002-network-Don-t-try-to-get-secrets-for-new-connections.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 2e6149b4b83cd6ce47ad079a6df717e88a67998a Mon Sep 17 00:00:00 2001 -From: Rui Matos -Date: Tue, 26 Jan 2016 18:35:52 +0100 -Subject: [PATCH 2/4] network: Don't try to get secrets for new connections - -We don't need secrets for new connections and, in fact, trying to -retrieve secrets in that case will fail because we have a plain -NMConnection instead of a NMRemoteConnection. - -The above mentioned error would result in the page never being -initialized. ---- - panels/network/connection-editor/net-connection-editor.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/panels/network/connection-editor/net-connection-editor.c b/panels/network/connection-editor/net-connection-editor.c -index 4931d0e..9564506 100644 ---- a/panels/network/connection-editor/net-connection-editor.c -+++ b/panels/network/connection-editor/net-connection-editor.c -@@ -553,7 +553,7 @@ net_connection_editor_set_connection (NetConnectionEditor *editor, - const gchar *security_setting; - - security_setting = ce_page_get_security_setting (page); -- if (!security_setting) { -+ if (!security_setting || editor->is_new_connection) { - ce_page_complete_init (page, NULL, NULL, NULL); - } else { - get_secrets_for_page (editor, page, security_setting); --- -2.7.4 - diff --git a/SOURCES/0002-printers-Fix-setting-of-page-size.patch b/SOURCES/0002-printers-Fix-setting-of-page-size.patch deleted file mode 100644 index c6e2ea3..0000000 --- a/SOURCES/0002-printers-Fix-setting-of-page-size.patch +++ /dev/null @@ -1,96 +0,0 @@ -From b5b421288c0df5412076b05b86d8ff532bbcae9f Mon Sep 17 00:00:00 2001 -From: Marek Kasik -Date: Fri, 22 May 2015 11:23:19 +0200 -Subject: [PATCH 2/2] printers: Fix setting of page size - -Set 'PageSize' instead of 'media' for new printers since we use PPD -for construction of the combo for selecting of default paper size. -Previously, we've been setting 'media' attribute for new printers. -Attribute 'media' is used by IPP but we set paper size using 'PageSize' -which comes from PPD in the options dialog. Sometimes (quite often) IPP -gets priority over PPD in print systems. Therefore there was inconsistency -of what user set as default paper size on the options dialog and what was used. - -Also don't mark IPP and user's local options as default in PpPPDOptionWidget -since it should use just PPD (we can change PPD values only in this widget). -Since we use PPD for setting of paper size in the options dialog, we shouldn't -show a value which user does not change actually (IPP's 'media' vs. PPD's -'PageSize'). - -https://bugzilla.gnome.org/show_bug.cgi?id=748569 ---- - panels/printers/pp-new-printer.c | 4 ++-- - panels/printers/pp-ppd-option-widget.c | 3 --- - panels/printers/pp-utils.c | 8 ++++---- - panels/printers/pp-utils.h | 2 +- - 4 files changed, 7 insertions(+), 10 deletions(-) - -diff --git a/panels/printers/pp-new-printer.c b/panels/printers/pp-new-printer.c -index c21f934..d84cc1f 100644 ---- a/panels/printers/pp-new-printer.c -+++ b/panels/printers/pp-new-printer.c -@@ -1326,9 +1326,9 @@ printer_configure_async (PpNewPrinter *new_printer) - - /* Set media size for printer */ - values = g_new0 (gchar *, 2); -- values[0] = g_strdup (get_paper_size_from_locale ()); -+ values[0] = g_strdup (get_page_size_from_locale ()); - -- printer_add_option_async (priv->name, "media", values, TRUE, NULL, pao_cb, data); -+ printer_add_option_async (priv->name, "PageSize", values, FALSE, NULL, pao_cb, data); - - g_strfreev (values); - -diff --git a/panels/printers/pp-ppd-option-widget.c b/panels/printers/pp-ppd-option-widget.c -index 1e57c5b..f7d0bf4 100644 ---- a/panels/printers/pp-ppd-option-widget.c -+++ b/panels/printers/pp-ppd-option-widget.c -@@ -524,9 +524,6 @@ update_widget_real (PpPPDOptionWidget *widget) - if (ppd_file) - { - ppdMarkDefaults (ppd_file); -- cupsMarkOptions (ppd_file, -- priv->destination->num_options, -- priv->destination->options); - - for (iter = ppdFirstOption(ppd_file); iter; iter = ppdNextOption(ppd_file)) - { -diff --git a/panels/printers/pp-utils.c b/panels/printers/pp-utils.c -index 3eb8e60..85d68ab 100644 ---- a/panels/printers/pp-utils.c -+++ b/panels/printers/pp-utils.c -@@ -1331,14 +1331,14 @@ printer_get_hostname (cups_ptype_t printer_type, - return result; - } - --/* Returns default media size for current locale */ -+/* Returns default page size for current locale */ - const gchar * --get_paper_size_from_locale () -+get_page_size_from_locale (void) - { - if (g_str_equal (gtk_paper_size_get_default (), GTK_PAPER_NAME_LETTER)) -- return "na-letter"; -+ return "Letter"; - else -- return "iso-a4"; -+ return "A4"; - } - - typedef struct -diff --git a/panels/printers/pp-utils.h b/panels/printers/pp-utils.h -index 37af065..c307879 100644 ---- a/panels/printers/pp-utils.h -+++ b/panels/printers/pp-utils.h -@@ -297,7 +297,7 @@ PpPrintDevice *pp_print_device_copy (PpPrintDevice *device); - - void pp_devices_list_free (PpDevicesList *result); - --const gchar *get_paper_size_from_locale (void); -+const gchar *get_page_size_from_locale (void); - - typedef void (*GCDCallback) (GList *devices, - gboolean finished, --- -2.4.3 - diff --git a/SOURCES/0002-region-Be-more-thorough-in-cc_input_chooser_reset.patch b/SOURCES/0002-region-Be-more-thorough-in-cc_input_chooser_reset.patch deleted file mode 100644 index fb0e79b..0000000 --- a/SOURCES/0002-region-Be-more-thorough-in-cc_input_chooser_reset.patch +++ /dev/null @@ -1,55 +0,0 @@ -From 3e896edc5ab6bdb2488b1bd3442a67a2e79608a1 Mon Sep 17 00:00:00 2001 -From: Rui Matos -Date: Mon, 25 Apr 2016 20:04:02 +0200 -Subject: [PATCH 2/3] region: Be more thorough in cc_input_chooser_reset() - -This should result in returning to the initial state as intended -instead of keeping the filter entry shown and the filter applied. ---- - panels/region/cc-input-chooser.c | 17 +++++++++++++++++ - 1 file changed, 17 insertions(+) - -diff --git a/panels/region/cc-input-chooser.c b/panels/region/cc-input-chooser.c -index 74a0f6d..5d2b478 100644 ---- a/panels/region/cc-input-chooser.c -+++ b/panels/region/cc-input-chooser.c -@@ -1117,6 +1117,17 @@ cc_input_chooser_private_free (gpointer data) - g_free (priv); - } - -+static gboolean -+reset_on_escape (GtkWidget *widget, -+ GdkEventKey *event, -+ GtkWidget *chooser) -+{ -+ if (event->keyval == GDK_KEY_Escape) -+ cc_input_chooser_reset (chooser); -+ -+ return FALSE; -+} -+ - GtkWidget * - cc_input_chooser_new (GtkWindow *main_window, - GnomeXkbInfo *xkb_info, -@@ -1160,6 +1171,7 @@ cc_input_chooser_new (GtkWindow *main_window, - g_signal_connect (priv->list, "selected-rows-changed", G_CALLBACK (selected_rows_changed), chooser); - - g_signal_connect_swapped (priv->filter_entry, "search-changed", G_CALLBACK (filter_changed), chooser); -+ g_signal_connect (priv->filter_entry, "key-release-event", G_CALLBACK (reset_on_escape), chooser); - - get_locale_infos (chooser); - #ifdef HAVE_IBUS -@@ -1227,5 +1239,10 @@ cc_input_chooser_get_selected (GtkWidget *chooser, - void - cc_input_chooser_reset (GtkWidget *chooser) - { -+ CcInputChooserPrivate *priv = GET_PRIVATE (chooser); -+ priv->showing_extra = FALSE; -+ gtk_entry_set_text (GTK_ENTRY (priv->filter_entry), ""); -+ gtk_widget_hide (priv->filter_entry); -+ g_clear_pointer (&priv->filter_words, g_strfreev); - show_locale_rows (chooser); - } --- -2.5.0 - diff --git a/SOURCES/0003-hostname-helper-use-SSID_MAX_LEN.patch b/SOURCES/0003-hostname-helper-use-SSID_MAX_LEN.patch new file mode 100644 index 0000000..fbf1e90 --- /dev/null +++ b/SOURCES/0003-hostname-helper-use-SSID_MAX_LEN.patch @@ -0,0 +1,40 @@ +From 1f5267050e60f0902596810d97c16a4f5d5304c4 Mon Sep 17 00:00:00 2001 +From: Lubomir Rintel +Date: Wed, 2 Nov 2016 17:58:15 +0100 +Subject: [PATCH 3/3] hostname-helper: use SSID_MAX_LEN + +It looks a bit weird to define it and still use the numeric literal. +--- + shell/hostname-helper.c | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/shell/hostname-helper.c b/shell/hostname-helper.c +index 1a063b5cd..df596975e 100644 +--- a/shell/hostname-helper.c ++++ b/shell/hostname-helper.c +@@ -187,7 +187,7 @@ pretty_hostname_to_ssid (const char *pretty) + if (pretty == NULL) { + /* translators: This is the default hotspot name, need to be less than 32-bytes */ + ret = g_strdup (C_("hotspot", "Hotspot")); +- g_assert (strlen (ret) <= 32); ++ g_assert (strlen (ret) <= SSID_MAX_LEN); + return ret; + } + +@@ -199,11 +199,11 @@ pretty_hostname_to_ssid (const char *pretty) + if (p == prev) + break; + +- if (p - pretty > 32) { ++ if (p - pretty > SSID_MAX_LEN) { + ret = g_strndup (pretty, prev - pretty); + break; + } +- if (p - pretty == 32) { ++ if (p - pretty == SSID_MAX_LEN) { + ret = g_strndup (pretty, p - pretty); + break; + } +-- +2.12.2 + diff --git a/SOURCES/0003-network-Avoid-warnings-while-closing-connection-edit.patch b/SOURCES/0003-network-Avoid-warnings-while-closing-connection-edit.patch deleted file mode 100644 index 25cede6..0000000 --- a/SOURCES/0003-network-Avoid-warnings-while-closing-connection-edit.patch +++ /dev/null @@ -1,43 +0,0 @@ -From d57be893401c0efb7cec362b2e3f5ea81e2b1f0c Mon Sep 17 00:00:00 2001 -From: Rui Matos -Date: Mon, 25 Jan 2016 19:10:41 +0100 -Subject: [PATCH 3/4] network: Avoid warnings while closing connection editor - -It doesn't make sense to try to validate pages because widgets are -changing due to the whole dialog being destroyed and it causes a bunch -of warnings because some resources are cleared on each page dispose -method. - -Avoid all that by disconnecting the page "changed" signal handler -before we start destroying widgets. ---- - panels/network/connection-editor/net-connection-editor.c | 6 ++++++ - 1 file changed, 6 insertions(+) - -diff --git a/panels/network/connection-editor/net-connection-editor.c b/panels/network/connection-editor/net-connection-editor.c -index 9564506..d8a20a0 100644 ---- a/panels/network/connection-editor/net-connection-editor.c -+++ b/panels/network/connection-editor/net-connection-editor.c -@@ -50,6 +50,8 @@ static guint signals[LAST_SIGNAL] = { 0 }; - - G_DEFINE_TYPE (NetConnectionEditor, net_connection_editor, G_TYPE_OBJECT) - -+static void page_changed (CEPage *page, gpointer user_data); -+ - static void - selection_changed (GtkTreeSelection *selection, NetConnectionEditor *editor) - { -@@ -182,6 +184,10 @@ static void - net_connection_editor_finalize (GObject *object) - { - NetConnectionEditor *editor = NET_CONNECTION_EDITOR (object); -+ GSList *l; -+ -+ for (l = editor->pages; l != NULL; l = l->next) -+ g_signal_handlers_disconnect_by_func (l->data, page_changed, editor); - - if (editor->permission_id > 0 && editor->client) - g_signal_handler_disconnect (editor->client, editor->permission_id); --- -2.7.4 - diff --git a/SOURCES/0003-region-Avoid-duplicates-when-filtering-input-sources.patch b/SOURCES/0003-region-Avoid-duplicates-when-filtering-input-sources.patch deleted file mode 100644 index d4a5bcc..0000000 --- a/SOURCES/0003-region-Avoid-duplicates-when-filtering-input-sources.patch +++ /dev/null @@ -1,162 +0,0 @@ -From 9f37fe26bb983a3cee6c18bb5908fa877dce9199 Mon Sep 17 00:00:00 2001 -From: Rui Matos -Date: Mon, 25 Apr 2016 20:06:34 +0200 -Subject: [PATCH 3/3] region: Avoid duplicates when filtering input sources in - the chooser - -Keep a table of unique input source rows and use those to filter from -to avoid having duplicates in the filtered result. ---- - panels/region/cc-input-chooser.c | 77 ++++++++++++++++++++++++++++++---------- - 1 file changed, 59 insertions(+), 18 deletions(-) - -diff --git a/panels/region/cc-input-chooser.c b/panels/region/cc-input-chooser.c -index 5d2b478..0ba4060 100644 ---- a/panels/region/cc-input-chooser.c -+++ b/panels/region/cc-input-chooser.c -@@ -67,6 +67,7 @@ typedef struct { - gboolean showing_extra; - guint filter_timeout_id; - gchar **filter_words; -+ GHashTable *filter_rows; - } CcInputChooserPrivate; - - #define GET_PRIVATE(chooser) ((CcInputChooserPrivate *) g_object_get_data (G_OBJECT (chooser), "private")) -@@ -282,6 +283,8 @@ input_source_row_new (GtkWidget *chooser, - g_object_set_data (G_OBJECT (row), "type", (gpointer) type); - g_object_set_data (G_OBJECT (row), "id", (gpointer) id); - -+ g_hash_table_replace (priv->filter_rows, (gpointer) id, row); -+ - return GTK_LIST_BOX_ROW (row); - } - -@@ -461,6 +464,52 @@ show_locale_rows (GtkWidget *chooser) - g_hash_table_destroy (initial); - } - -+static gboolean -+match_all (gchar **words, -+ const gchar *str) -+{ -+ gchar **w; -+ -+ for (w = words; *w; ++w) -+ if (!strstr (str, *w)) -+ return FALSE; -+ -+ return TRUE; -+} -+ -+static gint -+filter_list_sort (gconstpointer a, -+ gconstpointer b, -+ gpointer data) -+{ -+ GtkWidget *chooser = data; -+ CcInputChooserPrivate *priv = GET_PRIVATE (chooser); -+ gboolean aparam, bparam; -+ const gchar *la; -+ const gchar *lb; -+ -+ aparam = g_object_get_data (G_OBJECT (a), "default") != NULL; -+ bparam = g_object_get_data (G_OBJECT (b), "default") != NULL; -+ -+ if (aparam && !bparam) -+ return -1; -+ else if (!aparam && bparam) -+ return 1; -+ -+ la = g_object_get_data (G_OBJECT (a), "unaccented-name"); -+ lb = g_object_get_data (G_OBJECT (b), "unaccented-name"); -+ -+ aparam = match_all (priv->filter_words, la); -+ bparam = match_all (priv->filter_words, lb); -+ -+ if (aparam && !bparam) -+ return -1; -+ else if (!aparam && bparam) -+ return 1; -+ -+ return g_strcmp0 (la, lb); -+} -+ - static gint - list_sort (gconstpointer a, - gconstpointer b, -@@ -474,6 +523,9 @@ list_sort (gconstpointer a, - const gchar *lb; - gint retval; - -+ if (priv->filter_words && priv->filter_words[0]) -+ return filter_list_sort (a, b, data); -+ - /* Always goes at the end */ - if (a == priv->more_row) - return 1; -@@ -515,19 +567,6 @@ list_sort (gconstpointer a, - } - - static gboolean --match_all (gchar **words, -- const gchar *str) --{ -- gchar **w; -- -- for (w = words; *w; ++w) -- if (!strstr (str, *w)) -- return FALSE; -- -- return TRUE; --} -- --static gboolean - list_filter (GtkListBoxRow *row, - gpointer user_data) - { -@@ -614,21 +653,21 @@ static void - show_filter_widgets (GtkWidget *chooser) - { - CcInputChooserPrivate *priv = GET_PRIVATE (chooser); -- LocaleInfo *info; -+ GtkWidget *row; - GHashTableIter iter; - - remove_all_children (GTK_CONTAINER (priv->list)); - -- g_hash_table_iter_init (&iter, priv->locales); -- while (g_hash_table_iter_next (&iter, NULL, (gpointer *) &info)) -- add_input_source_rows_for_locale (chooser, info); -+ g_hash_table_iter_init (&iter, priv->filter_rows); -+ while (g_hash_table_iter_next (&iter, NULL, (gpointer *) &row)) -+ gtk_container_add (GTK_CONTAINER (priv->list), row); - - gtk_widget_show_all (priv->list); - - gtk_adjustment_set_value (priv->adjustment, - gtk_adjustment_get_lower (priv->adjustment)); - gtk_list_box_set_header_func (GTK_LIST_BOX (priv->list), -- update_header_filter, NULL, NULL); -+ update_header, NULL, NULL); - gtk_list_box_invalidate_filter (GTK_LIST_BOX (priv->list)); - gtk_list_box_set_selection_mode (GTK_LIST_BOX (priv->list), GTK_SELECTION_SINGLE); - gtk_list_box_set_activate_on_single_click (GTK_LIST_BOX (priv->list), FALSE); -@@ -1005,6 +1044,7 @@ get_locale_infos (GtkWidget *chooser) - gchar **locale; - GList *list, *l; - -+ priv->filter_rows = g_hash_table_new (g_str_hash, g_str_equal); - priv->locales = g_hash_table_new_full (g_str_hash, g_str_equal, - NULL, locale_info_free); - priv->locales_by_language = g_hash_table_new_full (g_str_hash, g_str_equal, -@@ -1109,6 +1149,7 @@ cc_input_chooser_private_free (gpointer data) - - g_object_unref (priv->more_row); - g_object_unref (priv->no_results); -+ g_hash_table_destroy (priv->filter_rows); - g_hash_table_destroy (priv->locales); - g_hash_table_destroy (priv->locales_by_language); - g_strfreev (priv->filter_words); --- -2.5.0 - diff --git a/SOURCES/0004-network-Fix-a-crash-when-clicking-to-forget-a-VPN-on.patch b/SOURCES/0004-network-Fix-a-crash-when-clicking-to-forget-a-VPN-on.patch deleted file mode 100644 index 4d1b056..0000000 --- a/SOURCES/0004-network-Fix-a-crash-when-clicking-to-forget-a-VPN-on.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 2e7b23aa0019cd04e602be9c4838f458c97d9652 Mon Sep 17 00:00:00 2001 -From: Rui Matos -Date: Tue, 26 Jan 2016 16:30:54 +0100 -Subject: [PATCH 4/4] network: Fix a crash when clicking to forget a VPN on the - editor - -We need to keep a reference to the NetVpn instance or it might already -be finalized when the editor window closes. ---- - panels/network/net-vpn.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/panels/network/net-vpn.c b/panels/network/net-vpn.c -index c6fdda1..94c1c10 100644 ---- a/panels/network/net-vpn.c -+++ b/panels/network/net-vpn.c -@@ -406,6 +406,7 @@ editor_done (NetConnectionEditor *editor, - { - g_object_unref (editor); - net_object_refresh (NET_OBJECT (vpn)); -+ g_object_unref (vpn); - } - - static void -@@ -432,7 +433,7 @@ vpn_proxy_edit (NetObject *object) - net_connection_editor_set_title (editor, title); - g_free (title); - -- g_signal_connect (editor, "done", G_CALLBACK (editor_done), vpn); -+ g_signal_connect (editor, "done", G_CALLBACK (editor_done), g_object_ref (vpn)); - net_connection_editor_run (editor); - } - --- -2.7.4 - diff --git a/SOURCES/control-center-3.14.5-check-for-invalid-pointer.patch b/SOURCES/control-center-3.14.5-check-for-invalid-pointer.patch deleted file mode 100644 index 9c0b844..0000000 --- a/SOURCES/control-center-3.14.5-check-for-invalid-pointer.patch +++ /dev/null @@ -1,42 +0,0 @@ -From f1b6cf49d43ada8c10dd7d3dc86316d722149db6 Mon Sep 17 00:00:00 2001 -From: Marek Kasik -Date: Fri, 17 Jul 2015 10:58:59 +0200 -Subject: [PATCH 2/2] notifications: Don't crash because of wrong pointer - -Initialize 'new_app_ids' pointer in children_changed() -and check whether it was filled before using it. - -https://bugzilla.gnome.org/show_bug.cgi?id=752525 ---- - panels/notifications/cc-notifications-panel.c | 11 +++++++---- - 1 file changed, 7 insertions(+), 4 deletions(-) - -diff --git a/panels/notifications/cc-notifications-panel.c b/panels/notifications/cc-notifications-panel.c -index 630fb99..91a9317 100644 ---- a/panels/notifications/cc-notifications-panel.c -+++ b/panels/notifications/cc-notifications-panel.c -@@ -505,14 +505,17 @@ children_changed (GSettings *settings, - CcNotificationsPanel *panel) - { - int i; -- gchar **new_app_ids; -+ gchar **new_app_ids = NULL; - - g_settings_get (panel->master_settings, - "application-children", - "^as", &new_app_ids); -- for (i = 0; new_app_ids[i]; i++) -- maybe_add_app_id (panel, new_app_ids[i]); -- g_strfreev (new_app_ids); -+ if (new_app_ids != NULL) -+ { -+ for (i = 0; new_app_ids[i]; i++) -+ maybe_add_app_id (panel, new_app_ids[i]); -+ g_strfreev (new_app_ids); -+ } - } - - static void --- -2.4.3 - diff --git a/SOURCES/control-center-3.14.5-check-for-zero-length-string.patch b/SOURCES/control-center-3.14.5-check-for-zero-length-string.patch deleted file mode 100644 index 39ab452..0000000 --- a/SOURCES/control-center-3.14.5-check-for-zero-length-string.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 07c60aed43e2149db7aff9e82d8ca147b1752367 Mon Sep 17 00:00:00 2001 -From: Marek Kasik -Date: Fri, 17 Jul 2015 10:56:00 +0200 -Subject: [PATCH] notifications: Don't crash because of zero-length string - -Check whether given application child is at least 1 character -long to avoid crash which can happen as a result of creating -of GDesktopAppInfo with NULL desktop file id. -To reproduce this run "gnome-control-center notifications" and -"gsettings set org.gnome.desktop.notifications application-children "['']"". - -https://bugzilla.gnome.org/show_bug.cgi?id=752525 ---- - panels/notifications/cc-notifications-panel.c | 3 +++ - 1 file changed, 3 insertions(+) - -diff --git a/panels/notifications/cc-notifications-panel.c b/panels/notifications/cc-notifications-panel.c -index 8c4598a..a0c24b1 100644 ---- a/panels/notifications/cc-notifications-panel.c -+++ b/panels/notifications/cc-notifications-panel.c -@@ -331,6 +331,9 @@ maybe_add_app_id (CcNotificationsPanel *panel, - GSettings *settings; - GAppInfo *app_info; - -+ if (*canonical_app_id == '\0') -+ return; -+ - if (g_hash_table_contains (panel->known_applications, - canonical_app_id)) - return; --- -2.4.3 - diff --git a/SOURCES/control-center-3.14.5-do-not-show-nameless-apps.patch b/SOURCES/control-center-3.14.5-do-not-show-nameless-apps.patch deleted file mode 100644 index 8e33c18..0000000 --- a/SOURCES/control-center-3.14.5-do-not-show-nameless-apps.patch +++ /dev/null @@ -1,41 +0,0 @@ -From 44debcbb1a8b37a8fbae03dc5a8c9999ebbac47f Mon Sep 17 00:00:00 2001 -From: Martin Hatina -Date: Thu, 30 Apr 2015 15:12:28 +0200 -Subject: [PATCH] notifications: do not show nameless apps - -Apps with no name are not added to list. - -https://bugzilla.gnome.org/show_bug.cgi?id=693622 ---- - panels/notifications/cc-notifications-panel.c | 7 ++++++- - 1 file changed, 6 insertions(+), 1 deletion(-) - -diff --git a/panels/notifications/cc-notifications-panel.c b/panels/notifications/cc-notifications-panel.c -index 7a176ae..8e9f62c 100644 ---- a/panels/notifications/cc-notifications-panel.c -+++ b/panels/notifications/cc-notifications-panel.c -@@ -193,6 +193,11 @@ add_application (CcNotificationsPanel *panel, - { - GtkWidget *box, *w, *row; - GIcon *icon; -+ gchar *app_name; -+ -+ app_name = g_app_info_get_name (app->app_info); -+ if (app_name == NULL || *app_name == '\0') -+ return; - - icon = g_app_info_get_icon (app->app_info); - if (icon == NULL) - icon = g_themed_icon_new ("application-x-executable"); -@@ -284,7 +289,7 @@ add_application (CcNotificationsPanel *panel, - gtk_container_add (GTK_CONTAINER (box), w); - g_object_unref (icon); - -- w = gtk_label_new (g_app_info_get_name (app->app_info)); -+ w = gtk_label_new (app_name); - gtk_container_add (GTK_CONTAINER (box), w); - - w = gtk_label_new (""); --- -2.1.0 - diff --git a/SOURCES/control-center-translations-3.14.patch b/SOURCES/control-center-translations-3.14.patch deleted file mode 100644 index f23a27f..0000000 --- a/SOURCES/control-center-translations-3.14.patch +++ /dev/null @@ -1,10453 +0,0 @@ -Index: new/po/as.po -=================================================================== ---- new.orig/po/as.po -+++ new/po/as.po -@@ -378,8 +378,7 @@ msgstr "এই URL লিখি ৰা?? - - #: ../panels/color/cc-color-panel.c:923 - msgid "Restart this computer and boot your normal operating system." --msgstr "" --"এই কমপিউটাৰ পুনৰাম্ভ কৰক আৰু আপোনাৰ স্বাভাৱিক অপাৰেটিং চিস্টেম বুট কৰক।" -+msgstr "এই কমপিউটাৰ পুনৰাম্ভ কৰক আৰু আপোনাৰ স্বাভাৱিক অপাৰেটিং চিস্টেম বুট কৰক।" - - #: ../panels/color/cc-color-panel.c:924 - msgid "Type the URL into your browser to download and install the profile." -@@ -535,8 +534,7 @@ msgid "" - "screen. The longer you spend on calibration, the better the quality of the " - "color profile." - msgstr "" --"মানাংকনে এটা আলেখ্য উৎপন্ন কৰিব যি আপুনি আপোনাৰ পৰ্দাৰ ৰঙ ব্যৱস্থাপনা কৰাৰ " --"বাবে " -+"মানাংকনে এটা আলেখ্য উৎপন্ন কৰিব যি আপুনি আপোনাৰ পৰ্দাৰ ৰঙ ব্যৱস্থাপনা কৰাৰ বাবে " - "ব্যৱহাৰ কৰিব পাৰিব। মানাংকনত যিমান অধিক সময় ব্যয় হব, ৰঙৰ আলেখ্য তিমান ভাল হব।" - - #: ../panels/color/color.ui.h:3 -@@ -591,8 +589,7 @@ msgid "" - "Please set the display to a brightness that is typical for you. Color " - "management will be most accurate at this brightness level." - msgstr "" --"অনুগ্ৰহ কৰি আপোনাৰ বাবে অনুকূলিত এটা উজ্জ্বলতালে প্ৰদৰ্শন সংহতি কৰক। ৰঙ " --"ব্যৱস্থাপনা এই " -+"অনুগ্ৰহ কৰি আপোনাৰ বাবে অনুকূলিত এটা উজ্জ্বলতালে প্ৰদৰ্শন সংহতি কৰক। ৰঙ ব্যৱস্থাপনা এই " - "উজ্জ্বলতা স্তৰত সঠিক হব।" - - #: ../panels/color/color.ui.h:16 -@@ -600,8 +597,7 @@ msgid "" - "Alternatively, you can use the brightness level used with one of the other " - "profiles for this device." - msgstr "" --"বিকল্পভাৱে, আপুনি এই ডিভাইচৰ বাবে অন্য আলেখ্যসমূহৰ এটাৰ সৈতে ব্যৱহাৰ কৰা " --"উজ্জ্বলতা " -+"বিকল্পভাৱে, আপুনি এই ডিভাইচৰ বাবে অন্য আলেখ্যসমূহৰ এটাৰ সৈতে ব্যৱহাৰ কৰা উজ্জ্বলতা " - "স্তৰ ব্যৱহাৰ কৰিব পাৰিব।" - - #: ../panels/color/color.ui.h:17 -@@ -668,15 +664,13 @@ msgid "" - "Problems detected. The profile may not work correctly. Show " - "details." - msgstr "" --"সমস্যা দেখা দিছে। আলেখ্য সঠিকভাৱে কাম নকৰিব পাৰে। বিৱৰণ " --"দেখুৱাওক।বিৱৰণ দেখুৱাওক।" - - #: ../panels/color/color.ui.h:30 - msgid "Each device needs an up to date color profile to be color managed." - msgstr "" --"প্ৰতিটো ডিভাইচ ব্যৱস্থাপনা কৰিবলে এটা বৰ্তমান তাৰিখলে উন্নত এটা ৰঙ আলেখ্যৰ " --"প্ৰয়োজন।" -+"প্ৰতিটো ডিভাইচ ব্যৱস্থাপনা কৰিবলে এটা বৰ্তমান তাৰিখলে উন্নত এটা ৰঙ আলেখ্যৰ প্ৰয়োজন।" - - #: ../panels/color/color.ui.h:31 - msgid "Learn more" -@@ -819,8 +813,7 @@ msgstr "ৰঙ" - msgid "" - "Calibrate the color of your devices, such as displays, cameras or printers" - msgstr "" --"আপোনাৰ ডিভাইচসমূহৰ ৰঙ মানাংকন কৰক, যেনে প্ৰদৰ্শনসমূহ, কেমেৰাসমূহ অথবা " --"প্ৰিন্টাৰসমূহ" -+"আপোনাৰ ডিভাইচসমূহৰ ৰঙ মানাংকন কৰক, যেনে প্ৰদৰ্শনসমূহ, কেমেৰাসমূহ অথবা প্ৰিন্টাৰসমূহ" - - #. Translators: those are keywords for the color control-center panel - #: ../panels/color/gnome-color-panel.desktop.in.in.h:4 -@@ -1317,8 +1310,7 @@ msgid "" - "device;system;information;memory;processor;version;default;application;" - "preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" - msgstr "" --"ডিভাইচ;চিস্টেম;তথ্য;মেমৰি;প্ৰচেছৰ;সংস্কৰণ;অবিকল্পিত;এপ্লিকেচন;পছন্দ;cd;dvd;usb" --";" -+"ডিভাইচ;চিস্টেম;তথ্য;মেমৰি;প্ৰচেছৰ;সংস্কৰণ;অবিকল্পিত;এপ্লিকেচন;পছন্দ;cd;dvd;usb;" - "অডিঅ';ভিডিঅ';ডিস্ক;আতৰাব পৰা;মাধ্যম;স্বচলন;" - - #: ../panels/info/info.ui.h:1 -@@ -1637,8 +1629,7 @@ msgstr "কিবৰ্ড" - #: ../panels/keyboard/gnome-keyboard-panel.desktop.in.in.h:2 - msgid "View and change keyboard shortcuts and set your typing preferences" - msgstr "" --"কিবৰ্ড চৰ্টকাটসমূহ দৰ্শন কৰক আৰু পৰিবৰ্তন কৰক আৰু আপোনাৰ টাইপিং পছন্দসমূহ " --"সংহতি কৰক" -+"কিবৰ্ড চৰ্টকাটসমূহ দৰ্শন কৰক আৰু পৰিবৰ্তন কৰক আৰু আপোনাৰ টাইপিং পছন্দসমূহ সংহতি কৰক" - - #. Translators: those are keywords for the keyboard control-center panel - #: ../panels/keyboard/gnome-keyboard-panel.desktop.in.in.h:4 -@@ -1739,8 +1730,7 @@ msgid "" - "To edit a shortcut, click the row and hold down the new keys or press " - "Backspace to clear." - msgstr "" --"এটা চৰ্টকাট সম্পাদন কৰিবলে, শাৰীত ক্লিক কৰক আৰু নতুন কিসমূহ ধৰি ৰাখক অথবা " --"পৰিষ্কাৰ " -+"এটা চৰ্টকাট সম্পাদন কৰিবলে, শাৰীত ক্লিক কৰক আৰু নতুন কিসমূহ ধৰি ৰাখক অথবা পৰিষ্কাৰ " - "কৰিবলে Backspace টিপক।" - - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:24 -@@ -1763,8 +1753,7 @@ msgid "" - "using this key.\n" - "Please try with a key such as Control, Alt or Shift at the same time." - msgstr "" --"চৰ্টকাট-কি হিচাপে \"%s\" ব্যবহাৰ কৰা নাযাব কাৰণ ইয়াৰ ফলস্বৰূপ এই কি ব্যবহাৰ " --"কৰি " -+"চৰ্টকাট-কি হিচাপে \"%s\" ব্যবহাৰ কৰা নাযাব কাৰণ ইয়াৰ ফলস্বৰূপ এই কি ব্যবহাৰ কৰি " - "একো টাইপ কৰা নাযাব।\n" - "অনুগ্ৰহ কৰি Control, Alt বা Shift কিৰ একত্ৰিক ব্যবহাৰৰ প্ৰচেষ্টা কৰক।" - -@@ -1793,8 +1782,7 @@ msgid "" - "The \"%s\" shortcut has an associated \"%s\" shortcut. Do you want to " - "automatically set it to \"%s\"?" - msgstr "" --"\"%s\" চৰ্টকাটৰ সৈতে এটা সংলঘ্ন \"%s\" চৰ্টকাট আছে। আপুনি ইয়াক স্বচালিতভাৱে " --"\"%s" -+"\"%s\" চৰ্টকাটৰ সৈতে এটা সংলঘ্ন \"%s\" চৰ্টকাট আছে। আপুনি ইয়াক স্বচালিতভাৱে \"%s" - "\" লৈ সংহতি কৰিব খোজে নে?" - - #: ../panels/keyboard/keyboard-shortcuts.c:1435 -@@ -2481,8 +2469,7 @@ msgid "" - "Reset the settings for this network, including passwords, but remember it as " - "a preferred network" - msgstr "" --"এই নেটৱৰ্কৰ বাবে সংহতিসমূহ পুনৰ সংহতি কৰক, পাছৱৰ্ডসমূহ অন্তৰ্ভুক্ত কৰাকৈ, " --"কিন্তু ইয়াক " -+"এই নেটৱৰ্কৰ বাবে সংহতিসমূহ পুনৰ সংহতি কৰক, পাছৱৰ্ডসমূহ অন্তৰ্ভুক্ত কৰাকৈ, কিন্তু ইয়াক " - "এটা পছন্দৰ নেটৱৰ্ক হিচাপে মনত ৰাখক" - - #: ../panels/network/connection-editor/reset-page.ui.h:4 -@@ -2490,8 +2477,7 @@ msgid "" - "Remove all details relating to this network and do not try to automatically " - "connect" - msgstr "" --"এই নেটৱৰ্কৰ সৈতে প্ৰসংগ কৰা সকলো বিৱৰণ আতৰাওক আৰু স্বচালিতভাৱে সংযোগ কৰাৰ " --"চেষ্টা " -+"এই নেটৱৰ্কৰ সৈতে প্ৰসংগ কৰা সকলো বিৱৰণ আতৰাওক আৰু স্বচালিতভাৱে সংযোগ কৰাৰ চেষ্টা " - "নকৰিব" - - #: ../panels/network/connection-editor/security-page.ui.h:1 -@@ -2598,8 +2584,7 @@ msgid "" - "Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;" - "vlan;bridge;bond;DNS;" - msgstr "" --"নেটৱৰ্ক;বেতাঁৰ;Wi-Fi;Wifi;IP;LAN;প্ৰক্সি;WAN;ব্ৰডবেণ্ড;মডেম;ব্লুটুথ;vpn;vlan;b" --"ridge;" -+"নেটৱৰ্ক;বেতাঁৰ;Wi-Fi;Wifi;IP;LAN;প্ৰক্সি;WAN;ব্ৰডবেণ্ড;মডেম;ব্লুটুথ;vpn;vlan;bridge;" - "বান্ধনী;DNS;" - - #: ../panels/network/net-device-bond.c:77 -@@ -2681,8 +2666,7 @@ msgid "" - "If you have a connection to the Internet other than wireless, you can set up " - "a wireless hotspot to share the connection with others." - msgstr "" --"যদি আপোনাৰ ইন্টাৰনেটলে বেতাঁৰৰ বাহিৰে অন্য সংযোগ উপলব্ধ আছে, আপুনি ইয়াক অন্যৰ " --"সৈতে " -+"যদি আপোনাৰ ইন্টাৰনেটলে বেতাঁৰৰ বাহিৰে অন্য সংযোগ উপলব্ধ আছে, আপুনি ইয়াক অন্যৰ সৈতে " - "অংশীদাৰী কৰিবলে এটা বেতাঁৰ হটস্পট সংস্থাপন কৰিব পাৰে।" - - #: ../panels/network/net-device-wifi.c:1157 -@@ -2695,8 +2679,7 @@ msgid "" - "It is not possible to access the Internet through your wireless while the " - "hotspot is active." - msgstr "" --"হটস্পট সক্ৰিয় থকা অৱস্থাত আপোনাৰ বেতাঁৰৰ সহায়ত ইন্টাৰনেট অভিগম কৰাটো সম্ভব " --"নহয়।" -+"হটস্পট সক্ৰিয় থকা অৱস্থাত আপোনাৰ বেতাঁৰৰ সহায়ত ইন্টাৰনেট অভিগম কৰাটো সম্ভব নহয়।" - - #: ../panels/network/net-device-wifi.c:1238 - msgid "Stop hotspot and disconnect any users?" -@@ -2719,8 +2702,7 @@ msgid "" - "Network details for the selected networks, including passwords and any " - "custom configuration will be lost." - msgstr "" --"নিৰ্বাচিত নেটৱৰ্কসমূহৰ বাবে নেটৱৰ্ক বিৱৰণসমূহ, লগতে পাছৱৰ্ডসমূহ আৰু কোনো " --"স্বনিৰ্বাচিত " -+"নিৰ্বাচিত নেটৱৰ্কসমূহৰ বাবে নেটৱৰ্ক বিৱৰণসমূহ, লগতে পাছৱৰ্ডসমূহ আৰু কোনো স্বনিৰ্বাচিত " - "সংৰূপ হেৰাই যাব।" - - #: ../panels/network/net-device-wifi.c:1753 -@@ -2932,8 +2914,7 @@ msgid "" - "Reset the settings for this connection to their defaults, but remember as a " - "preferred connection." - msgstr "" --"এই সংযোগৰ বাবে সংহতিসমূহক তাৰ অবিকল্পিতলে পুনৰসংহতি কৰক, কিন্তু এটা পছন্দৰ " --"সংযোগ " -+"এই সংযোগৰ বাবে সংহতিসমূহক তাৰ অবিকল্পিতলে পুনৰসংহতি কৰক, কিন্তু এটা পছন্দৰ সংযোগ " - "হিচাপে মনত ৰাখক।" - - #: ../panels/network/network-wifi.ui.h:42 -@@ -2941,8 +2922,7 @@ msgid "" - "Remove all details relating to this network and do not try to automatically " - "connect to it." - msgstr "" --"এই নেটৱৰ্কৰ সৈতে প্ৰসংগ কৰা সকলো বিৱৰণ আতৰাওক আৰু স্বচালিতভাৱে ইয়াৰ সৈতে " --"সংযোগ " -+"এই নেটৱৰ্কৰ সৈতে প্ৰসংগ কৰা সকলো বিৱৰণ আতৰাওক আৰু স্বচালিতভাৱে ইয়াৰ সৈতে সংযোগ " - "কৰাৰ চেষ্টা নকৰিব।" - - #: ../panels/network/network-wifi.ui.h:43 -@@ -3297,10 +3277,8 @@ msgid "" - "to insecure, rogue Wi-Fi networks. Would you like to choose a Certificate " - "Authority certificate?" - msgstr "" --"প্ৰমাণপত্ৰ কতৃপক্ষ (CA) প্ৰমাণপত্ৰ ব্যৱহাৰ নকৰিলে সুৰক্ষাবিহীন, বিপদজনক Wi-Fi " --"নেটৱৰ্কৰ " --"সৈতে সংযোগ স্থাপন কৰা হ'ব পাৰে। আপুনি এটা প্ৰমাণপত্ৰ কতৃপক্ষ প্ৰমাণপত্ৰ " --"নিৰ্বাচন কৰিব " -+"প্ৰমাণপত্ৰ কতৃপক্ষ (CA) প্ৰমাণপত্ৰ ব্যৱহাৰ নকৰিলে সুৰক্ষাবিহীন, বিপদজনক Wi-Fi নেটৱৰ্কৰ " -+"সৈতে সংযোগ স্থাপন কৰা হ'ব পাৰে। আপুনি এটা প্ৰমাণপত্ৰ কতৃপক্ষ প্ৰমাণপত্ৰ নিৰ্বাচন কৰিব " - "বিচাৰে নেকি?" - - #: ../panels/network/wireless-security/eap-method.c:281 -@@ -3433,10 +3411,8 @@ msgid "" - "\n" - "(You can password-protect your private key with openssl)" - msgstr "" --"নিৰ্বাচিত ব্যক্তিগত কি' এটা পাছৱৰ্ড দ্বাৰা সুৰক্ষিত যেন নালাগে। ইয়াৰ বাবে " --"আপোনাৰ " --"সুৰক্ষা তথ্যসমূহ আপোচ হব পাৰে। অনুগ্ৰহ কৰি এটা পাছৱৰ্ড-সুৰক্ষিত ব্যক্তিগত কি' " --"বাছক।\n" -+"নিৰ্বাচিত ব্যক্তিগত কি' এটা পাছৱৰ্ড দ্বাৰা সুৰক্ষিত যেন নালাগে। ইয়াৰ বাবে আপোনাৰ " -+"সুৰক্ষা তথ্যসমূহ আপোচ হব পাৰে। অনুগ্ৰহ কৰি এটা পাছৱৰ্ড-সুৰক্ষিত ব্যক্তিগত কি' বাছক।\n" - "\n" - "(আপুনি openssl ৰ সৈতে আপোনাৰ ব্যক্তিগত কি' পাছৱৰ্ড-সুৰক্ষিত কৰিব পাৰিব)" - -@@ -4226,8 +4202,7 @@ msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" --"পস্টস্ক্ৰিপ্ট প্ৰিন্টাৰ বিৱৰণ ফাইলসমূহ (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, " --"*.PPD.GZ)" -+"পস্টস্ক্ৰিপ্ট প্ৰিন্টাৰ বিৱৰণ ফাইলসমূহ (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD.GZ)" - - #: ../panels/printers/cc-printers-panel.c:2258 - msgid "No suitable driver found" -@@ -4264,8 +4239,7 @@ msgstr "প্ৰিন্টাৰস?? - #: ../panels/printers/gnome-printers-panel.desktop.in.in.h:2 - msgid "Add printers, view printer jobs and decide how you want to print" - msgstr "" --"প্ৰিন্টাৰসমূহ যোগ কৰক, প্ৰিন্টাৰ কাৰ্য্যসমূহ চাওক আৰু আপুনি কেনেধৰণে প্ৰিন্ট " --"কৰিব বিচাৰে " -+"প্ৰিন্টাৰসমূহ যোগ কৰক, প্ৰিন্টাৰ কাৰ্য্যসমূহ চাওক আৰু আপুনি কেনেধৰণে প্ৰিন্ট কৰিব বিচাৰে " - "নিৰ্ধাৰণ কৰক" - - #. Translators: those are keywords for the printing control-center panel -@@ -4601,8 +4575,7 @@ msgstr "ড্ৰাইভাৰ" - #: ../panels/printers/pp-samba.c:248 - #, c-format - msgid "Enter your username and password to view printers available on %s." --msgstr "" --"%s ত উপলব্ধ প্ৰিন্টাৰসমূহ চাবলে আপোনাৰ ব্যৱহাৰকাৰীনাম আৰু পাছৱৰ্ড সুমুৱাওক।" -+msgstr "%s ত উপলব্ধ প্ৰিন্টাৰসমূহ চাবলে আপোনাৰ ব্যৱহাৰকাৰীনাম আৰু পাছৱৰ্ড সুমুৱাওক।" - - #: ../panels/printers/printers.ui.h:1 - msgid "Add Printer" -@@ -4822,8 +4795,7 @@ msgid "" - "Automatically purge the Trash and temporary files to help keep your computer " - "free of unnecessary sensitive information." - msgstr "" --"আপোনাৰ কমপিউটাৰক অপ্ৰয়োজনীয় সংবেদ্য তথ্যৰ পৰা মুক্ত ৰাখিবলে আবৰ্জনা আৰু " --"অস্থায়ী " -+"আপোনাৰ কমপিউটাৰক অপ্ৰয়োজনীয় সংবেদ্য তথ্যৰ পৰা মুক্ত ৰাখিবলে আবৰ্জনা আৰু অস্থায়ী " - "ফাইলসমূহ স্বচালিতভাৱে শোধন কৰক।" - - #: ../panels/privacy/privacy.ui.h:31 -@@ -4850,8 +4822,7 @@ msgstr "" - "আপুনি কি চফ্টৱেৰ ব্যৱহাৰ কৰে তাৰ বিষয়ে তথ্য পঠালে আমাক অধিক সঠিক উপদেশ প্ৰদান " - "কৰাত সহায় কৰে। ই লগতে আমাৰ চফ্টৱেৰ উন্নত কৰাত সহায় কৰে।\n" - "\n" --"আমি সংগ্ৰহ কৰা সকলো তথ্যক বেনামী কৰা হয়, আৰু আমি আপোনাৰ তথ্য কেতিয়াও তৃতীয় " --"দলৰ " -+"আমি সংগ্ৰহ কৰা সকলো তথ্যক বেনামী কৰা হয়, আৰু আমি আপোনাৰ তথ্য কেতিয়াও তৃতীয় দলৰ " - "সৈতে অংশীদাৰী নকৰো।" - - #: ../panels/privacy/privacy.ui.h:40 -@@ -4867,7 +4838,6 @@ msgid "_Location Services" - msgstr "অবস্থান সেৱাসমূহ (_L)" - - #: ../panels/privacy/privacy.ui.h:43 --#| msgid "Allows applications to determine your geographical location" - msgid "Used to determine your geographical location" - msgstr "আপোনাৰ ভৌগলিক অৱস্থান নিৰ্ধাৰণ কৰাৰ বাবে ব্যৱহাৰ কৰা হয়" - -@@ -4955,8 +4925,7 @@ msgstr "অঞ্চল & ভাষা" - #: ../panels/region/gnome-region-panel.desktop.in.in.h:2 - msgid "" - "Select your display language, formats, keyboard layouts and input sources" --msgstr "" --"আপোনাৰ প্ৰদৰ্শন ভাষা, বিন্যাসসমূহ, কিবৰ্ড বিন্যাসসমূহ আৰু ইনপুট উৎসসমূহ বাছক" -+msgstr "আপোনাৰ প্ৰদৰ্শন ভাষা, বিন্যাসসমূহ, কিবৰ্ড বিন্যাসসমূহ আৰু ইনপুট উৎসসমূহ বাছক" - - #. Translators: those are keywords for the region control-center panel - #: ../panels/region/gnome-region-panel.desktop.in.in.h:4 -@@ -5025,8 +4994,7 @@ msgstr "বিকল্পসমূহ" - - #: ../panels/region/region.ui.h:7 - msgid "Login settings are used by all users when logging into the system" --msgstr "" --"চিস্টেমত লগিন কৰোতে লগিন সংহতিসমূহ সকলো ব্যৱহাৰকাৰী দ্বাৰা ব্যৱহাৰ কৰা হয়" -+msgstr "চিস্টেমত লগিন কৰোতে লগিন সংহতিসমূহ সকলো ব্যৱহাৰকাৰী দ্বাৰা ব্যৱহাৰ কৰা হয়" - - #: ../panels/search/cc-search-locations-dialog.c:476 - msgctxt "Search Location" -@@ -5160,8 +5128,7 @@ msgid "" - "Bluetooth Sharing allows you to share files with other Bluetooth enabled " - "devices" - msgstr "" --"ব্লুটুথ অংশীদাৰীয়ে আপোনাক অন্য ব্লুটুথ সামৰ্থবান ডিভাইচসমূহৰ সৈতে ফাইলসমূহ " --"অংশীদাৰী " -+"ব্লুটুথ অংশীদাৰীয়ে আপোনাক অন্য ব্লুটুথ সামৰ্থবান ডিভাইচসমূহৰ সৈতে ফাইলসমূহ অংশীদাৰী " - "কৰাৰ অনুমতি দিয়ে" - - #: ../panels/sharing/sharing.ui.h:3 -@@ -5216,8 +5183,7 @@ msgid "" - "Allow remote users to connect using the Secure Shell command:\n" - "ssh %s" - msgstr "" --"Secure Shell কমান্ড ব্যৱহাৰ কৰি দূৰৱৰ্তী ব্যৱহাৰকাৰীসকলৰ সৈতে সংযোগ কৰাৰ " --"অনুমতি " -+"Secure Shell কমান্ড ব্যৱহাৰ কৰি দূৰৱৰ্তী ব্যৱহাৰকাৰীসকলৰ সৈতে সংযোগ কৰাৰ অনুমতি " - "দিয়ক:\n" - "ssh %s" - -@@ -5268,8 +5234,7 @@ msgstr "শব্দ" - - #: ../panels/sound/data/gnome-sound-panel.desktop.in.in.h:2 - msgid "Change sound levels, inputs, outputs, and alert sounds" --msgstr "" --"শব্দৰ স্তৰসমূহ, ইনপুটসমূহ, আউটপুটসমূহ, আৰু সতৰ্কতা শব্দসমূহ পৰিবৰ্তন কৰক" -+msgstr "শব্দৰ স্তৰসমূহ, ইনপুটসমূহ, আউটপুটসমূহ, আৰু সতৰ্কতা শব্দসমূহ পৰিবৰ্তন কৰক" - - #. Translators: those are keywords for the sound control-center panel - #: ../panels/sound/data/gnome-sound-panel.desktop.in.in.h:4 -@@ -5504,8 +5469,7 @@ msgid "" - "Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;" - "AccessX;Sticky;Keys;Slow;Bounce;Mouse;" - msgstr "" --"কিবৰ্ড;মাউছ;a11y;অভিগম্যতা;কনট্ৰাস্ট;জুম;পৰ্দা;ৰিডাৰ;লিখনি;ফন্ট;আকাৰ;AccessX;স" --"্টিকি; " -+"কিবৰ্ড;মাউছ;a11y;অভিগম্যতা;কনট্ৰাস্ট;জুম;পৰ্দা;ৰিডাৰ;লিখনি;ফন্ট;আকাৰ;AccessX;স্টিকি; " - "কিসমূহ;লেহেম;বাউন্স;মাউছ;" - - #: ../panels/universal-access/uap.ui.h:1 -@@ -5976,8 +5940,7 @@ msgid "" - "Enterprise login allows an existing centrally managed user account to be " - "used on this device." - msgstr "" --"এন্টাৰপ্ৰাইজ লগিনে এটা স্থায়ী কেন্দ্ৰীয়ভাৱে ব্যৱস্থিত ব্যৱহাৰকাৰী একাওন্টক এই " --"ডিভাইচত " -+"এন্টাৰপ্ৰাইজ লগিনে এটা স্থায়ী কেন্দ্ৰীয়ভাৱে ব্যৱস্থিত ব্যৱহাৰকাৰী একাওন্টক এই ডিভাইচত " - "ব্যৱহাৰ কৰাৰ অনুমতি দিয়ে।" - - #: ../panels/user-accounts/data/account-dialog.ui.h:12 -@@ -6082,8 +6045,7 @@ msgid "" - "Your fingerprint was successfully saved. You should now be able to log in " - "using your fingerprint reader." - msgstr "" --"সাফল্যেৰ সৈতে আপোনাৰ আঙ্গুলিৰ ছাপ সংৰক্ষিত হৈছে। আঙ্গুলিৰ ছাপ পাঠৰ ব্যবস্থা " --"(ৰিডাৰ) " -+"সাফল্যেৰ সৈতে আপোনাৰ আঙ্গুলিৰ ছাপ সংৰক্ষিত হৈছে। আঙ্গুলিৰ ছাপ পাঠৰ ব্যবস্থা (ৰিডাৰ) " - "সহযোগে আপুনি এতিয়া লগিন কৰিবলৈ সক্ষম হ'ব।" - - #: ../panels/user-accounts/data/gnome-user-accounts-panel.desktop.in.in.h:1 -@@ -6239,8 +6201,7 @@ msgid "" - "Try to avoid repeating the same type of character: you need to mix up " - "letters, numbers and punctuation." - msgstr "" --"একেধৰণ আখৰ পুনৰাবৃত্তি নকৰাৰ চেষ্টা কৰিব: আপুনি আখৰ, সংখ্যা আৰু বিৰাম চিহ্ন " --"সংমিশ্ৰণ " -+"একেধৰণ আখৰ পুনৰাবৃত্তি নকৰাৰ চেষ্টা কৰিব: আপুনি আখৰ, সংখ্যা আৰু বিৰাম চিহ্ন সংমিশ্ৰণ " - "কৰিব লাগিব।" - - #: ../panels/user-accounts/pw-utils.c:113 -@@ -6264,8 +6225,7 @@ msgid "" - "Good password! Adding more letters, numbers and punctuation will make it " - "stronger." - msgstr "" --"ভাল পাছৱৰ্ড! অধিক আখৰ, সংখ্যা আৰু বিৰাম চিহ্ন যোগ কৰিলে ই আৰু অধিক শক্তিশালী " --"হব।" -+"ভাল পাছৱৰ্ড! অধিক আখৰ, সংখ্যা আৰু বিৰাম চিহ্ন যোগ কৰিলে ই আৰু অধিক শক্তিশালী হব।" - - #: ../panels/user-accounts/pw-utils.c:141 - #: ../panels/user-accounts/pw-utils.c:171 -@@ -6399,8 +6359,7 @@ msgstr "ডমেইন সন্ধা? - msgid "" - "You are not allowed to access the device. Contact your system administrator." - msgstr "" --"আপুনি এই ডিভাইচ ব্যবহাৰ কৰিবলৈ অনুমোদিত নহয়। অনুগ্ৰহ কৰি প্ৰণালী প্ৰশাসকৰ " --"সৈতে " -+"আপুনি এই ডিভাইচ ব্যবহাৰ কৰিবলৈ অনুমোদিত নহয়। অনুগ্ৰহ কৰি প্ৰণালী প্ৰশাসকৰ সৈতে " - "যোগাযোগ কৰক।" - - #: ../panels/user-accounts/um-fingerprint-dialog.c:139 -@@ -6429,8 +6388,7 @@ msgid "" - "Do you want to delete your registered fingerprints so fingerprint login is " - "disabled?" - msgstr "" --"আঙ্গুলিৰ ছাপ লগিন ব্যবস্থা নিষ্ক্ৰিয় কৰাৰ উদ্দেশ্যে নিবন্ধিত আঙ্গুলিৰ ছাপসমূহ " --"আঁতৰুৱা হ'ব " -+"আঙ্গুলিৰ ছাপ লগিন ব্যবস্থা নিষ্ক্ৰিয় কৰাৰ উদ্দেশ্যে নিবন্ধিত আঙ্গুলিৰ ছাপসমূহ আঁতৰুৱা হ'ব " - "নেকি ?" - - #: ../panels/user-accounts/um-fingerprint-dialog.c:452 -@@ -6473,8 +6431,7 @@ msgid "" - "To enable fingerprint login, you need to save one of your fingerprints, " - "using the '%s' device." - msgstr "" --"আঙ্গুলিৰ ছাপ লগিন ব্যবস্থা সামৰ্থবান কৰাৰ বাবে, '%s' সহযোগে অন্তত এটা " --"আঙ্গুলিৰ ছাপ " -+"আঙ্গুলিৰ ছাপ লগিন ব্যবস্থা সামৰ্থবান কৰাৰ বাবে, '%s' সহযোগে অন্তত এটা আঙ্গুলিৰ ছাপ " - "সংৰক্ষণ কৰা আবশ্যক।" - - #: ../panels/user-accounts/um-fingerprint-dialog.c:738 -@@ -6638,8 +6595,7 @@ msgid "" - "It is possible to keep the home directory, mail spool and temporary files " - "around when deleting a user account." - msgstr "" --"এজন ব্যৱহাৰকাৰীৰ একাওন্ট মচোতে ঘৰ ডাইৰেকটৰি, মেইল স্পুল আৰু অস্থায়ী ফাইলসমূহ " --"ৰখাটো " -+"এজন ব্যৱহাৰকাৰীৰ একাওন্ট মচোতে ঘৰ ডাইৰেকটৰি, মেইল স্পুল আৰু অস্থায়ী ফাইলসমূহ ৰখাটো " - "সম্ভব।" - - #: ../panels/user-accounts/um-user-panel.c:511 -@@ -6675,8 +6631,7 @@ msgstr "একাওন্ট সেৱ? - - #: ../panels/user-accounts/um-user-panel.c:1074 - msgid "Please make sure that the AccountService is installed and enabled." --msgstr "" --"অনুগ্ৰহ কৰি AccountService ইনস্টল আৰু সামৰ্থবান আছে বুলি সুনিশ্চিত কৰক।" -+msgstr "অনুগ্ৰহ কৰি AccountService ইনস্টল আৰু সামৰ্থবান আছে বুলি সুনিশ্চিত কৰক।" - - #: ../panels/user-accounts/um-user-panel.c:1115 - msgid "" -@@ -6735,15 +6690,13 @@ msgid "" - "The username should only consist of lower and upper case letters from a-z, " - "digits and any of characters '.', '-' and '_'." - msgstr "" --"ব্যৱহাৰকাৰীনামত কেৱল a-z ডিজিটৰ পৰা তলৰ আৰু ওপৰ ফলা আখৰ আৰু আখৰসমূহ '.', '-' " --"আৰু " -+"ব্যৱহাৰকাৰীনামত কেৱল a-z ডিজিটৰ পৰা তলৰ আৰু ওপৰ ফলা আখৰ আৰু আখৰসমূহ '.', '-' আৰু " - "'_' ৰ পৰা যিকোনো আখৰ থাকিব পাৰিব।" - - #: ../panels/user-accounts/um-utils.c:581 - msgid "This will be used to name your home folder and can't be changed." - msgstr "" --"ইয়াক আপোনাৰ ঘৰ ফোল্ডাৰ নামকৰণৰ বাবে ব্যৱহাৰ কৰা হব আৰু ইয়াক পৰিবৰ্তন কৰিব " --"নোৱাৰি।" -+"ইয়াক আপোনাৰ ঘৰ ফোল্ডাৰ নামকৰণৰ বাবে ব্যৱহাৰ কৰা হব আৰু ইয়াক পৰিবৰ্তন কৰিব নোৱাৰি।" - - #. Translators: This is a date format string in the style of "Feb 24". - #: ../panels/user-accounts/um-utils.c:827 -@@ -6768,8 +6721,7 @@ msgid "" - "To edit a shortcut, choose the \"Send Keystroke\" action, press the keyboard " - "shortcut button and hold down the new keys or press Backspace to clear." - msgstr "" --"এটা চৰ্টকাট সম্পাদন কৰিবলে, \"কিস্ট্ৰৌক পঠাওক\" বুটাম বাছক, কিবৰ্ড চৰ্টকাট " --"বুটাম " -+"এটা চৰ্টকাট সম্পাদন কৰিবলে, \"কিস্ট্ৰৌক পঠাওক\" বুটাম বাছক, কিবৰ্ড চৰ্টকাট বুটাম " - "টিপক আৰু নতুন কি'সমূহ টিপি ধৰক অথবা পৰিষ্কাৰ কৰিবলৈ Backspace টিপক।" - - #: ../panels/wacom/calibrator/calibrator-gui.c:83 -@@ -6777,8 +6729,7 @@ msgid "" - "Please tap the target markers as they appear on screen to calibrate the " - "tablet." - msgstr "" --"টেবলেট মানাংকন কৰিবলে লক্ষ্য চিহ্নকসমূহক সিহত পৰ্দাত উপস্থিত হোৱা নিচিনা টেপ " --"কৰক।" -+"টেবলেট মানাংকন কৰিবলে লক্ষ্য চিহ্নকসমূহক সিহত পৰ্দাত উপস্থিত হোৱা নিচিনা টেপ কৰক।" - - #: ../panels/wacom/calibrator/calibrator-gui.c:87 - msgid "Mis-click detected, restarting..." -@@ -6849,8 +6800,7 @@ msgstr "Wacom টেবলেট" - #: ../panels/wacom/gnome-wacom-panel.desktop.in.in.h:2 - msgid "Set button mappings and adjust stylus sensitivity for graphics tablets" - msgstr "" --"বুটাম মেপিংসমূহ চাওক আৰু গ্ৰাফিক্স টেবলেটসমূহৰ বাবে স্টাইলাচ সংবেদনশীলতা " --"নিয়ন্ত্ৰণ কৰক" -+"বুটাম মেপিংসমূহ চাওক আৰু গ্ৰাফিক্স টেবলেটসমূহৰ বাবে স্টাইলাচ সংবেদনশীলতা নিয়ন্ত্ৰণ কৰক" - - #. Translators: those are keywords for the wacom tablet control-center panel - #: ../panels/wacom/gnome-wacom-panel.desktop.in.in.h:4 -@@ -7718,7 +7668,6 @@ msgstr "পছন্দসমূহ;স? - #~ msgid "_Options…" - #~ msgstr "বিকল্পসমূহ (_O)…" - --#~| msgid "None" - #~ msgctxt "Input source" - #~ msgid "None" - #~ msgstr "কোনো নহয়" -@@ -8528,7 +8477,6 @@ msgstr "পছন্দসমূহ;স? - #~ msgid "Wacom Graphics Tablet" - #~ msgstr "Wacom গ্ৰাফিক্স টেবলেট" - --#~| msgid "Create New Location" - #~ msgid "Current network location" - #~ msgstr "নেটওয়ার্কেৰ বর্তমান অবস্থান" - -@@ -8683,7 +8631,6 @@ msgstr "পছন্দসমূহ;স? - #~ msgid "Disable _Fingerprint Login..." - #~ msgstr "আঙ্গুলিৰ ছাপ লগিন নিষ্ক্ৰিয় কৰক...(_F)" - --#~| msgid "Small" - #~ msgid "Email" - #~ msgstr "ই-মেইল" - -@@ -8696,7 +8643,6 @@ msgstr "পছন্দসমূহ;স? - #~ msgid "IC_Q:" - #~ msgstr "IC_Q:" - --#~| msgid "Instant Messaging" - #~ msgid "Instant Messaging" - #~ msgstr "ইনস্ট্যান্ট বার্তালাপ" - -@@ -8718,7 +8664,6 @@ msgstr "পছন্দসমূহ;স? - #~ msgid "Wor_k:" - #~ msgstr "কাৰ্য্যালয় (_k):" - --#~| msgid "Wor_k:" - #~ msgid "Work" - #~ msgstr "কাজ" - -@@ -8786,7 +8731,6 @@ msgstr "পছন্দসমূহ;স? - #~ "Please type your password again in the Retype new password field." - #~ msgstr "অনুগ্ৰহ কৰি নতুন পাছৱৰ্ড আকৌ লিখক শীৰ্ষক ক্ষেত্ৰত পাছৱৰ্ড আকৌ লিখক।" - --#~| msgid "Change password" - #~ msgid "Change your password" - #~ msgstr "পাসওয়ার্ড পৰিবর্তন কৰুন" - -@@ -8971,7 +8915,6 @@ msgstr "পছন্দসমূহ;স? - #~ msgid "Font Rendering Details" - #~ msgstr "ফন্ট ৰেন্ডাৰিঙৰ বিৱৰণ" - --#~| msgid "Save _background image" - #~ msgid "Get more backgrounds online" - #~ msgstr "পটভূমিৰ অতিৰিক্ত ছবি অন-লাইন প্ৰাপ্ত কৰুন" - -@@ -8981,18 +8924,15 @@ msgstr "পছন্দসমূহ;স? - #~ msgid "Gra_yscale" - #~ msgstr "গ্ৰেস্কেল(_y)" - --#~| msgid "Hinting" - #~ msgid "Hinting" - #~ msgstr "হিন্টিং" - - #~ msgid "Icons" - #~ msgstr "আইকন" - --#~| msgid "Icons" - #~ msgid "Icons only" - #~ msgstr "শুধুমাত্ৰ আইকন" - --#~| msgid "Menus and Toolbars" - #~ msgid "Menus and Toolbars" - #~ msgstr "মেনু ও টুলবাৰ" - -@@ -9020,18 +8960,15 @@ msgstr "পছন্দসমূহ;স? - #~ msgid "Sub_pixel smoothing (LCDs)" - #~ msgstr "ছাবপিক্সেল স্মুদিং (LCD) (_p)" - --#~| msgid "Subpixel Order" - #~ msgid "Subpixel Order" - #~ msgstr "সাবপিক্সেলেৰ ধাৰা" - - #~ msgid "Text below items" - #~ msgstr "বস্তুৰ নীচে লেখা স্থাপন" - --#~| msgid "_Selected items:" - #~ msgid "Text beside items" - #~ msgstr "বস্তুৰ পাশে লেখা স্থাপন" - --#~| msgid "Test Sound" - #~ msgid "Text only" - #~ msgstr "শুধুমাত্ৰ টেক্সট" - -@@ -9113,14 +9050,9 @@ msgstr "পছন্দসমূহ;স? - #~ msgid "Slide Show" - #~ msgstr "চ্‌লাইড শ্বো" - --#~| msgid "Images" - #~ msgid "Image" - #~ msgstr "ছবি" - --#~| msgid "" --#~| "%s\n" --#~| "%s, %d %s by %d %s\n" --#~| "Folder: %s" - #~ msgid "" - #~ "%s\n" - #~ "%s, %s\n" -@@ -9204,12 +9136,6 @@ msgstr "পছন্দসমূহ;স? - #~ msgid "Could not install theme engine" - #~ msgstr "থিম ইঞ্জিন ইনস্টল কৰা নাযায়" - --#~| msgid "" --#~| "Unable to start the settings manager 'gnome-settings-daemon'.\n" --#~| "Without the GNOME settings manager running, some preferences may not " --#~| "take effect. This could indicate a problem with Bonobo, or a non-GNOME " --#~| "(e.g. KDE) settings manager may already be active and conflicting with " --#~| "the GNOME settings manager." - #~ msgid "" - #~ "Unable to start the settings manager 'gnome-settings-daemon'.\n" - #~ "Without the GNOME settings manager running, some preferences may not take " -@@ -9418,22 +9344,18 @@ msgstr "পছন্দসমূহ;স? - #~ msgid "E_xecute flag:" - #~ msgstr "এক্সিকিউট ফ্লেগ (_x):" - --#~| msgid "Image Viewer" - #~ msgid "Image Viewer" - #~ msgstr "ছবি প্ৰদর্শন ব্যবস্থা" - --#~| msgid "Instant Messenger" - #~ msgid "Instant Messenger" - #~ msgstr "তাৎ‍ক্ষণিক মেসেঞ্জাৰ" - - #~ msgid "Internet" - #~ msgstr "ইন্টাৰনেট" - --#~| msgid "Mail Reader" - #~ msgid "Mail Reader" - #~ msgstr "মেইল পাঠৰ ব্যবস্থা" - --#~| msgid "Mobility" - #~ msgid "Mobility" - #~ msgstr "চলাচল" - -@@ -9452,11 +9374,9 @@ msgstr "পছন্দসমূহ;স? - #~ msgid "Run in t_erminal" - #~ msgstr "টাৰ্মিনালত সঞ্চালন (_e)" - --#~| msgid "Terminal Emulator" - #~ msgid "Terminal Emulator" - #~ msgstr "টার্মিন্যাল এমুলেটৰ" - --#~| msgid "Text Editor" - #~ msgid "Text Editor" - #~ msgstr "টেক্সট এডিটাৰ" - -@@ -9583,18 +9503,15 @@ msgstr "পছন্দসমূহ;স? - #~ msgid "Display Preferences" - #~ msgstr "প্ৰদৰ্শন সম্পৰ্কিত পছন্দ" - --#~| msgid "Drag the monitors to set their place" - #~ msgid "Drag the monitors to set their place" - #~ msgstr "মনিটৰেৰ অবস্থান নির্ধাৰণেৰ জন্য সেগুলিকে টেনে আনুন" - - #~ msgid "Include _panel" - #~ msgstr "পেনেল অন্তৰ্ভুক্ত কৰা হ'ব (_p)" - --#~| msgid "Panel icon" - #~ msgid "Panel icon" - #~ msgstr "প্যানেলেৰ আইকন" - --#~| msgid "Upside Down" - #~ msgid "Upside-down" - #~ msgstr "উলটো" - -@@ -9610,7 +9527,6 @@ msgstr "পছন্দসমূহ;স? - #~ msgid "%d Hz" - #~ msgstr "%d Hz" - --#~| msgid "Monitor: %s" - #~ msgid "Monitor: %s" - #~ msgstr "মনিটৰ: %s" - -@@ -9671,7 +9587,6 @@ msgstr "পছন্দসমূহ;স? - #~ msgid "Show _visual feedback for the alert sound" - #~ msgstr "সতৰ্কধ্বনিৰ বাবে ভিসুয়্যাল প্ৰতিক্ৰিয়া প্ৰদৰ্শন কৰা হ'ব (_v)" - --#~| msgid "Visual cues for sounds" - #~ msgid "Visual cues for sounds" - #~ msgstr "শব্দেৰ জন্য প্ৰদর্শিত ছবি" - -@@ -9764,9 +9679,6 @@ msgstr "পছন্দসমূহ;স? - #~ msgid "Show click type _window" - #~ msgstr "Show click type _window" - --#~| msgid "" --#~| "You can also use the Dwell Click panel applet to choose the click " --#~| "type." - #~ msgid "" - #~ "You can also use the Dwell Click panel applet to choose the click type." - #~ msgstr "ক্লিকৰ ধৰন নির্বাচনেৰ জন্য Dwell Click প্যানেল অ্যাপ্লেট ব্যবহাৰ কৰা যাবে।" -@@ -9789,7 +9701,6 @@ msgstr "পছন্দসমূহ;স? - #~ msgid "HTTP Proxy Details" - #~ msgstr "HTTP নিযুক্তক বিৱৰণ" - --#~| msgid "Ignored Hosts" - #~ msgid "Ignore Host List" - #~ msgstr "উপেক্ষিত হোস্টেৰ তালিকা" - -@@ -9820,11 +9731,9 @@ msgstr "পছন্দসমূহ;স? - #~ msgid "S_uper (or \"Windows logo\")" - #~ msgstr "ছুপাৰ (বা \"সংযোগক্ষেত্ৰৰ লোগো\") (_u)" - --#~| msgid "Movement Key" - #~ msgid "Movement Key" - #~ msgstr "বিচলনেৰ-কি" - --#~| msgid "Titlebar Action" - #~ msgid "Titlebar Action" - #~ msgstr "শিরোনামেৰ-বাৰ কর্ম" - -@@ -9835,7 +9744,6 @@ msgstr "পছন্দসমূহ;স? - #~ msgid "Window Preferences" - #~ msgstr "সংযোগক্ষেত্ৰ পছন্দ" - --#~| msgid "Window Selection" - #~ msgid "Window Selection" - #~ msgstr "উইন্ডো নির্বাচন" - -@@ -9944,7 +9852,6 @@ msgstr "পছন্দসমূহ;স? - #~ msgid "_Postpone Break" - #~ msgstr "_Postpone Break" - --#~| msgid "/_Take a Break" - #~ msgid "_Take a Break" - #~ msgstr "বিৰতি নিন (_T)" - -@@ -10053,14 +9960,12 @@ msgstr "পছন্দসমূহ;স? - #~ msgid "Description:" - #~ msgstr "বিৱৰণ:" - --#~| msgid "Install" - #~ msgid "Installed" - #~ msgstr "ইনস্টল কৰা হয়েছে" - - #~ msgid "usage: %s fontfile\n" - #~ msgstr "ব্যৱহাৰবিধি: %s ফন্ট ফাইল\n" - --#~| msgid "Install" - #~ msgid "I_nstall Font" - #~ msgstr "ফন্ট ইনস্টল কৰুন (_n)" - -@@ -10122,7 +10027,6 @@ msgstr "পছন্দসমূহ;স? - #~ msgid "If you delete an item, it is permanently lost." - #~ msgstr "If you delete an item, it is permanently lost." - --#~| msgid "Open with \"%s\"" - #~ msgid "Open with \"%s\"" - #~ msgstr "\"%s\" সহযোগে খুলুন" - -@@ -10301,7 +10205,6 @@ msgstr "পছন্দসমূহ;স? - #~ msgstr "/বিষয়ে (_A)" - - # --#~| msgid "C_ommand:" - #~ msgid "_Command:" - #~ msgstr "কমান্ড:(_C)" - -Index: new/po/bn_IN.po -=================================================================== ---- new.orig/po/bn_IN.po -+++ new/po/bn_IN.po -@@ -41,7 +41,6 @@ msgstr "সারাদিনব্য?? - - #. To translators: This is a noun, not a verb - #: ../panels/background/background.ui.h:5 --#| msgid "Lock screen" - msgid "Lock Screen" - msgstr "পর্দা লক করুন" - -@@ -95,7 +94,6 @@ msgstr "রং" - - #. translators: No pictures were found - #: ../panels/background/cc-background-chooser-dialog.c:540 --#| msgid "No input sources found" - msgid "No Pictures Found" - msgstr "কোনো ছবি পাওয়া যায়নি" - -@@ -210,8 +208,7 @@ msgstr "কৌণিক অবস্থ? - #: ../panels/color/cc-color-calibrate.c:367 - msgid "" - "Move your calibration device to the calibrate position and press 'Continue'" --msgstr "" --"অাপনার ক্যালিব্রেশন ডিভাইস ক্যালিব্রেশন অবস্থানে সরান এবং 'জারি রাখুন' টিপুন" -+msgstr "অাপনার ক্যালিব্রেশন ডিভাইস ক্যালিব্রেশন অবস্থানে সরান এবং 'জারি রাখুন' টিপুন" - - #. TRANSLATORS: Some calibration devices need the user to move a - #. * dial or switch manually. We also show a picture showing them -@@ -377,7 +374,6 @@ msgstr "স্ক্রীন" - #. TRANSLATORS: this is when the upload of the profile failed - #: ../panels/color/cc-color-panel.c:906 - #, c-format --#| msgid "Failed to apply configuration: %s" - msgid "Failed to upload file: %s" - msgstr "ফাইল অাপলোড করা গেল না: %s" - -@@ -394,8 +390,7 @@ msgstr "এই URLটি লিখে ?? - - #: ../panels/color/cc-color-panel.c:923 - msgid "Restart this computer and boot your normal operating system." --msgstr "" --"এই কম্পিউটার রিস্টার্ট করুন এবং অাপনার সাধারণ অপারেটিং সিস্টেম বুট করুন।" -+msgstr "এই কম্পিউটার রিস্টার্ট করুন এবং অাপনার সাধারণ অপারেটিং সিস্টেম বুট করুন।" - - #: ../panels/color/cc-color-panel.c:924 - msgid "Type the URL into your browser to download and install the profile." -@@ -422,8 +417,7 @@ msgid "" - "The measuring instrument is not detected. Please check it is turned on and " - "correctly connected." - msgstr "" --"পরিমাপের সরঞ্জাম সনাক্ত করা হয়নি। দয়া করে এটি যে চালু অাছে এবং সঠিক ভাবে " --"সংযুক্ত " -+"পরিমাপের সরঞ্জাম সনাক্ত করা হয়নি। দয়া করে এটি যে চালু অাছে এবং সঠিক ভাবে সংযুক্ত " - "তা দেখে নিন।" - - #. TRANSLATORS: this is when the button is insensitive -@@ -553,8 +547,7 @@ msgid "" - "color profile." - msgstr "" - "ক্যালিব্রেশন একটি প্রোফাইল তৈরি করবে যা অাপনি অাপনার স্ক্রীনকে রঙের দিক থেকে " --"ব্যবস্থাপনা করতে পারবেন। ক্যালিব্রেশনের ক্ষেত্রে অাপনি যত বেশি সময় খরচ " --"করবেন, রঙ " -+"ব্যবস্থাপনা করতে পারবেন। ক্যালিব্রেশনের ক্ষেত্রে অাপনি যত বেশি সময় খরচ করবেন, রঙ " - "প্রোফাইলের গুণমান তত উন্নত হবে।" - - #: ../panels/color/color.ui.h:3 -@@ -578,8 +571,7 @@ msgstr "ক্যালিব্রে?? - - #: ../panels/color/color.ui.h:9 - msgid "Select the sensor device you want to use for calibration." --msgstr "" --"ক্যালিব্রেশনের জন্য অাপনি সেন্সর ডিভাইস ব্যবহার করতে চান তা নির্বাচন করুন।" -+msgstr "ক্যালিব্রেশনের জন্য অাপনি সেন্সর ডিভাইস ব্যবহার করতে চান তা নির্বাচন করুন।" - - #: ../panels/color/color.ui.h:10 - msgid "Calibration Device" -@@ -598,8 +590,7 @@ msgid "" - "Select a display target white point. Most displays should be calibrated to a " - "D65 illuminant." - msgstr "" --"একটি প্রদর্শন টার্গেট হোয়াইট পয়েন্ট নির্বাচন করুন। অধিকাংশ প্রদর্শন একটি " --"D65 " -+"একটি প্রদর্শন টার্গেট হোয়াইট পয়েন্ট নির্বাচন করুন। অধিকাংশ প্রদর্শন একটি D65 " - "ইলিউমিনেন্টে ক্যালিব্রেট হবে।" - - #: ../panels/color/color.ui.h:14 -@@ -611,8 +602,7 @@ msgid "" - "Please set the display to a brightness that is typical for you. Color " - "management will be most accurate at this brightness level." - msgstr "" --"দয়া করে প্রদর্শন এমন এক উজ্জ্বলতায় সেট যা অাপনার ক্ষেত্রে উপযুক্ত। " --"উজ্জ্বলতার এই স্তরে " -+"দয়া করে প্রদর্শন এমন এক উজ্জ্বলতায় সেট যা অাপনার ক্ষেত্রে উপযুক্ত। উজ্জ্বলতার এই স্তরে " - "রঙ ব্যবস্থাপনা সবথেকে যথাযথ হবে।" - - #: ../panels/color/color.ui.h:16 -@@ -620,8 +610,7 @@ msgid "" - "Alternatively, you can use the brightness level used with one of the other " - "profiles for this device." - msgstr "" --"বিকল্প ভাবে, অাপনি এই ডিভাইসের ক্ষেত্রে অন্যান্য প্রোফাইলের একটিতে ব্যবহার " --"করা " -+"বিকল্প ভাবে, অাপনি এই ডিভাইসের ক্ষেত্রে অন্যান্য প্রোফাইলের একটিতে ব্যবহার করা " - "উজ্জ্বলতার স্তর ব্যবহার করতে পারবেন।" - - #: ../panels/color/color.ui.h:17 -@@ -649,7 +638,6 @@ msgid "Profile successfully created!" - msgstr "প্রোফাইল সফলভাবে তৈরি হয়েছে!" - - #: ../panels/color/color.ui.h:22 --#| msgid "Add profile" - msgid "Copy profile" - msgstr "প্রোফাইল অনুলিপি করুন" - -@@ -658,12 +646,10 @@ msgid "Requires writable media" - msgstr "লিখনযোগ্য মিডিয়ার প্রয়োজন" - - #: ../panels/color/color.ui.h:24 --#| msgid "Add profile" - msgid "Upload profile" - msgstr "প্রোফাইল অাপলোড করুন" - - #: ../panels/color/color.ui.h:25 --#| msgid "Add new connection" - msgid "Requires Internet connection" - msgstr "ইন্টারনেট সংযোগের প্রয়োজন" - -@@ -696,9 +682,7 @@ msgstr "" - - #: ../panels/color/color.ui.h:30 - msgid "Each device needs an up to date color profile to be color managed." --msgstr "" --"প্রত্যেক ডিভাইসের রঙ ব্যবস্থাপনার ক্ষেত্রে একটি অাপ-টু-ডেট প্রোফাইলের " --"প্রয়োজন।" -+msgstr "প্রত্যেক ডিভাইসের রঙ ব্যবস্থাপনার ক্ষেত্রে একটি অাপ-টু-ডেট প্রোফাইলের প্রয়োজন।" - - #: ../panels/color/color.ui.h:31 - msgid "Learn more" -@@ -840,8 +824,7 @@ msgstr "রঙ" - #: ../panels/color/gnome-color-panel.desktop.in.in.h:2 - msgid "" - "Calibrate the color of your devices, such as displays, cameras or printers" --msgstr "" --"অাপনার ডিভাইসের রঙ ক্যালিব্রেট করুন, যেমন প্রদর্শন, ক্যামেরা বা প্রিন্টার" -+msgstr "অাপনার ডিভাইসের রঙ ক্যালিব্রেট করুন, যেমন প্রদর্শন, ক্যামেরা বা প্রিন্টার" - - #. Translators: those are keywords for the color control-center panel - #: ../panels/color/gnome-color-panel.desktop.in.in.h:4 -@@ -895,7 +878,6 @@ msgstr "সম্পন্ন (_D)" - # translation auto-copied from project control-center, version 3.8.3, document gnome-control-center-2.0 - #. Translators: This is the full date and time format used in 12-hour mode. - #: ../panels/datetime/cc-datetime-panel.c:340 --#| msgid "%a %l:%M %p" - msgid "%e %B %Y, %l:%M %p" - msgstr "%e %B %Y, %l:%M %p" - -@@ -928,7 +910,6 @@ msgstr "UTC%:::z" - # translation auto-copied from project control-center, version 3.8.3, document gnome-control-center-2.0 - #. Translators: This is the time format used in 12-hour mode. - #: ../panels/datetime/cc-datetime-panel.c:566 --#| msgid "%a %l:%M %p" - msgid "%l:%M %p" - msgstr "%l:%M %p" - -@@ -1010,8 +991,6 @@ msgstr "∶" - - # auto translated by TM merge from project: evolution, version: el6, DocId: evolution-2.32 - #: ../panels/datetime/datetime.ui.h:17 --#| msgid "minute" --#| msgid_plural "minutes" - msgid "Minute" - msgstr "মিনিট" - -@@ -1029,17 +1008,14 @@ msgstr "বছর" - - # auto translated by TM merge from project: evolution, version: el6, DocId: evolution-2.32 - #: ../panels/datetime/datetime.ui.h:21 --#| msgid "Time" - msgid "Time Zone" - msgstr "সময় জোন" - - #: ../panels/datetime/datetime.ui.h:22 --#| msgid "Search for the string" - msgid "Search for a city" - msgstr "শহর সন্ধান করুন" - - #: ../panels/datetime/datetime.ui.h:23 --#| msgid "Date & Time" - msgid "Automatic _Date & Time" - msgstr "স্বয়ংক্রিয় তারিখ & সময় (_D)" - -@@ -1048,12 +1024,10 @@ msgid "Requires internet access" - msgstr "ইন্টারনেট অ্যাক্সেসের প্রয়োজন" - - #: ../panels/datetime/datetime.ui.h:25 --#| msgid "Automatic _Connect" - msgid "Automatic Time _Zone" - msgstr "স্বয়ংক্রিয় সময় জোন (_Z)" - - #: ../panels/datetime/datetime.ui.h:26 --#| msgid "Date & Time" - msgid "Date & _Time" - msgstr "তারিখ & সময় (_T)" - -@@ -1062,7 +1036,6 @@ msgid "Time _Zone" - msgstr "সময় জোন (_Z)" - - #: ../panels/datetime/datetime.ui.h:28 --#| msgid "Formats" - msgid "Time _Format" - msgstr "সময় ফর্ম্যাট (_F)" - -@@ -1092,19 +1065,16 @@ msgid "To change time or date settings, - msgstr "সময় বা তারিখ সেটিং পরিবর্তন করতে, অাপনার প্রমাণীকরণের প্রয়োজন।" - - #: ../panels/display/cc-display-panel.c:487 --#| msgid "Close" - msgid "Lid Closed" - msgstr "লিড বন্ধ" - - #. translators: "Mirrored" describes when both displays show the same view - #: ../panels/display/cc-display-panel.c:490 --#| msgid "Mirrored Displays" - msgid "Mirrored" - msgstr "প্রতিফলিত" - - #: ../panels/display/cc-display-panel.c:492 - #: ../panels/display/cc-display-panel.c:2145 --#| msgid "Primary _button" - msgid "Primary" - msgstr "প্রাথমিক" - -@@ -1122,12 +1092,10 @@ msgid "Off" - msgstr "বন্ধ" - - #: ../panels/display/cc-display-panel.c:497 --#| msgid "Secondary click delay" - msgid "Secondary" - msgstr "অপ্রধান" - - #: ../panels/display/cc-display-panel.c:1533 --#| msgid "Mirrored Displays" - msgid "Arrange Combined Displays" - msgstr "একত্রিত প্রদর্শন সাজান" - -@@ -1161,18 +1129,15 @@ msgid "Show the top bar and Activities O - msgstr "এই প্রদর্শনে শীর্ষ দন্ড এবং ক্রিয়াকলাপ পূর্বরূপ দেখান " - - #: ../panels/display/cc-display-panel.c:2152 --#| msgid "Secondary click delay" - msgid "Secondary Display" - msgstr "অপ্রধান প্রদর্শন" - - #: ../panels/display/cc-display-panel.c:2153 - msgid "Join this display with another to create an extra workspace" --msgstr "" --"একটি অতিরিক্ত ওয়ার্কস্পেস তৈরি করতে এই প্রদর্শন অপর একটির সংগে যুক্ত করুন" -+msgstr "একটি অতিরিক্ত ওয়ার্কস্পেস তৈরি করতে এই প্রদর্শন অপর একটির সংগে যুক্ত করুন" - - # auto translated by TM merge from project: gnome-settings-daemon, version: 3.8.4, DocId: gnome-settings-daemon - #: ../panels/display/cc-display-panel.c:2160 --#| msgid "Orientation" - msgid "Presentation" - msgstr "সজ্জা" - -@@ -1190,12 +1155,10 @@ msgid "Show your existing view on both d - msgstr "উভয় প্রদর্শনেই অাপনার বিদ্যমান রূপ দেখান" - - #: ../panels/display/cc-display-panel.c:2173 --#| msgid "_Turn On" - msgid "Turn Off" - msgstr "বন্ধ করুন" - - #: ../panels/display/cc-display-panel.c:2174 --#| msgid "Panel to display" - msgid "Don't use this display" - msgstr "এই প্রদর্শন ব্যবহার করবেন না" - -@@ -1205,7 +1168,6 @@ msgid "Could not get screen information" - msgstr "পর্দা সংক্রান্ত পরিবর্তন প্রাপ্ত করতে ব্যর্থ" - - #: ../panels/display/cc-display-panel.c:2414 --#| msgid "Mirrored Displays" - msgid "_Arrange Combined Displays" - msgstr "একত্রিত প্রদর্শন সাজান (_A)" - -@@ -1220,7 +1182,6 @@ msgstr "সংযুক্ত মনি? - - #. Translators: those are keywords for the display control-center panel - #: ../panels/display/gnome-display-panel.desktop.in.in.h:4 --#| msgid "Panel;Projector;xrandr;Screen;Resolution;Refresh;" - msgid "Panel;Projector;xrandr;Screen;Resolution;Refresh;Monitor;" - msgstr "প্যানেল;প্রোজেক্টর;xrandr;স্ক্রিন;রিজোলিউশন;সতেজ;মনিটর;" - -@@ -1236,7 +1197,6 @@ msgstr "অজানা" - - #: ../panels/info/cc-info-panel.c:472 - #, c-format --#| msgid "%d-bit" - msgid "%s %d-bit" - msgstr "%s %d-বিট" - -@@ -1272,13 +1232,11 @@ msgstr "ভিডিও DVD'র জন?? - #: ../panels/info/cc-info-panel.c:1286 - msgid "Select an application to run when a music player is connected" - msgstr "" --"একটি মিউজিক প্লেয়ার সংযুক্ত অবস্থায় চালানোর জন্য একটি অ্যাপ্লিকেশন নির্বাচন " --"করুন" -+"একটি মিউজিক প্লেয়ার সংযুক্ত অবস্থায় চালানোর জন্য একটি অ্যাপ্লিকেশন নির্বাচন করুন" - - #: ../panels/info/cc-info-panel.c:1287 - msgid "Select an application to run when a camera is connected" --msgstr "" --"একটি ক্যামেরা সংযুক্ত অবস্থায় চালানোর জন্য একটি অ্যাপ্লিকেশন নির্বাচন করুন" -+msgstr "একটি ক্যামেরা সংযুক্ত অবস্থায় চালানোর জন্য একটি অ্যাপ্লিকেশন নির্বাচন করুন" - - #: ../panels/info/cc-info-panel.c:1288 - msgid "Select an application for software CDs" -@@ -1379,8 +1337,7 @@ msgid "" - "device;system;information;memory;processor;version;default;application;" - "preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" - msgstr "" --"ডিভাইস;সিস্টেম;তথ্য;মেমরি;প্রসেসর;সংস্করণ;ডিফল্ট;অ্যাপ্লিকেশন;পছন্দসই;cd;dvd;u" --"sb;" -+"ডিভাইস;সিস্টেম;তথ্য;মেমরি;প্রসেসর;সংস্করণ;ডিফল্ট;অ্যাপ্লিকেশন;পছন্দসই;cd;dvd;usb;" - "অডিও;ভিডিও;ডিস্ক;অপসারণযোগ্য;মিডিয়া;স্বয়ংক্রিয় চালনা;" - - #: ../panels/info/info.ui.h:1 -@@ -1409,7 +1366,6 @@ msgstr "প্রসেসর" - - #. To translators: this field contains the distro name, version and type - #: ../panels/info/info.ui.h:8 --#| msgid "Open System" - msgid "Base system" - msgstr "বেস সিস্টেম" - -@@ -1430,7 +1386,6 @@ msgid "Virtualization" - msgstr "ভার্চুয়ালাইজেশন" - - #: ../panels/info/info.ui.h:13 --#| msgid "Checking for Updates" - msgid "Check for updates" - msgstr "আপডেট অাছে কিনা দেখুন" - -@@ -1484,8 +1439,7 @@ msgstr "অন্যান্য মি? - - #: ../panels/info/info.ui.h:28 - msgid "_Never prompt or start programs on media insertion" --msgstr "" --"মিডিয়া সন্নিবেশের সময়ে কখনও সূচনা দেবেন না বা প্রোগ্রাম শুরু করবেন না (_N)" -+msgstr "মিডিয়া সন্নিবেশের সময়ে কখনও সূচনা দেবেন না বা প্রোগ্রাম শুরু করবেন না (_N)" - - #: ../panels/keyboard/00-multimedia.xml.in.h:1 - msgid "Sound and Media" -@@ -1705,8 +1659,7 @@ msgstr "কি-বোর্ড" - #: ../panels/keyboard/gnome-keyboard-panel.desktop.in.in.h:2 - msgid "View and change keyboard shortcuts and set your typing preferences" - msgstr "" --"কীবোর্ড শর্টকাটগুলি দেখুন এবং পরিবর্তন করুন এবং অাপনার টাইপিং অগ্রাধিকার সেট " --"করুন" -+"কীবোর্ড শর্টকাটগুলি দেখুন এবং পরিবর্তন করুন এবং অাপনার টাইপিং অগ্রাধিকার সেট করুন" - - #. Translators: those are keywords for the keyboard control-center panel - #: ../panels/keyboard/gnome-keyboard-panel.desktop.in.in.h:4 -@@ -1818,8 +1771,7 @@ msgid "" - "To edit a shortcut, click the row and hold down the new keys or press " - "Backspace to clear." - msgstr "" --"একটি শর্টকাট সম্পাদন করতে, সারিতে ক্লিক করুন এবং সাফ করতে নতুন কী ধরে থাকুন " --"বা " -+"একটি শর্টকাট সম্পাদন করতে, সারিতে ক্লিক করুন এবং সাফ করতে নতুন কী ধরে থাকুন বা " - "Backspace টিপুন।" - - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:24 -@@ -1845,8 +1797,7 @@ msgid "" - "using this key.\n" - "Please try with a key such as Control, Alt or Shift at the same time." - msgstr "" --"শর্টকাট-কি হিসেবে \"%s\" ব্যবহার করা যাবে না কারণ এর ফলে এই কি ব্যবহার করে " --"কিছু " -+"শর্টকাট-কি হিসেবে \"%s\" ব্যবহার করা যাবে না কারণ এর ফলে এই কি ব্যবহার করে কিছু " - "টাইপ করা যাবে না।\n" - "অনুগ্রহ করে Control, Alt অথবা Shift কি-র একত্রিত ব্যবহারের প্রচেষ্টা করুন।" - -@@ -1879,25 +1830,20 @@ msgid "" - "automatically set it to \"%s\"?" - msgstr "" - "\"%s\" শর্টকাটের সংগে একটি \"%s\" শর্টকাট সংযুক্ত রয়েছে। অাপনি কি এটি " --"স্বয়ংক্রিয়ভাবে " --"\"%s\" এ সেট করতে চান?" -+"স্বয়ংক্রিয়ভাবে \"%s\" এ সেট করতে চান?" - - # translation auto-copied from project control-center, version 3.8.3, document gnome-control-center-2.0 - #: ../panels/keyboard/keyboard-shortcuts.c:1435 - #, c-format --#| msgid "" --#| "If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be " --#| "disabled." - msgid "" - "\"%s\" is currently associated with \"%s\", this shortcut will be disabled " - "if you move forward." - msgstr "" --"বর্তমানে \"%s\" \"%s\"-এর সংগে সংশ্লিষ্ট, অাপনি এগিয়ে গেলে এই শর্টকাট " --"নিষ্ক্রিয় হবে।" -+"বর্তমানে \"%s\" \"%s\"-এর সংগে সংশ্লিষ্ট, অাপনি এগিয়ে গেলে এই শর্টকাট নিষ্ক্রিয় " -+"হবে।" - - # translation auto-copied from project control-center, version 3.8.3, document gnome-control-center-2.0 - #: ../panels/keyboard/keyboard-shortcuts.c:1441 --#| msgid "_Reassign" - msgid "_Assign" - msgstr "নিয়োগ (_A)" - -@@ -1906,7 +1852,6 @@ msgid "Test Your _Settings" - msgstr "অাপনার সেটিং পরীক্ষা করুন (_S)" - - #: ../panels/mouse/cc-mouse-panel.c:107 --#| msgid "Test Your _Settings" - msgid "Test Your Settings" - msgstr "অাপনার সেটিং পরীক্ষা করুন" - -@@ -1923,10 +1868,8 @@ msgstr "" - - #. Translators: those are keywords for the mouse and touchpad control-center panel - #: ../panels/mouse/gnome-mouse-panel.desktop.in.in.h:4 --#| msgid "Trackpad;Pointer;Click;Tap;Double;Button;Trackball;" - msgid "Trackpad;Pointer;Click;Tap;Double;Button;Trackball;Scroll;" --msgstr "" --"ট্র্যাকপ্যাড;পয়েন্টার;ক্লিক;অালতো চাপুন;দ্বৈত;বোতাম;ট্র্যাকবল;স্ক্রোল;" -+msgstr "ট্র্যাকপ্যাড;পয়েন্টার;ক্লিক;অালতো চাপুন;দ্বৈত;বোতাম;ট্র্যাকবল;স্ক্রোল;" - - # translation auto-copied from project control-center, version 3.8.3, document gnome-control-center-2.0 - #: ../panels/mouse/gnome-mouse-properties.ui.h:1 -@@ -1934,8 +1877,6 @@ msgid "General" - msgstr "সাধারণ" - - #: ../panels/mouse/gnome-mouse-properties.ui.h:2 --#| msgctxt "keyboard, speed" --#| msgid "Slow" - msgctxt "double click, speed" - msgid "Slow" - msgstr "মন্থর" -@@ -1945,8 +1886,6 @@ msgid "Double-click timeout" - msgstr "দুইবার ক্লিকের সময় সমাপ্ত" - - #: ../panels/mouse/gnome-mouse-properties.ui.h:4 --#| msgctxt "keyboard, speed" --#| msgid "Fast" - msgctxt "double click, speed" - msgid "Fast" - msgstr "দ্রুত" -@@ -1979,15 +1918,11 @@ msgid "_Pointer speed" - msgstr "পয়েন্টার গতি (_P)" - - #: ../panels/mouse/gnome-mouse-properties.ui.h:11 --#| msgctxt "keyboard, speed" --#| msgid "Slow" - msgctxt "mouse pointer, speed" - msgid "Slow" - msgstr "মন্থর" - - #: ../panels/mouse/gnome-mouse-properties.ui.h:12 --#| msgctxt "keyboard, speed" --#| msgid "Fast" - msgctxt "mouse pointer, speed" - msgid "Fast" - msgstr "দ্রুত" -@@ -1998,15 +1933,11 @@ msgid "Touchpad" - msgstr "টাচ-প্যাড" - - #: ../panels/mouse/gnome-mouse-properties.ui.h:14 --#| msgctxt "keyboard, speed" --#| msgid "Slow" - msgctxt "touchpad pointer, speed" - msgid "Slow" - msgstr "মন্থর" - - #: ../panels/mouse/gnome-mouse-properties.ui.h:15 --#| msgctxt "keyboard, speed" --#| msgid "Fast" - msgctxt "touchpad pointer, speed" - msgid "Fast" - msgstr "দ্রুত" -@@ -2490,7 +2421,6 @@ msgstr "ফায়ারওয়্যা?? - # translation auto-copied from project control-center, version 3.8.3, document gnome-control-center-2.0 - #: ../panels/network/connection-editor/firewall-helpers.c:48 - #: ../panels/network/connection-editor/firewall-helpers.c:112 --#| msgid "Default" - msgctxt "Firewall zone" - msgid "Default" - msgstr "ডিফল্ট" -@@ -2600,8 +2530,7 @@ msgid "" - "Reset the settings for this network, including passwords, but remember it as " - "a preferred network" - msgstr "" --"পাসওয়ার্ড সমেত এই নেটওয়ার্কের জন্য সেটিং পুনঃসেট করুন, কিন্তু এটিকে পছন্দের " --"নেটওয়ার্ক " -+"পাসওয়ার্ড সমেত এই নেটওয়ার্কের জন্য সেটিং পুনঃসেট করুন, কিন্তু এটিকে পছন্দের নেটওয়ার্ক " - "হিসাবে মনে রাখুন" - - #: ../panels/network/connection-editor/reset-page.ui.h:4 -@@ -2609,8 +2538,7 @@ msgid "" - "Remove all details relating to this network and do not try to automatically " - "connect" - msgstr "" --"এই নেটওয়ার্কের সংগে সংশিষ্ট সমস্ত বিস্তারিত সরান এবং স্বয়ংক্রিয় ভাবে সংযোগ " --"করার " -+"এই নেটওয়ার্কের সংগে সংশিষ্ট সমস্ত বিস্তারিত সরান এবং স্বয়ংক্রিয় ভাবে সংযোগ করার " - "চেষ্টা করুন" - - #: ../panels/network/connection-editor/security-page.ui.h:1 -@@ -2676,7 +2604,6 @@ msgstr "" - "ত্রুটি: %s।" - - #: ../panels/network/connection-editor/vpn-helpers.c:371 --#| msgid "Export VPN connection..." - msgid "Export VPN connection" - msgstr "VPN সংযোগ রপ্তানি করুন" - -@@ -2715,14 +2642,12 @@ msgstr "ইন্টারনেটে?? - - #. Translators: those are keywords for the network control-center panel - #: ../panels/network/gnome-network-panel.desktop.in.in.h:4 --#| msgid "" --#| "Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;" - msgid "" - "Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;" - "vlan;bridge;bond;DNS;" - msgstr "" --"নেটওয়ার্ক;বেতার;Wi-Fi;Wifi;IP;LAN;প্রক্সি;WAN;ব্রডব্যান্ড;মোডেম;ব্লুটুথ;vpn;" --"vlan;ব্রিজ;বন্ড;DNS;" -+"নেটওয়ার্ক;বেতার;Wi-Fi;Wifi;IP;LAN;প্রক্সি;WAN;ব্রডব্যান্ড;মোডেম;ব্লুটুথ;vpn;vlan;ব্রিজ;" -+"বন্ড;DNS;" - - #: ../panels/network/net-device-bond.c:77 - msgid "Bond slaves" -@@ -2800,7 +2725,6 @@ msgid "Add new connection" - msgstr "নতুন সংযোগ যোগ করুন" - - #: ../panels/network/net-device-team.c:77 --#| msgid "Bridge slaves" - msgid "Team slaves" - msgstr "টিম স্লেভস" - -@@ -2809,8 +2733,7 @@ msgid "" - "If you have a connection to the Internet other than wireless, you can set up " - "a wireless hotspot to share the connection with others." - msgstr "" --"বেতার সংযোগ ছাড়া ইন্টারনেটের সংগে অাপনার অন্য কোনো ধরনের সংযোগ থাকলে, " --"অন্যদের " -+"বেতার সংযোগ ছাড়া ইন্টারনেটের সংগে অাপনার অন্য কোনো ধরনের সংযোগ থাকলে, অন্যদের " - "সংগে সংযোগ ভাগ করতে অাপনি একটি বেতার হটস্পট সেট অাপ করতে পারবেন।" - - #: ../panels/network/net-device-wifi.c:1155 -@@ -2823,8 +2746,7 @@ msgid "" - "It is not possible to access the Internet through your wireless while the " - "hotspot is active." - msgstr "" --"হটস্পট সক্রিয় থাকার সময়ে অাপনার বেতার মারফত ইন্টারনেট অ্যাক্সেস করা সম্ভব " --"নয়।" -+"হটস্পট সক্রিয় থাকার সময়ে অাপনার বেতার মারফত ইন্টারনেট অ্যাক্সেস করা সম্ভব নয়।" - - #: ../panels/network/net-device-wifi.c:1242 - msgid "Stop hotspot and disconnect any users?" -@@ -2847,8 +2769,7 @@ msgid "" - "Network details for the selected networks, including passwords and any " - "custom configuration will be lost." - msgstr "" --"পাসওয়ার্ড সমেত নির্বাচিত নেটওয়ার্কগুলির নেটওয়ার্ক বিস্তারিত এবং যেকোনো " --"কাস্টম " -+"পাসওয়ার্ড সমেত নির্বাচিত নেটওয়ার্কগুলির নেটওয়ার্ক বিস্তারিত এবং যেকোনো কাস্টম " - "কনফিগারেশন হারিয়ে যাবে।" - - #: ../panels/network/net-device-wifi.c:1742 -@@ -2874,8 +2795,7 @@ msgstr "মুছে ফেলা হব - msgid "" - "Web Proxy Autodiscovery is used when a Configuration URL is not provided." - msgstr "" --"কনফিগারেশন URL সরবরাহ করা না হলে ওয়েব প্রক্সি স্বয়ংক্রিয়-ডিসকভারি ব্যবহার " --"করা হয়।" -+"কনফিগারেশন URL সরবরাহ করা না হলে ওয়েব প্রক্সি স্বয়ংক্রিয়-ডিসকভারি ব্যবহার করা হয়।" - - #. TRANSLATORS: WPAD is bad: if you enable it on an untrusted - #. * network, then anyone else on that network can tell your -@@ -3086,16 +3006,14 @@ msgid "" - "Reset the settings for this connection to their defaults, but remember as a " - "preferred connection." - msgstr "" --"এই সংযোগের সেটিংস তাদের ডিফল্টে পুনঃসেট করুন কিন্তু পছন্দের সংযোগ হিসাবে মনে " --"রাখুন।" -+"এই সংযোগের সেটিংস তাদের ডিফল্টে পুনঃসেট করুন কিন্তু পছন্দের সংযোগ হিসাবে মনে রাখুন।" - - #: ../panels/network/network-wifi.ui.h:42 - msgid "" - "Remove all details relating to this network and do not try to automatically " - "connect to it." - msgstr "" --"এই নেটওয়ার্কের সংগে সংশিষ্ট সমস্ত বিস্তারিত সরান এবং এতে স্বয়ংক্রিয় ভাবে " --"সংযোগ " -+"এই নেটওয়ার্কের সংগে সংশিষ্ট সমস্ত বিস্তারিত সরান এবং এতে স্বয়ংক্রিয় ভাবে সংযোগ " - "করার চেষ্টা করবেন না।" - - #: ../panels/network/network-wifi.ui.h:43 -@@ -3486,10 +3404,8 @@ msgid "" - "to insecure, rogue Wi-Fi networks. Would you like to choose a Certificate " - "Authority certificate?" - msgstr "" --"শংসাপত্র কর্তৃপক্ষ (CA) শংসাপত্র ব্যবহার না করার ফলে সংযোগ অনিরাপদ হয়ে যেতে " --"পারে, " --"Wi-Fi নেটওয়ার্ক বিপজ্জনক হতে পারে। অাপনি কি একটি শংসাপত্র কর্তৃপক্ষ শংসাপত্র " --"বাছতে " -+"শংসাপত্র কর্তৃপক্ষ (CA) শংসাপত্র ব্যবহার না করার ফলে সংযোগ অনিরাপদ হয়ে যেতে পারে, " -+"Wi-Fi নেটওয়ার্ক বিপজ্জনক হতে পারে। অাপনি কি একটি শংসাপত্র কর্তৃপক্ষ শংসাপত্র বাছতে " - "চান?" - - # auto translated by TM merge from project: authconfig, version: 6.1.12-8, DocId: authconfig -@@ -3521,7 +3437,6 @@ msgid "MSCHAPv2" - msgstr "MSCHAPv2" - - #: ../panels/network/wireless-security/eap-method-fast.c:409 --#| msgid "Choose a PAC file..." - msgid "Choose a PAC file" - msgstr "একটি PAC ফাইল বাছুন" - -@@ -3592,7 +3507,6 @@ msgstr "MD5" - #: ../panels/network/wireless-security/eap-method-peap.c:350 - #: ../panels/network/wireless-security/eap-method-tls.c:456 - #: ../panels/network/wireless-security/eap-method-ttls.c:350 --#| msgid "Choose a Certificate Authority certificate..." - msgid "Choose a Certificate Authority certificate" - msgstr "একটি শংসাপত্র কর্তৃপক্ষ শংসাপত্র বাছুন" - -@@ -3631,21 +3545,17 @@ msgid "" - "\n" - "(You can password-protect your private key with openssl)" - msgstr "" --"নির্বাচিত ব্যক্তিগত কী একটি পাসওয়ার্ড দ্বারা সুরক্ষিত বলে মনে হচ্ছে না। এর " --"কারণে " --"অাপনার নিরাপত্তা শংসাপত্রের অপব্যবহার হওয়ার পরিস্থিতি তৈরি হতে পারে। দয়া " --"করে " -+"নির্বাচিত ব্যক্তিগত কী একটি পাসওয়ার্ড দ্বারা সুরক্ষিত বলে মনে হচ্ছে না। এর কারণে " -+"অাপনার নিরাপত্তা শংসাপত্রের অপব্যবহার হওয়ার পরিস্থিতি তৈরি হতে পারে। দয়া করে " - "একটি পাসওয়ার্ড সুরক্ষিত ব্যক্তিগত কী নির্বাচন করুন।\n" - "\n" - "(অাপনি openssl দিয়ে অাপনার ব্যক্তিগত কী পাসওয়ার্ড সুরক্ষিত করতে পারবেন)" - - #: ../panels/network/wireless-security/eap-method-tls.c:450 --#| msgid "Choose your personal certificate..." - msgid "Choose your personal certificate" - msgstr "অাপনার ব্যক্তিগত শংসাপত্র বাছুন" - - #: ../panels/network/wireless-security/eap-method-tls.c:462 --#| msgid "Choose your private key..." - msgid "Choose your private key" - msgstr "অাপনার ব্যক্তিগত কী বাছুন" - -@@ -3825,7 +3735,6 @@ msgstr "লক স্ক্রীনে - - # translation auto-copied from project control-center, version 3.8.3, document gnome-control-center-2.0 - #: ../panels/online-accounts/cc-online-accounts-add-account-dialog.c:169 --#| msgid "Other" - msgctxt "Online Account" - msgid "Other" - msgstr "অন্যান্য" -@@ -3910,15 +3819,11 @@ msgstr "" - - #. For ReadItLater and Pocket, see http://en.wikipedia.org/wiki/Pocket_(application) - #: ../panels/online-accounts/gnome-online-accounts-panel.desktop.in.in.h:4 --#| msgid "" --#| "Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;" --#| "ownCloud;" - msgid "" - "Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;" - "Kerberos;IMAP;SMTP;Pocket;ReadItLater;" - msgstr "" --"Google;Facebook;Twitter;Yahoo;Web;অনলাইন;চ্যাট;ক্যালেন্ডার;মেল;পরিচিতি;ownClou" --"d;" -+"Google;Facebook;Twitter;Yahoo;Web;অনলাইন;চ্যাট;ক্যালেন্ডার;মেল;পরিচিতি;ownCloud;" - "Kerberos;IMAP;SMTP;পকেট;ReadItLater;" - - #: ../panels/online-accounts/online-accounts.ui.h:1 -@@ -3939,8 +3844,7 @@ msgid "" - "Adding an account allows your applications to access it for documents, mail, " - "contacts, calendar, chat and more." - msgstr "" --"একটি অ্যাকাউন্ট যোগ করলে অাপনার অ্যাপ্লিকেশনগুলি তা নথি, মেল, পরিচিতি, " --"বর্ষপঞ্জি, " -+"একটি অ্যাকাউন্ট যোগ করলে অাপনার অ্যাপ্লিকেশনগুলি তা নথি, মেল, পরিচিতি, বর্ষপঞ্জি, " - "চ্যাট এবং অারো অনেক কিছুর জন্য অ্যাক্সেস করতে পারবে।" - - # auto translated by TM merge from project: gnome-settings-daemon, version: 3.8.4, DocId: gnome-settings-daemon -@@ -4141,22 +4045,18 @@ msgid "Power Saving" - msgstr "বিদ্যুতের সংরক্ষণ" - - #: ../panels/power/cc-power-panel.c:1473 --#| msgid "_Screen Brightness" - msgid "_Screen brightness" - msgstr "স্ক্রীন উজ্জ্বলতা (_S)" - - #: ../panels/power/cc-power-panel.c:1479 --#| msgid "Keyboard Settings" - msgid "_Keyboard brightness" - msgstr "কীবোর্ড উজ্জ্বলতা (_K)" - - #: ../panels/power/cc-power-panel.c:1489 --#| msgid "_Dim Screen when Inactive" - msgid "_Dim screen when inactive" - msgstr "নিষ্ক্রিয় অবস্থায় অাবছা স্ক্রীন (_D)" - - #: ../panels/power/cc-power-panel.c:1514 --#| msgid "_Blank Screen" - msgid "_Blank screen" - msgstr "খালি স্ক্রীন (_B)" - -@@ -4169,12 +4069,10 @@ msgid "Turns off wireless devices" - msgstr "বেতার ডিভাইসগুলি বন্ধ করে" - - #: ../panels/power/cc-power-panel.c:1581 --#| msgid "_Mobile Broadband" - msgid "_Mobile broadband" - msgstr "মোবাইল ব্রড-ব্যান্ড (_M)" - - #: ../panels/power/cc-power-panel.c:1586 --#| msgid "Turns off Mobile Broadband (3G, 4G, WiMax, etc.) devices" - msgid "Turns off mobile broadband (3G, 4G, WiMax, etc.) devices" - msgstr "মোবাইল ব্রডব্যান্ড (3G, 4G, WiMax, ইত্যাদি) ডিভাইসগুলি বন্ধ করে" - -@@ -4195,12 +4093,10 @@ msgid "Suspend & Power Off" - msgstr "বিলম্বিত & পাওয়ার বন্ধ করুন" - - #: ../panels/power/cc-power-panel.c:1851 --#| msgid "_Automatic Suspend" - msgid "_Automatic suspend" - msgstr "স্বয়ংক্রিয় বিলম্ব (_A)" - - #: ../panels/power/cc-power-panel.c:1875 --#| msgid "When Battery Power is _Critical" - msgid "When battery power is _critical" - msgstr "যখন ব্যাটারি পাওয়ার খুবই কম (_C)" - -@@ -4228,8 +4124,7 @@ msgstr "অাপনার ব্যা? - msgid "" - "Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;" - msgstr "" --"পাওয়ার;ঘুমন্ত;বিলম্ব;হাইবারনেট;ব্যাটারি;উজ্জ্বলতা;অন্ধকারময়;খালি;মনিটর;DPMS;" --"নিশ্চল;" -+"পাওয়ার;ঘুমন্ত;বিলম্ব;হাইবারনেট;ব্যাটারি;উজ্জ্বলতা;অন্ধকারময়;খালি;মনিটর;DPMS;নিশ্চল;" - - # auto translated by TM merge from project: gnome-shell-extensions, version: 3.8.3, DocId: gnome-shell-extensions - #: ../panels/power/power.ui.h:1 -@@ -4530,8 +4425,7 @@ msgstr "প্রিন্টার" - #: ../panels/printers/gnome-printers-panel.desktop.in.in.h:2 - msgid "Add printers, view printer jobs and decide how you want to print" - msgstr "" --"প্রিন্টারগুলি যোগ করুন, প্রিন্টার সংক্রান্ত কাজ দেখুন এবং অাপনি কীভাবে " --"প্রিন্ট করতে চান " -+"প্রিন্টারগুলি যোগ করুন, প্রিন্টার সংক্রান্ত কাজ দেখুন এবং অাপনি কীভাবে প্রিন্ট করতে চান " - "তা স্থির করুন" - - #. Translators: those are keywords for the printing control-center panel -@@ -4568,7 +4462,6 @@ msgstr "একটি নতুন প্ - # auto translated by TM merge from project: polkit-gnome, version: 0.105, DocId: polkit-gnome-1 - #. Translators: This button opens authentication dialog for selected server. - #: ../panels/printers/new-printer-dialog.ui.h:5 --#| msgid "Authenticate" - msgid "A_uthenticate" - msgstr "অনুমোদন (_u)" - -@@ -4579,7 +4472,6 @@ msgstr "কোনো প্রিন্? - - #. Translators: The entered text should contain network address of a printer or a text which will filter found devices (their names and locations) - #: ../panels/printers/new-printer-dialog.ui.h:9 --#| msgid "Search for network printers or filter result" - msgid "Enter address of a printer or a text to filter results" - msgstr "ফলাফল বাছাই করতে একটি প্রিন্টারের ঠিকানা বা একটি পাঠ্য লিখুন" - -@@ -4597,13 +4489,11 @@ msgstr "ড্রাইভার ডে? - - #. Translators: The found device is a JetDirect printer - #: ../panels/printers/pp-host.c:506 --#| msgid "Remove Printer" - msgid "JetDirect Printer" - msgstr "JetDirect প্রিন্টার" - - #. Translators: The found device is a Line Printer Daemon printer - #: ../panels/printers/pp-host.c:756 --#| msgid "%s Printer" - msgid "LPD Printer" - msgstr "LPD প্রিন্টার" - -@@ -4741,7 +4631,6 @@ msgstr "সমান্তরাল প? - #. Translators: Location of found network printer (e.g. Kitchen, Reception) - #: ../panels/printers/pp-new-printer-dialog.c:1739 - #, c-format --#| msgid "Location" - msgid "Location: %s" - msgstr "অবস্থান: %s" - -@@ -4749,13 +4638,11 @@ msgstr "অবস্থান: %s" - #. Translators: Network address of found printer - #: ../panels/printers/pp-new-printer-dialog.c:1744 - #, c-format --#| msgid "Address" - msgid "Address: %s" - msgstr "ঠিকানা: %s" - - #. Translators: This item is a server which needs authentication to show its printers - #: ../panels/printers/pp-new-printer-dialog.c:1768 --#| msgid "_Inner authentication" - msgid "Server requires authentication" - msgstr "সার্ভারের প্রমাণীকরণের প্রয়োজন" - -@@ -4913,8 +4800,7 @@ msgstr "ড্রাইভার" - #: ../panels/printers/pp-samba.c:248 - #, c-format - msgid "Enter your username and password to view printers available on %s." --msgstr "" --"%s এ উপলব্ধ প্রিন্টারগুলি দেখতে অাপনার ব্যবহারকারী নাম এবং পাসওয়ার্ড দিন।" -+msgstr "%s এ উপলব্ধ প্রিন্টারগুলি দেখতে অাপনার ব্যবহারকারী নাম এবং পাসওয়ার্ড দিন।" - - #: ../panels/printers/printers.ui.h:1 - msgid "Add Printer" -@@ -4937,7 +4823,6 @@ msgstr "অবস্থান" - - #. Translators: This checkbox is checked when the default printer is selected. - #: ../panels/printers/printers.ui.h:8 --#| msgid "Default Route" - msgid "_Default printer" - msgstr "ডিফল্ট প্রিন্টার (_D)" - -@@ -5011,7 +4896,6 @@ msgid "_Empty Trash" - msgstr "ট্র্যাশ খালি করুন (_E)" - - #: ../panels/privacy/cc-privacy-panel.c:512 --#| msgid "Purge Trash & Temporary Files" - msgid "Delete all the temporary files?" - msgstr "সকল অস্থায়ী ফাইল মুছবেন?" - -@@ -5029,7 +4913,6 @@ msgstr "ট্র্যাশ & অস?? - - # auto translated by TM merge from project: gnome-packagekit, version: 3.8.2, DocId: gnome-packagekit - #: ../panels/privacy/cc-privacy-panel.c:576 ../panels/privacy/privacy.ui.h:36 --#| msgid "Software" - msgid "Software Usage" - msgstr "সফ্টওয়্যারের ব্যবহার" - -@@ -5040,8 +4923,7 @@ msgstr "গোপনীয়তা" - #: ../panels/privacy/gnome-privacy-panel.desktop.in.in.h:2 - msgid "Protect your personal information and control what others might see" - msgstr "" --"অাপনার ব্যক্তিগত তথ্য সুরক্ষিত রাখুন এবং অন্যরা কী দেখতে পাবেন না পাবেন তা " --"নিয়ন্ত্রণ " -+"অাপনার ব্যক্তিগত তথ্য সুরক্ষিত রাখুন এবং অন্যরা কী দেখতে পাবেন না পাবেন তা নিয়ন্ত্রণ " - "করুন" - - #. Translators: those are keywords for the privacy control-center panel -@@ -5050,8 +4932,7 @@ msgid "" - "screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;" - "network;identity;" - msgstr "" --"স্ক্রীন;লক;সমস্যা নিরূপণ;ক্র্যাশ;ব্যক্তিগত;সাম্প্রতিক;অস্থায়ী;tmp;সূচি;নাম;নে" --"টওয়ার্ক;" -+"স্ক্রীন;লক;সমস্যা নিরূপণ;ক্র্যাশ;ব্যক্তিগত;সাম্প্রতিক;অস্থায়ী;tmp;সূচি;নাম;নেটওয়ার্ক;" - "পরিচয়;" - - #: ../panels/privacy/privacy.ui.h:1 -@@ -5131,7 +5012,6 @@ msgid "Automatic Screen _Lock" - msgstr "স্বয়ংক্রিয় স্ক্রীন লক (_L)" - - #: ../panels/privacy/privacy.ui.h:27 --#| msgid "Lock Screen _After Blank For" - msgid "Lock screen _after blank for" - msgstr "এত খালি থাকার পরে স্ক্রীন তালাবন্ধ করুন (_a)" - -@@ -5144,17 +5024,14 @@ msgid "" - "Automatically purge the Trash and temporary files to help keep your computer " - "free of unnecessary sensitive information." - msgstr "" --"অাপনার কম্পিউটারকে অপ্রয়োজনীয় সংবেদনশীল তথ্য থেকে মুক্ত রাখতে ট্র্যাশ এবং " --"অস্থায়ী " -+"অাপনার কম্পিউটারকে অপ্রয়োজনীয় সংবেদনশীল তথ্য থেকে মুক্ত রাখতে ট্র্যাশ এবং অস্থায়ী " - "ফাইলগুলি স্বয়ংক্রিয় ভাবে পার্জ করুন।" - - #: ../panels/privacy/privacy.ui.h:31 --#| msgid "Automatically Empty _Trash" - msgid "Automatically empty _Trash" - msgstr "ট্র্যাশ স্বয়ংক্রিয় ভাবে খালি করুন (_T)" - - #: ../panels/privacy/privacy.ui.h:32 --#| msgid "Automatically Purge Temporary _Files" - msgid "Automatically purge Temporary _Files" - msgstr "অস্থায়ী ফাইলগুলি স্বয়ংক্রিয় ভাবে পার্জ করুন (_F)" - -@@ -5172,24 +5049,22 @@ msgid "" - "your data with third parties." - msgstr "" - "অাপনি কোন সফ্টওয়্যার ব্যবহার করছেন সেই বিষয়ে অামাদের তথ্য দিলে তা অাপনাকে " --"অামাদের তরফ থেকে অারো নির্ভুল প্রস্তাবনা দিতে সাহায্য করে। এটি অামাদের " --"সফ্টওয়্যার উন্নত করতেও সহায়তা করে।\n" -+"অামাদের তরফ থেকে অারো নির্ভুল প্রস্তাবনা দিতে সাহায্য করে। এটি অামাদের সফ্টওয়্যার " -+"উন্নত করতেও সহায়তা করে।\n" - "\n" --"অামরা সকল তথ্য বেনামেই সংগ্রহ করে থাকি, এবং অামরা কখনই তৃতীয় পক্ষের সংগে " --"অাপনার ডেটা ভাগ করে নেব না।" -+"অামরা সকল তথ্য বেনামেই সংগ্রহ করে থাকি, এবং অামরা কখনই তৃতীয় পক্ষের সংগে অাপনার " -+"ডেটা ভাগ করে নেব না।" - - #: ../panels/privacy/privacy.ui.h:40 - msgid "_Send software usage statistics" - msgstr "সফ্টওয়্যার ব্যবহারের পরিসংখ্যান পাঠান (_S)" - - #: ../panels/privacy/privacy.ui.h:41 --#| msgid "Privacy" - msgid "Privacy Policy" - msgstr "গোপনীয়তা নীতি" - - # auto translated by TM merge from project: Skynet topics, version: 1, DocId: 4507-74586 - #: ../panels/privacy/privacy.ui.h:42 --#| msgid "Location" - msgid "_Location Services" - msgstr "অবস্থান পরিষেবা (_L)" - -@@ -5217,7 +5092,6 @@ msgstr "কোনো ইনপুট স - - # translation auto-copied from project control-center, version 3.8.3, document gnome-control-center-2.0 - #: ../panels/region/cc-input-chooser.c:1076 --#| msgid "Other" - msgctxt "Input Source" - msgid "Other" - msgstr "অন্যান্য" -@@ -5283,8 +5157,7 @@ msgstr "অঞ্চল & ভাষা" - #: ../panels/region/gnome-region-panel.desktop.in.in.h:2 - msgid "" - "Select your display language, formats, keyboard layouts and input sources" --msgstr "" --"অাপনার প্রদর্শন ভাষা, ফর্ম্যাট, কীবোর্ড সজ্জা এবং ইনপুট সোর্স নির্বাচন করুন" -+msgstr "অাপনার প্রদর্শন ভাষা, ফর্ম্যাট, কীবোর্ড সজ্জা এবং ইনপুট সোর্স নির্বাচন করুন" - - #. Translators: those are keywords for the region control-center panel - #: ../panels/region/gnome-region-panel.desktop.in.in.h:4 -@@ -5357,26 +5230,22 @@ msgstr "বিকল্প" - # auto translated by TM merge from project: gnome-initial-setup, version: 0.12, DocId: gnome-initial-setup - #: ../panels/region/region.ui.h:7 - msgid "Login settings are used by all users when logging into the system" --msgstr "" --"সিস্টেমে লগিন করার সময়ে সকল ব্যবহারকারীর দ্বারা লগিন সেটিং ব্যবহার করা হয়" -+msgstr "সিস্টেমে লগিন করার সময়ে সকল ব্যবহারকারীর দ্বারা লগিন সেটিং ব্যবহার করা হয়" - - # auto translated by TM merge from project: file-roller, version: 3.8.3, DocId: file-roller - #: ../panels/search/cc-search-locations-dialog.c:476 --#| msgid "Places" - msgctxt "Search Location" - msgid "Places" - msgstr "অবস্থান" - - # auto translated by TM merge from project: gnome-documents, version: 3.8.3.1, DocId: gnome-documents - #: ../panels/search/cc-search-locations-dialog.c:478 --#| msgid "Bookmarks" - msgctxt "Search Location" - msgid "Bookmarks" - msgstr "বুকমার্ক" - - # translation auto-copied from project control-center, version 3.8.3, document gnome-control-center-2.0 - #: ../panels/search/cc-search-locations-dialog.c:480 --#| msgid "Other" - msgctxt "Search Location" - msgid "Other" - msgstr "অন্যান্য" -@@ -5386,7 +5255,6 @@ msgid "Select Location" - msgstr "অবস্থান নির্বাচন করুন" - - #: ../panels/search/cc-search-locations-dialog.c:682 --#| msgid "GOK" - msgid "_OK" - msgstr "ঠিক অাছে (_O)" - -@@ -5402,9 +5270,7 @@ msgstr "অনুসন্ধান" - #: ../panels/search/gnome-search-panel.desktop.in.in.h:2 - msgid "" - "Control which applications show search results in the Activities Overview" --msgstr "" --"ক্রিয়াকলাপ পূর্বরূপে কোন অ্যাপ্লিকেশনগুলি সন্ধান ফলাফল দেখাবে তা নিয়ন্ত্রণ " --"করুন" -+msgstr "ক্রিয়াকলাপ পূর্বরূপে কোন অ্যাপ্লিকেশনগুলি সন্ধান ফলাফল দেখাবে তা নিয়ন্ত্রণ করুন" - - #. Translators: those are keywords for the search control-center panel - #: ../panels/search/gnome-search-panel.desktop.in.in.h:4 -@@ -5445,13 +5311,11 @@ msgstr "বন্ধ" - - # auto translated by TM merge from project: rhsm-web, version: 0.0, DocId: management - #: ../panels/sharing/cc-sharing-panel.c:304 --#| msgid "Enabled" - msgctxt "service is enabled" - msgid "Enabled" - msgstr "সক্রিয়" - - #: ../panels/sharing/cc-sharing-panel.c:307 --#| msgid "Active Jobs" - msgctxt "service is active" - msgid "Active" - msgstr "সক্রিয়" -@@ -5480,8 +5344,7 @@ msgid "" - "share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;" - "pictures;photos;movies;server;renderer;" - msgstr "" --"ভাগ;অংশীদারি;ssh;হোস্ট;নাম;রিমোট;ডেস্কটপ;ব্লুটুথ;obex;মিডিয়া;অডিও;ভিডিও;ছবি;ফ" --"োটো;" -+"ভাগ;অংশীদারি;ssh;হোস্ট;নাম;রিমোট;ডেস্কটপ;ব্লুটুথ;obex;মিডিয়া;অডিও;ভিডিও;ছবি;ফোটো;" - "মুভি;সার্ভার;রেন্ডরার;" - - #: ../panels/sharing/org.gnome.controlcenter.remote-login-helper.policy.in.in.h:1 -@@ -5502,7 +5365,6 @@ msgstr "ভাগ করার জন্ - #. * vim: sw=2 ts=8 cindent noai bs=2 - #. - #: ../panels/sharing/networks.ui.h:1 --#| msgid "Network" - msgid "Networks" - msgstr "নেটওয়ার্ক" - -@@ -5515,8 +5377,7 @@ msgid "" - "Bluetooth Sharing allows you to share files with other Bluetooth enabled " - "devices" - msgstr "" --"ব্লুটুথ ভাগের মাধ্যমে অাপনি অন্যান্য ব্লুটুথ সক্রিয় ডিভাইসের সংগে ফাইল ভাগ " --"করতে পারবেন" -+"ব্লুটুথ ভাগের মাধ্যমে অাপনি অন্যান্য ব্লুটুথ সক্রিয় ডিভাইসের সংগে ফাইল ভাগ করতে পারবেন" - - #: ../panels/sharing/sharing.ui.h:3 - msgid "Only Receive From Trusted Devices" -@@ -5551,8 +5412,7 @@ msgstr "দূরবর্তী লগ- - - #: ../panels/sharing/sharing.ui.h:10 - msgid "Some services are disabled because of no network access." --msgstr "" --"কোনো নেটওয়ার্ক অ্যাক্সেস না থাকায় কিছু পরিষেবাদি নিষ্ক্রিয় করা হয়েছে।" -+msgstr "কোনো নেটওয়ার্ক অ্যাক্সেস না থাকায় কিছু পরিষেবাদি নিষ্ক্রিয় করা হয়েছে।" - - #: ../panels/sharing/sharing.ui.h:12 - #, no-c-format -@@ -5560,8 +5420,7 @@ msgid "" - "Personal File Sharing allows you to share your Public folder with others on " - "your current network using: dav://%s" - msgstr "" --"ব্যক্তিগত ফাইল ভাগ এর ব্যবহার করে অন্যদের সংগে অাপনার সার্বজনীন ফোল্ডার ভাগ " --"করতে " -+"ব্যক্তিগত ফাইল ভাগ এর ব্যবহার করে অন্যদের সংগে অাপনার সার্বজনীন ফোল্ডার ভাগ করতে " - "দেয়: dav://%s" - - #: ../panels/sharing/sharing.ui.h:13 -@@ -5583,18 +5442,15 @@ msgid "" - "Allow remote users to view or control your screen by connecting to: vnc://%s" - msgstr "" --"এর সংগে সংযোগ করে রিমোট ব্যবহারকারীদেরকে অাপনার স্ক্রীন দেখতে বা নিয়ন্ত্রণ " --"করতে " -+"এর সংগে সংযোগ করে রিমোট ব্যবহারকারীদেরকে অাপনার স্ক্রীন দেখতে বা নিয়ন্ত্রণ করতে " - "অনুমতি দিন: vnc://%s" - - #: ../panels/sharing/sharing.ui.h:20 --#| msgid "Remote Control" - msgid "Allow Remote Control" - msgstr "রিমোট কন্ট্রোলের অনুমতি দিন" - - # auto translated by TM merge from project: Skynet topics, version: 1, DocId: 5177-68190 - #: ../panels/sharing/sharing.ui.h:21 --#| msgid "Password" - msgid "Password:" - msgstr "পাসওয়ার্ড:" - -@@ -5604,7 +5460,6 @@ msgstr "পাসওয়ার্ড ? - - # auto translated by TM merge from project: RHEL Deployment Guide, version: 6.2, DocId: Product_Subscriptions_and_Entitlements - #: ../panels/sharing/sharing.ui.h:23 --#| msgid "Options" - msgid "Access Options" - msgstr "অ্যাক্সেস বিকল্প" - -@@ -5613,17 +5468,14 @@ msgid "New connections must ask for acce - msgstr "নতুন সংযোগগুলিকে অবশ্যই অ্যাক্সেস চাইতে হবে" - - #: ../panels/sharing/sharing.ui.h:25 --#| msgid "Require Password" - msgid "Require a password" - msgstr "একটি পাসওয়ার্ডের প্রয়োজন" - - #: ../panels/sharing/sharing.ui.h:26 --#| msgid "Share Music, Photos and Videos with others on the current network." - msgid "Share music, photos and videos over the network." - msgstr "নেটওয়ার্কের মাধ্যমে মিউজিক, ফোটো এবং ভিডিও ভাগ করুন।" - - #: ../panels/sharing/sharing.ui.h:27 --#| msgid "Add Folder" - msgid "Folders" - msgstr "ফোল্ডারগুলি" - -@@ -5872,18 +5724,14 @@ msgstr "এটিকে দেখা, ?? - - #. Translators: those are keywords for the universal access control-center panel - #: ../panels/universal-access/gnome-universal-access-panel.desktop.in.in.h:4 --#| msgid "" --#| "Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen Reader;text;font;" --#| "size;AccessX;Sticky Keys;Slow Keys;Bounce Keys;Mouse Keys;" - msgid "" - "Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;" - "AccessX;Sticky;Keys;Slow;Bounce;Mouse;" - msgstr "" --"কীবোর্ড;মাউস;a11y;অ্যাক্সেসযোগ্যতা;প্রাবল্যতা;জুম;স্ক্রিন;রিডার;পাঠ্য;হরফ;মাপ;" --"AccessX;স্টিকি;কী;মন্থর;বাউন্স;মাউস;" -+"কীবোর্ড;মাউস;a11y;অ্যাক্সেসযোগ্যতা;প্রাবল্যতা;জুম;স্ক্রিন;রিডার;পাঠ্য;হরফ;মাপ;AccessX;" -+"স্টিকি;কী;মন্থর;বাউন্স;মাউস;" - - #: ../panels/universal-access/uap.ui.h:1 --#| msgid "Universal Access" - msgid "_Always Show Universal Access Menu" - msgstr "সর্বদা সার্বজনীন অ্যাক্সেস মেনু দেখান (_A)" - -@@ -5893,31 +5741,26 @@ msgstr "দেখা" - - # auto translated by TM merge from project: gnome-themes-standard, version: 3.8.3, DocId: gnome-themes-standard - #: ../panels/universal-access/uap.ui.h:3 --#| msgid "High Contrast" - msgid "_High Contrast" - msgstr "গাঢ় তারতম্য (_H)" - - # auto translated by TM merge from project: gnome-shell, version: 3.8.4, DocId: gnome-shell - #: ../panels/universal-access/uap.ui.h:4 --#| msgid "Large Text" - msgid "_Large Text" - msgstr "বড় মাপের হরফ (_L)" - - # translation auto-copied from project control-center, version 3.8.3, document gnome-control-center-2.0 - #: ../panels/universal-access/uap.ui.h:5 --#| msgid "Zoom" - msgid "_Zoom" - msgstr "জুম (_Z)" - - # auto translated by TM merge from project: gnome-shell, version: 3.8.4, DocId: gnome-shell - #: ../panels/universal-access/uap.ui.h:7 --#| msgid "Screen Reader" - msgid "Screen _Reader" - msgstr "স্ক্রীন রিডার (_R)" - - # translation auto-copied from project control-center, version 3.8.3, document gnome-control-center-2.0 - #: ../panels/universal-access/uap.ui.h:8 --#| msgid "Bounce Keys" - msgid "_Sound Keys" - msgstr "শব্দ কী (_S)" - -@@ -5927,12 +5770,10 @@ msgstr "শোনা" - - # auto translated by TM merge from project: gnome-shell, version: 3.8.4, DocId: gnome-shell - #: ../panels/universal-access/uap.ui.h:10 --#| msgid "Visual Alerts" - msgid "_Visual Alerts" - msgstr "দৃশ্যমান সূচনা (_V)" - - #: ../panels/universal-access/uap.ui.h:12 --#| msgid "On Screen Keyboard" - msgid "Screen _Keyboard" - msgstr "স্ক্রীন কীবোর্ড (_K)" - -@@ -5941,13 +5782,11 @@ msgid "_Typing Assist (AccessX)" - msgstr "টাইপিং সহায়তা (_T) (AccessX)" - - #: ../panels/universal-access/uap.ui.h:14 --#| msgid "Pointing and Clicking" - msgid "Pointing & Clicking" - msgstr "পয়েন্টিং & ক্লিকিং" - - # translation auto-copied from project control-center, version 3.8.3, document gnome-control-center-2.0 - #: ../panels/universal-access/uap.ui.h:15 --#| msgid "Mouse Keys" - msgid "_Mouse Keys" - msgstr "মাউস-কি (_M)" - -@@ -5966,13 +5805,11 @@ msgstr "অাপনার ফোকা? - - # auto translated by TM merge from project: gnome-shell, version: 3.8.4, DocId: gnome-shell - #: ../panels/universal-access/uap.ui.h:19 --#| msgid "Screen Reader" - msgid "_Screen Reader" - msgstr "স্ক্রীন রিডার (_S)" - - # translation auto-copied from project control-center, version 3.8.3, document gnome-control-center-2.0 - #: ../panels/universal-access/uap.ui.h:20 --#| msgid "Bounce Keys" - msgid "Sound Keys" - msgstr "শব্দ কি" - -@@ -5990,28 +5827,23 @@ msgid "_Test flash" - msgstr "ফ্ল্যাশ পরীক্ষা (_T)" - - #: ../panels/universal-access/uap.ui.h:24 --#| msgid "Use a visual indication when an alert sound occurs" - msgid "Use a visual indication when an alert sound occurs." - msgstr "একটি সর্তকতা শব্দ দেখা দিলে একটি ভিজ্যুয়াল সূচনা ব্যবহার করুন।" - - #: ../panels/universal-access/uap.ui.h:25 --#| msgid "Flash the window title" - msgid "Flash the _window title" - msgstr "উইন্ডো শিরোনাম ফ্ল্যাশ করুন (_w)" - - #: ../panels/universal-access/uap.ui.h:26 --#| msgid "Flash the entire screen" - msgid "Flash the entire _screen" - msgstr "সমগ্র স্ক্রীন ফ্ল্যাশ করুন (_s)" - - #: ../panels/universal-access/uap.ui.h:27 --#| msgid "Typing" - msgid "Typing Assist" - msgstr "টাইপিং সহায়তা" - - # translation auto-copied from project control-center, version 3.8.3, document gnome-control-center-2.0 - #: ../panels/universal-access/uap.ui.h:28 --#| msgid "Sticky Keys" - msgid "_Sticky Keys" - msgstr "স্টিকি-কি (_S)" - -@@ -6029,7 +5861,6 @@ msgstr "একটি মডিফায? - - # translation auto-copied from project control-center, version 3.8.3, document gnome-control-center-2.0 - #: ../panels/universal-access/uap.ui.h:32 --#| msgid "Slow Keys" - msgid "S_low Keys" - msgstr "ধীর গতির-কি (_l)" - -@@ -6042,8 +5873,6 @@ msgid "A_cceptance delay:" - msgstr "স্বীকার করতে বিলম্ব (_c):" - - #: ../panels/universal-access/uap.ui.h:35 --#| msgctxt "keyboard, delay" --#| msgid "Short" - msgctxt "slow keys delay" - msgid "Short" - msgstr "সংক্ষিপ্ত" -@@ -6053,19 +5882,15 @@ msgid "Slow keys typing delay" - msgstr "মন্থর কী টাইপিং বিলম্ব" - - #: ../panels/universal-access/uap.ui.h:37 --#| msgctxt "keyboard, delay" --#| msgid "Long" - msgctxt "slow keys delay" - msgid "Long" - msgstr "লম্বা" - - #: ../panels/universal-access/uap.ui.h:38 --#| msgid "Beep when a _modifer key is pressed" - msgid "Beep when a key is pr_essed" - msgstr "একটি কী টেপা হলে বীপ (_e)" - - #: ../panels/universal-access/uap.ui.h:39 --#| msgid "Beep when a key is _rejected" - msgid "Beep when a key is _accepted" - msgstr "একটি কী গৃহিত হলে বীপ অাওয়াজ করুন (_a)" - -@@ -6075,7 +5900,6 @@ msgstr "একটি কী প্রত - - # translation auto-copied from project control-center, version 3.8.3, document gnome-control-center-2.0 - #: ../panels/universal-access/uap.ui.h:41 --#| msgid "Bounce Keys" - msgid "_Bounce Keys" - msgstr "বাউন্স-কি (_B)" - -@@ -6084,8 +5908,6 @@ msgid "Ignores fast duplicate keypresses - msgstr "দ্রুত সদৃশ কী-টেপা উপেক্ষা করে" - - #: ../panels/universal-access/uap.ui.h:43 --#| msgctxt "keyboard, delay" --#| msgid "Short" - msgctxt "bounce keys delay" - msgid "Short" - msgstr "সংক্ষিপ্ত" -@@ -6095,14 +5917,11 @@ msgid "Bounce keys typing delay" - msgstr "বাউন্স কী টাইপিং বিলম্ব" - - #: ../panels/universal-access/uap.ui.h:45 --#| msgctxt "keyboard, delay" --#| msgid "Long" - msgctxt "bounce keys delay" - msgid "Long" - msgstr "লম্বা" - - #: ../panels/universal-access/uap.ui.h:46 --#| msgid "Enable by Keyboard" - msgid "_Enable by Keyboard" - msgstr "কীবোর্ড দ্বারা সক্রিয় (_E)" - -@@ -6116,7 +5935,6 @@ msgstr "ক্লিক সহায়ত? - - # translation auto-copied from project control-center, version 3.8.3, document gnome-control-center-2.0 - #: ../panels/universal-access/uap.ui.h:49 --#| msgid "Simulated Secondary Click" - msgid "_Simulated Secondary Click" - msgstr "দ্বিতীয় ক্লিকের অনুকরণ (_S)" - -@@ -6125,8 +5943,6 @@ msgid "Trigger a secondary click by hold - msgstr "প্রাথমিক বোতাম ধরে রেখে একটি অপ্রধান ক্লিক ট্রিগার করুন" - - #: ../panels/universal-access/uap.ui.h:51 --#| msgctxt "keyboard, delay" --#| msgid "Short" - msgctxt "secondary click" - msgid "Short" - msgstr "সংক্ষিপ্ত" -@@ -6136,14 +5952,11 @@ msgid "Secondary click delay" - msgstr "অপ্রধান ক্লিক বিলম্ব" - - #: ../panels/universal-access/uap.ui.h:53 --#| msgctxt "keyboard, delay" --#| msgid "Long" - msgctxt "secondary click delay" - msgid "Long" - msgstr "লম্বা" - - #: ../panels/universal-access/uap.ui.h:54 --#| msgid "Hover Click" - msgid "_Hover Click" - msgstr "হোভার ক্লিক (_H)" - -@@ -6157,15 +5970,11 @@ msgid "D_elay:" - msgstr "বিলম্ব: (_e)" - - #: ../panels/universal-access/uap.ui.h:57 --#| msgctxt "keyboard, delay" --#| msgid "Short" - msgctxt "dwell click delay" - msgid "Short" - msgstr "সংক্ষিপ্ত" - - #: ../panels/universal-access/uap.ui.h:58 --#| msgctxt "keyboard, delay" --#| msgid "Long" - msgctxt "dwell click delay" - msgid "Long" - msgstr "লম্বা" -@@ -6175,16 +5984,12 @@ msgid "Motion _threshold:" - msgstr "মোশন থ্রেশোল্ড (_t):" - - #: ../panels/universal-access/uap.ui.h:60 --#| msgctxt "universal access, text size" --#| msgid "Small" - msgctxt "dwell click threshold" - msgid "Small" - msgstr "ছোট" - - # auto translated by TM merge from project: totem, version: 3.8.2, DocId: totem - #: ../panels/universal-access/uap.ui.h:61 --#| msgctxt "universal access, text size" --#| msgid "Large" - msgctxt "dwell click threshold" - msgid "Large" - msgstr "বৃহৎ" -@@ -6399,7 +6204,6 @@ msgstr "প্রশাসক" - - # auto translated by TM merge from project: evolution, version: el6, DocId: evolution-2.32 - #: ../panels/user-accounts/data/account-dialog.ui.h:4 --#| msgid "_Full name" - msgid "_Full Name" - msgstr "সম্পূর্ণ নাম (_F)" - -@@ -6410,11 +6214,9 @@ msgstr "অ্যাকাউন্ট ? - - #: ../panels/user-accounts/data/account-dialog.ui.h:7 - #: ../panels/user-accounts/data/password-dialog.ui.h:7 --#| msgid "Choose password at next login" - msgid "Allow user to set a password when they next login" - msgstr "" --"ব্যবহারকারী যখন পরের বার লগইন করবেন তখন তাকে একটি পাসওয়ার্ড সেট করার অনুমতি " --"দিন" -+"ব্যবহারকারী যখন পরের বার লগইন করবেন তখন তাকে একটি পাসওয়ার্ড সেট করার অনুমতি দিন" - - #: ../panels/user-accounts/data/account-dialog.ui.h:8 - #: ../panels/user-accounts/data/password-dialog.ui.h:8 -@@ -6430,8 +6232,8 @@ msgid "" - "Enterprise login allows an existing centrally managed user account to be " - "used on this device." - msgstr "" --"এন্টারপ্রাইজ লগিন এই ডিভাইসে একটি বিদ্যমান কেন্দ্রীয় ভাবে পরিচালিত " --"ব্যবহারকারী অ্যাকাউন্ট ব্যবহারের অনুমতি দেয়।" -+"এন্টারপ্রাইজ লগিন এই ডিভাইসে একটি বিদ্যমান কেন্দ্রীয় ভাবে পরিচালিত ব্যবহারকারী " -+"অ্যাকাউন্ট ব্যবহারের অনুমতি দেয়।" - - # auto translated by TM merge from project: gtk3, version: 3.8.2, DocId: gtk30 - #: ../panels/user-accounts/data/account-dialog.ui.h:12 -@@ -6452,7 +6254,6 @@ msgstr "এন্টারপ্রা?? - - #: ../panels/user-accounts/data/account-dialog.ui.h:16 - #: ../panels/user-accounts/um-account-dialog.c:1458 --#| msgid "Add User Account" - msgid "Add User" - msgstr "ব্যবহারকারী যোগ করুন" - -@@ -6550,8 +6351,7 @@ msgid "" - "Your fingerprint was successfully saved. You should now be able to log in " - "using your fingerprint reader." - msgstr "" --"আপনার আঙুলের ছাপ সাফল্যের সাথে সংরক্ষিত হয়েছে। আঙুলের ছাপ পাঠের ব্যবস্থা " --"(রিডার) " -+"আপনার আঙুলের ছাপ সাফল্যের সাথে সংরক্ষিত হয়েছে। আঙুলের ছাপ পাঠের ব্যবস্থা (রিডার) " - "সহযোগে আপনি এখন লগ-ইন করতে সক্ষম হবেন।" - - # auto translated by TM merge from project: Cloudforms Cloud Engine User Guide, version: 1.0, DocId: Users_And_Roles -@@ -6573,7 +6373,6 @@ msgid "Login History" - msgstr "লগিন ইতিহাস" - - #: ../panels/user-accounts/data/password-dialog.ui.h:1 --#| msgid "Changing password for" - msgid "Change Password" - msgstr "পাসওয়ার্ড পরিবর্তন করুন" - -@@ -6582,17 +6381,14 @@ msgid "Ch_ange" - msgstr "পরিবর্তন করুন (_a)" - - #: ../panels/user-accounts/data/password-dialog.ui.h:4 --#| msgid "_New password" - msgid "_Verify New Password" - msgstr "নতুন পাসওয়ার্ড যাচাই করুন (_V)" - - #: ../panels/user-accounts/data/password-dialog.ui.h:5 --#| msgid "_New password" - msgid "_New Password" - msgstr "নতুন পাসওয়ার্ড (_N)" - - #: ../panels/user-accounts/data/password-dialog.ui.h:6 --#| msgid "Current _password" - msgid "Current _Password" - msgstr "বর্তমান পাসওয়ার্ড (_P)" - -@@ -6637,7 +6433,6 @@ msgid "Authentication is required to cha - msgstr "ব্যবহারকারী ডেটা পরিবর্তন করতে প্রমাণীকরণের প্রয়োজন" - - #: ../panels/user-accounts/pw-utils.c:81 --#| msgid "The new password does not contain enough different characters" - msgctxt "Password hint" - msgid "The new password needs to be different from the old one." - msgstr "নতুন পাসওয়ার্ডটি পুরানো পাসওয়ার্ডের থেকে অালাদা হতে হবে।" -@@ -6648,7 +6443,6 @@ msgid "Try changing some letters and num - msgstr "কিছু অক্ষর এবং সংখ্যা পরিবর্তন করে চেষ্টা করুন।" - - #: ../panels/user-accounts/pw-utils.c:85 ../panels/user-accounts/pw-utils.c:93 --#| msgid "Changing password for" - msgctxt "Password hint" - msgid "Try changing the password a bit more." - msgstr "পাসওয়ার্ডটি অনেকটা বদলে চেষ্টা করুন" -@@ -6714,8 +6508,8 @@ msgid "" - "Try to avoid repeating the same type of character: you need to mix up " - "letters, numbers and punctuation." - msgstr "" --"একই ধরনের অক্ষর লেখা এড়িয়ে যাওয়ার চেষ্টা করুন: অাপনাকে অক্ষর, সংখ্যা এবং " --"যতিচিহ্ন মিলিয়ে মিশিয়ে ব্যবহার করতে হবে।" -+"একই ধরনের অক্ষর লেখা এড়িয়ে যাওয়ার চেষ্টা করুন: অাপনাকে অক্ষর, সংখ্যা এবং যতিচিহ্ন " -+"মিলিয়ে মিশিয়ে ব্যবহার করতে হবে।" - - #: ../panels/user-accounts/pw-utils.c:113 - msgctxt "Password hint" -@@ -6731,8 +6525,7 @@ msgstr "অারো বেশি কর - msgctxt "Password hint" - msgid "Mix uppercase and lowercase and use a number or two." - msgstr "" --"বড় এবং ছোট হাতের অক্ষর মিলিয়ে মিশিয়ে লিখুন এবং এক বা দুইটি সংখ্যা ব্যবহার " --"করুন।" -+"বড় এবং ছোট হাতের অক্ষর মিলিয়ে মিশিয়ে লিখুন এবং এক বা দুইটি সংখ্যা ব্যবহার করুন।" - - #: ../panels/user-accounts/pw-utils.c:119 - msgctxt "Password hint" -@@ -6740,8 +6533,7 @@ msgid "" - "Good password! Adding more letters, numbers and punctuation will make it " - "stronger." - msgstr "" --"ভালো পাসওয়ার্ড! অারো অক্ষর, সংখ্যা এবং যতি চিহ্ন যোগ করলে পাসওয়ার্ড শক্তিশালী " --"হবে।" -+"ভালো পাসওয়ার্ড! অারো অক্ষর, সংখ্যা এবং যতি চিহ্ন যোগ করলে পাসওয়ার্ড শক্তিশালী হবে।" - - #: ../panels/user-accounts/pw-utils.c:141 - #: ../panels/user-accounts/pw-utils.c:171 -@@ -6751,7 +6543,6 @@ msgstr "শক্তি: দুর্ব - - #: ../panels/user-accounts/pw-utils.c:145 - #: ../panels/user-accounts/pw-utils.c:172 --#| msgid "Length:" - msgctxt "Password strength" - msgid "Strength: Low" - msgstr "শক্তি: কম" -@@ -6812,8 +6603,7 @@ msgstr "পুরনো এবং নত - #: ../panels/user-accounts/run-passwd.c:528 - #, c-format - msgid "Your password has been changed since you initially authenticated!" --msgstr "" --"অাপনার প্রারম্ভিক ভাবে প্রমাণীকরণের সময়ে অাপনার পাসওয়ার্ড পরিবর্তিত হয়েছে!" -+msgstr "অাপনার প্রারম্ভিক ভাবে প্রমাণীকরণের সময়ে অাপনার পাসওয়ার্ড পরিবর্তিত হয়েছে!" - - #: ../panels/user-accounts/run-passwd.c:532 - #, c-format -@@ -6836,7 +6626,6 @@ msgstr "অ্যাকাউন্ট ? - - # auto translated by TM merge from project: gnome-initial-setup, version: 0.12, DocId: gnome-initial-setup - #: ../panels/user-accounts/um-account-dialog.c:452 --#| msgid "Passwords do not match" - msgid "Passwords do not match." - msgstr "পাসওয়ার্ডগুলি মিলছে না।" - -@@ -6866,7 +6655,6 @@ msgstr "" - - # auto translated by TM merge from project: gnome-initial-setup, version: 0.12, DocId: gnome-initial-setup - #: ../panels/user-accounts/um-account-dialog.c:1042 --#| msgid "Invalid password, please try again" - msgid "" - "That login password didn't work.\n" - "Please try again." -@@ -6888,8 +6676,7 @@ msgstr "ডোমেন খুঁজে - msgid "" - "You are not allowed to access the device. Contact your system administrator." - msgstr "" --"আপনি এই ডিভাইস ব্যবহার করতে অনুমোদিত নন। অনুগ্রহ করে সিস্টেম " --"অ্যাডমিনিস্ট্রেটরের " -+"আপনি এই ডিভাইস ব্যবহার করতে অনুমোদিত নন। অনুগ্রহ করে সিস্টেম অ্যাডমিনিস্ট্রেটরের " - "সাথে যোগাযোগ করুন।" - - # translation auto-copied from project control-center, version 3.8.3, document gnome-control-center-2.0 -@@ -6923,8 +6710,7 @@ msgid "" - "Do you want to delete your registered fingerprints so fingerprint login is " - "disabled?" - msgstr "" --"আঙুলের ছাপ সহযোগে লগ-ইন ব্যবস্থা নিষ্ক্রিয় করার উদ্দেশ্যে নিবন্ধিত আঙুলের " --"ছাপগুলি মুছে " -+"আঙুলের ছাপ সহযোগে লগ-ইন ব্যবস্থা নিষ্ক্রিয় করার উদ্দেশ্যে নিবন্ধিত আঙুলের ছাপগুলি মুছে " - "ফেলা হবে কি?" - - # translation auto-copied from project control-center, version 3.8.3, document gnome-control-center-2.0 -@@ -6959,8 +6745,7 @@ msgstr "আঙুলের ছাপ প - # translation auto-copied from project control-center, version 3.8.3, document gnome-control-center-2.0 - #: ../panels/user-accounts/um-fingerprint-dialog.c:648 - msgid "Please contact your system administrator for help." --msgstr "" --"অনুগ্রহ করে সহায়তার জন্য আপনার সিস্টেম অ্যাডমিনিস্ট্রটরের সাথে যোগাযোগ করুন।" -+msgstr "অনুগ্রহ করে সহায়তার জন্য আপনার সিস্টেম অ্যাডমিনিস্ট্রটরের সাথে যোগাযোগ করুন।" - - # translation auto-copied from project control-center, version 3.8.3, document gnome-control-center-2.0 - #. translators: -@@ -6974,8 +6759,7 @@ msgid "" - "To enable fingerprint login, you need to save one of your fingerprints, " - "using the '%s' device." - msgstr "" --"আঙুলের ছাপ সহযোগে লগ-ইন ব্যবস্থা সক্রিয় করার জন্য, '%s' সহযোগে অন্তত একটি " --"আঙুলের " -+"আঙুলের ছাপ সহযোগে লগ-ইন ব্যবস্থা সক্রিয় করার জন্য, '%s' সহযোগে অন্তত একটি আঙুলের " - "ছাপ সংরক্ষণ করা আবশ্যক।" - - #: ../panels/user-accounts/um-fingerprint-dialog.c:738 -@@ -7057,7 +6841,6 @@ msgid "Password could not be changed" - msgstr "পাসওয়ার্ড পরিবর্তন করা যাবে না" - - #: ../panels/user-accounts/um-password-dialog.c:286 --#| msgid "The passwords do not match" - msgid "The passwords do not match." - msgstr "পাসওয়ার্ড মিলছে না।" - -@@ -7147,8 +6930,7 @@ msgid "" - "It is possible to keep the home directory, mail spool and temporary files " - "around when deleting a user account." - msgstr "" --"একটি ব্যবহারকারী অ্যাকাউন্ট মোছার সময়ে হোম ডিরেক্টরি, মেল স্পুল এবং অস্থায়ী " --"ফাইলগুলি " -+"একটি ব্যবহারকারী অ্যাকাউন্ট মোছার সময়ে হোম ডিরেক্টরি, মেল স্পুল এবং অস্থায়ী ফাইলগুলি " - "হাতের কাছে রাখা সম্ভব।" - - #: ../panels/user-accounts/um-user-panel.c:511 -@@ -7185,8 +6967,7 @@ msgstr "অ্যাকাউন্ট ? - - #: ../panels/user-accounts/um-user-panel.c:1074 - msgid "Please make sure that the AccountService is installed and enabled." --msgstr "" --"দয়া করে নিশ্চিত করুন যে, AccountService ইনস্টল করা এবং সক্রিয় করা হয়েছে।" -+msgstr "দয়া করে নিশ্চিত করুন যে, AccountService ইনস্টল করা এবং সক্রিয় করা হয়েছে।" - - #: ../panels/user-accounts/um-user-panel.c:1115 - msgid "" -@@ -7229,41 +7010,32 @@ msgstr "অামার অ্যাক? - # auto translated by TM merge from project: gnome-initial-setup, version: 0.12, DocId: gnome-initial-setup - #: ../panels/user-accounts/um-utils.c:567 - #, c-format --#| msgid "A user with the username '%s' already exists" - msgid "A user with the username '%s' already exists." - msgstr "%s নামের একটি ব্যবহারকারী ইতিমধ্যেই উপস্থিত রয়েছে।" - - # auto translated by TM merge from project: gnome-initial-setup, version: 0.12, DocId: gnome-initial-setup - #: ../panels/user-accounts/um-utils.c:571 - #, c-format --#| msgid "The username is too long" - msgid "The username is too long." - msgstr "ব্যবহারকারীর নাম অতিশয় দীর্ঘ।" - - # auto translated by TM merge from project: gnome-initial-setup, version: 0.12, DocId: gnome-initial-setup - #: ../panels/user-accounts/um-utils.c:574 --#| msgid "The username cannot start with a '-'" - msgid "The username cannot start with a '-'." - msgstr "একটি ব্যবহারকারীর নাম '-' দিয়ে শুরু হতে পারে না।" - - # auto translated by TM merge from project: gnome-initial-setup, version: 0.12, DocId: gnome-initial-setup - #: ../panels/user-accounts/um-utils.c:577 --#| msgid "" --#| "The username must only consist of:\n" --#| " ➣ letters from the English alphabet\n" --#| " ➣ digits\n" --#| " ➣ any of the characters '.', '-' and '_'" - msgid "" - "The username should only consist of lower and upper case letters from a-z, " - "digits and any of characters '.', '-' and '_'." - msgstr "" --"ব্যবহারকারী নামে শুধুমাত্র a-z-এর বড় হাতের এবং ছোট হাতের অক্ষর, সংখ্যা এবং " --"'.', '-' এবং '_' এর মধ্যে যেকোনো অক্ষর থাকতে পারে।" -+"ব্যবহারকারী নামে শুধুমাত্র a-z-এর বড় হাতের এবং ছোট হাতের অক্ষর, সংখ্যা এবং '.', " -+"'-' এবং '_' এর মধ্যে যেকোনো অক্ষর থাকতে পারে।" - - #: ../panels/user-accounts/um-utils.c:581 - msgid "This will be used to name your home folder and can't be changed." --msgstr "" --"এটি অাপনার হোম ফোল্ডারের নামকরণ করতে ব্যবহৃত হবে এবং পরিবর্তন করা যাবে না।" -+msgstr "এটি অাপনার হোম ফোল্ডারের নামকরণ করতে ব্যবহৃত হবে এবং পরিবর্তন করা যাবে না।" - - #. Translators: This is a date format string in the style of "Feb 24". - #: ../panels/user-accounts/um-utils.c:827 -@@ -7284,23 +7056,19 @@ msgid "Map buttons to functions" - msgstr "কাজের মানচিত্র বোতাম" - - #: ../panels/wacom/button-mapping.ui.h:3 --#| msgid "" --#| "To edit a shortcut, click the row and hold down the new keys or press " --#| "Backspace to clear." - msgid "" - "To edit a shortcut, choose the \"Send Keystroke\" action, press the keyboard " - "shortcut button and hold down the new keys or press Backspace to clear." - msgstr "" --"কোনো শর্টকাট সম্পাদনা করতে, \"কীস্ট্রোক পাঠান\" বাছুন, কীবোর্ড শর্টকাট বোতাম " --"টিপে নতুন কী ধরে থাকুন বা সাফ করতে ব্যাকস্পেস টিপুন।" -+"কোনো শর্টকাট সম্পাদনা করতে, \"কীস্ট্রোক পাঠান\" বাছুন, কীবোর্ড শর্টকাট বোতাম টিপে " -+"নতুন কী ধরে থাকুন বা সাফ করতে ব্যাকস্পেস টিপুন।" - - #: ../panels/wacom/calibrator/calibrator-gui.c:83 - msgid "" - "Please tap the target markers as they appear on screen to calibrate the " - "tablet." - msgstr "" --"ট্যাবলেট ক্যালিব্রেট করতে টার্গেট মার্কারগুলি স্ক্রীনে দেখা দেওয়ার সময়ে " --"দয়া করে " -+"ট্যাবলেট ক্যালিব্রেট করতে টার্গেট মার্কারগুলি স্ক্রীনে দেখা দেওয়ার সময়ে দয়া করে " - "তাদের অালতো চাপুন।" - - #: ../panels/wacom/calibrator/calibrator-gui.c:87 -@@ -7425,7 +7193,6 @@ msgstr "প্রদর্শন রি? - - # auto translated by TM merge from project: gnome-shell, version: 3.8.4, DocId: gnome-shell - #: ../panels/wacom/gnome-wacom-properties.ui.h:12 --#| msgid "Mouse Settings" - msgid "Adjust mouse settings" - msgstr "মাউস সংক্রান্ত বৈশিষ্ট্য সামজ্ঞস্যপূর্ণ করুন" - -@@ -7540,7 +7307,6 @@ msgid "Bottom Button #%d" - msgstr "নীচের বাটন #%d" - - #: ../panels/wacom/gsd-wacom-key-shortcut-button.c:263 --#| msgid "No shortcut set" - msgid "New shortcut…" - msgstr "নতুন শর্টকাট…" - -@@ -7657,8 +7423,7 @@ msgid "" - "Run '%s --help' to see a full list of available command line options.\n" - msgstr "" - "%s\n" --"কমান্ড-লাইন থেকে ব্যবহারযোগ্য বিকল্পের সম্পূর্ণ তালিকা দেখার জন্য '%s --help' " --"প্রয়োগ " -+"কমান্ড-লাইন থেকে ব্যবহারযোগ্য বিকল্পের সম্পূর্ণ তালিকা দেখার জন্য '%s --help' প্রয়োগ " - "করুন।\n" - - #: ../shell/cc-application.c:193 -Index: new/po/es.po -=================================================================== ---- new.orig/po/es.po -+++ new/po/es.po -@@ -7976,7 +7976,6 @@ msgstr "Preferencias;Configuración;" - #~ msgstr "Sin especificar" - - #, fuzzy --#~| msgid "Locate Pointer" - #~ msgid "Remote Login" - #~ msgstr "Localizar el puntero" - -Index: new/po/fi.po -=================================================================== ---- new.orig/po/fi.po -+++ new/po/fi.po -@@ -904,8 +904,6 @@ msgstr "%e. %Bta %Y, %R" - #. Translators: "city, country" - #: ../panels/datetime/cc-datetime-panel.c:523 - #, c-format --#| msgctxt "login date-time" --#| msgid "%s, %s" - msgctxt "timezone loc" - msgid "%s, %s" - msgstr "%s, %s" -@@ -914,7 +912,6 @@ msgstr "%s, %s" - #. Translators: "timezone (details)" - #: ../panels/datetime/cc-datetime-panel.c:553 - #, c-format --#| msgid "%d x %d (%s)" - msgctxt "timezone desc" - msgid "%s (%s)" - msgstr "%s (%s)" -@@ -939,7 +936,6 @@ msgstr "%R" - #. Translators: "timezone (utc shift)" - #: ../panels/datetime/cc-datetime-panel.c:576 - #, c-format --#| msgid "%d x %d (%s)" - msgctxt "timezone map" - msgid "%s (%s)" - msgstr "%s (%s)" -@@ -1193,7 +1189,6 @@ msgstr "Valitse kuinka näyttöjä ja pr - - #. Translators: those are keywords for the display control-center panel - #: ../panels/display/gnome-display-panel.desktop.in.in.h:4 --#| msgid "Panel;Projector;xrandr;Screen;Resolution;Refresh;" - msgid "Panel;Projector;xrandr;Screen;Resolution;Refresh;Monitor;" - msgstr "" - "Panel;Projector;xrandr;Screen;Resolution;Refresh;Monitor;Paneeli;Projektori;" -@@ -1656,7 +1651,6 @@ msgstr "Compose-näppäin" - - #: ../panels/keyboard/cc-keyboard-option.c:368 - #, fuzzy --#| msgid "Switch to next source" - msgid "Modifiers-only switch to next source" - msgstr "Vaihda seuraavaan lähteeseen" - -@@ -1818,9 +1812,6 @@ msgstr "" - - #: ../panels/keyboard/keyboard-shortcuts.c:1436 - #, c-format --#| msgid "" --#| "If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be " --#| "disabled." - msgid "" - "\"%s\" is currently associated with \"%s\", this shortcut will be disabled " - "if you move forward." -@@ -1829,7 +1820,6 @@ msgstr "" - "jos jatkat eteenpäin." - - #: ../panels/keyboard/keyboard-shortcuts.c:1442 --#| msgid "_Reassign" - msgid "_Assign" - msgstr "_Aseta" - -@@ -2583,7 +2573,6 @@ msgstr "" - "Virhe: %s." - - #: ../panels/network/connection-editor/vpn-helpers.c:371 --#| msgid "Export VPN connection..." - msgid "Export VPN connection" - msgstr "Vie VPN-yhteys" - -@@ -2621,9 +2610,6 @@ msgstr "Hallitse internetyhteyden asetuk - - #. Translators: those are keywords for the network control-center panel - #: ../panels/network/gnome-network-panel.desktop.in.in.h:4 --#| msgid "" --#| "Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;" --#| "vpn;vlan;bridge;bond;" - msgid "" - "Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;" - "vlan;bridge;bond;DNS;" -@@ -3358,7 +3344,6 @@ msgid "MSCHAPv2" - msgstr "MSCHAPv2" - - #: ../panels/network/wireless-security/eap-method-fast.c:409 --#| msgid "Choose a PAC file..." - msgid "Choose a PAC file" - msgstr "Valitse PAC-tiedosto" - -@@ -3424,7 +3409,6 @@ msgstr "MD5" - #: ../panels/network/wireless-security/eap-method-peap.c:350 - #: ../panels/network/wireless-security/eap-method-tls.c:456 - #: ../panels/network/wireless-security/eap-method-ttls.c:350 --#| msgid "Choose a Certificate Authority certificate..." - msgid "Choose a Certificate Authority certificate" - msgstr "Valitse varmentajavarmenne" - -@@ -3469,12 +3453,10 @@ msgstr "" - "(Voit suojata yksityisen avaimesi openssl:llä)" - - #: ../panels/network/wireless-security/eap-method-tls.c:450 --#| msgid "Choose your personal certificate..." - msgid "Choose your personal certificate" - msgstr "Valitse henkilökohtainen varmenteesi" - - #: ../panels/network/wireless-security/eap-method-tls.c:462 --#| msgid "Choose your private key..." - msgid "Choose your private key" - msgstr "Valitse yksityinen avaimesi" - -@@ -4359,13 +4341,11 @@ msgstr "Ladataan ajuritietokantaa..." - - #. Translators: The found device is a JetDirect printer - #: ../panels/printers/pp-host.c:506 --#| msgid "Remove Printer" - msgid "JetDirect Printer" - msgstr "JetDirect-tulostin" - - #. Translators: The found device is a Line Printer Daemon printer - #: ../panels/printers/pp-host.c:756 --#| msgid "%s Printer" - msgid "LPD Printer" - msgstr "LPD-tulostin" - -@@ -4897,7 +4877,6 @@ msgid "Privacy Policy" - msgstr "Tietosuoja" - - #: ../panels/privacy/privacy.ui.h:42 --#| msgid "Location: %s" - msgid "_Location Services" - msgstr "Sijai_ntipalvelut" - -@@ -5133,13 +5112,11 @@ msgid "Off" - msgstr "Poissa" - - #: ../panels/sharing/cc-sharing-panel.c:304 --#| msgid "Enabled" - msgctxt "service is enabled" - msgid "Enabled" - msgstr "Käytössä" - - #: ../panels/sharing/cc-sharing-panel.c:307 --#| msgid "Active Jobs" - msgctxt "service is active" - msgid "Active" - msgstr "Aktiivinen" -@@ -5187,7 +5164,6 @@ msgstr "Ei verkkoja valittu jakamista va - #. * vim: sw=2 ts=8 cindent noai bs=2 - #. - #: ../panels/sharing/networks.ui.h:1 --#| msgid "Network" - msgid "Networks" - msgstr "Verkot" - -@@ -5290,12 +5266,10 @@ msgid "Require a password" - msgstr "Vaadi salasana" - - #: ../panels/sharing/sharing.ui.h:26 --#| msgid "Share Music, Photos and Videos with others on the current network." - msgid "Share music, photos and videos over the network." - msgstr "Jaa musiikkia, valokuvia ja videoita verkon kautta." - - #: ../panels/sharing/sharing.ui.h:27 --#| msgid "Add Folder" - msgid "Folders" - msgstr "Kansiot" - -@@ -6146,7 +6120,6 @@ msgid "Login History" - msgstr "Kirjautumishistoria" - - #: ../panels/user-accounts/data/password-dialog.ui.h:1 --#| msgid "Show Password" - msgid "Change Password" - msgstr "Vaihda salasana" - -@@ -6755,25 +6728,19 @@ msgstr "Oma tili" - - #: ../panels/user-accounts/um-utils.c:567 - #, c-format --#| msgid "A user with the username '%s' already exists" - msgid "A user with the username '%s' already exists." - msgstr "Käyttäjä tunnuksella '%s' on jo olemassa." - - #: ../panels/user-accounts/um-utils.c:571 - #, c-format --#| msgid "The username is too long" - msgid "The username is too long." - msgstr "Käyttäjätunnus on liian pitkä." - - #: ../panels/user-accounts/um-utils.c:574 --#| msgid "The username cannot start with a '-'" - msgid "The username cannot start with a '-'." - msgstr "Käyttäjätunnus ei voi alkaa merkillä '-'." - - #: ../panels/user-accounts/um-utils.c:577 --#| msgid "" --#| "The username should only consist of lower and upper case letters from a-" --#| "z, digits and any of characters '.', '-' and '_'" - msgid "" - "The username should only consist of lower and upper case letters from a-z, " - "digits and any of characters '.', '-' and '_'." -Index: new/po/gu.po -=================================================================== ---- new.orig/po/gu.po -+++ new/po/gu.po -@@ -5,8 +5,8 @@ - msgid "" - msgstr "" - "Project-Id-Version: gnome-control-center.master.gu\n" --"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug." --"cgi?product=gnome-control-center&keywords=I18N+L10N&component=general\n" -+"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" -+"control-center&keywords=I18N+L10N&component=general\n" - "POT-Creation-Date: 2014-08-27 06:31+0000\n" - "PO-Revision-Date: 2014-09-22 11:54+0530\n" - "Last-Translator: \n" -@@ -65,7 +65,6 @@ msgstr "દિવસ દરમ્યા? - - #. To translators: This is a noun, not a verb - #: ../panels/background/background.ui.h:5 --#| msgid "Lock screen" - msgid "Lock Screen" - msgstr "સ્ક્રીનને તાળુ મારો" - -@@ -118,7 +117,6 @@ msgstr "રંગો" - - #. translators: No pictures were found - #: ../panels/background/cc-background-chooser-dialog.c:540 --#| msgid "Pictures Folder" - msgid "No Pictures Found" - msgstr "ચિત્ર મળ્યા નથી" - -@@ -228,14 +226,16 @@ msgstr "ચોરસ પર તમાર - #. * dial or switch manually. We also show a picture showing them - #. * what to do... - #: ../panels/color/cc-color-calibrate.c:367 --msgid "Move your calibration device to the calibrate position and press 'Continue'" -+msgid "" -+"Move your calibration device to the calibrate position and press 'Continue'" - msgstr "સ્થાનને માપન કરવા માટે તમારું માપદંડ ઉપકરણને ખસાડો અને 'ચાલુ રાખો' બટન દબાવો" - - #. TRANSLATORS: Some calibration devices need the user to move a - #. * dial or switch manually. We also show a picture showing them - #. * what to do... - #: ../panels/color/cc-color-calibrate.c:373 --msgid "Move your calibration device to the surface position and press 'Continue'" -+msgid "" -+"Move your calibration device to the surface position and press 'Continue'" - msgstr "સપાટ સ્થાન માટે તમારાં માપદંડ ઉપકરણને ખસેજો અને 'ચાલુ રાખો' બટનને દબાવો" - - #. TRANSLATORS: on some hardware e.g. Lenovo W700 the sensor -@@ -248,7 +248,6 @@ msgstr "લૅપટોપ lid ને ?? - #. TRANSLATORS: We suck, the calibation failed and we have no - #. * good idea why or any suggestions - #: ../panels/color/cc-color-calibrate.c:410 --#| msgid "An internal error occurred." - msgid "An internal error occurred that could not be recovered." - msgstr "આંતરિક ભૂલ ઉદ્દભવી કે જે પ્રાપ્ત કરી શક્યા નહિં." - -@@ -272,15 +271,12 @@ msgstr "લક્ષ્ય સફેદ? - - #. TRANSLATORS: the display calibration process is finished - #: ../panels/color/cc-color-calibrate.c:467 --#| msgctxt "print job" --#| msgid "Completed" - msgid "Complete!" - msgstr "સમાપ્ત!" - - #. TRANSLATORS: the display calibration failed, and we also show - #. * the translated (or untranslated) error string after this - #: ../panels/color/cc-color-calibrate.c:475 --#| msgid "Configuration failed" - msgid "Calibration failed!" - msgstr "માપદંડ નિષ્ફળ!" - -@@ -298,13 +294,11 @@ msgstr "કેલિબ્રેશન ? - - #. TRANSLATORS: This refers to the TFT display on a laptop - #: ../panels/color/cc-color-common.c:41 --#| msgid "Lock screen" - msgid "Laptop Screen" - msgstr "લૅપટોપ સ્ક્રીન" - - #. TRANSLATORS: This refers to the embedded webcam on a laptop - #: ../panels/color/cc-color-common.c:50 --#| msgid "Built-in" - msgid "Built-in Webcam" - msgstr "બિલ્ટ-ઇન વેબકેમ" - -@@ -312,45 +306,35 @@ msgstr "બિલ્ટ-ઇન વેબ - #. * model, vendor or ID, e.g. 'LP2480zx Monitor' - #: ../panels/color/cc-color-common.c:65 - #, c-format --#| msgid "Monitor" - msgid "%s Monitor" - msgstr "%s મોનિટર" - - #. TRANSLATORS: a flatbed scanner device, e.g. 'Epson Scanner' - #: ../panels/color/cc-color-common.c:69 - #, c-format --#| msgctxt "Device kind" --#| msgid "Scanner" - msgid "%s Scanner" - msgstr "%s સ્કેનર" - - #. TRANSLATORS: a camera device, e.g. 'Nikon D60 Camera' - #: ../panels/color/cc-color-common.c:73 - #, c-format --#| msgctxt "Device kind" --#| msgid "Camera" - msgid "%s Camera" - msgstr "%s કેમેરા" - - #. TRANSLATORS: a printer device, e.g. 'Epson Photosmart Printer' - #: ../panels/color/cc-color-common.c:77 - #, c-format --#| msgctxt "Device kind" --#| msgid "Printer" - msgid "%s Printer" - msgstr "%s પ્રિન્ટર" - - #. TRANSLATORS: a webcam device, e.g. 'Philips HiDef Camera' - #: ../panels/color/cc-color-common.c:81 - #, c-format --#| msgctxt "Device kind" --#| msgid "Webcam" - msgid "%s Webcam" - msgstr "%s વેબકેમ" - - #: ../panels/color/cc-color-device.c:89 - #, c-format --#| msgid "Learn more about color management" - msgid "Enable color management for %s" - msgstr "%s માટે રંગ સંચાલનને સક્રિય કરો" - -@@ -361,7 +345,6 @@ msgstr "%s માટે રંગ રૂ - - #. not calibrated - #: ../panels/color/cc-color-device.c:322 --#| msgid "Uncalibrated" - msgid "Not calibrated" - msgstr "માપદંડ થયેલ નથી" - -@@ -406,15 +389,12 @@ msgid "All files" - msgstr "બધી ફાઇલો" - - #: ../panels/color/cc-color-panel.c:582 --#| msgctxt "Distance" --#| msgid "¼ Screen" - msgid "Screen" - msgstr "સ્ક્રીન" - - #. TRANSLATORS: this is when the upload of the profile failed - #: ../panels/color/cc-color-panel.c:906 - #, c-format --#| msgid "Failed to apply configuration: %s" - msgid "Failed to upload file: %s" - msgstr "ફાઇલને અપલોડ કરવામાં નિષ્ફળતા: %s" - -@@ -439,7 +419,6 @@ msgstr "ડાઉનલોડ કરવ? - - #. TRANSLATORS: this is the dialog to save the ICC profile - #: ../panels/color/cc-color-panel.c:958 --#| msgid "Remove profile" - msgid "Save Profile" - msgstr "પ્રોફાઇલને સંગ્રહ કરો" - -@@ -474,8 +453,6 @@ msgstr "ઉપકરણ પ્રકા? - #. TRANSLATORS: standard spaces are well known colorspaces like - #. * sRGB, AdobeRGB and ProPhotoRGB - #: ../panels/color/cc-color-profile.c:103 --#| msgctxt "Experience" --#| msgid "Standard" - msgid "Standard Space" - msgstr "મૂળભૂત જગ્યા" - -@@ -484,7 +461,6 @@ msgstr "મૂળભૂત જગ્ય? - #. TRANSLATORS: test profiles do things like changing the screen - #. * a different color, or swap the red and green channels - #: ../panels/color/cc-color-profile.c:109 --#| msgid "Test profile: " - msgid "Test Profile" - msgstr "રૂપરેખા ચકાસો" - -@@ -493,8 +469,6 @@ msgstr "રૂપરેખા ચકા? - #. * for instance the default monitor profile is created from the - #. * primaries specified in the monitor EDID - #: ../panels/color/cc-color-profile.c:117 --#| msgctxt "proxy method" --#| msgid "Automatic" - msgctxt "Automatically generated profile" - msgid "Automatic" - msgstr "સ્વયં" -@@ -503,16 +477,12 @@ msgstr "સ્વયં" - #. * much less time to generate but may be a poor reflection of the - #. * device capability - #: ../panels/color/cc-color-profile.c:127 --#| msgctxt "Printer Option Group" --#| msgid "Image Quality" - msgctxt "Profile quality" - msgid "Low Quality" - msgstr "નીચી ગુણવત્તા" - - #. TRANSLATORS: the profile quality - #: ../panels/color/cc-color-profile.c:132 --#| msgctxt "Printer Option Group" --#| msgid "Image Quality" - msgctxt "Profile quality" - msgid "Medium Quality" - msgstr "મધ્યમ ગુણવત્તા" -@@ -521,8 +491,6 @@ msgstr "મધ્યમ ગુણવત? - #. * a *long* time, and have the best calibration and - #. * characterisation data. - #: ../panels/color/cc-color-profile.c:139 --#| msgctxt "Printer Option Group" --#| msgid "Image Quality" - msgctxt "Profile quality" - msgid "High Quality" - msgstr "ઉચ્ચ ગુણવત્તા" -@@ -557,12 +525,10 @@ msgid "Full-screen display correction no - msgstr "સંપૂર્ણ-સ્ક્રીન દર્શાવ સુધારો આ રૂપરેખા સાથે શક્ય નથી" - - #: ../panels/color/cc-color-profile.c:225 --#| msgid "This device has an old profile that may no longer be accurate." - msgid "This profile may no longer be accurate" - msgstr "આ રૂપરેખા લાંબા સમય સુધી ચોક્કસ રહી શકતી નથી" - - #: ../panels/color/color-calibrate.ui.h:1 --#| msgid "Calibration" - msgid "Display Calibration" - msgstr "કેલિબ્રેશન દર્શાવો" - -@@ -585,7 +551,6 @@ msgstr "ફરી શરૂ કરો" - - #. This button returns the user back to the color control panel - #: ../panels/color/color-calibrate.ui.h:8 --#| msgid "Done!" - msgid "Done" - msgstr "પૂર્ણ" - -@@ -603,17 +568,16 @@ msgid "" - "screen. The longer you spend on calibration, the better the quality of the " - "color profile." - msgstr "" --"માપદંડ રૂપરેખાને પેદા કરશે કે જે રંગ સંચાલિત તમારી સ્ક્રીનને વાપરી શકો છો. માપદંડ પર લાંબો સમય " --"વિતાવી શકો છો, રંગ રૂપરેખાની ગુણવત્તાને સારી બનાવવા." -+"માપદંડ રૂપરેખાને પેદા કરશે કે જે રંગ સંચાલિત તમારી સ્ક્રીનને વાપરી શકો છો. માપદંડ પર લાંબો " -+"સમય વિતાવી શકો છો, રંગ રૂપરેખાની ગુણવત્તાને સારી બનાવવા." - - #: ../panels/color/color.ui.h:3 --msgid "You will not be able to use your computer while calibration takes place." -+msgid "" -+"You will not be able to use your computer while calibration takes place." - msgstr "તમે તમારું કમ્પ્યૂટર વાપરી શકશો નહિં જ્યારે માપદંડ થતુ હોય." - - #. This is the approximate time it takes to calibrate the display. - #: ../panels/color/color.ui.h:5 --#| msgctxt "Printer Option Group" --#| msgid "Image Quality" - msgid "Quality" - msgstr "ગુણવત્તા" - -@@ -623,7 +587,6 @@ msgid "Approximate Time" - msgstr "આશરે સમય" - - #: ../panels/color/color.ui.h:8 --#| msgid "Calibration" - msgid "Calibration Quality" - msgstr "કેલિબ્રેશન ગુણવત્તા" - -@@ -632,7 +595,6 @@ msgid "Select the sensor device you want - msgstr "સેન્સર ઉપકરણને પસંદ કરો તમે કેલિબ્રેશન માટે વાપરવા માંગો તો." - - #: ../panels/color/color.ui.h:10 --#| msgid "Calibration" - msgid "Calibration Device" - msgstr "કેલિબ્રેશન ઉપકરણ" - -@@ -641,8 +603,6 @@ msgid "Select the type of display that i - msgstr "દર્શાવનાં પ્રકારને પસંદ કરો કે જે જોડાયેલ છે." - - #: ../panels/color/color.ui.h:12 --#| msgctxt "Device kind" --#| msgid "Display" - msgid "Display Type" - msgstr "પ્રકારને દર્શાવો" - -@@ -651,7 +611,8 @@ msgid "" - "Select a display target white point. Most displays should be calibrated to a " - "D65 illuminant." - msgstr "" --"દર્શા લક્ષ્ય સફેદ બિંદુને પસંદ કરો. મોટેભાગે દર્શાવો D65 illuminant માં માપદંડ થયેલ હોવુ જોઇએ." -+"દર્શા લક્ષ્ય સફેદ બિંદુને પસંદ કરો. મોટેભાગે દર્શાવો D65 illuminant માં માપદંડ થયેલ હોવુ " -+"જોઇએ." - - #: ../panels/color/color.ui.h:14 - msgid "Profile Whitepoint" -@@ -662,18 +623,18 @@ msgid "" - "Please set the display to a brightness that is typical for you. Color " - "management will be most accurate at this brightness level." - msgstr "" --"મહેરબાની કરીને તેજ પ્રદર્શન માટે દર્શાવ સુયોજિત કરો કે જે ખાસ કરીને તમારી માટે છે. રંગ સંચાલન " --"આ પ્રકાશતા સ્તરે વધારે ચોક્કસ હશે." -+"મહેરબાની કરીને તેજ પ્રદર્શન માટે દર્શાવ સુયોજિત કરો કે જે ખાસ કરીને તમારી માટે છે. રંગ " -+"સંચાલન આ પ્રકાશતા સ્તરે વધારે ચોક્કસ હશે." - - #: ../panels/color/color.ui.h:16 - msgid "" - "Alternatively, you can use the brightness level used with one of the other " - "profiles for this device." - msgstr "" --"વૈકલ્પિક રીતે, તમે આ ઉપકરણ માટે બીજી રૂપરેખાનાં એક સાથે વાપરેલ પ્રકાશતા સ્તરને વાપરી શકો છો." -+"વૈકલ્પિક રીતે, તમે આ ઉપકરણ માટે બીજી રૂપરેખાનાં એક સાથે વાપરેલ પ્રકાશતા સ્તરને વાપરી શકો " -+"છો." - - #: ../panels/color/color.ui.h:17 --#| msgid "Brightness" - msgid "Display Brightness" - msgstr "પ્રકાશતા દર્શાવો" - -@@ -682,20 +643,18 @@ msgid "" - "You can use a color profile on different computers, or even create profiles " - "for different lighting conditions." - msgstr "" --"તમે વિવિધ કમ્પ્યૂટર પર રંગ રૂપરેખાને વાપરી શકો છો, અથવા વિવિધ પ્રકાશતા શરતો માટે રૂપરેખાઓને " --"બનાવી પણ શકો છો." -+"તમે વિવિધ કમ્પ્યૂટર પર રંગ રૂપરેખાને વાપરી શકો છો, અથવા વિવિધ પ્રકાશતા શરતો માટે " -+"રૂપરેખાઓને બનાવી પણ શકો છો." - - # libgnomeprintui/gpaui/add-printer-dialog.c:83 - # libgnomeprintui/gpaui/config-dialog.c:83 - #: ../panels/color/color.ui.h:19 --#| msgid "_Profile:" - msgid "Profile Name:" - msgstr "રૂપરેખાનું નામ:" - - # libgnomeprintui/gpaui/add-printer-dialog.c:83 - # libgnomeprintui/gpaui/config-dialog.c:83 - #: ../panels/color/color.ui.h:20 --#| msgid "_Profile:" - msgid "Profile Name" - msgstr "રૂપરેખાનું નામ" - -@@ -706,7 +665,6 @@ msgstr "રૂપરેખા સફળ? - # libgnomeprintui/gpaui/add-printer-dialog.c:83 - # libgnomeprintui/gpaui/config-dialog.c:83 - #: ../panels/color/color.ui.h:22 --#| msgid "No profile" - msgid "Copy profile" - msgstr "રૂપરેખાની નકલ કરો" - -@@ -717,12 +675,10 @@ msgstr "લખી શકાય તેવ - # libgnomeprintui/gpaui/add-printer-dialog.c:83 - # libgnomeprintui/gpaui/config-dialog.c:83 - #: ../panels/color/color.ui.h:24 --#| msgid "No profile" - msgid "Upload profile" - msgstr "રૂપરેખા અપલોડ કરો" - - #: ../panels/color/color.ui.h:25 --#| msgid "Add new connection" - msgid "Requires Internet connection" - msgstr "ઇન્ટરનેટ જોડાણની જરૂરિયાત છે" - -@@ -732,9 +688,9 @@ msgid "" - "\">GNU/Linux, Apple OS X and Microsoft Windows systems useful." - msgstr "" --"તમે આ સૂચનાઓને શોધી શકો છો કે જે GNU/Linux, Apple OS X અને Microsoft Windows અને ઉપયોગી સિસ્ટમો પર કેવી રીતે વાપરે છે." -+"તમે આ સૂચનાઓને શોધી શકો છો કે જે GNU/Linux, Apple OS X અને Microsoft Windows અને ઉપયોગી " -+"સિસ્ટમો પર કેવી રીતે વાપરે છે." - - #: ../panels/color/color.ui.h:27 - #: ../panels/user-accounts/um-fingerprint-dialog.c:740 -@@ -749,7 +705,8 @@ msgstr "ફાઈલ આયાત કર - msgid "" - "Problems detected. The profile may not work correctly. Show " - "details." --msgstr "સમસ્યાઓ શોધાઇ. રૂપરેખા યોગ્ય રીકે કામ કરી શકશે નહિં. વિગતો બતાવો." -+msgstr "" -+"સમસ્યાઓ શોધાઇ. રૂપરેખા યોગ્ય રીકે કામ કરી શકશે નહિં. વિગતો બતાવો." - - #: ../panels/color/color.ui.h:30 - msgid "Each device needs an up to date color profile to be color managed." -@@ -774,7 +731,6 @@ msgstr "આ કમ્પ્યૂટર - - # #-#-#-#-# gnome-applets.gnome-2-2.hi.po (gnome-applets 2.x) #-#-#-#-# gtk/gtkinputdialog.c:238 - #: ../panels/color/color.ui.h:35 --#| msgid "Enabled" - msgid "Enable" - msgstr "સક્રિય" - -@@ -816,7 +772,6 @@ msgid "CRT" - msgstr "CRT" - - #: ../panels/color/color.ui.h:45 --#| msgid "Co_untry:" - msgid "Projector" - msgstr "પ્રોજેક્ટર" - -@@ -845,13 +800,11 @@ msgid "Wide gamut LCD (RGB LED backlight - msgstr "Wide gamut LCD (RGB LED બેકલાઇટ)" - - #: ../panels/color/color.ui.h:52 --#| msgid "High" - msgctxt "Calibration quality" - msgid "High" - msgstr "વધારે" - - #: ../panels/color/color.ui.h:53 --#| msgid "10 minutes" - msgid "40 minutes" - msgstr "40 મિનિટો" - -@@ -866,23 +819,19 @@ msgid "30 minutes" - msgstr "30 મિનિટો" - - #: ../panels/color/color.ui.h:56 --#| msgid "Low" - msgctxt "Calibration quality" - msgid "Low" - msgstr "ઓછુ" - - #: ../panels/color/color.ui.h:57 ../panels/power/power.ui.h:3 --#| msgid "5 minutes" - msgid "15 minutes" - msgstr "15 મિનિટ" - - #: ../panels/color/color.ui.h:58 --#| msgid "Panel to display" - msgid "Native to display" - msgstr "પ્રદર્શિત કરલા માટે મૂળ" - - #: ../panels/color/color.ui.h:59 --#| msgid "Pointing and Clicking" - msgid "D50 (Printing and publishing)" - msgstr "D50 (છાપન અને પ્રકાશિત)" - -@@ -895,7 +844,6 @@ msgid "D65 (Photography and graphics)" - msgstr "D65 (ફોટોગ્રાફી અને ગ્રાફિક્સ)" - - #: ../panels/color/color.ui.h:62 --#| msgid "75%" - msgid "D75" - msgstr "D75" - -@@ -904,7 +852,8 @@ msgid "Color" - msgstr "રંગ" - - #: ../panels/color/gnome-color-panel.desktop.in.in.h:2 --msgid "Calibrate the color of your devices, such as displays, cameras or printers" -+msgid "" -+"Calibrate the color of your devices, such as displays, cameras or printers" - msgstr "તમારાં ઉપકરણોનાં રંગને કેલિબ્રેટ કરો, જેમ કે દર્શાવ, કૅમેરા અથવા પ્રિન્ટરો" - - #. Translators: those are keywords for the color control-center panel -@@ -934,7 +883,6 @@ msgid "China" - msgstr "ચાઇના" - - #: ../panels/common/cc-common-language.c:758 --#| msgid "Other profile…" - msgid "Other…" - msgstr "બીજું..." - -@@ -945,7 +893,6 @@ msgid "More…" - msgstr "વધારે…" - - #: ../panels/common/cc-language-chooser.c:140 --#| msgid "No Bluetooth adapters found" - msgid "No languages found" - msgstr "ભાષાઓ મળી નથી" - -@@ -955,13 +902,11 @@ msgstr "ભાષા" - - #: ../panels/common/language-chooser.ui.h:2 - #: ../panels/region/format-chooser.ui.h:2 --#| msgid "Done!" - msgid "_Done" - msgstr "પૂર્ણ (_D)" - - #. Translators: This is the full date and time format used in 12-hour mode. - #: ../panels/datetime/cc-datetime-panel.c:340 --#| msgid "%a %l:%M %p" - msgid "%e %B %Y, %l:%M %p" - msgstr "%e %B %Y, %l:%M %p" - -@@ -981,7 +926,6 @@ msgstr "%s, %s" - #. Translators: "timezone (details)" - #: ../panels/datetime/cc-datetime-panel.c:553 - #, c-format --#| msgid "%d x %d (%s)" - msgctxt "timezone desc" - msgid "%s (%s)" - msgstr "%s (%s)" -@@ -994,7 +938,6 @@ msgstr "UTC%:::z" - - #. Translators: This is the time format used in 12-hour mode. - #: ../panels/datetime/cc-datetime-panel.c:566 --#| msgid "%a %l:%M %p" - msgid "%l:%M %p" - msgstr "%l:%M %p" - -@@ -1007,7 +950,6 @@ msgstr "%R" - #. Translators: "timezone (utc shift)" - #: ../panels/datetime/cc-datetime-panel.c:576 - #, c-format --#| msgid "%d x %d (%s)" - msgctxt "timezone map" - msgid "%s (%s)" - msgstr "%s (%s)" -@@ -1075,8 +1017,6 @@ msgid "∶" - msgstr "∶" - - #: ../panels/datetime/datetime.ui.h:17 --#| msgid "minute" --#| msgid_plural "minutes" - msgid "Minute" - msgstr "મિનિટ" - -@@ -1093,7 +1033,6 @@ msgid "Year" - msgstr "વર્ષ" - - #: ../panels/datetime/datetime.ui.h:21 --#| msgid "Time" - msgid "Time Zone" - msgstr "ટાઈમ ઝોન" - -@@ -1102,7 +1041,6 @@ msgid "Search for a city" - msgstr "શહેર માટે શોધો" - - #: ../panels/datetime/datetime.ui.h:23 --#| msgid "Date & Time" - msgid "Automatic _Date & Time" - msgstr "આપોઆપ તારીખ અને સમય (_D)" - -@@ -1111,12 +1049,10 @@ msgid "Requires internet access" - msgstr "ઇન્ટરનેટ પ્રવેશની જરૂરિયાત છે" - - #: ../panels/datetime/datetime.ui.h:25 --#| msgid "A_utomatic Login" - msgid "Automatic Time _Zone" - msgstr "આપોઆપ ટાઇમઝોન (_Z)" - - #: ../panels/datetime/datetime.ui.h:26 --#| msgid "Date & Time" - msgid "Date & _Time" - msgstr "તારીખ અને સમય (_T)" - -@@ -1125,7 +1061,6 @@ msgid "Time _Zone" - msgstr "ટાઈમ ઝોન (_Z)" - - #: ../panels/datetime/datetime.ui.h:28 --#| msgid "Formats" - msgid "Time _Format" - msgstr "સમય બંધારણ (_F)" - -@@ -1155,19 +1090,16 @@ msgid "To change time or date settings, - msgstr "સમય અથવા તારીખ સુયોજનોને બદલવા માટે, તમારે સત્તાધિકરણ કરવુ જરૂરી છે." - - #: ../panels/display/cc-display-panel.c:487 --#| msgid "Close" - msgid "Lid Closed" - msgstr "ઢાંકણ બંધ થયેલ છે" - - #. translators: "Mirrored" describes when both displays show the same view - #: ../panels/display/cc-display-panel.c:490 --#| msgid "Mirrored Displays" - msgid "Mirrored" - msgstr "પ્રતિબિંબિત" - - #: ../panels/display/cc-display-panel.c:492 - #: ../panels/display/cc-display-panel.c:2145 --#| msgid "Primary _button" - msgid "Primary" - msgstr "પ્રાથમિક" - -@@ -1184,19 +1116,16 @@ msgid "Off" - msgstr "બંધ" - - #: ../panels/display/cc-display-panel.c:497 --#| msgid "Secondary color" - msgid "Secondary" - msgstr "ગૌણ" - - #: ../panels/display/cc-display-panel.c:1533 --#| msgid "Mirrored Displays" - msgid "Arrange Combined Displays" - msgstr "સંયુક્ત દર્શાવોને ગોઠવો" - - #: ../panels/display/cc-display-panel.c:1539 - #: ../panels/display/cc-display-panel.c:1979 - #: ../panels/network/connection-editor/connection-editor.ui.h:1 --#| msgid "Supply" - msgid "_Apply" - msgstr "લાગુ કરો (_A)" - -@@ -1223,7 +1152,6 @@ msgid "Show the top bar and Activities O - msgstr "આ દર્શાવ પર ટોચવી પટ્ટી અને પ્રવૃત્તિ ઝાંખીને બતાવો" - - #: ../panels/display/cc-display-panel.c:2152 --#| msgid "Secondary click delay" - msgid "Secondary Display" - msgstr "ગૌણ દર્શાવ" - -@@ -1232,7 +1160,6 @@ msgid "Join this display with another to - msgstr "વધારાની કાર્ય કરવાની જગ્યાને બનાવવા બીજા સાથે આ દર્શાવને જોડો" - - #: ../panels/display/cc-display-panel.c:2160 --#| msgid "Orientation" - msgid "Presentation" - msgstr "રજૂઆત" - -@@ -1250,12 +1177,10 @@ msgid "Show your existing view on both d - msgstr "બંને દર્શાવ પર તમારું હાલનુ દૃશ્ય બતાવો" - - #: ../panels/display/cc-display-panel.c:2173 --#| msgid "_Turn On" - msgid "Turn Off" - msgstr "બંધ કરો" - - #: ../panels/display/cc-display-panel.c:2174 --#| msgid "Panel to display" - msgid "Don't use this display" - msgstr "આ દર્શાવને વાપરો નહિં" - -@@ -1264,7 +1189,6 @@ msgid "Could not get screen information" - msgstr "સ્ક્રીન જાણકારી ને મેળવી શકાયુ નહિં" - - #: ../panels/display/cc-display-panel.c:2414 --#| msgid "Mirrored Displays" - msgid "_Arrange Combined Displays" - msgstr "સંયુક્ત દર્શાવને ગોઠવો (_A)" - -@@ -1273,13 +1197,11 @@ msgid "Displays" - msgstr "દેખાવો" - - #: ../panels/display/gnome-display-panel.desktop.in.in.h:2 --#| msgid "Change resolution and position of monitors and projectors" - msgid "Choose how to use connected monitors and projectors" - msgstr "કેવી રીતે મોનિટર અને પ્રોજેક્ટરને વાપરવુ તેને પસંદ કરો" - - #. Translators: those are keywords for the display control-center panel - #: ../panels/display/gnome-display-panel.desktop.in.in.h:4 --#| msgid "Panel;Projector;xrandr;Screen;Resolution;Refresh;" - msgid "Panel;Projector;xrandr;Screen;Resolution;Refresh;Monitor;" - msgstr "પેનલ;પ્રોજેક્ટર;xrandr;સ્ક્રીન;રિઝોલ્યુશન;તાજુ કરો;મોનિટર;" - -@@ -1294,7 +1216,6 @@ msgstr "અજ્ઞાત" - - #: ../panels/info/cc-info-panel.c:472 - #, c-format --#| msgid "%d-bit" - msgid "%s %d-bit" - msgstr "%s %d-બીટ" - -@@ -1428,15 +1349,12 @@ msgstr "તમારી સિસ્ટ? - - #. sure that you use the same "translation" for those keywords - #: ../panels/info/gnome-info-panel.desktop.in.in.h:4 --#| msgid "" --#| "device;system;information;memory;processor;version;default;application;" --#| "fallback;preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" - msgid "" - "device;system;information;memory;processor;version;default;application;" - "preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" - msgstr "" --"ઉપકરણ;સિસ્ટમ;જાણકારી;મેમરી;પ્રોસેસર;આવૃત્તિ;મૂળભૂત;કાર્યક્રમ;પસંદ થયેલ;cd;dvd;usb;" --"ઓડિયો;વિડિયો;ડિસ્ક;નિરાકરણ;મીડિયા;સ્વયં ચલાવો;" -+"ઉપકરણ;સિસ્ટમ;જાણકારી;મેમરી;પ્રોસેસર;આવૃત્તિ;મૂળભૂત;કાર્યક્રમ;પસંદ થયેલ;cd;dvd;usb;ઓડિયો;" -+"વિડિયો;ડિસ્ક;નિરાકરણ;મીડિયા;સ્વયં ચલાવો;" - - #: ../panels/info/info.ui.h:1 - msgid "Select how other media should be handled" -@@ -1473,7 +1391,6 @@ msgid "Disk" - msgstr "ડિસ્ક" - - #: ../panels/info/info.ui.h:10 --#| msgid "Calculating..." - msgid "Calculating…" - msgstr "ગણતરી…" - -@@ -1482,12 +1399,10 @@ msgid "Graphics" - msgstr "ગ્રાફિક્સ" - - #: ../panels/info/info.ui.h:12 --#| msgid "Calibration" - msgid "Virtualization" - msgstr "વર્ચ્યુલાઇઝેશન" - - #: ../panels/info/info.ui.h:13 --#| msgid "Checking for Updates" - msgid "Check for updates" - msgstr "સુધારાઓ માટે ચકાસો" - -@@ -1536,7 +1451,6 @@ msgid "_Software" - msgstr "સોફ્ટવેર (_S)" - - #: ../panels/info/info.ui.h:27 --#| msgid "Other Media" - msgid "_Other Media…" - msgstr "બીજી મીડિયા (_O)…" - -@@ -1595,12 +1509,10 @@ msgid "Typing" - msgstr "ટાઇપ કરી રહ્યા છે" - - #: ../panels/keyboard/01-input-sources.xml.in.h:2 --#| msgid "Switch to next source" - msgid "Switch to next input source" - msgstr "આગળનાં ઇનપુટ સ્ત્રોતમાં જાવ" - - #: ../panels/keyboard/01-input-sources.xml.in.h:3 --#| msgid "Switch to previous source" - msgid "Switch to previous input source" - msgstr "પહેલાનાં ઇનપુટ સ્ત્રોતમાં જાવ" - -@@ -1614,7 +1526,6 @@ msgstr "મદદ બ્રાઉઝર - - #: ../panels/keyboard/01-launchers.xml.in.h:3 ../shell/cc-window.c:1601 - #: ../shell/gnome-control-center.desktop.in.in.h:1 --#| msgid "_Settings..." - msgid "Settings" - msgstr "સુયોજનો" - -@@ -1635,7 +1546,6 @@ msgid "Home folder" - msgstr "ઘર ફોલ્ડર" - - #: ../panels/keyboard/01-launchers.xml.in.h:8 --#| msgid "Search" - msgctxt "keybinding" - msgid "Search" - msgstr "શોધો" -@@ -1646,19 +1556,16 @@ msgstr "સ્ક્રીનશોટ" - - #. translators: $PICTURES will be replaced by the name of the XDG Pictures directory - #: ../panels/keyboard/01-screenshot.xml.in.h:3 --#| msgid "Save a screenshot to Pictures" - msgid "Save a screenshot to $PICTURES" - msgstr "$PICTURES માં સ્ક્રીનશોટને સંગ્રહો" - - #. translators: $PICTURES will be replaced by the name of the XDG Pictures directory - #: ../panels/keyboard/01-screenshot.xml.in.h:5 --#| msgid "Save a screenshot of a window to Pictures" - msgid "Save a screenshot of a window to $PICTURES" - msgstr "$PICTURES માં વિન્ડોનાં સ્ક્રીનશોટને સંગ્રહો" - - #. translators: $PICTURES will be replaced by the name of the XDG Pictures directory - #: ../panels/keyboard/01-screenshot.xml.in.h:7 --#| msgid "Save a screenshot of an area to Pictures" - msgid "Save a screenshot of an area to $PICTURES" - msgstr "$PICTURES માં એક વિસ્તારનાં સ્ક્રીનશોટને સંગ્રહો" - -@@ -1758,7 +1665,6 @@ msgid "Compose Key" - msgstr "કંપોઝ કી" - - #: ../panels/keyboard/cc-keyboard-option.c:368 --#| msgid "Switch to next source" - msgid "Modifiers-only switch to next source" - msgstr "સંશોધક ફક્ત આગળનાં સ્ત્રોત પર જવા માટે" - -@@ -1812,13 +1718,11 @@ msgid "_Speed:" - msgstr "ઝડપ (_S):" - - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:10 --#| msgid "Short" - msgctxt "keyboard, delay" - msgid "Short" - msgstr "ટૂંકુ" - - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:11 --#| msgid "Slow" - msgctxt "keyboard, speed" - msgid "Slow" - msgstr "ધીમુ" -@@ -1828,14 +1732,12 @@ msgid "Repeat keys speed" - msgstr "પુનરાવર્તન કીઓની ઝડપ" - - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:13 --#| msgid "Long" - msgctxt "keyboard, delay" - msgid "Long" - msgstr "લાંબુ" - - # #-#-#-#-# libgnomeui.gnome-2-2.hi.po (libgnomeui HEAD) #-#-#-#-# libgnomeui/gnome-app-helper.c:166 - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:14 --#| msgid "Fast" - msgctxt "keyboard, speed" - msgid "Fast" - msgstr "ઝડપી" -@@ -1911,7 +1813,8 @@ msgstr "" - - #: ../panels/keyboard/keyboard-shortcuts.c:1391 - #, c-format --msgid "If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be disabled." -+msgid "" -+"If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be disabled." - msgstr "જો \"%s\" ને ટુંકાણોમાં ફરીથી નિશ્ચત કરો તો, \"%s\" ટુંકાણો નિષ્ક્રિય થયેલ હશે." - - #: ../panels/keyboard/keyboard-shortcuts.c:1397 -@@ -1929,26 +1832,21 @@ msgstr "" - - #: ../panels/keyboard/keyboard-shortcuts.c:1435 - #, c-format --#| msgid "" --#| "If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be " --#| "disabled." - msgid "" - "\"%s\" is currently associated with \"%s\", this shortcut will be disabled " - "if you move forward." --msgstr "\"%s\" એ હાલમાં \"%s\" સાથે સંકળાયેલ છે, આ ટૂંકાણ એ નિષ્ક્રિય થશે જો તમે આગળ ખસો તો." -+msgstr "" -+"\"%s\" એ હાલમાં \"%s\" સાથે સંકળાયેલ છે, આ ટૂંકાણ એ નિષ્ક્રિય થશે જો તમે આગળ ખસો તો." - - #: ../panels/keyboard/keyboard-shortcuts.c:1441 --#| msgid "_Reassign" - msgid "_Assign" - msgstr "સોંપો (_A)" - - #: ../panels/mouse/cc-mouse-panel.c:94 --#| msgid "_Test Your Settings" - msgid "Test Your _Settings" - msgstr "તમારાં સુયોજનો ચકાસો (_S)" - - #: ../panels/mouse/cc-mouse-panel.c:107 --#| msgid "_Test Your Settings" - msgid "Test Your Settings" - msgstr "તમારાં સુયોજનો ચકાસો" - -@@ -1957,12 +1855,12 @@ msgid "Mouse & Touchpad" - msgstr "માઇસ અને ટચપેડ" - - #: ../panels/mouse/gnome-mouse-panel.desktop.in.in.h:2 --msgid "Change your mouse or touchpad sensitivity and select right or left-handed" -+msgid "" -+"Change your mouse or touchpad sensitivity and select right or left-handed" - msgstr "તમારી માઉસ અને ટચપેડ સંવેદનશીલતાને બદલો અને જમણી અથવા ડાબી બાજુ પસંદ કરો" - - #. Translators: those are keywords for the mouse and touchpad control-center panel - #: ../panels/mouse/gnome-mouse-panel.desktop.in.in.h:4 --#| msgid "Trackpad;Pointer;Click;Tap;Double;Button;Trackball;" - msgid "Trackpad;Pointer;Click;Tap;Double;Button;Trackball;Scroll;" - msgstr "ટ્રેકપેડ;નિર્દેશક;ક્લિક;ટેપ;બમણું;બટન;ટ્રેકબોલ;સ્ક્રોલ;" - -@@ -1971,7 +1869,6 @@ msgid "General" - msgstr "સામાન્ય" - - #: ../panels/mouse/gnome-mouse-properties.ui.h:2 --#| msgid "Slow" - msgctxt "double click, speed" - msgid "Slow" - msgstr "ધીમુ" -@@ -1982,7 +1879,6 @@ msgstr "બે ક્લિકની સ - - # #-#-#-#-# libgnomeui.gnome-2-2.hi.po (libgnomeui HEAD) #-#-#-#-# libgnomeui/gnome-app-helper.c:166 - #: ../panels/mouse/gnome-mouse-properties.ui.h:4 --#| msgid "Fast" - msgctxt "double click, speed" - msgid "Fast" - msgstr "ઝડપી" -@@ -1996,13 +1892,11 @@ msgid "Primary _button" - msgstr "પ્રાથમિક બટન (_b)" - - #: ../panels/mouse/gnome-mouse-properties.ui.h:7 --#| msgid "_Left" - msgctxt "mouse, left button as primary" - msgid "_Left" - msgstr "ડાબું (_L)" - - #: ../panels/mouse/gnome-mouse-properties.ui.h:8 --#| msgid "_Right" - msgctxt "mouse, right button as primary" - msgid "_Right" - msgstr "જમણું (_R)" -@@ -2016,14 +1910,12 @@ msgid "_Pointer speed" - msgstr "પોઇન્ટર ઝડપ (_P)" - - #: ../panels/mouse/gnome-mouse-properties.ui.h:11 --#| msgid "Slow" - msgctxt "mouse pointer, speed" - msgid "Slow" - msgstr "ધીમુ" - - # #-#-#-#-# libgnomeui.gnome-2-2.hi.po (libgnomeui HEAD) #-#-#-#-# libgnomeui/gnome-app-helper.c:166 - #: ../panels/mouse/gnome-mouse-properties.ui.h:12 --#| msgid "Fast" - msgctxt "mouse pointer, speed" - msgid "Fast" - msgstr "ઝડપી" -@@ -2033,14 +1925,12 @@ msgid "Touchpad" - msgstr "ટચપેડ" - - #: ../panels/mouse/gnome-mouse-properties.ui.h:14 --#| msgid "Slow" - msgctxt "touchpad pointer, speed" - msgid "Slow" - msgstr "ધીમુ" - - # #-#-#-#-# libgnomeui.gnome-2-2.hi.po (libgnomeui HEAD) #-#-#-#-# libgnomeui/gnome-app-helper.c:166 - #: ../panels/mouse/gnome-mouse-properties.ui.h:15 --#| msgid "Fast" - msgctxt "touchpad pointer, speed" - msgid "Fast" - msgstr "ઝડપી" -@@ -2059,7 +1949,6 @@ msgstr "બે- આંગળી થી ? - - #. 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/gnome-mouse-properties.ui.h:20 --#| msgid "_Edge scrolling" - msgid "_Natural scrolling" - msgstr "કુદરતી સ્ક્રોલીંગ (_N)" - -@@ -2122,7 +2011,6 @@ msgid "The system network services are n - msgstr "સિસ્ટમ નેટવર્ક સેવાઓ આવૃત્તિ સાથે સુસંગત નથી." - - #: ../panels/network/connection-editor/8021x-security-page.ui.h:1 --#| msgid "Security" - msgid "802.1x _Security" - msgstr "802.1x સુરક્ષા (_S)" - -@@ -2142,7 +2030,6 @@ msgstr "અનામિક ઓળખા? - - #: ../panels/network/connection-editor/8021x-security-page.ui.h:4 - #: ../panels/network/connection-editor/security-page.ui.h:4 --#| msgid "Authentication failed" - msgid "Inner _authentication" - msgstr "આંતરિક સત્તાધિકરણ (_a)" - -@@ -2160,8 +2047,6 @@ msgid "Security" - msgstr "સુરક્ષા" - - #: ../panels/network/connection-editor/ce-page.c:507 --#| msgctxt "proxy method" --#| msgid "Automatic" - msgid "automatic" - msgstr "સ્વયં" - -@@ -2201,19 +2086,16 @@ msgstr "કંઈ નહિં" - - #: ../panels/network/connection-editor/ce-page-details.c:91 - #: ../panels/power/power.ui.h:19 --#| msgid "never" - msgid "Never" - msgstr "કદી નહિં" - - #: ../panels/network/connection-editor/ce-page-details.c:102 - #: ../panels/user-accounts/um-utils.c:819 --#| msgid "today" - msgid "Today" - msgstr "આજે" - - #: ../panels/network/connection-editor/ce-page-details.c:104 - #: ../panels/user-accounts/um-utils.c:822 --#| msgid "yesterday" - msgid "Yesterday" - msgstr "ગઈકાલે" - -@@ -2293,13 +2175,11 @@ msgstr "ગેટવે" - - #: ../panels/network/connection-editor/ce-page-ip4.c:221 - #: ../panels/network/connection-editor/ce-page-ip6.c:222 --#| msgid "IP Address" - msgid "Delete Address" - msgstr "સરનામું કાઢી નાંખો" - - #: ../panels/network/connection-editor/ce-page-ip4.c:275 - #: ../panels/network/connection-editor/ce-page-ip6.c:276 --#| msgid "_Add" - msgid "Add" - msgstr "ઉમેરો" - -@@ -2310,36 +2190,29 @@ msgstr "સર્વર" - - #: ../panels/network/connection-editor/ce-page-ip4.c:360 - #: ../panels/network/connection-editor/ce-page-ip6.c:364 --#| msgid "Delete device" - msgid "Delete DNS Server" - msgstr "DNS સર્વર કાઢી નાંખો" - - #. Translators: Please see https://en.wikipedia.org/wiki/Metrics_(networking) - #: ../panels/network/connection-editor/ce-page-ip4.c:479 - #: ../panels/network/connection-editor/ce-page-ip6.c:487 --#| msgid "Metric" - msgctxt "network parameters" - msgid "Metric" - msgstr "મેટ્રીક" - - #: ../panels/network/connection-editor/ce-page-ip4.c:500 - #: ../panels/network/connection-editor/ce-page-ip6.c:508 --#| msgid "Default Route" - msgid "Delete Route" - msgstr "માર્ગ કાઢી નાંખો" - - #: ../panels/network/connection-editor/ce-page-ip4.c:615 - #: ../panels/network/network-wifi.ui.h:25 --#| msgctxt "proxy method" --#| msgid "Automatic" - msgid "Automatic (DHCP)" - msgstr "સ્વયં (DHCP)" - - #: ../panels/network/connection-editor/ce-page-ip4.c:619 - #: ../panels/network/connection-editor/ce-page-ip6.c:621 - #: ../panels/network/network-wifi.ui.h:24 --#| msgctxt "proxy method" --#| msgid "Manual" - msgid "Manual" - msgstr "પુસ્તિકા" - -@@ -2363,13 +2236,10 @@ msgstr "પૂર્વગ" - #: ../panels/network/connection-editor/ip4-page.ui.h:4 - #: ../panels/network/connection-editor/ip6-page.ui.h:4 - #: ../panels/network/wireless-security/eap-method-peap.ui.h:2 --#| msgctxt "proxy method" --#| msgid "Automatic" - msgid "Automatic" - msgstr "સ્વયં" - - #: ../panels/network/connection-editor/ce-page-ip6.c:617 --#| msgid "A_utomatic Login" - msgid "Automatic, DHCP only" - msgstr "આપોઆપ, ફક્ત DHCP" - -@@ -2384,7 +2254,6 @@ msgid "Reset" - msgstr "પુનઃસુયોજીત કરો" - - #: ../panels/network/connection-editor/ce-page-security.c:250 --#| msgid "None" - msgctxt "Wi-Fi/Ethernet security" - msgid "None" - msgstr "કંઈ જ નહિં" -@@ -2411,13 +2280,11 @@ msgid "WPA & WPA2 Personal" - msgstr "WPA અને WPA2 વ્યક્તિગત" - - #: ../panels/network/connection-editor/ce-page-security.c:337 --#| msgid "Enterprise" - msgid "WPA & WPA2 Enterprise" - msgstr "WPA અને WPA2 એન્ટરપ્રાઇઝ" - - #: ../panels/network/connection-editor/details-page.ui.h:1 - #: ../panels/network/network-wifi.ui.h:2 --#| msgid "Strength" - msgid "Signal Strength" - msgstr "સંકેત મજબૂતાઇ" - -@@ -2468,7 +2335,6 @@ msgid "DNS" - msgstr "DNS" - - #: ../panels/network/connection-editor/details-page.ui.h:9 --#| msgid "Last used" - msgid "Last Used" - msgstr "છેલ્લે વાપરેલ" - -@@ -2489,12 +2355,10 @@ msgid "Media Independent Interface (MII) - msgstr "Media Independent Interface (MII)" - - #: ../panels/network/connection-editor/ethernet-page.ui.h:6 --#| msgid "%d Mb/s" - msgid "10 Mb/s" - msgstr "10 Mb/s" - - #: ../panels/network/connection-editor/ethernet-page.ui.h:7 --#| msgid "%d Mb/s" - msgid "100 Mb/s" - msgstr "100 Mb/s" - -@@ -2508,14 +2372,12 @@ msgstr "10 Gb/s" - - #: ../panels/network/connection-editor/ethernet-page.ui.h:10 - #: ../panels/network/connection-editor/vpn-page.ui.h:1 --#| msgid "_Name:" - msgid "_Name" - msgstr "નામ (_N)" - - #: ../panels/network/connection-editor/ethernet-page.ui.h:11 - #: ../panels/network/connection-editor/wifi-page.ui.h:4 - #: ../panels/network/network-wifi.ui.h:36 --#| msgid "Address" - msgid "_MAC Address" - msgstr "MAC સરનામું (_M)" - -@@ -2525,13 +2387,10 @@ msgstr "MTU (_T)" - - #: ../panels/network/connection-editor/ethernet-page.ui.h:13 - #: ../panels/network/connection-editor/wifi-page.ui.h:5 --#| msgid "IP Address" - msgid "_Cloned Address" - msgstr "ક્લોન થયેલ સરનામું (_C)" - - #: ../panels/network/connection-editor/ethernet-page.ui.h:14 --#| msgid "%u byte" --#| msgid_plural "%u bytes" - msgid "bytes" - msgstr "બાઇટ" - -@@ -2553,7 +2412,6 @@ msgstr "ફાયરવોલ ઝોન - - #: ../panels/network/connection-editor/firewall-helpers.c:48 - #: ../panels/network/connection-editor/firewall-helpers.c:112 --#| msgid "Default" - msgctxt "Firewall zone" - msgid "Default" - msgstr "મૂળભૂત" -@@ -2570,14 +2428,11 @@ msgstr "IPv4 (_4)" - #: ../panels/network/connection-editor/ip4-page.ui.h:2 - #: ../panels/network/connection-editor/ip6-page.ui.h:2 - #: ../panels/network/network-wifi.ui.h:23 --#| msgid "Address" - msgid "_Addresses" - msgstr "સરનામાં (_A)" - - #: ../panels/network/connection-editor/ip4-page.ui.h:5 - #: ../panels/network/connection-editor/ip6-page.ui.h:5 --#| msgctxt "proxy method" --#| msgid "Automatic" - msgid "Automatic DNS" - msgstr "આપોઆપ DNS" - -@@ -2589,8 +2444,6 @@ msgstr "માર્ગ" - - #: ../panels/network/connection-editor/ip4-page.ui.h:7 - #: ../panels/network/connection-editor/ip6-page.ui.h:7 --#| msgctxt "proxy method" --#| msgid "Automatic" - msgid "Automatic Routes" - msgstr "આપમેળે માર્ગ" - -@@ -2606,14 +2459,12 @@ msgid "IPv_6" - msgstr "IPv6 (_6)" - - #: ../panels/network/connection-editor/net-connection-editor.c:269 --#| msgid "Bluetooth connection failed" - msgid "Unable to open connection editor" - msgstr "જોડાણ સંપાદકને ખોલવાનું અસમર્થ" - - # libgnomeprintui/gpaui/add-printer-dialog.c:83 - # libgnomeprintui/gpaui/config-dialog.c:83 - #: ../panels/network/connection-editor/net-connection-editor.c:287 --#| msgid "No profile" - msgid "New Profile" - msgstr "નવી રૂપરેખા" - -@@ -2639,17 +2490,14 @@ msgid "VLAN" - msgstr "VLAN" - - #: ../panels/network/connection-editor/net-connection-editor.c:734 --#| msgid "Could not load ui: %s" - msgid "Could not load VPN plugins" - msgstr "VPN પ્લગઇનને લાવી શક્યા નહિં" - - #: ../panels/network/connection-editor/net-connection-editor.c:803 --#| msgid "Other profile…" - msgid "Import from file…" - msgstr "ફાઇલમાંથી આયાત કરો..." - - #: ../panels/network/connection-editor/net-connection-editor.c:874 --#| msgid "Add new connection" - msgid "Add Network Connection" - msgstr "નેટવર્ક જોડાણને ઉમેરો" - -@@ -2661,7 +2509,6 @@ msgstr "ફરી સુયોજીત - #: ../panels/network/connection-editor/reset-page.ui.h:2 - #: ../panels/network/net-device-wifi.c:1449 - #: ../panels/network/network-wifi.ui.h:40 --#| msgid "Forget" - msgid "_Forget" - msgstr "ભૂલી જાઓ (_F)" - -@@ -2670,8 +2517,8 @@ msgid "" - "Reset the settings for this network, including passwords, but remember it as " - "a preferred network" - msgstr "" --"આ નેટવર્ક માટે સુયોજનો સુયોજિત કરો, પાસવર્ડને સમાવી રહ્યા છે, પરંતુ યાદ રાખો કે તે પસંદ થયેલ " --"નેટવર્ક ચે" -+"આ નેટવર્ક માટે સુયોજનો સુયોજિત કરો, પાસવર્ડને સમાવી રહ્યા છે, પરંતુ યાદ રાખો કે તે પસંદ " -+"થયેલ નેટવર્ક ચે" - - #: ../panels/network/connection-editor/reset-page.ui.h:4 - msgid "" -@@ -2681,7 +2528,6 @@ msgstr "આ નેટવર્કને - - #: ../panels/network/connection-editor/security-page.ui.h:1 - #: ../panels/network/network-wifi.ui.h:14 --#| msgid "Security" - msgid "S_ecurity" - msgstr "સુરક્ષા (_e)" - -@@ -2714,7 +2560,6 @@ msgstr "ખોલો (_O)" - - #: ../panels/network/connection-editor/vpn-helpers.c:294 - #, c-format --#| msgid "A user with name '%s' already exists." - msgid "A file named \"%s\" already exists." - msgstr "નામ \"%s\" ફાઇલ પહેલેથી અસ્તિત્વ ધરાવે છે." - -@@ -2743,7 +2588,6 @@ msgstr "" - "ભૂલ: %s." - - #: ../panels/network/connection-editor/vpn-helpers.c:371 --#| msgid "Add new connection" - msgid "Export VPN connection" - msgstr "VPN જોડાણની નિકાસ કરો" - -@@ -2763,7 +2607,6 @@ msgstr "BSSID (_B)" - - #: ../panels/network/connection-editor/wifi-page.ui.h:3 - #: ../panels/network/network-wifi.ui.h:16 --#| msgid "_Forget Network" - msgid "My Home Network" - msgstr "મારું ઘર નેટવર્ક" - -@@ -2777,7 +2620,6 @@ msgid "Network" - msgstr "નેટવર્ક" - - #: ../panels/network/gnome-network-panel.desktop.in.in.h:2 --#| msgid "Not connected to the internet." - msgid "Control how you connect to the Internet" - msgstr "તમે કેવી રીતે ઇન્ટરનેટ સાથે જોડાવે તેને નિયંત્રિત કરો" - -@@ -2787,8 +2629,8 @@ msgid "" - "Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;" - "vlan;bridge;bond;DNS;" - msgstr "" --"નેટવર્ક;વાયરલેસ;Wi-Fi;Wifi;IP;LAN;પ્રોક્સી;WAN;બ્રોડબેન્ડ;મોડેમ;બ્લુટુથ;vpn;" --"vlan;બ્રિજ;બોન્ડ;DNS;" -+"નેટવર્ક;વાયરલેસ;Wi-Fi;Wifi;IP;LAN;પ્રોક્સી;WAN;બ્રોડબેન્ડ;મોડેમ;બ્લુટુથ;vpn;vlan;બ્રિજ;" -+"બોન્ડ;DNS;" - - #: ../panels/network/net-device-bond.c:77 - msgid "Bond slaves" -@@ -2848,7 +2690,6 @@ msgstr "વાયર લગાવેલ" - #: ../panels/network/network-mobile.ui.h:8 - #: ../panels/network/network-simple.ui.h:8 - #: ../panels/network/network-vpn.ui.h:8 --#| msgid "Options" - msgid "Options…" - msgstr "વિકલ્પો…" - -@@ -2856,7 +2697,6 @@ msgstr "વિકલ્પો…" - # libgnomeprintui/gpaui/config-dialog.c:83 - #: ../panels/network/net-device-ethernet.c:474 - #, c-format --#| msgid "_Profile:" - msgid "Profile %d" - msgstr "રૂપરેખા %d" - -@@ -2869,15 +2709,12 @@ msgid "Team slaves" - msgstr "જૂથ સ્લેવ" - - #: ../panels/network/net-device-wifi.c:1153 --#| msgid "" --#| "If you have a connection to the Internet other than wireless, you can use " --#| "it to share your internet connection with others." - msgid "" - "If you have a connection to the Internet other than wireless, you can set up " - "a wireless hotspot to share the connection with others." - msgstr "" --"જો તમારી પાસે વાયરલેસ કરતા બીજુ ઇન્ટરનેટનું જોડાણ હોય તો, તમે બીજા સાથે જોડાણની ભાગીદારી કરવા " --"માટે વાયરલેસ હૉટસ્પોટને સુયોજિત કરી શકો છો." -+"જો તમારી પાસે વાયરલેસ કરતા બીજુ ઇન્ટરનેટનું જોડાણ હોય તો, તમે બીજા સાથે જોડાણની " -+"ભાગીદારી કરવા માટે વાયરલેસ હૉટસ્પોટને સુયોજિત કરી શકો છો." - - #: ../panels/network/net-device-wifi.c:1157 - #, c-format -@@ -2885,13 +2722,11 @@ msgid "Switching on the wireless hotspot - msgstr "વાયરલેસ હૉટસ્પોટ પર અદલાબદલી કરવાથી %s માંથી તમારુ જોડાણ તૂટી જશે." - - #: ../panels/network/net-device-wifi.c:1161 --#| msgid "" --#| "It is not possible to access the internet through your wireless while the " --#| "hotspot is active." - msgid "" - "It is not possible to access the Internet through your wireless while the " - "hotspot is active." --msgstr "તમારા વાયરલેસ મારફતે ઇન્ટરનેટને વાપરવાનું તેની માટે શક્ય નથી જ્યારે હૉટસ્પોટ સક્રિય હોય." -+msgstr "" -+"તમારા વાયરલેસ મારફતે ઇન્ટરનેટને વાપરવાનું તેની માટે શક્ય નથી જ્યારે હૉટસ્પોટ સક્રિય હોય." - - #: ../panels/network/net-device-wifi.c:1238 - msgid "Stop hotspot and disconnect any users?" -@@ -2906,7 +2741,6 @@ msgid "System policy prohibits use as a - msgstr "સિસ્ટમ પોલિસી હૉટસ્પોટ તરીકે વાપરવાનું અટકાવે છે" - - #: ../panels/network/net-device-wifi.c:1316 --#| msgid "InfiniBand device does not support connected mode" - msgid "Wireless device does not support Hotspot mode" - msgstr "વાયરલેસ ઉપકરણ હૉટસ્પોટને આધાર આપતુ નથી" - -@@ -2925,20 +2759,19 @@ msgstr "ઇતિહાસ" - - #: ../panels/network/net-device-wifi.c:1757 - #: ../panels/wacom/cc-wacom-page.c:533 --#| msgid "Close" - msgid "_Close" - msgstr "બંધ કરો (_C)" - - #. translators: This is the label for the "Forget wireless network" functionality - #: ../panels/network/net-device-wifi.c:1765 --#| msgid "Forget" - msgctxt "Wi-Fi Network" - msgid "_Forget" - msgstr "ભૂલી જાઓ (_F)" - - #. TRANSLATORS: this is when the use leaves the PAC textbox blank - #: ../panels/network/net-proxy.c:67 --msgid "Web Proxy Autodiscovery is used when a Configuration URL is not provided." -+msgid "" -+"Web Proxy Autodiscovery is used when a Configuration URL is not provided." - msgstr "Web Proxy Autodiscovery વાપરેલ છે જ્યારે રૂપરેખાંકન URL પૂરી પાડેલ નથી." - - #. TRANSLATORS: WPAD is bad: if you enable it on an untrusted -@@ -2954,7 +2787,6 @@ msgid "Proxy" - msgstr "પ્રોક્સી" - - #: ../panels/network/network-ethernet.ui.h:2 --#| msgid "Add profile" - msgid "_Add Profile…" - msgstr "રૂપરેખા ઉમેરો (_A)..." - -@@ -3010,27 +2842,22 @@ msgid "_Ignore Hosts" - msgstr "યજમાનો અવગણો (_I)" - - #: ../panels/network/network-proxy.ui.h:11 --#| msgid "_HTTP Proxy" - msgid "HTTP proxy port" - msgstr "HTTP પ્રોક્સી પોર્ટ" - - #: ../panels/network/network-proxy.ui.h:12 --#| msgid "H_TTPS Proxy" - msgid "HTTPS proxy port" - msgstr "FTP પ્રોક્સી પોર્ટ" - - #: ../panels/network/network-proxy.ui.h:13 --#| msgid "_FTP Proxy" - msgid "FTP proxy port" - msgstr "FTP પ્રોક્સી પોર્ટ" - - #: ../panels/network/network-proxy.ui.h:14 --#| msgid "Socks Port" - msgid "Socks proxy port" - msgstr "Socks પ્રોક્સી પોર્ટ" - - #: ../panels/network/network-simple.ui.h:7 --#| msgid "Device" - msgid "Turn device off" - msgstr "ઉપકરણ બંધ કરો" - -@@ -3060,17 +2887,14 @@ msgid "Username" - msgstr "વપરાશકર્તા નામ" - - #: ../panels/network/network-vpn.ui.h:7 --#| msgid "Turn on or off:" - msgid "Turn VPN connection off" - msgstr "VPN જોડાણને બંધ કરો" - - #: ../panels/network/network-wifi.ui.h:1 --#| msgid "A_utomatic Login" - msgid "Automatic _Connect" - msgstr "સ્વયમ જોડાવો (_C)" - - #: ../panels/network/network-wifi.ui.h:11 --#| msgid "Details" - msgid "details" - msgstr "વિગતો" - -@@ -3089,12 +2913,10 @@ msgid "None" - msgstr "કંઈ જ નહિં" - - #: ../panels/network/network-wifi.ui.h:19 --#| msgid "_Show password" - msgid "Show P_assword" - msgstr "પાસવર્ડ બતાવો (_a)" - - #: ../panels/network/network-wifi.ui.h:20 --#| msgid "Failed to delete user" - msgid "Make available to other users" - msgstr "બીજા વપરાશકર્તાઓ માટે ઉપલબ્ધ બનાવો" - -@@ -3115,7 +2937,6 @@ msgid "Shared with other computers" - msgstr "બીજા કમ્પ્યૂટર સાથે વહેંચેલ છે" - - #: ../panels/network/network-wifi.ui.h:31 --#| msgid "Cannot remove automatically added profile" - msgid "_Ignore automatically obtained routes" - msgstr "પ્રાપ્ત થયેલ માર્ગને આપમેળે અવગણો (_I)" - -@@ -3132,7 +2953,6 @@ msgid "_Cloned MAC Address" - msgstr "ક્લોન થયેલ MAC સરનામું (_C)" - - #: ../panels/network/network-wifi.ui.h:38 --#| msgid "Hardware" - msgid "hardware" - msgstr "હાર્ડવેર" - -@@ -3141,7 +2961,8 @@ msgid "" - "Reset the settings for this connection to their defaults, but remember as a " - "preferred connection." - msgstr "" --"તેનાં મૂળભૂતમાં આ જોડાણ માટે સુયોજનોને પુન:સુયોજિત કરો, પરંતુ પસંદ થયેલ જોડાણ તરીકે યાદ રાખો." -+"તેનાં મૂળભૂતમાં આ જોડાણ માટે સુયોજનોને પુન:સુયોજિત કરો, પરંતુ પસંદ થયેલ જોડાણ તરીકે યાદ " -+"રાખો." - - #: ../panels/network/network-wifi.ui.h:42 - msgid "" -@@ -3158,7 +2979,6 @@ msgid "Hardware" - msgstr "હાર્ડવેર" - - #: ../panels/network/network-wifi.ui.h:50 --#| msgid "Wireless Hotspot" - msgid "Wi-Fi Hotspot" - msgstr "Wi-Fi હૉટસ્પોટ" - -@@ -3171,17 +2991,14 @@ msgid "Wi-Fi" - msgstr "Wi-Fi" - - #: ../panels/network/network-wifi.ui.h:53 --#| msgid "Turn on or off:" - msgid "Turn Wi-Fi off" - msgstr "Wi-Fi બંધ કરો" - - #: ../panels/network/network-wifi.ui.h:54 --#| msgid "_Use as Hotspot..." - msgid "_Use as Hotspot…" - msgstr "હૉટસ્પોટ તરીકે વાપરો (_U)..." - - #: ../panels/network/network-wifi.ui.h:55 --#| msgid "Connect to a Hidden Network" - msgid "_Connect to Hidden Network…" - msgstr "છુપાયેલ નેટવર્ક સાથે જોડાવો (_C)..." - -@@ -3190,7 +3007,6 @@ msgid "_History" - msgstr "ઇતિહાસ (_H)" - - #: ../panels/network/network-wifi.ui.h:57 --#| msgid "Switch off to connect to a wireless network" - msgid "Switch off to connect to a Wi-Fi network" - msgstr "Wi-Fi નેટવર્કમાં જોડાવાનુ બંધ કરો" - -@@ -3545,14 +3361,12 @@ msgid "PAC files (*.pac)" - msgstr "PAC ફાઇલો (*.pac)" - - #: ../panels/network/wireless-security/eap-method-fast.ui.h:2 --#| msgid "All files" - msgid "PAC _file" - msgstr "PAC ફાઇલ (_f)" - - #: ../panels/network/wireless-security/eap-method-fast.ui.h:3 - #: ../panels/network/wireless-security/eap-method-peap.ui.h:7 - #: ../panels/network/wireless-security/eap-method-ttls.ui.h:4 --#| msgid "Authentication failed" - msgid "_Inner authentication" - msgstr "આંતરિક સત્તાધિકરણ (_I)" - -@@ -3574,7 +3388,6 @@ msgid "Anonymous" - msgstr "અનામિક" - - #: ../panels/network/wireless-security/eap-method-fast.ui.h:7 --#| msgid "Authentication failed" - msgid "Authenticated" - msgstr "સત્તાધિકરણ થયેલ" - -@@ -3594,7 +3407,6 @@ msgstr "વપરાશકર્તા ? - #: ../panels/network/wireless-security/eap-method-tls.ui.h:6 - #: ../panels/network/wireless-security/ws-leap.ui.h:3 - #: ../panels/network/wireless-security/ws-wpa-psk.ui.h:3 --#| msgid "_Show password" - msgid "Sho_w password" - msgstr "પાસવર્ડ બતાવો (_w)" - -@@ -3610,12 +3422,10 @@ msgid "Choose a Certificate Authority ce - msgstr "Certificate Authority પ્રમાણપત્ર ને પસંદ કરો" - - #: ../panels/network/wireless-security/eap-method-peap.ui.h:3 --#| msgid "Version %s" - msgid "Version 0" - msgstr "આવૃત્તિ 0" - - #: ../panels/network/wireless-security/eap-method-peap.ui.h:4 --#| msgid "Version %s" - msgid "Version 1" - msgstr "આવૃત્તિ 1" - -@@ -3672,12 +3482,10 @@ msgid "Private _key" - msgstr "ખાનગી કી (_k)" - - #: ../panels/network/wireless-security/eap-method-tls.ui.h:5 --#| msgid "_Generate a password" - msgid "_Private key password" - msgstr "ખાનગી કી પાસવર્ડ (_P)" - - #: ../panels/network/wireless-security/eap-method-ttls.c:230 --#| msgid "WPA" - msgid "PAP" - msgstr "PAP" - -@@ -3720,12 +3528,10 @@ msgstr "સુરક્ષિત EAP (PE - #: ../panels/network/wireless-security/ws-dynamic-wep.ui.h:2 - #: ../panels/network/wireless-security/ws-wep-key.ui.h:9 - #: ../panels/network/wireless-security/ws-wpa-eap.ui.h:2 --#| msgid "Authentication failed" - msgid "Au_thentication" - msgstr "સત્તાધિકરણ (_t)" - - #: ../panels/network/wireless-security/ws-wep-key.ui.h:1 --#| msgid "Default" - msgid "1 (Default)" - msgstr "1 (મૂળભૂત)" - -@@ -3742,7 +3548,6 @@ msgid "4" - msgstr "4" - - #: ../panels/network/wireless-security/ws-wep-key.ui.h:5 --#| msgid "System" - msgid "Open System" - msgstr "ખુલ્લી સિસ્ટમ" - -@@ -3763,20 +3568,17 @@ msgid "WEP inde_x" - msgstr "WEP અનુક્રમણિકા (_x)" - - #: ../panels/network/wireless-security/ws-wpa-psk.ui.h:2 --#| msgid "_Type:" - msgid "_Type" - msgstr "પ્રકાર (_T)" - - #. TRANSLATORS: this is the per application switch for message tray usage. - #: ../panels/notifications/cc-edit-dialog.c:37 --#| msgid "Magnification:" - msgctxt "notifications" - msgid "Notifications" - msgstr "સૂચનાઓ" - - #. TRANSLATORS: this is the setting to configure sounds associated with notifications - #: ../panels/notifications/cc-edit-dialog.c:39 --#| msgid "Sound Effects" - msgctxt "notifications" - msgid "Sound Alerts" - msgstr "સાઉન્ડ ચેતવણી" -@@ -3793,7 +3595,6 @@ msgid "Show Details in Banners" - msgstr "બેનરમાં વિગતો બતાવો" - - #: ../panels/notifications/cc-edit-dialog.c:43 --#| msgid "Lock screen" - msgctxt "notifications" - msgid "View in Lock Screen" - msgstr "સ્ક્રીન તાળુમાં જુઓ" -@@ -3814,7 +3615,6 @@ msgid "On" - msgstr "ચાલુ" - - #: ../panels/notifications/gnome-notifications-panel.desktop.in.in.h:1 --#| msgid "Magnification:" - msgid "Notifications" - msgstr "સૂચનાઓ" - -@@ -3832,12 +3632,10 @@ msgid "Show Pop Up Banners" - msgstr "પોપ અપ બેનરને બતાવો" - - #: ../panels/notifications/notifications.ui.h:2 --#| msgid "Lock screen" - msgid "Show in Lock Screen" - msgstr "સ્ક્રીન તાળુમાં બતાવો" - - #: ../panels/online-accounts/cc-online-accounts-add-account-dialog.c:169 --#| msgid "Other..." - msgctxt "Online Account" - msgid "Other" - msgstr "બીજુ" -@@ -3849,12 +3647,10 @@ msgid "Add Account" - msgstr "ખાતુ ઉમેરો" - - #: ../panels/online-accounts/cc-online-accounts-add-account-dialog.c:322 --#| msgid "_Mail" - msgid "Mail" - msgstr "મેઈલ" - - #: ../panels/online-accounts/cc-online-accounts-add-account-dialog.c:328 --#| msgid "Contrast:" - msgid "Contacts" - msgstr "સંપર્કો" - -@@ -3875,7 +3671,6 @@ msgid "Credentials have expired." - msgstr "શ્રેયની મર્યાદા પૂરી થઇ ગઇ." - - #: ../panels/online-accounts/cc-online-accounts-panel.c:497 --#| msgid "Enable this account" - msgid "Sign in to enable this account." - msgstr "આ ખાતાને સક્રિય કરવા માટે પ્રવેશો." - -@@ -3913,13 +3708,12 @@ msgstr "તમારાં ઓનલા? - - #. For ReadItLater and Pocket, see http://en.wikipedia.org/wiki/Pocket_(application) - #: ../panels/online-accounts/gnome-online-accounts-panel.desktop.in.in.h:4 --#| msgid "Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;" - msgid "" - "Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;" - "Kerberos;IMAP;SMTP;Pocket;ReadItLater;" - msgstr "" --"Google;Facebook;Twitter;Yahoo;વેબ;ઓનલાઇન;વાતચીત;કૅલેન્ડર;મેઇલ;સંપર્ક;ownCloud;કર્બોસ;IMAP;SMTP;" --"પોકેટ;ReadItLater;" -+"Google;Facebook;Twitter;Yahoo;વેબ;ઓનલાઇન;વાતચીત;કૅલેન્ડર;મેઇલ;સંપર્ક;ownCloud;કર્બોસ;" -+"IMAP;SMTP;પોકેટ;ReadItLater;" - - #: ../panels/online-accounts/online-accounts.ui.h:1 - msgid "No online accounts configured" -@@ -3981,14 +3775,12 @@ msgstr[1] "મિનિટ" - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" - #: ../panels/power/cc-power-panel.c:230 - #, c-format --#| msgid "Charging - %s until fully charged" - msgid "%s until fully charged" - msgstr "ચાર્જ થાય ત્યાં સુધી %s" - - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" - #: ../panels/power/cc-power-panel.c:237 - #, c-format --#| msgid "Caution low UPS, %s remaining" - msgid "Caution: %s remaining" - msgstr "ચેતવણી: %s બાકી રહ્યુ છે" - -@@ -4000,7 +3792,6 @@ msgstr "%s બાકી રહેલ છ - - #. TRANSLATORS: primary battery - #: ../panels/power/cc-power-panel.c:247 ../panels/power/cc-power-panel.c:275 --#| msgid "Full Screen" - msgid "Fully charged" - msgstr "સંપૂર્ણપણે ચાર્જ થયેલ છે" - -@@ -4016,7 +3807,6 @@ msgstr "ચાર્જિંગ" - - #. TRANSLATORS: primary battery - #: ../panels/power/cc-power-panel.c:271 --#| msgid "Charging" - msgid "Discharging" - msgstr "ડિસ્ચાર્જ થઇ રહ્યુ છે" - -@@ -4103,7 +3893,6 @@ msgstr "સરસ" - - #. TRANSLATORS: primary battery - #: ../panels/power/cc-power-panel.c:562 --#| msgid "Full Screen" - msgctxt "Battery power" - msgid "Fully charged" - msgstr "સંપૂર્ણપણે ચાર્જ થયેલ છે" -@@ -4115,7 +3904,6 @@ msgid "Empty" - msgstr "ખાલી" - - #: ../panels/power/cc-power-panel.c:715 --#| msgid "Battery" - msgid "Batteries" - msgstr "બેટરી" - -@@ -4128,22 +3916,18 @@ msgid "Power Saving" - msgstr "પાવર સંગ્રહ" - - #: ../panels/power/cc-power-panel.c:1473 --#| msgid "Brightness" - msgid "_Screen brightness" - msgstr "સ્ક્રીન પ્રકાશતા (_S)" - - #: ../panels/power/cc-power-panel.c:1479 --#| msgid "Keyboard Settings" - msgid "_Keyboard brightness" - msgstr "કિબોર્ડ પ્રકાશતા (_K)" - - #: ../panels/power/cc-power-panel.c:1489 --#| msgid "_Turn screen off when inactive for:" - msgid "_Dim screen when inactive" - msgstr "ઝાંખી સ્ક્રીન જ્યારે નિષ્ક્રિય હોય (_D)" - - #: ../panels/power/cc-power-panel.c:1514 --#| msgid "Lock screen" - msgid "_Blank screen" - msgstr "કોરી સ્ક્રીન (_B)" - -@@ -4156,7 +3940,6 @@ msgid "Turns off wireless devices" - msgstr "વાયરલેસ ઉપકરણોને બંધ કરે છે" - - #: ../panels/power/cc-power-panel.c:1581 --#| msgid "Mobile broadband" - msgid "_Mobile broadband" - msgstr "મોબાઇલ બ્રોડબેન્ડ (_M)" - -@@ -4165,12 +3948,10 @@ msgid "Turns off mobile broadband (3G, 4 - msgstr "મોબાઇલ બ્રોડબેન્ડ (3G, 4G, WiMax, વગેરે.) ઉપકરણોને બંધ કરે છે" - - #: ../panels/power/cc-power-panel.c:1635 --#| msgid "Bluetooth" - msgid "_Bluetooth" - msgstr "બ્લુટુથ (_B)" - - #: ../panels/power/cc-power-panel.c:1686 --#| msgid "On battery power" - msgid "When on battery power" - msgstr "જ્યારે બેટરી પાવર પર છે" - -@@ -4183,18 +3964,14 @@ msgid "Suspend & Power Off" - msgstr "સ્થગિત અને પાવર બંધ" - - #: ../panels/power/cc-power-panel.c:1851 --#| msgctxt "proxy method" --#| msgid "Automatic" - msgid "_Automatic suspend" - msgstr "આપમેળે સ્થગિત (_A)" - - #: ../panels/power/cc-power-panel.c:1875 --#| msgid "When power is _critically low" - msgid "When battery power is _critical" - msgstr "જ્યારે બેટરી પાવર જટીલ હોય (_C)" - - #: ../panels/power/cc-power-panel.c:1930 --#| msgid "Power off" - msgid "Power Off" - msgstr "પાવર બંધ" - -@@ -4212,8 +3989,8 @@ msgstr "તમારી બેટરી - - #. Translators: those are keywords for the power control-center panel - #: ../panels/power/gnome-power-panel.desktop.in.in.h:4 --#| msgid "Power;Sleep;Suspend;Hibernate;Battery;" --msgid "Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;" -+msgid "" -+"Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;" - msgstr "પાવર;સ્લીપ;સ્થગિત;હાઇબરનેટ;બેટરી;પ્રકાશતા;ઝાંખુ;ખાલી;મોનિટર;DPMS;નિષ્ક્રિય;" - - #: ../panels/power/power.ui.h:1 -@@ -4225,7 +4002,6 @@ msgid "Power off" - msgstr "પાવર બંધ" - - #: ../panels/power/power.ui.h:5 --#| msgid "5 minutes" - msgid "45 minutes" - msgstr "45 મિનિટ" - -@@ -4234,22 +4010,18 @@ msgid "1 hour" - msgstr "1 કલાક" - - #: ../panels/power/power.ui.h:7 --#| msgid "10 minutes" - msgid "80 minutes" - msgstr "80 મિનિટ" - - #: ../panels/power/power.ui.h:8 --#| msgid "10 minutes" - msgid "90 minutes" - msgstr "90 મિનિટ" - - #: ../panels/power/power.ui.h:9 --#| msgid "10 minutes" - msgid "100 minutes" - msgstr "100 મિનિટ" - - #: ../panels/power/power.ui.h:10 --#| msgid "1 hour" - msgid "2 hours" - msgstr "2 કલાક" - -@@ -4266,7 +4038,6 @@ msgid "3 minutes" - msgstr "3 મિનિટો" - - #: ../panels/power/power.ui.h:14 --#| msgid "5 minutes" - msgid "4 minutes" - msgstr "4 મિનિટ" - -@@ -4275,7 +4046,6 @@ msgid "5 minutes" - msgstr "5 મિનિટો" - - #: ../panels/power/power.ui.h:16 --#| msgid "5 minutes" - msgid "8 minutes" - msgstr "8 મિનિટ" - -@@ -4284,45 +4054,36 @@ msgid "10 minutes" - msgstr "10 મિનિટો" - - #: ../panels/power/power.ui.h:18 --#| msgid "2 minutes" - msgid "12 minutes" - msgstr "12 મિનિટ" - - #: ../panels/power/power.ui.h:20 --#| msgctxt "proxy method" --#| msgid "Automatic" - msgid "Automatic Suspend" - msgstr "આપમેળે સ્થગિત" - - #: ../panels/power/power.ui.h:21 --#| msgid "When plugged in" - msgid "_Plugged In" - msgstr "માં પ્લગ થયેલ (_P)" - - #: ../panels/power/power.ui.h:22 --#| msgid "On battery power" - msgid "On _Battery Power" - msgstr "બેટરી પાવર પર (_B):" - - #: ../panels/power/power.ui.h:23 --#| msgid "_Delay:" - msgid "Delay" - msgstr "વિલંબ" - - #: ../panels/printers/authentication-dialog.ui.h:3 --#| msgid "Authentication failed" - msgid "Authenticate" - msgstr "સત્તાધિકરણ" - - #: ../panels/printers/authentication-dialog.ui.h:5 - #: ../panels/sharing/sharing.ui.h:14 - #: ../panels/user-accounts/data/account-dialog.ui.h:6 --#| msgid "_Password" - msgid "Password" - msgstr "પાસવર્ડ" - - #: ../panels/printers/authentication-dialog.ui.h:6 --#| msgid "Authentication required" - msgid "Authentication Required" - msgstr "સત્તાધિકરણ જરૂરી" - -@@ -4483,24 +4244,22 @@ msgstr "PPD ફાઇલ પસંદ ?? - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" --msgstr "PostScript પ્રિન્ટર વર્ણન ફાઈલો (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD.GZ)" -+msgstr "" -+"PostScript પ્રિન્ટર વર્ણન ફાઈલો (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD.GZ)" - - #: ../panels/printers/cc-printers-panel.c:2258 - msgid "No suitable driver found" - msgstr "સુસંગત ડ્રાઇવર મળ્યુ નથી" - - #: ../panels/printers/cc-printers-panel.c:2327 --#| msgid "Searching for preferred drivers..." - msgid "Searching for preferred drivers…" - msgstr "પસંદ થયેલ ડ્રાઇવરોને શોધી રહ્યા છે..." - - #: ../panels/printers/cc-printers-panel.c:2342 --#| msgid "Select from database..." - msgid "Select from database…" - msgstr "ડેટાબેઝમાંથી પસંદ કરો..." - - #: ../panels/printers/cc-printers-panel.c:2351 --#| msgid "Provide PPD File..." - msgid "Provide PPD File…" - msgstr "PPD ફાઈલ પૂરી પાડો..." - -@@ -4557,7 +4316,6 @@ msgstr "નવાં પ્રિન્? - - #. Translators: This button opens authentication dialog for selected server. - #: ../panels/printers/new-printer-dialog.ui.h:5 --#| msgid "Authentication failed" - msgid "A_uthenticate" - msgstr "સત્તાધિકરણ (_u)" - -@@ -4568,12 +4326,10 @@ msgstr "પ્રિન્ટર શો? - - #. Translators: The entered text should contain network address of a printer or a text which will filter found devices (their names and locations) - #: ../panels/printers/new-printer-dialog.ui.h:9 --#| msgid "Search for network printers or filter result" - msgid "Enter address of a printer or a text to filter results" - msgstr "પરિણામોને ફિલ્ટર કરવા માટે પ્રિન્ટર અથવા લખાણનાં સરનામાંને દાખલ કરો" - - #: ../panels/printers/options-dialog.ui.h:1 --#| msgid "Loading options..." - msgid "Loading options…" - msgstr "વિકલ્પો લાવી રહ્યા છે…" - -@@ -4587,14 +4343,11 @@ msgstr "ડ્રાઇવર ડેટ? - - #. Translators: The found device is a JetDirect printer - #: ../panels/printers/pp-host.c:506 --#| msgid "Remove Printer" - msgid "JetDirect Printer" - msgstr "JetDirect પ્રિન્ટર" - - #. Translators: The found device is a Line Printer Daemon printer - #: ../panels/printers/pp-host.c:756 --#| msgctxt "Device kind" --#| msgid "Printer" - msgid "LPD Printer" - msgstr "LPD પ્રિન્ટર" - -@@ -4716,14 +4469,12 @@ msgstr "સમાંતર પોર્? - #. Translators: Location of found network printer (e.g. Kitchen, Reception) - #: ../panels/printers/pp-new-printer-dialog.c:1739 - #, c-format --#| msgid "Location" - msgid "Location: %s" - msgstr "સ્થાન: %s" - - #. Translators: Network address of found printer - #: ../panels/printers/pp-new-printer-dialog.c:1744 - #, c-format --#| msgid "A_ddress:" - msgid "Address: %s" - msgstr "સરનામું: %s" - -@@ -4855,7 +4606,6 @@ msgstr "પહેલેથી ફિલ? - - #. Translators: Name of column showing printer manufacturers - #: ../panels/printers/pp-ppd-selection-dialog.c:233 --#| msgid "Manufacturer:" - msgid "Manufacturer" - msgstr "ઉત્પાદક" - -@@ -4890,7 +4640,6 @@ msgstr "સ્થાન" - - #. Translators: This checkbox is checked when the default printer is selected. - #: ../panels/printers/printers.ui.h:8 --#| msgid "Default Route" - msgid "_Default printer" - msgstr "મૂળભૂત પ્રિન્ટર (_D)" - -@@ -4914,7 +4663,6 @@ msgid "label" - msgstr "લેબલ" - - #: ../panels/printers/printers.ui.h:17 --#| msgid "Setting new driver..." - msgid "Setting new driver…" - msgstr "નવાં ડ્રાઇવરને સુયોજિત કરી રહ્યા છે…" - -@@ -4945,7 +4693,6 @@ msgid "" - msgstr "દિલગીર છુ! સિસ્ટમ પ્રિન્ટીંગ સેવા ઉપલબ્ધ નથી એવુ લાગે છે." - - #: ../panels/privacy/cc-privacy-panel.c:252 ../panels/privacy/privacy.ui.h:24 --#| msgid "Screenshots" - msgid "Screen Lock" - msgstr "સ્ક્રીન તાળુ" - -@@ -4974,7 +4721,6 @@ msgid "All the temporary files will be p - msgstr "બધી કામચલાઉ ફાઇલો કાયમ માટે કાઢી નંખાશે." - - #: ../panels/privacy/cc-privacy-panel.c:514 ../panels/privacy/privacy.ui.h:35 --#| msgid "_Keep Files" - msgid "_Purge Temporary Files" - msgstr "કામચલાઉ ફાઇલોને સાફ કરો (_P)" - -@@ -4983,7 +4729,6 @@ msgid "Purge Trash & Temporary Files" - msgstr "કચરાપેટી અને કામચલાઉ ફાઇલોને સાફ કરો" - - #: ../panels/privacy/cc-privacy-panel.c:576 ../panels/privacy/privacy.ui.h:36 --#| msgid "Software" - msgid "Software Usage" - msgstr "સોફ્ટવેર વપરાશ" - -@@ -5001,11 +4746,9 @@ msgid "" - "screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;" - "network;identity;" - msgstr "" --"સ્ક્રીન;તાળુ;નિદાન;ભંગાણ;ખાનગી;તાજેતરનું;કામચલાઉ;tmp;અનુક્રમણિકા;નામ;" --"નેટવર્ક;ઓળખાણ;" -+"સ્ક્રીન;તાળુ;નિદાન;ભંગાણ;ખાનગી;તાજેતરનું;કામચલાઉ;tmp;અનુક્રમણિકા;નામ;નેટવર્ક;ઓળખાણ;" - - #: ../panels/privacy/privacy.ui.h:1 --#| msgid "Screen turns off" - msgid "Screen Turns Off" - msgstr "સ્ક્રીન બંધ થાય છે" - -@@ -5050,7 +4793,6 @@ msgid "30 days" - msgstr "30 દિવસો" - - #: ../panels/privacy/privacy.ui.h:18 --#| msgid "never" - msgid "Forever" - msgstr "હંમેશા" - -@@ -5059,7 +4801,8 @@ msgid "" - "Remembering your history makes things easier to find again. These items are " - "never shared over the network." - msgstr "" --"તમારાં ઇતિહાસને યાદ રાખવુ ફરી શોધવા માટે સરળ બની જાય છે. આ વસ્તુઓ નેટવર્ક પર કદી વહેંચાતી નથી." -+"તમારાં ઇતિહાસને યાદ રાખવુ ફરી શોધવા માટે સરળ બની જાય છે. આ વસ્તુઓ નેટવર્ક પર કદી " -+"વહેંચાતી નથી." - - #: ../panels/privacy/privacy.ui.h:21 - msgid "_Recently Used" -@@ -5078,17 +4821,14 @@ msgid "The Screen Lock protects your pri - msgstr "તાળુ સ્ક્રીન તમારી ખાનગી જાણકારીને સુરક્ષિત રાખે છે જ્યારે તમે દૂર હોય." - - #: ../panels/privacy/privacy.ui.h:26 --#| msgid "A_utomatic Login" - msgid "Automatic Screen _Lock" - msgstr "આપમેળે સ્ક્રીનનું તાળુ (_L)" - - #: ../panels/privacy/privacy.ui.h:27 --#| msgid "_Lock screen after:" - msgid "Lock screen _after blank for" - msgstr "ખાલી પછી સ્ક્રીનને તાળુ મારો (_a)" - - #: ../panels/privacy/privacy.ui.h:28 --#| msgid "Show _notifications when locked" - msgid "Show _Notifications" - msgstr "સૂચનાઓ બતાવો (_N)" - -@@ -5124,8 +4864,8 @@ msgstr "" - "ક્યાં સોફ્ટવેર તમે વાપરો છે જે તમને વધારે ચોક્કસ અગ્રહતા સાથે તમને પૂરુ પાડવા મદદ કરે છે તે " - "વિશે જાણકારી અમને મોકલી રહ્યા છે. તે અમારાં સોફ્ટવેરને સુધારવા માટે પણ અમને મદદ કરે છે.\n" - "\n" --"બધી જાણકારી જે અમે અનામિક રીતે સંગ્રહી છે, અને અમે ત્રીજી પાર્ટી સાથે તમારી માહિતીને વહેંચવાની " --"કદી જરૂર પડશે નહિં." -+"બધી જાણકારી જે અમે અનામિક રીતે સંગ્રહી છે, અને અમે ત્રીજી પાર્ટી સાથે તમારી માહિતીને " -+"વહેંચવાની કદી જરૂર પડશે નહિં." - - #: ../panels/privacy/privacy.ui.h:40 - msgid "_Send software usage statistics" -@@ -5136,7 +4876,6 @@ msgid "Privacy Policy" - msgstr "ખાનગી પોલિસી" - - #: ../panels/privacy/privacy.ui.h:42 --#| msgid "Location" - msgid "_Location Services" - msgstr "સ્થાન સેવા (_L)" - -@@ -5145,13 +4884,11 @@ msgid "Used to determine your geographic - msgstr "તમારાં ભૌગોલિક સ્થાનને નક્કી કરવા વાપરેલ છે" - - #: ../panels/region/cc-format-chooser.c:119 --#| msgid "Imperial" - msgctxt "measurement format" - msgid "Imperial" - msgstr "ઇમ્પેરીઅલ" - - #: ../panels/region/cc-format-chooser.c:121 --#| msgid "Metric" - msgctxt "measurement format" - msgid "Metric" - msgstr "મેટ્રીક" -@@ -5161,12 +4898,10 @@ msgid "No regions found" - msgstr "વિસ્તાર મળ્યા નથી" - - #: ../panels/region/cc-input-chooser.c:179 --#| msgid "Move Input Source Down" - msgid "No input sources found" - msgstr "ઇનપુટ સ્ત્રોત મળ્યા નથી" - - #: ../panels/region/cc-input-chooser.c:1076 --#| msgid "Other..." - msgctxt "Input Source" - msgid "Other" - msgstr "બીજુ" -@@ -5182,7 +4917,6 @@ msgid "Restart Now" - msgstr "હવે પુન:શરૂ કરો" - - #: ../panels/region/cc-region-panel.c:858 --#| msgid "No printers detected." - msgid "No input source selected" - msgstr "ઇનપુટ સ્ત્રોત પસંદ થયેલ નથી" - -@@ -5195,7 +4929,6 @@ msgid "Input methods can't be used on th - msgstr "પ્રવેશ સ્ક્રીન પર ઇનપુટ પદ્દતિઓને વાપરી શકાતુ નથી" - - #: ../panels/region/cc-region-panel.c:1727 --#| msgid "Lock screen" - msgid "Login Screen" - msgstr "પ્રવેશ સ્ક્રીન" - -@@ -5224,7 +4957,6 @@ msgid "Measurement" - msgstr "માપ" - - #: ../panels/region/format-chooser.ui.h:9 --#| msgid "Paper Type" - msgid "Paper" - msgstr "કાગળ" - -@@ -5233,37 +4965,32 @@ msgid "Region & Language" - msgstr "પ્રદેશ અને ભાષા" - - #: ../panels/region/gnome-region-panel.desktop.in.in.h:2 --msgid "Select your display language, formats, keyboard layouts and input sources" -+msgid "" -+"Select your display language, formats, keyboard layouts and input sources" - msgstr "તમારી દર્શાવ ભાષા, બંધારણો, કિબોર્ડ લેઆઉટ અને ઇનપુટ સ્ત્રોતોને પસંદ કરો" - - #. Translators: those are keywords for the region control-center panel - #: ../panels/region/gnome-region-panel.desktop.in.in.h:4 --#| msgid "Language;Layout;Keyboard;" - msgid "Language;Layout;Keyboard;Input;" - msgstr "ભાષા;લેઆઉટ;કિબોર્ડ;ઇનપુટ;" - - #: ../panels/region/input-chooser.ui.h:1 --#| msgid "Add Input Source" - msgid "Add an Input Source" - msgstr "ઇનપુટ સ્ત્રોત ઉમેરો " - - #: ../panels/region/input-options.ui.h:1 --#| msgid "Input Source Settings" - msgid "Input Source Options" - msgstr "ઇનપુટ સ્ત્રોત વિકલ્પો" - - #: ../panels/region/input-options.ui.h:2 --#| msgid "Use same layout in all windows" - msgid "Use the _same source for all windows" - msgstr "બધી વિન્ડો માટે સરખા સ્ત્રોતને વાપરો (_s)" - - #: ../panels/region/input-options.ui.h:3 --#| msgid "Allow different layouts for each window" - msgid "Allow _different sources for each window" - msgstr "દરેક વિન્ડો માટે વિવિધ સ્ત્રોતોને પરવાનગી આપો (_d)" - - #: ../panels/region/input-options.ui.h:4 --#| msgid "Keyboard Settings" - msgid "Keyboard Shortcuts" - msgstr "કિબોર્ડ ટૂંકાણો" - -@@ -5272,7 +4999,6 @@ msgid "Switch to previous source" - msgstr "પહેલાનાં સ્ત્રોતમાં બદલો" - - #: ../panels/region/input-options.ui.h:6 --#| msgid "Ctrl+Alt+Shift+Space" - msgid "Super+Shift+Space" - msgstr "Super+Shift+Space" - -@@ -5289,7 +5015,6 @@ msgid "You can change these shortcuts in - msgstr "કિબોર્ડ સુયોજનોમાં આ ટૂંકાણોને તમે બદલી શકો છો" - - #: ../panels/region/input-options.ui.h:10 --#| msgid "Switch to next source" - msgid "Alternative switch to next source" - msgstr "આગળનાં સ્ત્રોત પર જાવ" - -@@ -5324,24 +5049,20 @@ msgid "Bookmarks" - msgstr "બુકમાર્કો" - - #: ../panels/search/cc-search-locations-dialog.c:480 --#| msgid "Other..." - msgctxt "Search Location" - msgid "Other" - msgstr "બીજુ" - - # #-#-#-#-# gnome-session.gnome-2-2.hi.po (gnome-session VERSION) #-#-#-#-# gnome-session/logout.c:266 - #: ../panels/search/cc-search-locations-dialog.c:678 --#| msgid "Select a region" - msgid "Select Location" - msgstr "સ્થાન પસંદ કરો" - - #: ../panels/search/cc-search-locations-dialog.c:682 --#| msgid "GOK" - msgid "_OK" - msgstr "બરાબર (_O)" - - #: ../panels/search/cc-search-panel.c:176 --#| msgid "Applications" - msgid "No applications found" - msgstr "કાર્યક્રમો મળ્યા નથી" - -@@ -5350,7 +5071,8 @@ msgid "Search" - msgstr "શોધો" - - #: ../panels/search/gnome-search-panel.desktop.in.in.h:2 --msgid "Control which applications show search results in the Activities Overview" -+msgid "" -+"Control which applications show search results in the Activities Overview" - msgstr "પ્રવૃત્તિ ઝાંખીમાં ક્યાં કાર્યક્રમો શોધ પરિણામોને બતાવે છે તેની પર નિયંત્રણ કરો" - - #. Translators: those are keywords for the search control-center panel -@@ -5359,7 +5081,6 @@ msgid "Search;Find;Index;Hide;Privacy;Re - msgstr "શોધો;શોધો;અનુક્રમણિકા;છુપાડો;ખાનગી;પરિણામો;" - - #: ../panels/search/search-locations-dialog.ui.h:1 --#| msgid "Location" - msgid "Search Locations" - msgstr "સ્થાનો શોધો" - -@@ -5372,7 +5093,6 @@ msgid "Move Down" - msgstr "નીચે ખસેડો" - - #: ../panels/search/search.ui.h:3 --#| msgid "Mouse Preferences" - msgid "Preferences" - msgstr "પસંદગીઓ" - -@@ -5389,19 +5109,16 @@ msgstr "બંધ" - - # #-#-#-#-# gnome-applets.gnome-2-2.hi.po (gnome-applets 2.x) #-#-#-#-# gtk/gtkinputdialog.c:238 - #: ../panels/sharing/cc-sharing-panel.c:304 --#| msgid "Enabled" - msgctxt "service is enabled" - msgid "Enabled" - msgstr "સક્રિય" - - #: ../panels/sharing/cc-sharing-panel.c:307 --#| msgid "Active Jobs" - msgctxt "service is active" - msgid "Active" - msgstr "સક્રિય" - - #: ../panels/sharing/cc-sharing-panel.c:488 --#| msgid "Choose a Layout" - msgid "Choose a Folder" - msgstr "ફોલ્ડર પસંદ કરો" - -@@ -5410,7 +5127,6 @@ msgid "Copy" - msgstr "નકલ કરો" - - #: ../panels/sharing/gnome-sharing-panel.desktop.in.in.h:1 --#| msgid "Hearing" - msgid "Sharing" - msgstr "ભાગીદારી" - -@@ -5424,16 +5140,14 @@ msgid "" - "share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;" - "pictures;photos;movies;server;renderer;" - msgstr "" --"વહેંચો;ભાગીદારી;ssh;યજમાન;નામ;દૂરસ્થ;ડેસ્કટોપ;બ્લુટુથ;ઑબેક્સ;મીડિયા;ઓડિયો;વિડિયો;" --"ચિત્રો;ફોટા;ચિત્રપટ;સર્વર;રેન્ડરર;" -+"વહેંચો;ભાગીદારી;ssh;યજમાન;નામ;દૂરસ્થ;ડેસ્કટોપ;બ્લુટુથ;ઑબેક્સ;મીડિયા;ઓડિયો;વિડિયો;ચિત્રો;" -+"ફોટા;ચિત્રપટ;સર્વર;રેન્ડરર;" - - #: ../panels/sharing/org.gnome.controlcenter.remote-login-helper.policy.in.in.h:1 --#| msgid "Enable h_orizontal scrolling" - msgid "Enable or disable remote login" - msgstr "દૂરસ્થ પ્રવેશને સક્રિય અથવા નિષ્ક્રિય કરો" - - #: ../panels/sharing/org.gnome.controlcenter.remote-login-helper.policy.in.in.h:2 --#| msgid "Authentication is required to change user data" - msgid "Authentication is required to enable or disable remote login" - msgstr "દૂરસ્થ પ્રવેશને સક્રિય અથવા નિષ્ક્રિય કરવા માટે સત્તાધિકરણ જરૂરી છે" - -@@ -5446,12 +5160,10 @@ msgstr "ભાગીદારી મા? - #. * vim: sw=2 ts=8 cindent noai bs=2 - #. - #: ../panels/sharing/networks.ui.h:1 --#| msgid "Network" - msgid "Networks" - msgstr "નેટવર્ક" - - #: ../panels/sharing/sharing.ui.h:1 --#| msgid "Bluetooth Settings" - msgid "Bluetooth Sharing" - msgstr "બ્લુટુથ ભાગીદારી" - -@@ -5471,27 +5183,22 @@ msgid "Save Received Files to Downloads - msgstr "ડાઉનલોડ ફોલ્ડરમાં મળેલ ફાઇલોને સંગ્રહો" - - #: ../panels/sharing/sharing.ui.h:5 --#| msgid "Computer" - msgid "Computer Name" - msgstr "કમ્પ્યૂટર નામ" - - #: ../panels/sharing/sharing.ui.h:6 --#| msgid "Personal digital assistant" - msgid "Personal File Sharing" - msgstr "ખાનગી ફાઈલ વહેંચણી" - - #: ../panels/sharing/sharing.ui.h:7 --#| msgid "Screen part:" - msgid "Screen Sharing" - msgstr "સ્ક્રીન ભાગીદારી" - - #: ../panels/sharing/sharing.ui.h:8 --#| msgid "Media player" - msgid "Media Sharing" - msgstr "મીડિયા ભાગીદારી" - - #: ../panels/sharing/sharing.ui.h:9 --#| msgid "Remove Region" - msgid "Remote Login" - msgstr "દૂરસ્થ પ્રવેશ" - -@@ -5505,11 +5212,10 @@ msgid "" - "Personal File Sharing allows you to share your Public folder with others on " - "your current network using: dav://%s" - msgstr "" --"વ્યક્તિગત ફાઇલ ભાગીદારી તમારાં હાલના નેટવર્કને વાપરીને બીજાઓ સાથે તમારા સાર્વજનિક ફોલ્ડરને " --"વહેંચવા તમને પરવાનગી આપે છે: dav://%s" -+"વ્યક્તિગત ફાઇલ ભાગીદારી તમારાં હાલના નેટવર્કને વાપરીને બીજાઓ સાથે તમારા સાર્વજનિક " -+"ફોલ્ડરને વહેંચવા તમને પરવાનગી આપે છે: dav://%s" - - #: ../panels/sharing/sharing.ui.h:13 --#| msgid "Group Password" - msgid "Require Password" - msgstr "પાસવર્ડ જરૂરી" - -@@ -5528,27 +5234,22 @@ msgid "" - "Allow remote users to view or control your screen by connecting to: vnc://%s" - msgstr "" --"જોવા માટે દૂરસ્થ વપરાશકર્તાઓને પરવાનગી આપો અથવા તેની સાથે જોડાઇને તમારી સ્ક્રીન પર નિયંત્રણ " --"કરો: vnc://%s" -+"જોવા માટે દૂરસ્થ વપરાશકર્તાઓને પરવાનગી આપો અથવા તેની સાથે જોડાઇને તમારી સ્ક્રીન પર " -+"નિયંત્રણ કરો: vnc://%s" - - #: ../panels/sharing/sharing.ui.h:20 --#| msgid "Volume Control" - msgid "Allow Remote Control" - msgstr "દૂરસ્થ નિયંત્રણને પરવાનગી આપો" - - #: ../panels/sharing/sharing.ui.h:21 --#| msgid "_Password" - msgid "Password:" - msgstr "પાસવર્ડ:" - - #: ../panels/sharing/sharing.ui.h:22 --#| msgid "_Show password" - msgid "Show Password" - msgstr "પાસવર્ડને બતાવો" - - #: ../panels/sharing/sharing.ui.h:23 --#| msgid "%s Options" - msgid "Access Options" - msgstr "વિકલ્પો વાપરો" - -@@ -5557,7 +5258,6 @@ msgid "New connections must ask for acce - msgstr "નવાં જોડાણે પ્રવેશ માટે પૂછવુ જ જોઇએ" - - #: ../panels/sharing/sharing.ui.h:25 --#| msgid "Generate a password" - msgid "Require a password" - msgstr "પાસવર્ડની જરૂર છે" - -@@ -5577,7 +5277,6 @@ msgid "Sound" - msgstr "ધ્વનિ" - - #: ../panels/sound/data/gnome-sound-panel.desktop.in.in.h:2 --#| msgid "Change sound volume and sound events" - msgid "Change sound levels, inputs, outputs, and alert sounds" - msgstr "સાઉન્ડ સ્તર, ઇનપુટ, આઉટપુટ, અને સાઉન્ડ ચેતવણીને બદલો" - -@@ -5824,11 +5523,10 @@ msgid "" - "Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;" - "AccessX;Sticky;Keys;Slow;Bounce;Mouse;" - msgstr "" --"કિબોર્ડ;માઉસ;a11y;સુલભતા;ભેદ;નાનું મોટુ કરો;સ્ક્રીન વાંચક;લખાણ;ફોન્ટ;માપ;" --"AccessX;સ્ટીકી;કી;ધીમી;બાઉન્સ;માઉસ;" -+"કિબોર્ડ;માઉસ;a11y;સુલભતા;ભેદ;નાનું મોટુ કરો;સ્ક્રીન વાંચક;લખાણ;ફોન્ટ;માપ;AccessX;સ્ટીકી;" -+"કી;ધીમી;બાઉન્સ;માઉસ;" - - #: ../panels/universal-access/uap.ui.h:1 --#| msgid "Universal Access" - msgid "_Always Show Universal Access Menu" - msgstr "સાર્વત્રિક વપરાશ મેનુને હંમેશા બતાવો (_A)" - -@@ -5837,27 +5535,22 @@ msgid "Seeing" - msgstr "જોઇ રહ્યા છે" - - #: ../panels/universal-access/uap.ui.h:3 --#| msgid "High Contrast" - msgid "_High Contrast" - msgstr "ઉચ્ચ વિરોધાભાસ (_H)" - - #: ../panels/universal-access/uap.ui.h:4 --#| msgid "Large Text" - msgid "_Large Text" - msgstr "લાંબુ લખાણ (_L)" - - #: ../panels/universal-access/uap.ui.h:5 --#| msgid "Zoom" - msgid "_Zoom" - msgstr "નાનું મોટું (_Z)" - - #: ../panels/universal-access/uap.ui.h:7 --#| msgid "Screen Reader" - msgid "Screen _Reader" - msgstr "સ્ક્રીન વાંચક (_R)" - - #: ../panels/universal-access/uap.ui.h:8 --#| msgid "Bounce Keys" - msgid "_Sound Keys" - msgstr "સાઉન્ડ કી (_S)" - -@@ -5866,27 +5559,22 @@ msgid "Hearing" - msgstr "સાંભળવુ" - - #: ../panels/universal-access/uap.ui.h:10 --#| msgid "Visual Alerts" - msgid "_Visual Alerts" - msgstr "દેખીતી ચેતવણીઓ (_V)" - - #: ../panels/universal-access/uap.ui.h:12 --#| msgid "Screen keyboard" - msgid "Screen _Keyboard" - msgstr "સ્ક્રીન કિબોર્ડ (_K)" - - #: ../panels/universal-access/uap.ui.h:13 --#| msgid "Typing Assistant" - msgid "_Typing Assist (AccessX)" - msgstr "ટાઇપીંગ સહાયક (AccessX) (_T)" - - #: ../panels/universal-access/uap.ui.h:14 --#| msgid "Pointing and Clicking" - msgid "Pointing & Clicking" - msgstr "નિર્દેશિત અને ક્લિક કરી રહ્યા છે" - - #: ../panels/universal-access/uap.ui.h:15 --#| msgid "Mouse Keys" - msgid "_Mouse Keys" - msgstr "માઉસ કી (_M)" - -@@ -5903,12 +5591,10 @@ msgid "The screen reader reads displayed - msgstr "સ્ક્રીન વાંચક દર્શાવેલ લખાણને વાંચે છે જે તમે ફોકસને ખસેડો છો." - - #: ../panels/universal-access/uap.ui.h:19 --#| msgid "Screen Reader" - msgid "_Screen Reader" - msgstr "સ્ક્રીન વાંચક (_S)" - - #: ../panels/universal-access/uap.ui.h:20 --#| msgid "Bounce Keys" - msgid "Sound Keys" - msgstr "સાઉન્ડ કી" - -@@ -5925,27 +5611,22 @@ msgid "_Test flash" - msgstr "ફ્લેશ ચકાસો (_T)" - - #: ../panels/universal-access/uap.ui.h:24 --#| msgid "Use a visual indication when an alert sound occurs" - msgid "Use a visual indication when an alert sound occurs." - msgstr "દ્રશ્ય સંકેત વાપરો જ્યારે ચેતવણી અવાજ કરે." - - #: ../panels/universal-access/uap.ui.h:25 --#| msgid "Flash the window title" - msgid "Flash the _window title" - msgstr "વિન્ડો શીર્ષકપટ્ટી ઝબકાવો (_w)" - - #: ../panels/universal-access/uap.ui.h:26 --#| msgid "Flash the entire screen" - msgid "Flash the entire _screen" - msgstr "આખી સ્ક્રીન ઝબકાવો (_s)" - - #: ../panels/universal-access/uap.ui.h:27 --#| msgid "Typing Assistant" - msgid "Typing Assist" - msgstr "ટાઇપીંગ સહાયક" - - #: ../panels/universal-access/uap.ui.h:28 --#| msgid "Sticky Keys" - msgid "_Sticky Keys" - msgstr "સ્ટીકી કીઓ (_S)" - -@@ -5962,7 +5643,6 @@ msgid "Beep when a _modifer key is press - msgstr "જ્યારે બદલનાર દબાયેલ હોય ત્યારે બીપ વગાડો (_m)" - - #: ../panels/universal-access/uap.ui.h:32 --#| msgid "Slow Keys" - msgid "S_low Keys" - msgstr "ધીમી કીઓ (_l)" - -@@ -5975,7 +5655,6 @@ msgid "A_cceptance delay:" - msgstr "સ્વીકૃતિ વિલંબ (_c):" - - #: ../panels/universal-access/uap.ui.h:35 --#| msgid "Short" - msgctxt "slow keys delay" - msgid "Short" - msgstr "ટૂંકુ" -@@ -5985,18 +5664,15 @@ msgid "Slow keys typing delay" - msgstr "સ્લો કી વિલંબને સૂચવે છે" - - #: ../panels/universal-access/uap.ui.h:37 --#| msgid "Long" - msgctxt "slow keys delay" - msgid "Long" - msgstr "લાંબુ" - - #: ../panels/universal-access/uap.ui.h:38 --#| msgid "Beep when a _modifer key is pressed" - msgid "Beep when a key is pr_essed" - msgstr "જ્યારે કી દબાયેલ હોય ત્યારે બીપ વગાડો (_e)" - - #: ../panels/universal-access/uap.ui.h:39 --#| msgid "Beep when a key is _rejected" - msgid "Beep when a key is _accepted" - msgstr "જ્યારે કી સ્વીકારેલ હોય ત્યારે બીપ વગાડો (_a)" - -@@ -6005,7 +5681,6 @@ msgid "Beep when a key is _rejected" - msgstr "જ્યારે કી નકારી દેવામાં આવે તો બીપ વગાડો (_r)" - - #: ../panels/universal-access/uap.ui.h:41 --#| msgid "Bounce Keys" - msgid "_Bounce Keys" - msgstr "બાઉન્સ કી (_B)" - -@@ -6014,7 +5689,6 @@ msgid "Ignores fast duplicate keypresses - msgstr "આમાં ઝડપી નકલી કી દબાણ અવગણો" - - #: ../panels/universal-access/uap.ui.h:43 --#| msgid "Short" - msgctxt "bounce keys delay" - msgid "Short" - msgstr "ટૂંકુ" -@@ -6024,13 +5698,11 @@ msgid "Bounce keys typing delay" - msgstr "બાઉન્સ કી વિલંબને સૂચવે છે" - - #: ../panels/universal-access/uap.ui.h:45 --#| msgid "Long" - msgctxt "bounce keys delay" - msgid "Long" - msgstr "લાંબુ" - - #: ../panels/universal-access/uap.ui.h:46 --#| msgid "Enable by Keyboard" - msgid "_Enable by Keyboard" - msgstr "કિબોર્ડ દ્દારા સક્રિય કરો (_E)" - -@@ -6043,7 +5715,6 @@ msgid "Click Assist" - msgstr "મદદ માટે ક્લિક કરો" - - #: ../panels/universal-access/uap.ui.h:49 --#| msgid "Simulated Secondary Click" - msgid "_Simulated Secondary Click" - msgstr "પ્રદર્શનીય દ્દિતીય ક્લિક (_S)" - -@@ -6052,7 +5723,6 @@ msgid "Trigger a secondary click by hold - msgstr "પ્રાથમિક બટન દબાવવા દ્દારા દ્દિતીય ક્લિક સક્રિય કરો" - - #: ../panels/universal-access/uap.ui.h:51 --#| msgid "Short" - msgctxt "secondary click" - msgid "Short" - msgstr "ટુંકુ" -@@ -6062,13 +5732,11 @@ msgid "Secondary click delay" - msgstr "ગૌણ કી વિલંબ" - - #: ../panels/universal-access/uap.ui.h:53 --#| msgid "Long" - msgctxt "secondary click delay" - msgid "Long" - msgstr "લાંબુ" - - #: ../panels/universal-access/uap.ui.h:54 --#| msgid "Hover Click" - msgid "_Hover Click" - msgstr "Hover ક્લિક (_H)" - -@@ -6081,13 +5749,11 @@ msgid "D_elay:" - msgstr "વિલંબ (_e):" - - #: ../panels/universal-access/uap.ui.h:57 --#| msgid "Short" - msgctxt "dwell click delay" - msgid "Short" - msgstr "ટુંકુ" - - #: ../panels/universal-access/uap.ui.h:58 --#| msgid "Long" - msgctxt "dwell click delay" - msgid "Long" - msgstr "લાંબુ" -@@ -6097,13 +5763,11 @@ msgid "Motion _threshold:" - msgstr "હિલચાલ થ્રેશોલ્ડ (_t):" - - #: ../panels/universal-access/uap.ui.h:60 --#| msgid "Small" - msgctxt "dwell click threshold" - msgid "Small" - msgstr "નાનું" - - #: ../panels/universal-access/uap.ui.h:61 --#| msgid "Large" - msgctxt "dwell click threshold" - msgid "Large" - msgstr "વિશાળ" -@@ -6202,13 +5866,11 @@ msgid "Thickness:" - msgstr "જાડાઈ:" - - #: ../panels/universal-access/zoom-options.ui.h:18 --#| msgid "Thin" - msgctxt "universal access, thickness" - msgid "Thin" - msgstr "પાતળુ" - - #: ../panels/universal-access/zoom-options.ui.h:19 --#| msgid "Thick" - msgctxt "universal access, thickness" - msgid "Thick" - msgstr "ઘટ્ટ" -@@ -6248,32 +5910,26 @@ msgstr "વિરોધાભાસ:" - - #. The contrast scale goes from Color to None (grayscale) - #: ../panels/universal-access/zoom-options.ui.h:30 --#| msgid "Color" - msgctxt "universal access, contrast" - msgid "Color" - msgstr "રંગ" - - #: ../panels/universal-access/zoom-options.ui.h:31 --#| msgid "None" - msgctxt "universal access, color" - msgid "None" - msgstr "કંઈ જ નહિં" - - #: ../panels/universal-access/zoom-options.ui.h:32 --#| msgctxt "Zoom Grayscale" --#| msgid "Full" - msgctxt "universal access, color" - msgid "Full" - msgstr "પૂર્ણ" - - #: ../panels/universal-access/zoom-options.ui.h:33 --#| msgid "Low" - msgctxt "universal access, brightness" - msgid "Low" - msgstr "ઓછુ" - - #: ../panels/universal-access/zoom-options.ui.h:34 --#| msgid "High" - msgctxt "universal access, brightness" - msgid "High" - msgstr "ઉચ્ચ" -@@ -6311,7 +5967,6 @@ msgid "Administrator" - msgstr "વહીવટકર્તા" - - #: ../panels/user-accounts/data/account-dialog.ui.h:4 --#| msgid "_Full name" - msgid "_Full Name" - msgstr "સંપૂર્ણ નામ (_F)" - -@@ -6322,7 +5977,6 @@ msgstr "ખાતા પ્રકાર - - #: ../panels/user-accounts/data/account-dialog.ui.h:7 - #: ../panels/user-accounts/data/password-dialog.ui.h:7 --#| msgid "Choose password at next login" - msgid "Allow user to set a password when they next login" - msgstr "પાસવર્ડને સુયોજિત કરવા વપરાશકર્તાને પરવાનગી આપો જ્યારે તેઓ આગળ પ્રવેશે" - -@@ -6448,12 +6102,10 @@ msgstr "" - "મદદથી પ્રવેશવા માટે સક્ષમ થવુ જ જોઇએ." - - #: ../panels/user-accounts/data/gnome-user-accounts-panel.desktop.in.in.h:1 --#| msgid "Username" - msgid "Users" - msgstr "વપરાશકર્તાઓ" - - #: ../panels/user-accounts/data/gnome-user-accounts-panel.desktop.in.in.h:2 --#| msgid "Add or remove users" - msgid "Add or remove users and change your password" - msgstr "વપરાશકર્તાઓને ઉમેરો અથવા દૂર કરો અને તમારા પાસવર્ડને બદલો" - -@@ -6463,12 +6115,10 @@ msgid "Login;Name;Fingerprint;Avatar;Log - msgstr "પ્રવેશ;નામ;આંગળીછાપન;અવતાર;લૉગો;ચહેરો;પાસવર્ડ;" - - #: ../panels/user-accounts/data/history-dialog.ui.h:1 --#| msgid "Login Options" - msgid "Login History" - msgstr "પ્રવેશ ઇતિહાસ" - - #: ../panels/user-accounts/data/password-dialog.ui.h:1 --#| msgid "Changing password for" - msgid "Change Password" - msgstr "પાસવર્ડ બદલો" - -@@ -6477,17 +6127,14 @@ msgid "Ch_ange" - msgstr "બદલો (_a)" - - #: ../panels/user-accounts/data/password-dialog.ui.h:4 --#| msgid "_New password" - msgid "_Verify New Password" - msgstr "નવાં પાસવર્ડની ખાતરી કરો (_V)" - - #: ../panels/user-accounts/data/password-dialog.ui.h:5 --#| msgid "_New password" - msgid "_New Password" - msgstr "નવો પાસવર્ડ (_N)" - - #: ../panels/user-accounts/data/password-dialog.ui.h:6 --#| msgid "Current _password" - msgid "Current _Password" - msgstr "વર્તમાન પાસવર્ડ (_p)" - -@@ -6520,7 +6167,6 @@ msgid "_Language" - msgstr "ભાષા (_L)" - - #: ../panels/user-accounts/data/user-accounts-dialog.ui.h:12 --#| msgid "A_utomatic Login" - msgid "Last Login" - msgstr "છેલ્લો પ્રવેશ" - -@@ -6533,7 +6179,6 @@ msgid "Authentication is required to cha - msgstr "વપરાશકર્તા માહિતીને બદલવા માટે સત્તાધિકરણ જરૂરી છે" - - #: ../panels/user-accounts/pw-utils.c:81 --#| msgid "The new password does not contain enough different characters" - msgctxt "Password hint" - msgid "The new password needs to be different from the old one." - msgstr "નવો પાસવર્ડ જૂનાંથી અલગ હોવો જરૂરી છે." -@@ -6544,7 +6189,6 @@ msgid "Try changing some letters and num - msgstr "અમુક અક્ષરો અને આંકડાને બદલવાનો પ્રયત્ન કરો." - - #: ../panels/user-accounts/pw-utils.c:85 ../panels/user-accounts/pw-utils.c:93 --#| msgid "Changing password for" - msgctxt "Password hint" - msgid "Try changing the password a bit more." - msgstr "પાસવર્ડને થોડો વધારે બદલવાનો પ્રયત્ન કરો." -@@ -6637,35 +6281,30 @@ msgstr "સરસ પાસવર્ડ! - - #: ../panels/user-accounts/pw-utils.c:141 - #: ../panels/user-accounts/pw-utils.c:171 --#| msgid "Strength" - msgctxt "Password strength" - msgid "Strength: Weak" - msgstr "મજબૂતાઇ: નબળી" - - #: ../panels/user-accounts/pw-utils.c:145 - #: ../panels/user-accounts/pw-utils.c:172 --#| msgid "Strength" - msgctxt "Password strength" - msgid "Strength: Low" - msgstr "મજબૂતાઇ: ઓછી" - - #: ../panels/user-accounts/pw-utils.c:148 - #: ../panels/user-accounts/pw-utils.c:173 --#| msgid "Strength" - msgctxt "Password strength" - msgid "Strength: Medium" - msgstr "મજબૂતાઇ: મધ્યમ" - - #: ../panels/user-accounts/pw-utils.c:151 - #: ../panels/user-accounts/pw-utils.c:174 --#| msgid "Strength" - msgctxt "Password strength" - msgid "Strength: Good" - msgstr "મજબૂતાઇ: સરસ" - - #: ../panels/user-accounts/pw-utils.c:154 - #: ../panels/user-accounts/pw-utils.c:175 --#| msgid "Strength" - msgctxt "Password strength" - msgid "Strength: High" - msgstr "મજબૂતાઇ: વધારે" -@@ -6728,7 +6367,6 @@ msgid "Failed to add account" - msgstr "ખાતાને ઉમેરવામાં નિષ્ફળ" - - #: ../panels/user-accounts/um-account-dialog.c:452 --#| msgid "Passwords do not match" - msgid "Passwords do not match." - msgstr "પાસવર્ડ બંધબેસતો નથી." - -@@ -6754,7 +6392,6 @@ msgstr "" - "મહેરબાની કરીને ફરી પ્રયત્ન કરો." - - #: ../panels/user-accounts/um-account-dialog.c:1042 --#| msgid "Invalid password, please try again" - msgid "" - "That login password didn't work.\n" - "Please try again." -@@ -6771,8 +6408,10 @@ msgid "Unable find the domain. Maybe you - msgstr "ડોમેઇનને શોધવાનું અસમર્થ. કદાચ તમે તેની જોડણી ખોટી કરી છે?" - - #: ../panels/user-accounts/um-fingerprint-dialog.c:137 --msgid "You are not allowed to access the device. Contact your system administrator." --msgstr "તમને ઉપકરણ ને દાખલ કરવા માટે પરવાનગી આપેલ નથી. તમારા સિસ્ટમ વહીવટકર્તાને સંપર્ક કરો." -+msgid "" -+"You are not allowed to access the device. Contact your system administrator." -+msgstr "" -+"તમને ઉપકરણ ને દાખલ કરવા માટે પરવાનગી આપેલ નથી. તમારા સિસ્ટમ વહીવટકર્તાને સંપર્ક કરો." - - #: ../panels/user-accounts/um-fingerprint-dialog.c:139 - msgid "The device is already in use." -@@ -6861,7 +6500,6 @@ msgid "This Week" - msgstr "આ અઠવાડિયે" - - #: ../panels/user-accounts/um-history-dialog.c:71 --#| msgid "Last used" - msgid "Last Week" - msgstr "છેલ્લા અઠવાડિયે" - -@@ -6928,7 +6566,6 @@ msgid "Password could not be changed" - msgstr "પાસવર્ડને બદલી શક્યા નહિં" - - #: ../panels/user-accounts/um-password-dialog.c:286 --#| msgid "The passwords do not match" - msgid "The passwords do not match." - msgstr "પાસવર્ડો બંધબેસતા નથી." - -@@ -6943,12 +6580,10 @@ msgid "Disable image" - msgstr "ઇમેજને નિષ્ક્રિય કરો" - - #: ../panels/user-accounts/um-photo-dialog.c:471 --#| msgid "Take a photo..." - msgid "Take a photo…" - msgstr "ફોટો લો..." - - #: ../panels/user-accounts/um-photo-dialog.c:489 --#| msgid "Browse for more pictures" - msgid "Browse for more pictures…" - msgstr "વધારે ચિત્રો માટે બ્રાઉઝ કરો..." - -@@ -6958,7 +6593,6 @@ msgid "Used by %s" - msgstr "%s દ્દારા વપરાયેલ છે" - - #: ../panels/user-accounts/um-realm-manager.c:350 --#| msgid "Cannot remove automatically added profile" - msgid "Cannot automatically join this type of domain" - msgstr "આપમેળે ઉમેરાયેલ રૂપરેખાને દૂર કરી શકાતુ નથી" - -@@ -7094,18 +6728,15 @@ msgstr "મારુ ખાતુ" - - #: ../panels/user-accounts/um-utils.c:567 - #, c-format --#| msgid "A user with the username '%s' already exists" - msgid "A user with the username '%s' already exists." - msgstr "વપરાશકર્તાનામ '%s' સાથે વપરાશકર્તા પહેલેથી જ અસ્તિત્વ ધરાવે છે." - - #: ../panels/user-accounts/um-utils.c:571 - #, c-format --#| msgid "The username is too long" - msgid "The username is too long." - msgstr "વપરાશકર્તાનામ ઘણુ લાંબુ છે." - - #: ../panels/user-accounts/um-utils.c:574 --#| msgid "The username cannot start with a '-'" - msgid "The username cannot start with a '-'." - msgstr "વપરાશકર્તાનામ '-' સાથે શરૂ કરી શકાતુ નથી." - -@@ -7114,8 +6745,8 @@ msgid "" - "The username should only consist of lower and upper case letters from a-z, " - "digits and any of characters '.', '-' and '_'." - msgstr "" --"વપરાશકર્તા ફક્ત a-z, આંકડા અને કોઇપણ અક્ષરો '.', '-' અને '_' માંથી નાનાં અને મોટા અક્ષરોને " --"સમાવવા જોઇએ." -+"વપરાશકર્તા ફક્ત a-z, આંકડા અને કોઇપણ અક્ષરો '.', '-' અને '_' માંથી નાનાં અને મોટા " -+"અક્ષરોને સમાવવા જોઇએ." - - #: ../panels/user-accounts/um-utils.c:581 - msgid "This will be used to name your home folder and can't be changed." -@@ -7140,15 +6771,12 @@ msgid "Map buttons to functions" - msgstr "વિધેયોનાં માપન બટનો" - - #: ../panels/wacom/button-mapping.ui.h:3 --#| msgid "" --#| "To edit a shortcut, click the row and hold down the new keys or press " --#| "Backspace to clear." - msgid "" - "To edit a shortcut, choose the \"Send Keystroke\" action, press the keyboard " - "shortcut button and hold down the new keys or press Backspace to clear." - msgstr "" --"ટુકાણ કીમાં ફેરફાર કરવા માટે, \"કિસ્ટ્રોકને મોકલો\" ક્રિયાને પસંદ કરો, કિબોર્ડ ટૂંકાણ બટનને " --"દબાવો અને નવી કીને પકડી રાખો અથવા સાફ કરવા માટે Backspace ને દબાવો." -+"ટુકાણ કીમાં ફેરફાર કરવા માટે, \"કિસ્ટ્રોકને મોકલો\" ક્રિયાને પસંદ કરો, કિબોર્ડ ટૂંકાણ " -+"બટનને દબાવો અને નવી કીને પકડી રાખો અથવા સાફ કરવા માટે Backspace ને દબાવો." - - #: ../panels/wacom/calibrator/calibrator-gui.c:83 - msgid "" -@@ -7161,13 +6789,11 @@ msgid "Mis-click detected, restarting... - msgstr "ખોટી ક્લિક શોધાઇ, પુન:શરૂ કરી રહ્યા છે..." - - #: ../panels/wacom/cc-wacom-button-row.c:442 --#| msgid "Up" - msgctxt "Wacom tablet button" - msgid "Up" - msgstr "ઉપર" - - #: ../panels/wacom/cc-wacom-button-row.c:443 --#| msgid "Down" - msgctxt "Wacom tablet button" - msgid "Down" - msgstr "નીચે" -@@ -7258,12 +6884,10 @@ msgid "Bluetooth Settings" - msgstr "Bluetooth સુયોજનો" - - #: ../panels/wacom/gnome-wacom-properties.ui.h:8 --#| msgid "Map to Monitor..." - msgid "Map to Monitor…" - msgstr "મોનિટરનું માપન…" - - #: ../panels/wacom/gnome-wacom-properties.ui.h:9 --#| msgid "Map Buttons" - msgid "Map Buttons…" - msgstr "માપન બટનો…" - -@@ -7272,7 +6896,6 @@ msgid "Adjust display resolution" - msgstr "દર્શાવ રિઝોલ્યુશનને ગોઠવો" - - #: ../panels/wacom/gnome-wacom-properties.ui.h:12 --#| msgid "Mouse Settings" - msgid "Adjust mouse settings" - msgstr "માઉસ સુયોજનોને ગોઠવો" - -@@ -7286,7 +6909,6 @@ msgstr "ડાબી બાજુની - - #. If no mode is available, we use "left-ring-mode-1" for backward compat - #: ../panels/wacom/gsd-wacom-device.c:1062 --#| msgid "Left Ring Mode #%d" - msgid "Left Ring" - msgstr "ડાબી રીંગ" - -@@ -7297,7 +6919,6 @@ msgstr "ડાબી રીંગ સ્ - - #. If no mode is available, we use "right-ring-mode-1" for backward compat - #: ../panels/wacom/gsd-wacom-device.c:1093 --#| msgid "Right Ring Mode #%d" - msgid "Right Ring" - msgstr "જમણી રીંગ" - -@@ -7308,7 +6929,6 @@ msgstr "જમણી રીંગ સ્ - - #. If no mode is available, we use "left-strip-mode-1" for backward compat - #: ../panels/wacom/gsd-wacom-device.c:1146 --#| msgid "Left Touchstrip Mode #%d" - msgid "Left Touchstrip" - msgstr "ડાબુ ટચસ્ટ્રીપ" - -@@ -7319,7 +6939,6 @@ msgstr "ડાબી ટચસ્ટ્? - - #. If no mode is available, we use "right-strip-mode-1" for backward compat - #: ../panels/wacom/gsd-wacom-device.c:1177 --#| msgid "Right Touchstrip Mode #%d" - msgid "Right Touchstrip" - msgstr "જમણી ટચસ્ટ્રીપ" - -@@ -7374,7 +6993,6 @@ msgid "Bottom Button #%d" - msgstr "નીચેનું બટન #%d" - - #: ../panels/wacom/gsd-wacom-key-shortcut-button.c:263 --#| msgid "New shortcut..." - msgid "New shortcut…" - msgstr "નવાં ટૂંકાણ..." - -@@ -7477,7 +7095,6 @@ msgid "[PANEL] [ARGUMENT…]" - msgstr "[PANEL] [ARGUMENT…]" - - #: ../shell/cc-application.c:145 --#| msgid "All Settings" - msgid "- Settings" - msgstr "- સુયોજનો" - -@@ -7491,7 +7108,6 @@ msgstr "" - "ઉપલબ્ધ આદેશ વાક્ય વિકલ્પોની સંપૂર્ણ યાદીને જોવા માટે '%s --help' ચલાવો.\n" - - #: ../shell/cc-application.c:193 --#| msgid "Available Profiles" - msgid "Available panels:" - msgstr "ઉપલબ્ધ પેનલો:" - -@@ -7514,13 +7130,11 @@ msgid "Personal" - msgstr "વ્યક્તિગત" - - #: ../shell/cc-window.c:877 --#| msgid "Hardware" - msgctxt "category" - msgid "Hardware" - msgstr "હાર્ડવેર" - - #: ../shell/cc-window.c:878 --#| msgid "System" - msgctxt "category" - msgid "System" - msgstr "સિસ્ટમ" -@@ -7847,17 +7461,14 @@ msgstr "પસંદગીઓ;સુય? - #~ msgid "Wireless" - #~ msgstr "વાયરલેસ" - --#~| msgid "Disconnected" - #~ msgid "_Disconnect" - #~ msgstr "તૂટેલ જોડાણ (_D)" - --#~| msgid "Connected" - #~ msgid "_Connect" - #~ msgstr "જોડાવો (_C)" - - # libgnomeprintui/gpaui/add-printer-dialog.c:83 - # libgnomeprintui/gpaui/config-dialog.c:83 --#~| msgid "Models" - #~ msgid "Mesh" - #~ msgstr "મેશ" - -@@ -7919,7 +7530,6 @@ msgstr "પસંદગીઓ;સુય? - - # #-#-#-#-# gnome-icon-theme.gnome-2-2.hi.po (gnome-icon theme 2.2) #-#-#-#-# 48x48/emblems/emblem-sound.icon.in.h:1 - # 48x48/emblems/emblem-sound.icon.in.h:1 --#~| msgid "Sound" - #~ msgid "Don't suspend" - #~ msgstr "અટકાવો નહિં" - -@@ -8021,7 +7631,6 @@ msgstr "પસંદગીઓ;સુય? - #~ msgid "System settings" - #~ msgstr "સિસ્ટમ સુયોજનો" - --#~| msgid "Brightness" - #~ msgid "Brightness & Lock" - #~ msgstr "પ્રકાશતા અને તાળુ" - -@@ -8076,7 +7685,6 @@ msgstr "પસંદગીઓ;સુય? - #~ msgid "No shortcut set" - #~ msgstr "ટૂંકાણો સુયોજિત નથી" - --#~| msgid "Appearance Preferences" - #~ msgid "Universal Access Preferences" - #~ msgstr "સાર્વત્રિક વપરાશ પસંદગીઓ" - -@@ -8119,7 +7727,6 @@ msgstr "પસંદગીઓ;સુય? - #~ msgid "Larger" - #~ msgstr "વિશાળ" - --#~| msgid "Beep when Caps and Num Lock are used" - #~ msgid "Beep on Caps and Num Lock" - #~ msgstr "Caps અને Num Lock વાપરેલ હોય ત્યારે બીપ વગાડો" - -@@ -8160,7 +7767,6 @@ msgstr "પસંદગીઓ;સુય? - #~ msgid "Acc_eptance delay:" - #~ msgstr "સ્વીકૃતિ વિલંબ (_e):" - --#~| msgid "_Pointer can be controlled using the keypad" - #~ msgid "Control the pointer using the keypad" - #~ msgstr "કીપેડની મદદથી નિર્દેશકને નિયંત્રિત કરો" - -@@ -8202,14 +7808,12 @@ msgstr "પસંદગીઓ;સુય? - #~ msgid "Disable this account" - #~ msgstr "આ ખાતાને નિષ્ક્રિય કરો" - --#~| msgid "C_ity:" - #~ msgid "_Hint" - #~ msgstr "ઇશારો (_H)" - - #~ msgid "C_onfirm password" - #~ msgstr "પાસવર્ડની ખાતરી કરો (_o)" - --#~| msgid "Filter" - #~ msgid "Fair" - #~ msgstr "વ્યાજબી" - -@@ -8251,7 +7855,6 @@ msgstr "પસંદગીઓ;સુય? - #~ msgid "Weak" - #~ msgstr "નબળુ" - --#~| msgid "Filter" - #~ msgctxt "Password strength" - #~ msgid "Fair" - #~ msgstr "વ્યાજબી" -@@ -8299,12 +7902,10 @@ msgstr "પસંદગીઓ;સુય? - #~ msgid "Set your Wacom tablet preferences" - #~ msgstr "તમારાં Wacom ટૅબલેટ પસંદગીઓને સુયોજિત કરો" - --#~| msgid "Options..." - #~ msgid "Map Buttons..." - #~ msgstr "માપન બટનો..." - - # #-#-#-#-# libgnomeui.gnome-2-2.hi.po (libgnomeui HEAD) #-#-#-#-# libgnomeui/gnome-app-helper.c:166 --#~| msgid "Create..." - #~ msgid "Calibrate..." - #~ msgstr "માપદંડ કરો..." - -@@ -8346,7 +7947,6 @@ msgstr "પસંદગીઓ;સુય? - #~ msgid "Acti_on:" - #~ msgstr "ક્રિયા (_o)" - --#~| msgid "Take a photo..." - #~ msgid "Take a screenshot" - #~ msgstr "સ્ક્રીનશોટ લો" - -@@ -8362,7 +7962,6 @@ msgstr "પસંદગીઓ;સુય? - #~ msgid "Sh_ow position of pointer when the Control key is pressed" - #~ msgstr "જ્યારે Control કી દબાયેલ હોય ત્યારે પોઇંટરની જગ્યાને બતાવો" - --#~| msgid "_Acceleration:" - #~ msgid "A_cceleration:" - #~ msgstr "પ્રવેગ (_c):" - -@@ -8376,7 +7975,6 @@ msgstr "પસંદગીઓ;સુય? - #~ msgstr "થ્રેશોલ્ડ (_e):" - - #, fuzzy --#~| msgid "Thr_eshold:" - #~ msgid "Drag Threshold" - #~ msgstr "થ્રેશોલ્ડ (_e):" - -@@ -8387,9 +7985,6 @@ msgstr "પસંદગીઓ;સુય? - #~ msgstr "સમય સમાપ્ત (_T):" - - #, fuzzy --#~| msgid "" --#~| "To test your double-click settings, try to double-click on the light " --#~| "bulb." - #~ msgid "To test your settings, try to double-click on the face." - #~ msgstr "તમારી ડબલ-ક્લિક સુયોજનોને ચકાસો, લાઇટ બલ્બ પર ડબલ-ક્લિક નો પ્રયત્ન કરો." - -@@ -8415,19 +8010,15 @@ msgstr "પસંદગીઓ;સુય? - #~ msgstr "નેટવર્ક નામ (_N)" - - # #-#-#-#-# gnome-applets.gnome-2-2.hi.po (gnome-applets 2.x) #-#-#-#-# gtk/gtkinputdialog.c:238 --#~| msgid "Disabled" - #~ msgid "Disable VPN" - #~ msgstr "VPN નિષ્ક્રિય કરો" - --#~| msgid "_HTTP Proxy" - #~ msgid "HTTP Port" - #~ msgstr "HTTP પોર્ટ" - --#~| msgid "H_TTPS Proxy" - #~ msgid "HTTPS Port" - #~ msgstr "HTTPS પોર્ટ" - --#~| msgid "_FTP Proxy" - #~ msgid "FTP Port" - #~ msgstr "FTP પોર્ટ" - -@@ -8437,12 +8028,10 @@ msgstr "પસંદગીઓ;સુય? - #~ msgid "_Add..." - #~ msgstr "ઉમેરો (_A)..." - --#~| msgid "_Type:" - #~ msgid "Tip:" - #~ msgstr "મદદ:" - - #, fuzzy --#~| msgid "Brightness" - #~ msgid "Brightness Settings" - #~ msgstr "પ્રકાશતા" - -@@ -8476,22 +8065,18 @@ msgstr "પસંદગીઓ;સુય? - #~ msgstr "પાછળ (_B)" - - #, fuzzy --#~| msgid "Remove wallpaper" - #~ msgid "Remove User" - #~ msgstr "વોલપેપર દૂર કરો" - - #~ msgid "Allowed users" - #~ msgstr "પરવાનગી આપેવ વપરાશકર્તાઓ" - --#~| msgid "Layout" - #~ msgid "Add Layout" - #~ msgstr "લેઆઉટને ઉમેરો" - --#~| msgid "Choose a Layout" - #~ msgid "Remove Layout" - #~ msgstr "લેઆઉટ દૂર કરો" - --#~| msgid "Preview" - #~ msgid "Preview Layout" - #~ msgstr "લેઆઉટનું પૂર્વદર્શન" - -@@ -8499,7 +8084,6 @@ msgstr "પસંદગીઓ;સુય? - #~ msgstr "નવી વિન્ડો મૂળભૂત લેઆઉટને વાપરે છે" - - #, fuzzy --#~| msgid "Use previous window's layout in new windows" - #~ msgid "New windows use the previous window's layout" - #~ msgstr "નવી વિન્ડોમાં પહેલાંની વિન્ડોનાં લેઆઉટને વાપરો" - -@@ -8527,12 +8111,10 @@ msgstr "પસંદગીઓ;સુય? - #~ msgstr "ડેશર" - - #, fuzzy --#~| msgid "None" - #~ msgid "Nomon" - #~ msgstr "કંઈ જ નહિં" - - #, fuzzy --#~| msgid "Change set" - #~ msgid "Change contrast:" - #~ msgstr "બદલનાર સમૂહ" - -@@ -8556,11 +8138,9 @@ msgstr "પસંદગીઓ;સુય? - #~ msgid "Type here to test settings" - #~ msgstr "સુયોજનોની ચકાસણી કરવા માટે અહિંયા ટાઇપ કરો" - --#~| msgid "Screen" - #~ msgid "1/2 Screen" - #~ msgstr "1/2 સ્ક્રીન" - --#~| msgid "Screen" - #~ msgid "3/4 Screen" - #~ msgstr "3/4 સ્ક્રીન" - -@@ -8598,12 +8178,10 @@ msgstr "પસંદગીઓ;સુય? - #~ msgstr "સિસ્ટમ જાણકારી" - - #, fuzzy --#~| msgid "Change set" - #~ msgid "Toggle contrast" - #~ msgstr "બદલનાર સમૂહ" - - #, fuzzy --#~| msgid "Linux Screen Reader" - #~ msgid "Toggle screen reader" - #~ msgstr "Linux સ્ક્રીન વાંચક" - -@@ -8650,12 +8228,10 @@ msgstr "પસંદગીઓ;સુય? - # 48x48/emblems/emblem-sound.icon.in.h:1 - # 48x48/emblems/emblem-sound.icon.in.h:1 - #, fuzzy --#~| msgid "Sound" - #~ msgid "Suspend" - #~ msgstr "ધ્વનિ" - - #, fuzzy --#~| msgid "Turn off after:" - #~ msgid "_Turn off after:" - #~ msgstr "પછી બંધ કરો:" - -@@ -8795,7 +8371,6 @@ msgstr "પસંદગીઓ;સુય? - #~ "બદલાવો કરવા માટે ક્લિક કરો" - - #, fuzzy --#~| msgid "Please contact your system administrator for help." - #~ msgid "" - #~ "System policy prevents changes.\n" - #~ "Contact your system administrator" -@@ -8822,11 +8397,9 @@ msgstr "પસંદગીઓ;સુય? - #~ msgid "%.1f EB" - #~ msgstr "%.1f EB" - --#~| msgid "_Photos:" - #~ msgid "Photos" - #~ msgstr "ફોટા" - --#~| msgid "Update Available" - #~ msgid "Updates Available" - #~ msgstr "સુધારો ઉપલબ્ધ" - -@@ -8842,26 +8415,21 @@ msgstr "પસંદગીઓ;સુય? - #~ msgid "When the power button is pressed:" - #~ msgstr "જ્યારે પાવર બટન દબાયેલ હોય:" - --#~| msgid "_Keyboard Accessibility" - #~ msgid "Keyboard;Mouse;a11y;Accessibility;" - #~ msgstr "કીબોર્ડ;માઉસ;a11y;સુલભતા;" - --#~| msgid "High" - #~ msgctxt "universal access, contrast" - #~ msgid "High/Inverse" - #~ msgstr "વધારે/ઊલટું" - --#~| msgid "High" - #~ msgctxt "universal access, contrast" - #~ msgid "High" - #~ msgstr "વધારે" - --#~| msgid "Low" - #~ msgctxt "universal access, contrast" - #~ msgid "Low" - #~ msgstr "ઓછુ" - --#~| msgid "Normal" - #~ msgctxt "universal access, contrast" - #~ msgid "Normal" - #~ msgstr "સામાન્ય" -Index: new/po/kn.po -=================================================================== ---- new.orig/po/kn.po -+++ new/po/kn.po -@@ -186,14 +186,12 @@ msgstr "ಬ್ಲೂಟೂತ್" - - #: ../panels/bluetooth/gnome-bluetooth-panel.desktop.in.in.h:2 - msgid "Turn Bluetooth on and off and connect your devices" --msgstr "" --"ಬ್ಲೂಟೂತ್ ಅನ್ನು ಆನ್ ಮತ್ತು ಆಫ್ ಮಾಡಿ ಹಾಗೂ ನಿಮ್ಮ ಸಾಧನಗಳೊಂದಿಗೆ ಸಂಪರ್ಕ ಸಾಧಿಸಿ" -+msgstr "ಬ್ಲೂಟೂತ್ ಅನ್ನು ಆನ್ ಮತ್ತು ಆಫ್ ಮಾಡಿ ಹಾಗೂ ನಿಮ್ಮ ಸಾಧನಗಳೊಂದಿಗೆ ಸಂಪರ್ಕ ಸಾಧಿಸಿ" - - #. TRANSLATORS: The user has to attach the sensor to the screen - #: ../panels/color/cc-color-calibrate.c:361 - msgid "Place your calibration device over the square and press 'Start'" --msgstr "" --"ನಿಮ್ಮ ಕ್ಯಾಲಿಬ್ರೇಶನ್ ಸಾಧನವನ್ನು ಚೌಕದ ಮೇಲೆ ಇರಿಸಿ ಮತ್ತು 'ಪ್ರಾರಂಭಿಸು' ಅನ್ನು ಒತ್ತಿ" -+msgstr "ನಿಮ್ಮ ಕ್ಯಾಲಿಬ್ರೇಶನ್ ಸಾಧನವನ್ನು ಚೌಕದ ಮೇಲೆ ಇರಿಸಿ ಮತ್ತು 'ಪ್ರಾರಂಭಿಸು' ಅನ್ನು ಒತ್ತಿ" - - #. TRANSLATORS: Some calibration devices need the user to move a - #. * dial or switch manually. We also show a picture showing them -@@ -201,8 +199,7 @@ msgstr "" - #: ../panels/color/cc-color-calibrate.c:367 - msgid "" - "Move your calibration device to the calibrate position and press 'Continue'" --msgstr "" --"ಕ್ಯಾಲಿಬ್ರೇಟ್ ಸ್ಥಾನಕ್ಕೆ ನಿಮ್ಮ ಸಾಧನವನ್ನು ಜರುಗಿಸಿ ಮತ್ತು 'ಮುಂದುವರೆ' ಅನ್ನು ಒತ್ತಿ" -+msgstr "ಕ್ಯಾಲಿಬ್ರೇಟ್ ಸ್ಥಾನಕ್ಕೆ ನಿಮ್ಮ ಸಾಧನವನ್ನು ಜರುಗಿಸಿ ಮತ್ತು 'ಮುಂದುವರೆ' ಅನ್ನು ಒತ್ತಿ" - - #. TRANSLATORS: Some calibration devices need the user to move a - #. * dial or switch manually. We also show a picture showing them -@@ -383,14 +380,12 @@ msgstr "ಈ URL ಅನ್ನು ಬರ?? - - #: ../panels/color/cc-color-panel.c:923 - msgid "Restart this computer and boot your normal operating system." --msgstr "" --"ಈ ಗಣಕವನ್ನು ಮರಳಿ ಆರಂಭಿಸು ಹಾಗು ನಿಮ್ಮ ಸಾಮಾನ್ಯ ಕಾರ್ಯಾಚರಣೆ ವ್ಯವಸ್ಥೆಯನ್ನು ಬೂಟ್ ಮಾಡಿ." -+msgstr "ಈ ಗಣಕವನ್ನು ಮರಳಿ ಆರಂಭಿಸು ಹಾಗು ನಿಮ್ಮ ಸಾಮಾನ್ಯ ಕಾರ್ಯಾಚರಣೆ ವ್ಯವಸ್ಥೆಯನ್ನು ಬೂಟ್ ಮಾಡಿ." - - #: ../panels/color/cc-color-panel.c:924 - msgid "Type the URL into your browser to download and install the profile." - msgstr "" --"ಪ್ರೊಫೈಲ್ ಅನ್ನು ಡೌನ್‌ಲೋಡ್ ಮಾಡಲು ಮತ್ತು ಅನುಸ್ಥಾಪಿಸಲು ನಿಮ್ಮ ಜಾಲವೀಕ್ಷಕಕ್ಕೆ URL " --"ಅನ್ನು ನಮೂದಿಸಿ." -+"ಪ್ರೊಫೈಲ್ ಅನ್ನು ಡೌನ್‌ಲೋಡ್ ಮಾಡಲು ಮತ್ತು ಅನುಸ್ಥಾಪಿಸಲು ನಿಮ್ಮ ಜಾಲವೀಕ್ಷಕಕ್ಕೆ URL ಅನ್ನು ನಮೂದಿಸಿ." - - #. TRANSLATORS: this is the dialog to save the ICC profile - #: ../panels/color/cc-color-panel.c:958 -@@ -542,10 +537,8 @@ msgid "" - "screen. The longer you spend on calibration, the better the quality of the " - "color profile." - msgstr "" --"ಕ್ಯಾಲಿಬ್ರೇಶನ್‌ನಿಂದಾಗಿ ನಿಮ್ಮ ತೆರೆಯ ಬಣ್ಣವನ್ನು ವ್ಯವಸ್ಥಾಪಿಸಲು ಅಗತ್ಯವಿರುವ ಪ್ರೊಫೈಲ್ " --"ಒಂದು ನಿಮಗೆ " --"ದೊರೆಯುತ್ತದೆ. ಕ್ಯಾಲಿಬ್ರೇಶನ್‌ಗಾಗಿ ಹೆಚ್ಚು ಹೊತ್ತು ವ್ಯಯಿಸಿದಷ್ಟೂ ಬಣ್ಣದ ಪ್ರೊಫೈಲ್‌ನ " --"ಗುಣಮಟ್ಟ " -+"ಕ್ಯಾಲಿಬ್ರೇಶನ್‌ನಿಂದಾಗಿ ನಿಮ್ಮ ತೆರೆಯ ಬಣ್ಣವನ್ನು ವ್ಯವಸ್ಥಾಪಿಸಲು ಅಗತ್ಯವಿರುವ ಪ್ರೊಫೈಲ್ ಒಂದು ನಿಮಗೆ " -+"ದೊರೆಯುತ್ತದೆ. ಕ್ಯಾಲಿಬ್ರೇಶನ್‌ಗಾಗಿ ಹೆಚ್ಚು ಹೊತ್ತು ವ್ಯಯಿಸಿದಷ್ಟೂ ಬಣ್ಣದ ಪ್ರೊಫೈಲ್‌ನ ಗುಣಮಟ್ಟ " - "ಉತ್ತಮಗೊಳ್ಳುತ್ತದೆ." - - #: ../panels/color/color.ui.h:3 -@@ -569,8 +562,7 @@ msgstr "ಕ್ಯಾಲಿಬ್ರೇ?? - - #: ../panels/color/color.ui.h:9 - msgid "Select the sensor device you want to use for calibration." --msgstr "" --"ಕ್ಯಾಲಿಬ್ರೇಶನ್‌ಗಾಗಿ ನೀವು ಬಳಸಲು ಬಯಸುವ ಸಂವೇದಿ (ಸೆನ್ಸರ್) ಸಾಧನವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ." -+msgstr "ಕ್ಯಾಲಿಬ್ರೇಶನ್‌ಗಾಗಿ ನೀವು ಬಳಸಲು ಬಯಸುವ ಸಂವೇದಿ (ಸೆನ್ಸರ್) ಸಾಧನವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ." - - #: ../panels/color/color.ui.h:10 - msgid "Calibration Device" -@@ -589,8 +581,7 @@ msgid "" - "Select a display target white point. Most displays should be calibrated to a " - "D65 illuminant." - msgstr "" --"ಪ್ರದರ್ಶಕ ಗುರಿ ಶ್ವೇತ ಬಿಂದುವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ. ಹೆಚ್ಚಿನ ಪ್ರದರ್ಶಕಗಳನ್ನು ಒಂದು D65 " --"ಪ್ರಕಾಶತೆಗೆ " -+"ಪ್ರದರ್ಶಕ ಗುರಿ ಶ್ವೇತ ಬಿಂದುವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ. ಹೆಚ್ಚಿನ ಪ್ರದರ್ಶಕಗಳನ್ನು ಒಂದು D65 ಪ್ರಕಾಶತೆಗೆ " - "ಸರಿಹೊಂದಿಸಬೇಕಾಗಿರುತ್ತದೆ." - - #: ../panels/color/color.ui.h:14 -@@ -602,8 +593,7 @@ msgid "" - "Please set the display to a brightness that is typical for you. Color " - "management will be most accurate at this brightness level." - msgstr "" --"ಪ್ರದರ್ಶಕವನ್ನು ನಿಮಗೆ ಸಾಮಾನ್ಯವೆನಿಸುವ ಪ್ರಕಾಶತೆಗೆ ಹೊಂದಿಸಿ. ಈ ಪ್ರಕಾಶತೆಯ ಮಟ್ಟದಲ್ಲಿ " --"ಬಣ್ಣ " -+"ಪ್ರದರ್ಶಕವನ್ನು ನಿಮಗೆ ಸಾಮಾನ್ಯವೆನಿಸುವ ಪ್ರಕಾಶತೆಗೆ ಹೊಂದಿಸಿ. ಈ ಪ್ರಕಾಶತೆಯ ಮಟ್ಟದಲ್ಲಿ ಬಣ್ಣ " - "ವ್ಯವಸ್ಥಾಪನೆಯು ಅತ್ಯಂತ ನಿಖರವಾಗಿರುತ್ತದೆ." - - #: ../panels/color/color.ui.h:16 -@@ -623,8 +613,7 @@ msgid "" - "You can use a color profile on different computers, or even create profiles " - "for different lighting conditions." - msgstr "" --"ನೀವು ಬಣ್ಣದ ಪ್ರೊಫೈಲ್ ಅನ್ನು ಬೇರೊಂದು ಗಣಕದಲ್ಲಿ, ಅಥವ ವಿವಿಧ ಬೆಳಕಿನ ಸ್ಥಿತಿಗಳಿಗಾಗಿನ " --"ಪ್ರೊಫೈಲ್ " -+"ನೀವು ಬಣ್ಣದ ಪ್ರೊಫೈಲ್ ಅನ್ನು ಬೇರೊಂದು ಗಣಕದಲ್ಲಿ, ಅಥವ ವಿವಿಧ ಬೆಳಕಿನ ಸ್ಥಿತಿಗಳಿಗಾಗಿನ ಪ್ರೊಫೈಲ್ " - "ಅನ್ನು ರಚಿಸಲು ಬಳಸಬಹುದು." - - #: ../panels/color/color.ui.h:19 -@@ -662,8 +651,7 @@ msgid "" - "\">Microsoft Windows systems useful." - msgstr "" - "GNU/Linux, Apple OS X and Microsoft Windows ವ್ಯವಸ್ಥೆಗಳಲ್ಲಿ ಪ್ರೊಫೈಲ್ ಅನ್ನು ಹೇಗೆ ಬಳಸುವುದು " --"ಎಂದು " -+"\"windows\">Microsoft Windows ವ್ಯವಸ್ಥೆಗಳಲ್ಲಿ ಪ್ರೊಫೈಲ್ ಅನ್ನು ಹೇಗೆ ಬಳಸುವುದು ಎಂದು " - "ತಿಳಿಯಲು ಈ ವಿವರಗಳು ಉಪಯುಕ್ತವೆನಿಸುತ್ತದೆ." - - #: ../panels/color/color.ui.h:27 -@@ -689,15 +677,13 @@ msgid "" - "Problems detected. The profile may not work correctly. Show " - "details." - msgstr "" --"ತೊಂದರೆಯು ಕಂಡುಬಂದಿದೆ. ಪ್ರೊಫೈಲ್ ಸರಿಯಾಗಿ ಕೆಲಸ ಮಾಡುವುದಿಲ್ಲ. " --"ವಿವರಗಳನ್ನು " -+"ತೊಂದರೆಯು ಕಂಡುಬಂದಿದೆ. ಪ್ರೊಫೈಲ್ ಸರಿಯಾಗಿ ಕೆಲಸ ಮಾಡುವುದಿಲ್ಲ. ವಿವರಗಳನ್ನು " - "ತೋರಿಸು." - - #: ../panels/color/color.ui.h:32 - msgid "Each device needs an up to date color profile to be color managed." - msgstr "" --"ಪ್ರತಿಯೊಂದು ಸಾಧನದಲ್ಲಿ ಬಣ್ಣವನ್ನು ನಿರ್ವಹಿಸಲು ಅದಕ್ಕೆ ಇತ್ತೀಚಿನ (ಅಪ್‌ ಟು ಡೇಟ್) ಬಣ್ಣ " --"ಪ್ರೊಫೈಲಿನ " -+"ಪ್ರತಿಯೊಂದು ಸಾಧನದಲ್ಲಿ ಬಣ್ಣವನ್ನು ನಿರ್ವಹಿಸಲು ಅದಕ್ಕೆ ಇತ್ತೀಚಿನ (ಅಪ್‌ ಟು ಡೇಟ್) ಬಣ್ಣ ಪ್ರೊಫೈಲಿನ " - "ಅಗತ್ಯವಿರುತ್ತದೆ." - - #: ../panels/color/color.ui.h:33 -@@ -840,9 +826,7 @@ msgstr "ಬಣ್ಣ" - #: ../panels/color/gnome-color-panel.desktop.in.in.h:2 - msgid "" - "Calibrate the color of your devices, such as displays, cameras or printers" --msgstr "" --"ನಿಮ್ಮ ಸಾಧನಗಳು, ಪ್ರದರ್ಶಕಗಳು, ಕ್ಯಾಮೆರಾಗಳು ಅಥವ ಮುದ್ರಕಗಳ ಬಣ್ನವನ್ನು ಕ್ಯಾಲಿಬ್ರೇಟ್ " --"ಮಾಡು" -+msgstr "ನಿಮ್ಮ ಸಾಧನಗಳು, ಪ್ರದರ್ಶಕಗಳು, ಕ್ಯಾಮೆರಾಗಳು ಅಥವ ಮುದ್ರಕಗಳ ಬಣ್ನವನ್ನು ಕ್ಯಾಲಿಬ್ರೇಟ್ ಮಾಡು" - - #. Translators: those are keywords for the color control-center panel - #: ../panels/color/gnome-color-panel.desktop.in.in.h:4 -@@ -1146,8 +1130,7 @@ msgstr "ಎರಡನೆಯ ಪ್ರದ? - - #: ../panels/display/cc-display-panel.c:2153 - msgid "Join this display with another to create an extra workspace" --msgstr "" --"ಒಂದು ಹೆಚ್ಚುವರಿ ಕಾರ್ಯಸ್ಥಳವನ್ನು ರಚಿಸಲು ಈ ಪ್ರದರ್ಶಕವನ್ನು ಇನ್ನೊಂದಕ್ಕೆ ಜೋಡಿಸು" -+msgstr "ಒಂದು ಹೆಚ್ಚುವರಿ ಕಾರ್ಯಸ್ಥಳವನ್ನು ರಚಿಸಲು ಈ ಪ್ರದರ್ಶಕವನ್ನು ಇನ್ನೊಂದಕ್ಕೆ ಜೋಡಿಸು" - - #: ../panels/display/cc-display-panel.c:2160 - msgid "Presentation" -@@ -1189,8 +1172,7 @@ msgstr "ಪ್ರದರ್ಶಕಗಳ?? - #: ../panels/display/gnome-display-panel.desktop.in.in.h:2 - msgid "Choose how to use connected monitors and projectors" - msgstr "" --"ಸಂಪರ್ಕಿತಗೊಳಿಸಲಾದ ಮಾನಿಟರುಗಳ ಹಾಗು ಪ್ರೊಜೆಕ್ಟರುಗಳನ್ನು ಹೇಗೆ ಬಳಸಬೇಕು ಎನ್ನುವುದನ್ನು " --"ಆರಿಸಿ" -+"ಸಂಪರ್ಕಿತಗೊಳಿಸಲಾದ ಮಾನಿಟರುಗಳ ಹಾಗು ಪ್ರೊಜೆಕ್ಟರುಗಳನ್ನು ಹೇಗೆ ಬಳಸಬೇಕು ಎನ್ನುವುದನ್ನು ಆರಿಸಿ" - - #. Translators: those are keywords for the display control-center panel - #: ../panels/display/gnome-display-panel.desktop.in.in.h:4 -@@ -1343,8 +1325,7 @@ msgid "" - "device;system;information;memory;processor;version;default;application;" - "preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" - msgstr "" --"ಸಾಧನ;ವ್ಯವಸ್ಥೆ;ಮಾಹಿತಿ;ಮೆಮೊರಿ;ಸಂಸ್ಕಾರಕ;ಆವೃತ್ತಿ;ಪೂರ್ವನಿಯೋಜಿತ;ಅನ್ವಯ;ಇಚ್ಛೆಯ;cd;dvd;" --"usb;" -+"ಸಾಧನ;ವ್ಯವಸ್ಥೆ;ಮಾಹಿತಿ;ಮೆಮೊರಿ;ಸಂಸ್ಕಾರಕ;ಆವೃತ್ತಿ;ಪೂರ್ವನಿಯೋಜಿತ;ಅನ್ವಯ;ಇಚ್ಛೆಯ;cd;dvd;usb;" - "ಆಡಿಯೊ;ವೀಡಿಯೊ;ಡಿಸ್ಕ್‍;ತೆಗೆಯಬಹುದಾದ;ಮಾಧ್ಯಮ;ಸ್ವಯಂಚಾಲನೆ;" - - #: ../panels/info/info.ui.h:1 -@@ -1662,8 +1643,7 @@ msgstr "ಕೀಲಿಮಣೆ" - #: ../panels/keyboard/gnome-keyboard-panel.desktop.in.in.h:2 - msgid "View and change keyboard shortcuts and set your typing preferences" - msgstr "" --"ಕೀಲಿಮಣೆ ಸುಲಭಆಯ್ಕೆಗಳನ್ನು ನೋಡು ಹಾಗೂ ಬದಲಾಯಿಸು ಮತ್ತು ನಿಮ್ಮ ಟೈಪಿಂಗ್ ಆದ್ಯತೆಗಳನ್ನು " --"ಹೊಂದಿಸು" -+"ಕೀಲಿಮಣೆ ಸುಲಭಆಯ್ಕೆಗಳನ್ನು ನೋಡು ಹಾಗೂ ಬದಲಾಯಿಸು ಮತ್ತು ನಿಮ್ಮ ಟೈಪಿಂಗ್ ಆದ್ಯತೆಗಳನ್ನು ಹೊಂದಿಸು" - - #. Translators: those are keywords for the keyboard control-center panel - #: ../panels/keyboard/gnome-keyboard-panel.desktop.in.in.h:4 -@@ -1779,8 +1759,7 @@ msgid "" - "using this key.\n" - "Please try with a key such as Control, Alt or Shift at the same time." - msgstr "" --"ಶಾರ್ಟ್-ಕಟ್ \"%s\" ಅನ್ನು ಬಳಸಲಾಗುವುದಿಲ್ಲ ಏಕೆಂದರೆ ಈ ಕೀಲಿಯನ್ನು ಬಳಸಿಕೊಂಡು ಇದನ್ನು " --"ಟೈಪ್ " -+"ಶಾರ್ಟ್-ಕಟ್ \"%s\" ಅನ್ನು ಬಳಸಲಾಗುವುದಿಲ್ಲ ಏಕೆಂದರೆ ಈ ಕೀಲಿಯನ್ನು ಬಳಸಿಕೊಂಡು ಇದನ್ನು ಟೈಪ್ " - "ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ.\n" - "ದಯವಿಟ್ಟು ಒಂದೆ ಸಮಯದಲ್ಲಿ Control, Alt ಅಥವ Shift ನಂತಹ ಕೀಲಿಯನ್ನು ಬಳಸಲು ಪ್ರಯತ್ನಿಸಿ." - -@@ -1797,9 +1776,7 @@ msgstr "" - #, c-format - msgid "" - "If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be disabled." --msgstr "" --"ಶಾರ್ಟ್-ಕಟ್‌ ಅನ್ನು \"%s\" ಗೆ ನಿಯೋಜಿಸಿದಲ್ಲಿ, \"%s\" ಶಾರ್ಟ್-ಕಟ್‌ " --"ಅಶಕ್ತಗೊಳ್ಳುತ್ತದೆ." -+msgstr "ಶಾರ್ಟ್-ಕಟ್‌ ಅನ್ನು \"%s\" ಗೆ ನಿಯೋಜಿಸಿದಲ್ಲಿ, \"%s\" ಶಾರ್ಟ್-ಕಟ್‌ ಅಶಕ್ತಗೊಳ್ಳುತ್ತದೆ." - - #: ../panels/keyboard/keyboard-shortcuts.c:1398 - msgid "_Reassign" -@@ -1811,8 +1788,7 @@ msgid "" - "The \"%s\" shortcut has an associated \"%s\" shortcut. Do you want to " - "automatically set it to \"%s\"?" - msgstr "" --"\"%s\" ಸಮೀಪಮಾರ್ಗವು ಒಂದು ಸಂಬಂಧಿಸಿದ \"%s\" ಸಮೀಪಮಾರ್ಗವನ್ನು ಹೊಂದಿದೆ. ನೀವು ಇದನ್ನು " --"\"%s" -+"\"%s\" ಸಮೀಪಮಾರ್ಗವು ಒಂದು ಸಂಬಂಧಿಸಿದ \"%s\" ಸಮೀಪಮಾರ್ಗವನ್ನು ಹೊಂದಿದೆ. ನೀವು ಇದನ್ನು \"%s" - "\" ಗೆ ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಹೊಂದಿಸಲು ಬಯಸುವಿರಾ?" - - #: ../panels/keyboard/keyboard-shortcuts.c:1449 -@@ -1821,8 +1797,7 @@ msgid "" - "\"%s\" is currently associated with \"%s\", this shortcut will be disabled " - "if you move forward." - msgstr "" --"\"%s\" ಎನ್ನುವುದು ಪ್ರಸಕ್ತ \"%s\" ಎನ್ನುವುದಕ್ಕೆ ಸಂಬಂಧಿಸಿದೆ, ನೀವು ಮುಂದಕ್ಕೆ " --"ಹೋದಲ್ಲಿ ಈ " -+"\"%s\" ಎನ್ನುವುದು ಪ್ರಸಕ್ತ \"%s\" ಎನ್ನುವುದಕ್ಕೆ ಸಂಬಂಧಿಸಿದೆ, ನೀವು ಮುಂದಕ್ಕೆ ಹೋದಲ್ಲಿ ಈ " - "ಸಮೀಪಮಾರ್ಗವನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗುತ್ತದೆ." - - #: ../panels/keyboard/keyboard-shortcuts.c:1456 -@@ -1845,8 +1820,7 @@ msgstr "ಮೌಸ್‌ ಹಾಗು ಟ - msgid "" - "Change your mouse or touchpad sensitivity and select right or left-handed" - msgstr "" --"ನಿಮ್ಮ ಮೌಸ್‌ ಅಥವ ಟಚ್‌ಪ್ಯಾಡ್ ಸಂವೇದಶೀಲನೆ ಅನ್ನು ಬದಲಾಯಿಸಿ ಮತ್ತು ಬಲ ಅಥವ ಎಡ-ಕೈ " --"ಅನ್ನು ಆಯ್ಕೆ ಮಾಡಿ" -+"ನಿಮ್ಮ ಮೌಸ್‌ ಅಥವ ಟಚ್‌ಪ್ಯಾಡ್ ಸಂವೇದಶೀಲನೆ ಅನ್ನು ಬದಲಾಯಿಸಿ ಮತ್ತು ಬಲ ಅಥವ ಎಡ-ಕೈ ಅನ್ನು ಆಯ್ಕೆ ಮಾಡಿ" - - #. Translators: those are keywords for the mouse and touchpad control-center panel - #: ../panels/mouse/gnome-mouse-panel.desktop.in.in.h:4 -@@ -2529,8 +2503,7 @@ msgid "" - "\n" - "Error: %s." - msgstr "" --"'%s' ಕಡತವನ್ನು ಓದಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ ಅಥವ ಗುರುತಿಸಲಾದ VPN ಸಂಪರ್ಕ ಮಾಹಿತಿಯನ್ನು " --"ಹೊಂದಿಲ್ಲ\n" -+"'%s' ಕಡತವನ್ನು ಓದಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ ಅಥವ ಗುರುತಿಸಲಾದ VPN ಸಂಪರ್ಕ ಮಾಹಿತಿಯನ್ನು ಹೊಂದಿಲ್ಲ\n" - "\n" - "ದೋಷ: %s." - -@@ -2616,8 +2589,7 @@ msgid "" - "Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;" - "vlan;bridge;bond;DNS;" - msgstr "" --"ಜಾಲಬಂಧ;ವೈರ್ಲೆಸ್;ವೈ-ಫೈ;ವೈಫೈ;IP;LAN;ಪ್ರಾಕ್ಸಿ;WAN;ಬ್ರಾಡ್‌ಬ್ಯಾಂಡ್;ಮಾಡೆಮ್;ಬ್ಲೂಟೂತ್;" --"vpn;vlan;" -+"ಜಾಲಬಂಧ;ವೈರ್ಲೆಸ್;ವೈ-ಫೈ;ವೈಫೈ;IP;LAN;ಪ್ರಾಕ್ಸಿ;WAN;ಬ್ರಾಡ್‌ಬ್ಯಾಂಡ್;ಮಾಡೆಮ್;ಬ್ಲೂಟೂತ್;vpn;vlan;" - "ಬ್ರಿಜ್;ಬಾಂಡ್;DNS;" - - #: ../panels/network/net-device-bond.c:77 -@@ -2699,30 +2671,26 @@ msgid "" - "If you have a connection to the Internet other than wireless, you can set up " - "a wireless hotspot to share the connection with others." - msgstr "" --"ನೀವು ವೈರ್ಲೆಸ್ ಅನ್ನು ಹೊರತುಪಡಿಸಿ ಬೇರೇ ರೀತಿಯ ಅಂತರಜಾಲ ಸಂಪರ್ಕವನ್ನು ಹೊಂದಿದ್ದಲ್ಲಿ, " --"ನಿಮ್ಮ " -+"ನೀವು ವೈರ್ಲೆಸ್ ಅನ್ನು ಹೊರತುಪಡಿಸಿ ಬೇರೇ ರೀತಿಯ ಅಂತರಜಾಲ ಸಂಪರ್ಕವನ್ನು ಹೊಂದಿದ್ದಲ್ಲಿ, ನಿಮ್ಮ " - "ಅಂತರಜಾಲ ಸಂಪರ್ಕವನ್ನು ಇತರರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಲು ನೀವು ಒಂದು ವೈರ್ಲೆಸ್ ಬಹುದಾಗಿರುತ್ತದೆ." - - #: ../panels/network/net-device-wifi.c:1158 - #, c-format - msgid "Switching on the wireless hotspot will disconnect you from %s." - msgstr "" --"ವೈರ್ಲೆಸ್ ಹಾಟ್‌ಸ್ಪಾಟ್‌ಗೆ ಬದಲಾಯಿಸಿದಲ್ಲಿ %s ದೊಂದಿಗಿನ ನಿಮ್ಮ ಸಂಪರ್ಕವು " --"ಕಡಿದುಹೋಗುತ್ತದೆ." -+"ವೈರ್ಲೆಸ್ ಹಾಟ್‌ಸ್ಪಾಟ್‌ಗೆ ಬದಲಾಯಿಸಿದಲ್ಲಿ %s ದೊಂದಿಗಿನ ನಿಮ್ಮ ಸಂಪರ್ಕವು ಕಡಿದುಹೋಗುತ್ತದೆ." - - #: ../panels/network/net-device-wifi.c:1162 - msgid "" - "It is not possible to access the Internet through your wireless while the " - "hotspot is active." - msgstr "" --"ಹಾಟ್‌ಸ್ಪಾಟ್ ಸಕ್ರಿಯವಾಗಿದ್ದಾಗ ನಿಮ್ಮ ವೈರ್ಲೆಸ್‌ ಮುಖಾಂತರ ಅಂತರಜಾಲದೊಂದಿಗೆ ಸಂಪರ್ಕ " --"ಜೋಡಿಸುವುದು " -+"ಹಾಟ್‌ಸ್ಪಾಟ್ ಸಕ್ರಿಯವಾಗಿದ್ದಾಗ ನಿಮ್ಮ ವೈರ್ಲೆಸ್‌ ಮುಖಾಂತರ ಅಂತರಜಾಲದೊಂದಿಗೆ ಸಂಪರ್ಕ ಜೋಡಿಸುವುದು " - "ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ." - - #: ../panels/network/net-device-wifi.c:1245 - msgid "Stop hotspot and disconnect any users?" --msgstr "" --"ಹಾಟ್‌ಸ್ಪಾಟ್‌ ಅನ್ನು ನಿಲ್ಲಿಸಲು ಮತ್ತು ಅದರ ಯಾವುದೆ ಬಳಕೆದಾರರನ್ನು ಸಂಪರ್ಕ ತಪ್ಪಿಸಬೇಕೆ?" -+msgstr "ಹಾಟ್‌ಸ್ಪಾಟ್‌ ಅನ್ನು ನಿಲ್ಲಿಸಲು ಮತ್ತು ಅದರ ಯಾವುದೆ ಬಳಕೆದಾರರನ್ನು ಸಂಪರ್ಕ ತಪ್ಪಿಸಬೇಕೆ?" - - #: ../panels/network/net-device-wifi.c:1248 - msgid "_Stop Hotspot" -@@ -2766,8 +2734,7 @@ msgstr "ಮರೆತುಬಿಡು (_F) - #: ../panels/network/net-proxy.c:67 - msgid "" - "Web Proxy Autodiscovery is used when a Configuration URL is not provided." --msgstr "" --"ಸಂರಚನಾ URL ಅನ್ನು ಒದಗಿಸದೇ ಇದ್ದಲ್ಲಿ ವೆಬ್ ಪ್ರಾಕ್ಸಿ ಆಟೋಡಿಸ್ಕವರಿಯನ್ನು ಬಳಸಲಾಗುತ್ತದೆ." -+msgstr "ಸಂರಚನಾ URL ಅನ್ನು ಒದಗಿಸದೇ ಇದ್ದಲ್ಲಿ ವೆಬ್ ಪ್ರಾಕ್ಸಿ ಆಟೋಡಿಸ್ಕವರಿಯನ್ನು ಬಳಸಲಾಗುತ್ತದೆ." - - #. TRANSLATORS: WPAD is bad: if you enable it on an untrusted - #. * network, then anyone else on that network can tell your -@@ -2956,8 +2923,7 @@ msgid "" - "Reset the settings for this connection to their defaults, but remember as a " - "preferred connection." - msgstr "" --"ಈ ಸಂಪರ್ಕಕ್ಕಾಗಿನ ಸಿದ್ಧತೆಗಳನ್ನು ಅವುಗಳ ಪೂರ್ವನಿಯೋಜಿತಕ್ಕೆ ಮರುಹೊಂದಿಸು, ಆದರೆ ಆದ್ಯತೆಯ " --"ಸಂಪರ್ಕ " -+"ಈ ಸಂಪರ್ಕಕ್ಕಾಗಿನ ಸಿದ್ಧತೆಗಳನ್ನು ಅವುಗಳ ಪೂರ್ವನಿಯೋಜಿತಕ್ಕೆ ಮರುಹೊಂದಿಸು, ಆದರೆ ಆದ್ಯತೆಯ ಸಂಪರ್ಕ " - "ಎಂದು ನೆನಪಿಡು." - - #: ../panels/network/network-wifi.ui.h:44 -@@ -2965,8 +2931,7 @@ msgid "" - "Remove all details relating to this network and do not try to automatically " - "connect to it." - msgstr "" --"ಈ ಜಾಲಬಂಧಕ್ಕೆ ಸಂಬಂಧಿಸಿದ ಎಲ್ಲಾ ವಿವರಗಳನ್ನು ತೆಗೆದುಹಾಕು ಮತ್ತು ಸ್ವಯಂಚಾಲಿತವಾಗಿ " --"ಸಂಪರ್ಕ " -+"ಈ ಜಾಲಬಂಧಕ್ಕೆ ಸಂಬಂಧಿಸಿದ ಎಲ್ಲಾ ವಿವರಗಳನ್ನು ತೆಗೆದುಹಾಕು ಮತ್ತು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಸಂಪರ್ಕ " - "ಸಾಧಿಸಲು ಪ್ರಯತ್ನಿಸಬೇಡ." - - #: ../panels/network/network-wifi.ui.h:45 -@@ -3321,10 +3286,8 @@ msgid "" - "to insecure, rogue Wi-Fi networks. Would you like to choose a Certificate " - "Authority certificate?" - msgstr "" --"ಸರ್ಟಿಫಿಕೇಟ್ ಅತಾರಿಟಿ (CA) ಪ್ರಮಾಣಪತ್ರವನ್ನು ಬಳಸದೆ ಇದ್ದಲ್ಲಿ ಸಂಪರ್ಕಗಳು ಅಸುರಕ್ಷಿತ, " --"ದುಷ್ಟ Wi-" --"Fi ಜಾಲಬಂಧಗಳಾಗಲು ಕಾರಣವಾಗಬಹುದು. ನೀವು ಸರ್ಟಿಫಿಕೇಟ್ ಅತಾರಿಟಿ ಪ್ರಮಾಣಪತ್ರವನ್ನು ಆಯ್ಕೆ " --"ಮಾಡಲು " -+"ಸರ್ಟಿಫಿಕೇಟ್ ಅತಾರಿಟಿ (CA) ಪ್ರಮಾಣಪತ್ರವನ್ನು ಬಳಸದೆ ಇದ್ದಲ್ಲಿ ಸಂಪರ್ಕಗಳು ಅಸುರಕ್ಷಿತ, ದುಷ್ಟ Wi-" -+"Fi ಜಾಲಬಂಧಗಳಾಗಲು ಕಾರಣವಾಗಬಹುದು. ನೀವು ಸರ್ಟಿಫಿಕೇಟ್ ಅತಾರಿಟಿ ಪ್ರಮಾಣಪತ್ರವನ್ನು ಆಯ್ಕೆ ಮಾಡಲು " - "ಬಯಸುವಿರಾ?" - - #: ../panels/network/wireless-security/eap-method.c:281 -@@ -3457,8 +3420,7 @@ msgid "" - "\n" - "(You can password-protect your private key with openssl)" - msgstr "" --"ಆಯ್ಕೆ ಮಾಡಲಾದ ಖಾಸಗಿ ಕೀಲಿಯು ಒಂದು ಗುಪ್ತಪದದಿಂದ ಸಂರಕ್ಷಿತಗೊಂಡಿರುವಂತೆ ಕಾಣಿಸುತ್ತಿಲ್ಲ. " --" " -+"ಆಯ್ಕೆ ಮಾಡಲಾದ ಖಾಸಗಿ ಕೀಲಿಯು ಒಂದು ಗುಪ್ತಪದದಿಂದ ಸಂರಕ್ಷಿತಗೊಂಡಿರುವಂತೆ ಕಾಣಿಸುತ್ತಿಲ್ಲ. " - "ಇದರಿಂದಾಗಿ ನಿಮ್ಮ ಸುರಕ್ಷತಾ ರುಜುವಾತನ್ನು ರಾಜಿ ಮಾಡಿಕೊಂಡಂತಾಗುತ್ತದೆ. ದಯವಿಟ್ಟು ಒಂದು " - "ಗುಪ್ತಪದದಿಂದ ಸಂರಿಕ್ಷಿತಗೊಂಡಂತಹ ಖಾಸಗಿ ಕೀಲಿಯನ್ನು ಒದಗಿಸಿ.\n" - "\n" -@@ -3624,8 +3586,7 @@ msgstr "ಸೂಚನೆಗಳು" - #: ../panels/notifications/gnome-notifications-panel.desktop.in.in.h:2 - msgid "Control which notifications are displayed and what they show" - msgstr "" --"ಯಾವ ಸೂಚನೆಗಳನ್ನು ತೋರಿಸಬೇಕು ಮತ್ತು ಅವು ಏನನ್ನು ತೋರಿಸಬೇಕು ಎನ್ನುವುದನ್ನು " --"ನಿಯಂತ್ರಿಸುತ್ತದೆ" -+"ಯಾವ ಸೂಚನೆಗಳನ್ನು ತೋರಿಸಬೇಕು ಮತ್ತು ಅವು ಏನನ್ನು ತೋರಿಸಬೇಕು ಎನ್ನುವುದನ್ನು ನಿಯಂತ್ರಿಸುತ್ತದೆ" - - #. Translators: those are keywords for the notifications control-center panel - #: ../panels/notifications/gnome-notifications-panel.desktop.in.in.h:4 -@@ -3710,8 +3671,7 @@ msgstr "ಅಂತರಜಾಲದಲ್?? - #: ../panels/online-accounts/gnome-online-accounts-panel.desktop.in.in.h:2 - msgid "Connect to your online accounts and decide what to use them for" - msgstr "" --"ನಿಮ್ಮ ಆನ್‌ಲೈನ್ ಖಾತೆಗಳೊಂದಿಗೆ ಸಂಪರ್ಕ ಜೋಡಿಸಿ ಮತ್ತು ಅವುಗಳನ್ನು ಯಾವ ಕೆಲಸಕ್ಕೆ " --"ಬಳಸಬೇಕು " -+"ನಿಮ್ಮ ಆನ್‌ಲೈನ್ ಖಾತೆಗಳೊಂದಿಗೆ ಸಂಪರ್ಕ ಜೋಡಿಸಿ ಮತ್ತು ಅವುಗಳನ್ನು ಯಾವ ಕೆಲಸಕ್ಕೆ ಬಳಸಬೇಕು " - "ಎನ್ನುವುದನ್ನು ನಿರ್ಧರಿಸಿ" - - #. For ReadItLater and Pocket, see http://en.wikipedia.org/wiki/Pocket_(application) -@@ -3993,16 +3953,14 @@ msgstr "ವಿದ್ಯುಚ್ಛಕ?? - - #: ../panels/power/gnome-power-panel.desktop.in.in.h:2 - msgid "View your battery status and change power saving settings" --msgstr "" --"ಬ್ಯಾಟರಿ ಸ್ಥಿತಿಯನ್ನು ನೋಡು ಮತ್ತು ವಿದ್ಯುಚ್ಛಕ್ತಿ ಉಳಿಸುವ ಸಿದ್ಧತೆಗಳನ್ನು ಬದಲಾಯಿಸು" -+msgstr "ಬ್ಯಾಟರಿ ಸ್ಥಿತಿಯನ್ನು ನೋಡು ಮತ್ತು ವಿದ್ಯುಚ್ಛಕ್ತಿ ಉಳಿಸುವ ಸಿದ್ಧತೆಗಳನ್ನು ಬದಲಾಯಿಸು" - - #. Translators: those are keywords for the power control-center panel - #: ../panels/power/gnome-power-panel.desktop.in.in.h:4 - msgid "" - "Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;" - msgstr "" --"ವಿದ್ಯುಚ್ಛಕ್ತಿ;ನಿದ್ರಿಸು;ಅಮಾನತು;ಹೈಬರ್ನೇಟ್;ಬ್ಯಾಟರಿ;ಪ್ರಕಾಶತೆ;ಮಂದ;ಖಾಲಿ;ತೆರೆ;DPMS;ಜಡ" --";" -+"ವಿದ್ಯುಚ್ಛಕ್ತಿ;ನಿದ್ರಿಸು;ಅಮಾನತು;ಹೈಬರ್ನೇಟ್;ಬ್ಯಾಟರಿ;ಪ್ರಕಾಶತೆ;ಮಂದ;ಖಾಲಿ;ತೆರೆ;DPMS;ಜಡ;" - - #: ../panels/power/power.ui.h:1 - msgid "Hibernate" -@@ -4256,8 +4214,7 @@ msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" --"PostScript ಪ್ರಿಂಟರ್ ಡಿಸ್ಕ್ರಿಪ್ಶನ್ ಕಡತಗಳು (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, " --"*.PPD." -+"PostScript ಪ್ರಿಂಟರ್ ಡಿಸ್ಕ್ರಿಪ್ಶನ್ ಕಡತಗಳು (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD." - "GZ)" - - #: ../panels/printers/cc-printers-panel.c:2258 -@@ -4295,8 +4252,7 @@ msgstr "ಮುದ್ರಕಗಳು" - #: ../panels/printers/gnome-printers-panel.desktop.in.in.h:2 - msgid "Add printers, view printer jobs and decide how you want to print" - msgstr "" --"ಮುದ್ರಕಗಳನ್ನು ಸೇರಿಸಿ, ಮುದ್ರಣ ಕಾರ್ಯಗಳನ್ನು ನೋಡಿ ಮತ್ತು ನೀವು ಹೇಗೆ ಮುದ್ರಿಸಲು " --"ಬಯಸುವಿರಿ " -+"ಮುದ್ರಕಗಳನ್ನು ಸೇರಿಸಿ, ಮುದ್ರಣ ಕಾರ್ಯಗಳನ್ನು ನೋಡಿ ಮತ್ತು ನೀವು ಹೇಗೆ ಮುದ್ರಿಸಲು ಬಯಸುವಿರಿ " - "ಎನ್ನುವುದನ್ನು ನಿರ್ಧರಿಸಿ" - - #. Translators: those are keywords for the printing control-center panel -@@ -4343,8 +4299,7 @@ msgstr "ಯಾವುದೆ ಮುದ್? - #. Translators: The entered text should contain network address of a printer or a text which will filter found devices (their names and locations) - #: ../panels/printers/new-printer-dialog.ui.h:9 - msgid "Enter address of a printer or a text to filter results" --msgstr "" --"ಫಲಿತಾಂಶಗಳನ್ನು ಫಿಲ್ಟರ್‌ ಮಾಡಲು ಒಂದು ಮುದ್ರಕದ ವಿಳಾಸ ಅಥವ ಒಂದು ಪಠ್ಯವನ್ನು ನಮೂದಿಸಿ" -+msgstr "ಫಲಿತಾಂಶಗಳನ್ನು ಫಿಲ್ಟರ್‌ ಮಾಡಲು ಒಂದು ಮುದ್ರಕದ ವಿಳಾಸ ಅಥವ ಒಂದು ಪಠ್ಯವನ್ನು ನಮೂದಿಸಿ" - - #: ../panels/printers/options-dialog.ui.h:1 - msgid "Loading options…" -@@ -4634,8 +4589,7 @@ msgstr "ಚಾಲಕ" - #, c-format - msgid "Enter your username and password to view printers available on %s." - msgstr "" --"%s ನಲ್ಲಿ ಲಭ್ಯವಿರುವ ಮುದ್ರಕಗಳನ್ನು ನೋಡಲು ನಿಮ್ಮ ಬಳಕೆದಾರಹೆಸರು ಹಾಗು ಗುಪ್ತಪದವನ್ನು " --"ನಮೂದಿಸಿ." -+"%s ನಲ್ಲಿ ಲಭ್ಯವಿರುವ ಮುದ್ರಕಗಳನ್ನು ನೋಡಲು ನಿಮ್ಮ ಬಳಕೆದಾರಹೆಸರು ಹಾಗು ಗುಪ್ತಪದವನ್ನು ನಮೂದಿಸಿ." - - #: ../panels/printers/printers.ui.h:1 - msgid "Add Printer" -@@ -4756,8 +4710,7 @@ msgstr "ಗೌಪ್ಯತೆ" - #: ../panels/privacy/gnome-privacy-panel.desktop.in.in.h:2 - msgid "Protect your personal information and control what others might see" - msgstr "" --"ನಿಮ್ಮ ವೈಯಕ್ತಿಕ ಮಾಹಿತಿಗಳನ್ನು ಸಂರಕ್ಷಿಸಿ ಮತ್ತು ಬೇರೆಯವರು ಏನನ್ನು ನೋಡುತ್ತಾರೆ " --"ಎನ್ನುವುದನ್ನು " -+"ನಿಮ್ಮ ವೈಯಕ್ತಿಕ ಮಾಹಿತಿಗಳನ್ನು ಸಂರಕ್ಷಿಸಿ ಮತ್ತು ಬೇರೆಯವರು ಏನನ್ನು ನೋಡುತ್ತಾರೆ ಎನ್ನುವುದನ್ನು " - "ನಿಯಂತ್ರಿಸಿ" - - #. Translators: those are keywords for the privacy control-center panel -@@ -4766,8 +4719,7 @@ msgid "" - "screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;" - "network;identity;" - msgstr "" --"ತೆರೆ;ಲಾಕ್;ದೋಷಪತ್ತೆ;ಕುಸಿತ;ಖಾಸಗಿ;ಇತ್ತೀಚಿನ;ತಾತ್ಕಾಲಿಕ;tmp;ಸೂಚಿ;ಹೆಸರು;ಜಾಲಬಂಧ;ಗುರುತು" --";" -+"ತೆರೆ;ಲಾಕ್;ದೋಷಪತ್ತೆ;ಕುಸಿತ;ಖಾಸಗಿ;ಇತ್ತೀಚಿನ;ತಾತ್ಕಾಲಿಕ;tmp;ಸೂಚಿ;ಹೆಸರು;ಜಾಲಬಂಧ;ಗುರುತು;" - - #: ../panels/privacy/privacy.ui.h:1 - msgid "Screen Turns Off" -@@ -4822,8 +4774,7 @@ msgid "" - "Remembering your history makes things easier to find again. These items are " - "never shared over the network." - msgstr "" --"ನಿಮ್ಮ ವ್ಯವಸ್ಥೆಯ ಇತಿಹಾಸವನ್ನು ನೆನಪಿಟ್ಟುಕೊಳ್ಳುವುದರಿಂದ ಅಗತ್ಯವಾದ ವಸ್ತುಗಳನ್ನು ಮತ್ತೆ " --"ಹುಡುಕಲು " -+"ನಿಮ್ಮ ವ್ಯವಸ್ಥೆಯ ಇತಿಹಾಸವನ್ನು ನೆನಪಿಟ್ಟುಕೊಳ್ಳುವುದರಿಂದ ಅಗತ್ಯವಾದ ವಸ್ತುಗಳನ್ನು ಮತ್ತೆ ಹುಡುಕಲು " - "ಸುಲಭವಾಗಿರುತ್ತದೆ. ಈ ಅಂಶಗಳನ್ನು ಎಂದಿಗೂ ಸಹ ಜಾಲಬಂಧದ ಮುಖಾಂತರ ಹಂಚಿಕೊಳ್ಳಲಾಗುವುದಿಲ್ಲ." - - #: ../panels/privacy/privacy.ui.h:21 -@@ -4840,8 +4791,7 @@ msgstr "ಇತ್ತೀಚಿನ ಇತ? - - #: ../panels/privacy/privacy.ui.h:25 - msgid "The Screen Lock protects your privacy when you are away." --msgstr "" --"ತೆರೆಯನ್ನು ಲಾಕ್‌ ಮಾಡುವಿಕೆಯು ನೀವು ಆದೆ ಹೋದಾಗ ನಿಮ್ಮ ಗೌಪ್ಯತೆಯನ್ನು ಕಾಪಾಡುತ್ತದೆ." -+msgstr "ತೆರೆಯನ್ನು ಲಾಕ್‌ ಮಾಡುವಿಕೆಯು ನೀವು ಆದೆ ಹೋದಾಗ ನಿಮ್ಮ ಗೌಪ್ಯತೆಯನ್ನು ಕಾಪಾಡುತ್ತದೆ." - - #: ../panels/privacy/privacy.ui.h:26 - msgid "Automatic Screen _Lock" -@@ -4860,8 +4810,7 @@ msgid "" - "Automatically purge the Trash and temporary files to help keep your computer " - "free of unnecessary sensitive information." - msgstr "" --"ನಿಮ್ಮ ಗಣಕವು ಅನಗತ್ಯವಾದ ಸಂವೇದನಾ ಮಾಹಿತಿಯನ್ನು ಇರಿಸಿಕೊಳ್ಳುವುದನ್ನು ತಪ್ಪಿಸಲು ಕಸ " --"(ಟ್ರ್ಯಾಶ್) " -+"ನಿಮ್ಮ ಗಣಕವು ಅನಗತ್ಯವಾದ ಸಂವೇದನಾ ಮಾಹಿತಿಯನ್ನು ಇರಿಸಿಕೊಳ್ಳುವುದನ್ನು ತಪ್ಪಿಸಲು ಕಸ (ಟ್ರ್ಯಾಶ್) " - "ಮತ್ತು ತಾತ್ಕಾಲಿಕ ಕಡತಗಳನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಹೊರತಳ್ಳಿ." - - #: ../panels/privacy/privacy.ui.h:31 -@@ -4885,13 +4834,11 @@ msgid "" - "All the information we collect is made anonymous, and we will never share " - "your data with third parties." - msgstr "" --"ನೀವು ಯಾವ ತಂತ್ರಾಂಶವನ್ನು ಬಳಸುತ್ತೀರಿ ಎಂಬುದರ ಬಗೆಗಿನ ಮಾಹಿತಿಯನ್ನು ಕಳುಹಿಸುವುದರಿಂದ " --"ನಿಮಗೆ " -+"ನೀವು ಯಾವ ತಂತ್ರಾಂಶವನ್ನು ಬಳಸುತ್ತೀರಿ ಎಂಬುದರ ಬಗೆಗಿನ ಮಾಹಿತಿಯನ್ನು ಕಳುಹಿಸುವುದರಿಂದ ನಿಮಗೆ " - "ಖಚಿತವಾದ ಸಲಹೆಗಳನ್ನು ಒದಗಿಸಲು ನಮಗೆ ಸಹಾಯವಾಗುತ್ತದೆ. ಇದು ನಮ್ಮ ತಂತ್ರಾಂಶವನ್ನೂ ಸಹ " - "ಸುಧಾರಿಸಲು ಸಹಾಯ ಮಾಡುತ್ತದೆ.\n" - "\n" --"ನಾವು ಸಂಗ್ರಹಿಸುವ ಎಲ್ಲಾ ಮಾಹಿತಿಯನ್ನು ಅಜ್ಞಾತವಾಗಿರಿಸಲಾಗುತ್ತದೆ, ಮತ್ತು ನಾವು ಇದನ್ನು " --"ಮೂರನೆಯ " -+"ನಾವು ಸಂಗ್ರಹಿಸುವ ಎಲ್ಲಾ ಮಾಹಿತಿಯನ್ನು ಅಜ್ಞಾತವಾಗಿರಿಸಲಾಗುತ್ತದೆ, ಮತ್ತು ನಾವು ಇದನ್ನು ಮೂರನೆಯ " - "ವ್ಯಕ್ತಿಗಳೊಂದಿಗೆ ಎಂದಿಗೂ ಹಂಚಿಕೊಳ್ಳುವುದಿಲ್ಲ." - - #: ../panels/privacy/privacy.ui.h:40 -@@ -4995,8 +4942,7 @@ msgstr "ಪ್ರದೇಶ ಹಾಗು - msgid "" - "Select your display language, formats, keyboard layouts and input sources" - msgstr "" --"ನಿಮ್ಮ ಪ್ರದರ್ಶನದ ಭಾಷೆ, ವಿನ್ಯಾಸಗಳು, ಕೀಲಿಮಣೆ ವಿನ್ಯಾಸಗಳು ಮತ್ತು ಇನ್‌ಪುಟ್ ಮೂಲಗಳನ್ನು " --"ಆರಿಸಿ" -+"ನಿಮ್ಮ ಪ್ರದರ್ಶನದ ಭಾಷೆ, ವಿನ್ಯಾಸಗಳು, ಕೀಲಿಮಣೆ ವಿನ್ಯಾಸಗಳು ಮತ್ತು ಇನ್‌ಪುಟ್ ಮೂಲಗಳನ್ನು ಆರಿಸಿ" - - #. Translators: those are keywords for the region control-center panel - #: ../panels/region/gnome-region-panel.desktop.in.in.h:4 -@@ -5102,8 +5048,7 @@ msgstr "ಹುಡುಕು" - msgid "" - "Control which applications show search results in the Activities Overview" - msgstr "" --"ಯಾವ ಅನ್ವಯಗಳು ಚಟುವಟಿಕೆಗಳ ಅವಲೋಕನದಲ್ಲಿ ಹುಡುಕು ಫಲಿತಾಂಶವನ್ನು ತೋರಿಸುತ್ತದೆ " --"ಎನ್ನುವುದನ್ನು " -+"ಯಾವ ಅನ್ವಯಗಳು ಚಟುವಟಿಕೆಗಳ ಅವಲೋಕನದಲ್ಲಿ ಹುಡುಕು ಫಲಿತಾಂಶವನ್ನು ತೋರಿಸುತ್ತದೆ ಎನ್ನುವುದನ್ನು " - "ನಿಯಂತ್ರಿಸಿ" - - #. Translators: those are keywords for the search control-center panel -@@ -5179,8 +5124,7 @@ msgstr "ದೂರಸ್ಥ ಪ್ರವ? - - #: ../panels/sharing/org.gnome.controlcenter.remote-login-helper.policy.in.in.h:2 - msgid "Authentication is required to enable or disable remote login" --msgstr "" --"ದೂರಸ್ಥ ಪ್ರವೇಶವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ಅಥವ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲು ದೃಢೀಕರಣದ ಅಗತ್ಯವಿದೆ" -+msgstr "ದೂರಸ್ಥ ಪ್ರವೇಶವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ಅಥವ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲು ದೃಢೀಕರಣದ ಅಗತ್ಯವಿದೆ" - - #. Label - #: ../panels/sharing/cc-sharing-networks.c:303 -@@ -5203,8 +5147,7 @@ msgid "" - "Bluetooth Sharing allows you to share files with other Bluetooth enabled " - "devices" - msgstr "" --"ಬ್ಲೂಟೂತ್ ಹಂಚಿಕೆಯು ಕಡತಗಳನ್ನು ಇತರೆ ಬ್ಲೂಟೂತ್ ಸಕ್ರಿಯಗೊಳಿಸಲಾದ ಸಾಧನಗಳೊಂದಿಗೆ " --"ಹಂಚಿಕೊಳ್ಳಲು " -+"ಬ್ಲೂಟೂತ್ ಹಂಚಿಕೆಯು ಕಡತಗಳನ್ನು ಇತರೆ ಬ್ಲೂಟೂತ್ ಸಕ್ರಿಯಗೊಳಿಸಲಾದ ಸಾಧನಗಳೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಲು " - "ಅನುವು ಮಾಡಿಕೊಡುತ್ತದೆ" - - #: ../panels/sharing/sharing.ui.h:3 -@@ -5309,9 +5252,7 @@ msgstr "ಧ್ವನಿ" - - #: ../panels/sound/data/gnome-sound-panel.desktop.in.in.h:2 - msgid "Change sound levels, inputs, outputs, and alert sounds" --msgstr "" --"ಧ್ವನಿಯ ಪ್ರಮಾಣಗಳು, ಇನ್‌ಪುಟ್‌ಗಳು, ಔಟ್‌ಪುಟ್‌ಗಳು ಮತ್ತು ಎಚ್ಚರಿಕೆ ಸದ್ದುಗಳನ್ನು " --"ಬದಲಾಯಿಸಿ" -+msgstr "ಧ್ವನಿಯ ಪ್ರಮಾಣಗಳು, ಇನ್‌ಪುಟ್‌ಗಳು, ಔಟ್‌ಪುಟ್‌ಗಳು ಮತ್ತು ಎಚ್ಚರಿಕೆ ಸದ್ದುಗಳನ್ನು ಬದಲಾಯಿಸಿ" - - #. Translators: those are keywords for the sound control-center panel - #: ../panels/sound/data/gnome-sound-panel.desktop.in.in.h:4 -@@ -5546,8 +5487,7 @@ msgid "" - "Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;" - "AccessX;Sticky;Keys;Slow;Bounce;Mouse;" - msgstr "" --"ಕೀಲಿಮಣೆ;ಮೌಸ್;a11y;ನಿಲುಕು;ಕಾಂಟ್ರಾಸ್ಟ್;ಗಾತ್ರಬದಲಾವಣೆ;ತೆರೆ " --"ಓದುಗ;ಪಠ್ಯ;ಅಕ್ಷರಶೈಲಿ;ಗಾತ್ರ;" -+"ಕೀಲಿಮಣೆ;ಮೌಸ್;a11y;ನಿಲುಕು;ಕಾಂಟ್ರಾಸ್ಟ್;ಗಾತ್ರಬದಲಾವಣೆ;ತೆರೆ ಓದುಗ;ಪಠ್ಯ;ಅಕ್ಷರಶೈಲಿ;ಗಾತ್ರ;" - "AccessX;ಸ್ಟಿಕಿ;ಕೀಲಿಗಳು;ನಿಧಾನಗತಿ;ಪುಟಿಯುವ;ಮೌಸ್‌;" - - #: ../panels/universal-access/uap.ui.h:1 -@@ -5613,8 +5553,7 @@ msgstr "ತೆರೆ ಓದುಗ" - #: ../panels/universal-access/uap.ui.h:18 - msgid "The screen reader reads displayed text as you move the focus." - msgstr "" --"ನೀವು ಗಮನವನ್ನು ಬದಲಾಯಿಸಿದಂತೆಲ್ಲಾ ತೆರೆಯ ಓದುಗವು ತೋರಿಸಲಾಗುತ್ತಿರುವ ಪಠ್ಯವನ್ನು " --"ಓದುತ್ತದೆ." -+"ನೀವು ಗಮನವನ್ನು ಬದಲಾಯಿಸಿದಂತೆಲ್ಲಾ ತೆರೆಯ ಓದುಗವು ತೋರಿಸಲಾಗುತ್ತಿರುವ ಪಠ್ಯವನ್ನು ಓದುತ್ತದೆ." - - #: ../panels/universal-access/uap.ui.h:19 - msgid "_Screen Reader" -@@ -5665,7 +5604,6 @@ msgid "_Disable if two keys are pressed - msgstr "ಎರಡು ಕೀಲಿಗಳನ್ನು ಒಟ್ಟಿಗೆ ಒತ್ತಿದಲ್ಲಿ ಅಶಕ್ತಗೊಳಿಸು (_D)s" - - #: ../panels/universal-access/uap.ui.h:31 --#| msgid "Beep when a _modifer key is pressed" - msgid "Beep when a _modifier key is pressed" - msgstr "ಮಾರ್ಪಡಕ ಕೀಲಿಯನ್ನು ಒತ್ತಿದಾಗ ಬೀಪ್ ಶಬ್ಧ ಮಾಡು (_m)" - -@@ -5676,8 +5614,7 @@ msgstr "ನಿಧಾನಗತಿಯ ಕ? - #: ../panels/universal-access/uap.ui.h:33 - msgid "Puts a delay between when a key is pressed and when it is accepted" - msgstr "" --"ಕೀಲಿಯನ್ನು ಯಾವಾಗ ಒತ್ತಲಾಗುತ್ತದೆ ಮತ್ತು ಯಾವಾಗ ಅಂಗೀಕರಿಸಲ್ಪಡುತ್ತದೆ ಎನ್ನುವುದರ ನಡುವೆ " --"ಒಂದು " -+"ಕೀಲಿಯನ್ನು ಯಾವಾಗ ಒತ್ತಲಾಗುತ್ತದೆ ಮತ್ತು ಯಾವಾಗ ಅಂಗೀಕರಿಸಲ್ಪಡುತ್ತದೆ ಎನ್ನುವುದರ ನಡುವೆ ಒಂದು " - "ವಿಳಂಬವನ್ನು ಸೇರಿಸುತ್ತದೆ" - - #: ../panels/universal-access/uap.ui.h:34 -@@ -6024,8 +5961,7 @@ msgid "" - "Enterprise login allows an existing centrally managed user account to be " - "used on this device." - msgstr "" --"ಎಂಟರ್‌ಪ್ರೈಸ್‌ ಲಾಗಿನ್ ಈ ಸಾಧನದಲ್ಲಿ ಈಗಿರುವ ಕೇಂದ್ರೀಕೃತ ವ್ಯವಸ್ಥೆಯಲ್ಲಿ ಬಳಕೆದಾರ " --"ಖಾತೆಯನ್ನು " -+"ಎಂಟರ್‌ಪ್ರೈಸ್‌ ಲಾಗಿನ್ ಈ ಸಾಧನದಲ್ಲಿ ಈಗಿರುವ ಕೇಂದ್ರೀಕೃತ ವ್ಯವಸ್ಥೆಯಲ್ಲಿ ಬಳಕೆದಾರ ಖಾತೆಯನ್ನು " - "ನಿರ್ವಹಿಸಲು ಅವಕಾಶ ಒದಗಿಸುತ್ತದೆ." - - #: ../panels/user-accounts/data/account-dialog.ui.h:12 -@@ -6130,8 +6066,7 @@ msgid "" - "Your fingerprint was successfully saved. You should now be able to log in " - "using your fingerprint reader." - msgstr "" --"ನಿಮ್ಮ ಬೆರಳಗುರುತನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಉಳಿಸಲಾಗಿದೆ. ಈಗ ನೀವು ನಿಮ್ಮ ಬೆರಳಗುರುತಿನ " --"ಓದುಗನನ್ನು " -+"ನಿಮ್ಮ ಬೆರಳಗುರುತನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಉಳಿಸಲಾಗಿದೆ. ಈಗ ನೀವು ನಿಮ್ಮ ಬೆರಳಗುರುತಿನ ಓದುಗನನ್ನು " - "ಬಳಸಿಕೊಂಡು ಪ್ರವೇಶಿಸಬಹುದಾಗಿದೆ." - - #: ../panels/user-accounts/data/gnome-user-accounts-panel.desktop.in.in.h:1 -@@ -6287,8 +6222,7 @@ msgid "" - "Try to avoid repeating the same type of character: you need to mix up " - "letters, numbers and punctuation." - msgstr "" --"ಒಂದೇ ರೀತಿಯ ಚಿಹ್ನೆಯನ್ನು ಬಳಸುವುದನ್ನು ತಪ್ಪಿಸಲು ಪ್ರಯತ್ನಿಸಿ: ಅಕ್ಷರಗಳು, ಸಂಖ್ಯೆಗಳು " --"ಮತ್ತು " -+"ಒಂದೇ ರೀತಿಯ ಚಿಹ್ನೆಯನ್ನು ಬಳಸುವುದನ್ನು ತಪ್ಪಿಸಲು ಪ್ರಯತ್ನಿಸಿ: ಅಕ್ಷರಗಳು, ಸಂಖ್ಯೆಗಳು ಮತ್ತು " - "ವಿರಾಮಚಿಹ್ನೆಗಳ ಮಿಶ್ರಣವನ್ನು ಬಳಸಿ ನೋಡಿ." - - #: ../panels/user-accounts/pw-utils.c:113 -@@ -6304,9 +6238,7 @@ msgstr "ಹೆಚ್ಚು ಅಕ್ಷ? - #: ../panels/user-accounts/pw-utils.c:117 - msgctxt "Password hint" - msgid "Mix uppercase and lowercase and use a number or two." --msgstr "" --"ದೊಡ್ಡಕ್ಷರ ಮತ್ತು ಸಣ್ಣಕ್ಷರವನ್ನು ಜೊತೆಗೆ ಬಳಸಿ ಮತ್ತು ಒಂದು ಅಥವ ಎರಡು ಸಂಖ್ಯೆಯನ್ನು " --"ಬಳಸಿ." -+msgstr "ದೊಡ್ಡಕ್ಷರ ಮತ್ತು ಸಣ್ಣಕ್ಷರವನ್ನು ಜೊತೆಗೆ ಬಳಸಿ ಮತ್ತು ಒಂದು ಅಥವ ಎರಡು ಸಂಖ್ಯೆಯನ್ನು ಬಳಸಿ." - - #: ../panels/user-accounts/pw-utils.c:119 - msgctxt "Password hint" -@@ -6314,8 +6246,7 @@ msgid "" - "Good password! Adding more letters, numbers and punctuation will make it " - "stronger." - msgstr "" --"ಉತ್ತಮವಾದ ಗುಪ್ತಪದ! ಹೆಚ್ಚಿನ ಅಕ್ಷರಗಳು, ಸಂಖ್ಯೆಗಳು ಮತ್ತು ವಿರಾಮಚಿಹ್ನೆಗಳನ್ನು " --"ಸೇರಿಸುವುದರಿಂದ " -+"ಉತ್ತಮವಾದ ಗುಪ್ತಪದ! ಹೆಚ್ಚಿನ ಅಕ್ಷರಗಳು, ಸಂಖ್ಯೆಗಳು ಮತ್ತು ವಿರಾಮಚಿಹ್ನೆಗಳನ್ನು ಸೇರಿಸುವುದರಿಂದ " - "ಇದು ಇನ್ನಷ್ಟು ಬಲಗೊಳ್ಳುತ್ತದೆ." - - #: ../panels/user-accounts/pw-utils.c:141 -@@ -6449,8 +6380,7 @@ msgstr "ಡೊಮೇನ್‌ ಕಂಡ? - #: ../panels/user-accounts/um-fingerprint-dialog.c:138 - msgid "" - "You are not allowed to access the device. Contact your system administrator." --msgstr "" --"ನೀವು ಈ ಸಾಧನವನ್ನು ನಿಲುಕಿಸಿಕೊಳ್ಳುವಂತಿಲ್ಲ. ನಿಮ್ಮ ಗಣಕ ವ್ಯವಸ್ಥಾಪಕರನ್ನು ಸಂಪರ್ಕಿಸಿ." -+msgstr "ನೀವು ಈ ಸಾಧನವನ್ನು ನಿಲುಕಿಸಿಕೊಳ್ಳುವಂತಿಲ್ಲ. ನಿಮ್ಮ ಗಣಕ ವ್ಯವಸ್ಥಾಪಕರನ್ನು ಸಂಪರ್ಕಿಸಿ." - - #: ../panels/user-accounts/um-fingerprint-dialog.c:140 - msgid "The device is already in use." -@@ -6499,8 +6429,7 @@ msgstr "'%s' ಸಾಧನವನ್ನು - #: ../panels/user-accounts/um-fingerprint-dialog.c:588 - #, c-format - msgid "Could not start finger capture on '%s' device" --msgstr "" --"'%s' ಸಾಧನದಲ್ಲಿ ಬೆರಳಿನ ಗುರುತನ್ನು ತೆಗೆದುಕೊಳ್ಳುವುದನ್ನು ಆರಂಭಿಸು ಸಾಧ್ಯವಾಗಿಲ್ಲ" -+msgstr "'%s' ಸಾಧನದಲ್ಲಿ ಬೆರಳಿನ ಗುರುತನ್ನು ತೆಗೆದುಕೊಳ್ಳುವುದನ್ನು ಆರಂಭಿಸು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - - #: ../panels/user-accounts/um-fingerprint-dialog.c:638 - msgid "Could not access any fingerprint readers" -@@ -6673,8 +6602,7 @@ msgid "" - "Deleting a user while they are logged in can leave the system in an " - "inconsistent state." - msgstr "" --"ಬಳಕೆದಾರರು ಒಳಗೆ ಪ್ರವೇಶಿಸಿದಾಗ ಅವರನ್ನು ಅಳಿಸುವುದರಿಂದ ವ್ಯವಸ್ಥೆಯು ಒಂದು ಅಸ್ಥಿರ " --"ಸ್ಥಿತಿಯಲ್ಲಿ " -+"ಬಳಕೆದಾರರು ಒಳಗೆ ಪ್ರವೇಶಿಸಿದಾಗ ಅವರನ್ನು ಅಳಿಸುವುದರಿಂದ ವ್ಯವಸ್ಥೆಯು ಒಂದು ಅಸ್ಥಿರ ಸ್ಥಿತಿಯಲ್ಲಿ " - "ಇರಿಸುತ್ತದೆ." - - #: ../panels/user-accounts/um-user-panel.c:504 -@@ -6784,15 +6712,13 @@ msgid "" - "The username should only consist of lower and upper case letters from a-z, " - "digits and any of characters '.', '-' and '_'." - msgstr "" --"ಬಳಕೆದಾರ ಹೆಸರು ಕೇವಲ a-z ವರೆಗಿನ ಅಕ್ಷರಗಳು, ಅಂಕಿಗಳು, ಮತ್ತು '.', '-' ಹಾಗು '_' " --"ನಲ್ಲಿ " -+"ಬಳಕೆದಾರ ಹೆಸರು ಕೇವಲ a-z ವರೆಗಿನ ಅಕ್ಷರಗಳು, ಅಂಕಿಗಳು, ಮತ್ತು '.', '-' ಹಾಗು '_' ನಲ್ಲಿ " - "ಒಂದಾದರೂ ಚಿಹ್ನೆಗಳನ್ನು ಮಾತ್ರ ಹೊಂದಿರಬೇಕು." - - #: ../panels/user-accounts/um-utils.c:581 - msgid "This will be used to name your home folder and can't be changed." - msgstr "" --"ಇದನ್ನು ನಿಮ್ಮ ನೆಲೆ ಕೋಶವನ್ನು ಹೆಸರಿಸಲು ಬಳಸಲಾಗುತ್ತದೆ ಮತ್ತು ಬದಲಾಯಿಸಲು " --"ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ." -+"ಇದನ್ನು ನಿಮ್ಮ ನೆಲೆ ಕೋಶವನ್ನು ಹೆಸರಿಸಲು ಬಳಸಲಾಗುತ್ತದೆ ಮತ್ತು ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ." - - #. Translators: This is a date format string in the style of "Feb 24". - #: ../panels/user-accounts/um-utils.c:827 -@@ -6817,10 +6743,8 @@ msgid "" - "To edit a shortcut, choose the \"Send Keystroke\" action, press the keyboard " - "shortcut button and hold down the new keys or press Backspace to clear." - msgstr "" --"ಒಂದು ಸಮೀಪಮಾರ್ಗ ಕೀಲಿಯನ್ನು ಸಂಪಾದಿಸಲು, \"ಕೀಲಿಹೊಡೆತವನ್ನು ಕಳುಹಿಸು\" ಕ್ರಿಯೆಯನ್ನು " --"ಆರಿಸಿ, " --"ಕೀಲಿಮಣೆ ಸಮೀಪಮಾರ್ಗ ಗುಂಡಿಯನ್ನು ಒತ್ತಿ ನಂತರ ಹೊಸ ಕೀಲಿಗಳನ್ನು ಒತ್ತಿಹಿಡಿಯಿರಿ ಅಥವ " --"ಅಳಿಸಲು " -+"ಒಂದು ಸಮೀಪಮಾರ್ಗ ಕೀಲಿಯನ್ನು ಸಂಪಾದಿಸಲು, \"ಕೀಲಿಹೊಡೆತವನ್ನು ಕಳುಹಿಸು\" ಕ್ರಿಯೆಯನ್ನು ಆರಿಸಿ, " -+"ಕೀಲಿಮಣೆ ಸಮೀಪಮಾರ್ಗ ಗುಂಡಿಯನ್ನು ಒತ್ತಿ ನಂತರ ಹೊಸ ಕೀಲಿಗಳನ್ನು ಒತ್ತಿಹಿಡಿಯಿರಿ ಅಥವ ಅಳಿಸಲು " - "ಬ್ಯಾಕ್‍ಸ್ಪೇಸನ್ನು ಒತ್ತಿ." - - #: ../panels/wacom/calibrator/calibrator-gui.c:83 -@@ -6828,8 +6752,7 @@ msgid "" - "Please tap the target markers as they appear on screen to calibrate the " - "tablet." - msgstr "" --"ಟ್ಯಾಬ್ಲೆಟ್ ಅನ್ನು ಕ್ಯಾಲಿಬ್ರೇಟ್ ಮಾಡಲು ತೆರೆಯ ಮೇಲೆ ಗುರಿಯ ಗುರುತುಗಳು ಕಾಣಿಸಿಕೊಂಡಾಗ " --"ಅವುಗಳ " -+"ಟ್ಯಾಬ್ಲೆಟ್ ಅನ್ನು ಕ್ಯಾಲಿಬ್ರೇಟ್ ಮಾಡಲು ತೆರೆಯ ಮೇಲೆ ಗುರಿಯ ಗುರುತುಗಳು ಕಾಣಿಸಿಕೊಂಡಾಗ ಅವುಗಳ " - "ಮೇಲೆ ಮೆಲ್ಲಗೆ ತಟ್ಟಿ." - - #: ../panels/wacom/calibrator/calibrator-gui.c:87 -@@ -6927,8 +6850,7 @@ msgstr "ಯಾವುದೆ ಕಿಸೆ? - - #: ../panels/wacom/gnome-wacom-properties.ui.h:6 - msgid "Please plug in or turn on your Wacom tablet" --msgstr "" --"ನಿಮ್ಮ ವೇಕಾಮ್ ಕಿಸೆಗಣಕದೊಂದಿಗೆ (ಟ್ಯಾಬ್ಲೆಟ್) ಸಂಪರ್ಕಜೋಡಿಸಿ ಅಥವ ಅದನ್ನು ಚಾಲನೆಗೊಳಿಸಿ" -+msgstr "ನಿಮ್ಮ ವೇಕಾಮ್ ಕಿಸೆಗಣಕದೊಂದಿಗೆ (ಟ್ಯಾಬ್ಲೆಟ್) ಸಂಪರ್ಕಜೋಡಿಸಿ ಅಥವ ಅದನ್ನು ಚಾಲನೆಗೊಳಿಸಿ" - - #: ../panels/wacom/gnome-wacom-properties.ui.h:7 - msgid "Bluetooth Settings" -Index: new/po/lt.po -=================================================================== ---- new.orig/po/lt.po -+++ new/po/lt.po -@@ -5630,7 +5630,6 @@ msgid "_Disable if two keys are pressed - msgstr "Iš_jungti, jei du klavišai paspaudžiami kartu" - - #: ../panels/universal-access/uap.ui.h:31 --#| msgid "Beep when a _modifer key is pressed" - msgid "Beep when a _modifier key is pressed" - msgstr "Pyptelėti, kai paspaustas _modifikatorius" - -Index: new/po/pa.po -=================================================================== ---- new.orig/po/pa.po -+++ new/po/pa.po -@@ -103,8 +103,7 @@ msgstr "ਘਰ" - #: ../panels/background/cc-background-chooser-dialog.c:570 - #, c-format - msgid "You can add images to your %s folder and they will show up here" --msgstr "" --"ਤੁਸੀਂ ਆਪਣੇ %s ਫੋਲਡਰ ਵਿੱਚ ਚਿੱਤਰ ਸ਼ਾਮਿਲ ਕਰ ਸਕਦੇ ਹੋ ਅਤੇ ਉਹ ਇੱਥੇ ਵੇਖਾਈ ਦੇਣਗੇ" -+msgstr "ਤੁਸੀਂ ਆਪਣੇ %s ਫੋਲਡਰ ਵਿੱਚ ਚਿੱਤਰ ਸ਼ਾਮਿਲ ਕਰ ਸਕਦੇ ਹੋ ਅਤੇ ਉਹ ਇੱਥੇ ਵੇਖਾਈ ਦੇਣਗੇ" - - #: ../panels/background/cc-background-chooser-dialog.c:592 - #: ../panels/color/cc-color-panel.c:224 ../panels/color/cc-color-panel.c:961 -@@ -201,8 +200,7 @@ msgstr "ਆਪਣੇ ਕੈਲੀਬਰ? - #: ../panels/color/cc-color-calibrate.c:367 - msgid "" - "Move your calibration device to the calibrate position and press 'Continue'" --msgstr "" --"ਆਪਣੇ ਕੈਲੀਬਰੇਸ਼ਨ ਜੰਤਰ ਨੂੰ ਕੈਲੀਬਰੇਸ਼ਨ ਸਥਿਤੀ ਉਤੇ ਲੈ ਜਾਉ ਅਤੇ 'ਜਾਰੀ ਰੱਖੋ' ਦੱਬੋ" -+msgstr "ਆਪਣੇ ਕੈਲੀਬਰੇਸ਼ਨ ਜੰਤਰ ਨੂੰ ਕੈਲੀਬਰੇਸ਼ਨ ਸਥਿਤੀ ਉਤੇ ਲੈ ਜਾਉ ਅਤੇ 'ਜਾਰੀ ਰੱਖੋ' ਦੱਬੋ" - - #. TRANSLATORS: Some calibration devices need the user to move a - #. * dial or switch manually. We also show a picture showing them -@@ -383,8 +381,7 @@ msgstr "ਇਹ URL ਲਿਖ ਲਵੋ?? - - #: ../panels/color/cc-color-panel.c:923 - msgid "Restart this computer and boot your normal operating system." --msgstr "" --"ਆਪਣੇ ਕੰਪਿਊਟਰ ਨੂੰ ਮੁੜ-ਚਾਲੂ ਕਰੋ ਅਟੇ ਆਪਣੇ ਸਧਾਰਨ ਓਪਰੇਟਿੰਗ ਸਿਸਟਮ ਨੂੰ ਬੂਟ ਕਰੋ।" -+msgstr "ਆਪਣੇ ਕੰਪਿਊਟਰ ਨੂੰ ਮੁੜ-ਚਾਲੂ ਕਰੋ ਅਟੇ ਆਪਣੇ ਸਧਾਰਨ ਓਪਰੇਟਿੰਗ ਸਿਸਟਮ ਨੂੰ ਬੂਟ ਕਰੋ।" - - #: ../panels/color/cc-color-panel.c:924 - msgid "Type the URL into your browser to download and install the profile." -@@ -410,9 +407,7 @@ msgstr "ਚੁਣੇ ਜੰਤਰ ਲਈ - msgid "" - "The measuring instrument is not detected. Please check it is turned on and " - "correctly connected." --msgstr "" --"ਮਾਪ ਜੰਤਰ ਖੋਜਿਆ ਨਹੀਂ ਗਿਆ ਹੈ। ਚੈੱਕ ਕਰੋ ਕਿ ਇਹ ਚਾਲੂ ਹੈ ਅਤੇ ਠੀਕ ਤਰ੍ਹਾਂ ਕੂਨੈਕਟ ਕੀਤਾ " --"ਹੋਇਆ ਹੈ।" -+msgstr "ਮਾਪ ਜੰਤਰ ਖੋਜਿਆ ਨਹੀਂ ਗਿਆ ਹੈ। ਚੈੱਕ ਕਰੋ ਕਿ ਇਹ ਚਾਲੂ ਹੈ ਅਤੇ ਠੀਕ ਤਰ੍ਹਾਂ ਕੂਨੈਕਟ ਕੀਤਾ ਹੋਇਆ ਹੈ।" - - #. TRANSLATORS: this is when the button is insensitive - #: ../panels/color/cc-color-panel.c:1371 -@@ -540,10 +535,8 @@ msgid "" - "screen. The longer you spend on calibration, the better the quality of the " - "color profile." - msgstr "" --"ਕੈਲੀਬਰੇਸ਼ਨ ਇੱਕ ਪਰੋਫਾਇਲ ਦੇਵੇਗੀ, ਜਿਸ ਨੂੰ ਤੁਸੀਂ ਆਪਣੀ ਸਕਰੀਨ ਦੇ ਰੰਗ ਦੇ ਪਰਬੰਧ ਲਈ ਵਰਤ " --"ਸਕਦੇ ਹੋ। " --"ਕੈਲੀਬਰੇਸ਼ਨ ਉੱਤੇ ਜਿੰਨਾ ਵੱਧ ਸਮਾਂ ਤੁਸੀਂ ਲਗਾਉਗੇ, ਰੰਗ ਪਰੋਫਾਇਲ ਉਹਨਾ ਹੀ ਵੱਧ ਚੰਗਾ " --"ਹੋਵੇਗਾ।" -+"ਕੈਲੀਬਰੇਸ਼ਨ ਇੱਕ ਪਰੋਫਾਇਲ ਦੇਵੇਗੀ, ਜਿਸ ਨੂੰ ਤੁਸੀਂ ਆਪਣੀ ਸਕਰੀਨ ਦੇ ਰੰਗ ਦੇ ਪਰਬੰਧ ਲਈ ਵਰਤ ਸਕਦੇ ਹੋ। " -+"ਕੈਲੀਬਰੇਸ਼ਨ ਉੱਤੇ ਜਿੰਨਾ ਵੱਧ ਸਮਾਂ ਤੁਸੀਂ ਲਗਾਉਗੇ, ਰੰਗ ਪਰੋਫਾਇਲ ਉਹਨਾ ਹੀ ਵੱਧ ਚੰਗਾ ਹੋਵੇਗਾ।" - - #: ../panels/color/color.ui.h:3 - msgid "" -@@ -585,8 +578,7 @@ msgid "" - "Select a display target white point. Most displays should be calibrated to a " - "D65 illuminant." - msgstr "" --"ਡਿਸਪਲੇਅ ਟਾਰਗੇਟ ਚਿੱਟਾ ਬਿੰਦੂ ਚੁਣੋ। ਬਹੁਤੇ ਡਿਸਪਲੇਅ ਨੂੰ D65 illuminant ਤੱਕ " --"ਕੈਲੀਬਰੇਟ ਕੀਤਾ ਜਾਣਾ " -+"ਡਿਸਪਲੇਅ ਟਾਰਗੇਟ ਚਿੱਟਾ ਬਿੰਦੂ ਚੁਣੋ। ਬਹੁਤੇ ਡਿਸਪਲੇਅ ਨੂੰ D65 illuminant ਤੱਕ ਕੈਲੀਬਰੇਟ ਕੀਤਾ ਜਾਣਾ " - "ਚਾਹੀਦਾ ਹੈ।" - - #: ../panels/color/color.ui.h:14 -@@ -598,17 +590,14 @@ msgid "" - "Please set the display to a brightness that is typical for you. Color " - "management will be most accurate at this brightness level." - msgstr "" --"ਡਿਸਪਲੇਅ ਲਈ ਚਮਕ ਪੱਧਰ ਸੈੱਟ ਕਰੋ, ਜੋ ਤੁਸੀਂ ਆਮ ਤੌਰ ਉੱਤੇ ਵਰਤਦੇ ਹੋ। ਰੰਗ ਪਰਬੰਧ ਉਸ ਚਮਕ " --"ਪੱਧਰ ਉੱਤੇ ਸਭ ਤੋਂ " -+"ਡਿਸਪਲੇਅ ਲਈ ਚਮਕ ਪੱਧਰ ਸੈੱਟ ਕਰੋ, ਜੋ ਤੁਸੀਂ ਆਮ ਤੌਰ ਉੱਤੇ ਵਰਤਦੇ ਹੋ। ਰੰਗ ਪਰਬੰਧ ਉਸ ਚਮਕ ਪੱਧਰ ਉੱਤੇ ਸਭ ਤੋਂ " - "ਵੱਧ ਸ਼ੁੱਧ ਹੋਵੇਗਾ।" - - #: ../panels/color/color.ui.h:16 - msgid "" - "Alternatively, you can use the brightness level used with one of the other " - "profiles for this device." --msgstr "" --"ਬਦਲਵੇਂ ਰੂਪ ਵਿੱਚ, ਤੁਸੀਂ ਇਹ ਜੰਤਰ ਲਈ ਹੋਰ ਪਰੋਫਾਇਲਾਂ ਵਿੱਚੋਂ ਇੱਕ ਨੂੰ ਚਮਕ ਪੱਧਰ ਲਈ " --"ਵਰਤ ਸਕਦੇ ਹੋ।" -+msgstr "ਬਦਲਵੇਂ ਰੂਪ ਵਿੱਚ, ਤੁਸੀਂ ਇਹ ਜੰਤਰ ਲਈ ਹੋਰ ਪਰੋਫਾਇਲਾਂ ਵਿੱਚੋਂ ਇੱਕ ਨੂੰ ਚਮਕ ਪੱਧਰ ਲਈ ਵਰਤ ਸਕਦੇ ਹੋ।" - - #: ../panels/color/color.ui.h:17 - msgid "Display Brightness" -@@ -619,8 +608,7 @@ msgid "" - "You can use a color profile on different computers, or even create profiles " - "for different lighting conditions." - msgstr "" --"ਤੁਸੀਂ ਵੱਖਰੇ ਕੰਪਿਊਟਰ ਉੱਤੇ ਰੰਗ ਪਰੋਫਾਇਲ ਵਰਤ ਸਕਦੇ ਹੋ ਜਾਂ ਵੱਖਰੀਆਂ ਚਾਨਣ ਸ਼ਰਤਾਂ " --"ਮੁਤਾਬਕ ਰੰਗ ਪਰੋਫਾਇਲ ਬਣਾ " -+"ਤੁਸੀਂ ਵੱਖਰੇ ਕੰਪਿਊਟਰ ਉੱਤੇ ਰੰਗ ਪਰੋਫਾਇਲ ਵਰਤ ਸਕਦੇ ਹੋ ਜਾਂ ਵੱਖਰੀਆਂ ਚਾਨਣ ਸ਼ਰਤਾਂ ਮੁਤਾਬਕ ਰੰਗ ਪਰੋਫਾਇਲ ਬਣਾ " - "ਸਕਦੇ ਹੋ।" - - #: ../panels/color/color.ui.h:19 -@@ -657,10 +645,8 @@ msgid "" - "\">GNU/Linux, Apple OS X and Microsoft Windows systems useful." - msgstr "" --"ਤੁਸੀਂ ਪਰੋਫਾਇਲ ਨੂੰ GNU/ਲੀਨਕਸ, ਐਪਲ OS X<" --"/a> " --"ਅਤੇ Microsoft Windows ਸਿਸਟਮ ਉੱਤੇ ਕਿਵੇਂ ਵਰਤੀਏ ਬਾਰੇ " --"ਹਦਾਇਤਾਂ " -+"ਤੁਸੀਂ ਪਰੋਫਾਇਲ ਨੂੰ GNU/ਲੀਨਕਸ, ਐਪਲ OS X " -+"ਅਤੇ Microsoft Windows ਸਿਸਟਮ ਉੱਤੇ ਕਿਵੇਂ ਵਰਤੀਏ ਬਾਰੇ ਹਦਾਇਤਾਂ " - "ਵੇਖ ਸਕਦੇ ਹੋ।" - - #: ../panels/color/color.ui.h:27 -@@ -685,8 +671,7 @@ msgstr "ਸ਼ਾਮਲ(_A)" - msgid "" - "Problems detected. The profile may not work correctly. Show " - "details." --msgstr "" --"ਸਮੱਸਿਆ ਆਈ ਹੈ। ਪਰੋਫਾਇਲ ਠੀਕ ਤਰ੍ਹਾਂ ਸ਼ਾਇਦ ਕੰਮ ਨਾ ਕਰੇ। ਵੇਰਵਾ ਵੇਖੋ" -+msgstr "ਸਮੱਸਿਆ ਆਈ ਹੈ। ਪਰੋਫਾਇਲ ਠੀਕ ਤਰ੍ਹਾਂ ਸ਼ਾਇਦ ਕੰਮ ਨਾ ਕਰੇ। ਵੇਰਵਾ ਵੇਖੋ" - - #: ../panels/color/color.ui.h:32 - msgid "Each device needs an up to date color profile to be color managed." -@@ -832,14 +817,12 @@ msgstr "ਰੰਗ" - #: ../panels/color/gnome-color-panel.desktop.in.in.h:2 - msgid "" - "Calibrate the color of your devices, such as displays, cameras or printers" --msgstr "" --"ਆਪਣੇ ਜੰਤਰਾਂ, ਜਿਵੇਂ ਕਿ ਡਿਸਪਲੇਅ, ਕੈਮਰੇ ਜਾਂ ਪਰਿੰਟਰਾਂ ਦੇ ਰੰਗ ਨੂੰ ਕੈਲੀਬਰੇਟ ਕਰੋ" -+msgstr "ਆਪਣੇ ਜੰਤਰਾਂ, ਜਿਵੇਂ ਕਿ ਡਿਸਪਲੇਅ, ਕੈਮਰੇ ਜਾਂ ਪਰਿੰਟਰਾਂ ਦੇ ਰੰਗ ਨੂੰ ਕੈਲੀਬਰੇਟ ਕਰੋ" - - #. Translators: those are keywords for the color control-center panel - #: ../panels/color/gnome-color-panel.desktop.in.in.h:4 - msgid "Color;ICC;Profile;Calibrate;Printer;Display;" --msgstr "" --"ਰੰਗ,Color;ICC;Profile;Calibrate;ਪ੍ਰਿੰਟਰ;ਪਰਿੰਟਰ;Printer;Display;ਡਿਸਪਲੇਅ;" -+msgstr "ਰੰਗ,Color;ICC;Profile;Calibrate;ਪ੍ਰਿੰਟਰ;ਪਰਿੰਟਰ;Printer;Display;ਡਿਸਪਲੇਅ;" - - #. Add some common regions - #: ../panels/common/cc-common-language.c:684 -@@ -898,8 +881,6 @@ msgstr "%e %B %Y, %R" - #. Translators: "city, country" - #: ../panels/datetime/cc-datetime-panel.c:523 - #, c-format --#| msgctxt "login date-time" --#| msgid "%s, %s" - msgctxt "timezone loc" - msgid "%s, %s" - msgstr "%s, %s" -@@ -908,7 +889,6 @@ msgstr "%s, %s" - #. Translators: "timezone (details)" - #: ../panels/datetime/cc-datetime-panel.c:553 - #, c-format --#| msgid "%d x %d (%s)" - msgctxt "timezone desc" - msgid "%s (%s)" - msgstr "%s (%s)" -@@ -933,7 +913,6 @@ msgstr "%R" - #. Translators: "timezone (utc shift)" - #: ../panels/datetime/cc-datetime-panel.c:576 - #, c-format --#| msgid "%d x %d (%s)" - msgctxt "timezone map" - msgid "%s (%s)" - msgstr "%s (%s)" -@@ -1187,7 +1166,6 @@ msgstr "ਚੁਣੋ ਕਿ ਮਾਨੀ - - #. Translators: those are keywords for the display control-center panel - #: ../panels/display/gnome-display-panel.desktop.in.in.h:4 --#| msgid "Panel;Projector;xrandr;Screen;Resolution;Refresh;" - msgid "Panel;Projector;xrandr;Screen;Resolution;Refresh;Monitor;" - msgstr "ਪੈਨਲ;ਪਰੋਜੈਕਟਰ;xrandr;ਸਕਰੀਨ;ਰੈਜ਼ੋਲੂਸ਼ਨ;ਤਾਜ਼ਾ;ਮਾਨੀਟਰ;" - -@@ -1338,8 +1316,7 @@ msgid "" - "preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" - msgstr "" - "device;system;information;memory;processor;version;default;application;" --"preferred;ਜੰਤਰ;ਸਿਸਟਮ;ਜਾਣਕਾਰੀ;ਮੈਮੋਰੀ;ਪਰੋਸੈਸਰ;ਵਰਜਨ;ਪ੍ਰੋਸੈਸਰ;ਡਿਫਾਲਟ;ਐਪਲੀਕੇਸ਼ਨ;cd;" --"dvd;usb;" -+"preferred;ਜੰਤਰ;ਸਿਸਟਮ;ਜਾਣਕਾਰੀ;ਮੈਮੋਰੀ;ਪਰੋਸੈਸਰ;ਵਰਜਨ;ਪ੍ਰੋਸੈਸਰ;ਡਿਫਾਲਟ;ਐਪਲੀਕੇਸ਼ਨ;cd;dvd;usb;" - "audio;video;disc;removable;media;autorun;ਵੀਡਿਓ;ਡਿਸਕ;ਹਟਾਉਣਯੋਗ;ਮੀਡਿਆ;ਆਟੋਰਨ;" - - #: ../panels/info/info.ui.h:1 -@@ -1749,8 +1726,7 @@ msgid "" - "To edit a shortcut, click the row and hold down the new keys or press " - "Backspace to clear." - msgstr "" --"ਸ਼ਾਰਟਕੱਟ ਸੋਧਣ ਲਈ, ਕਤਾਰ ਕਲਿੱਕ ਕਰੋ ਅਤੇ ਨਵੀਆਂ ਸਵਿੱਚ ਹੋਲਡ ਕਰਕੇ ਰੱਖੋ ਜਾਂ ਬੈਕਸਪੇਸ " --"ਸਾਫ਼ ਕਰਨ ਲਈ ਵਰਤੋਂ।" -+"ਸ਼ਾਰਟਕੱਟ ਸੋਧਣ ਲਈ, ਕਤਾਰ ਕਲਿੱਕ ਕਰੋ ਅਤੇ ਨਵੀਆਂ ਸਵਿੱਚ ਹੋਲਡ ਕਰਕੇ ਰੱਖੋ ਜਾਂ ਬੈਕਸਪੇਸ ਸਾਫ਼ ਕਰਨ ਲਈ ਵਰਤੋਂ।" - - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:24 - msgid "Shortcuts" -@@ -1772,11 +1748,9 @@ msgid "" - "using this key.\n" - "Please try with a key such as Control, Alt or Shift at the same time." - msgstr "" --"ਸ਼ਾਰਟਕੱਟ \"%s\" ਨੂੰ ਵਰਤਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ ਹੈ, ਕਿਉਂਕਿ ਇਹ ਸਵਿੱਚ ਦੀ ਵਰਤੋਂ ਕਰਕੇ " --"ਲਿਖਣਾ ਮੁਸ਼ਕਿਲ ਹੋ " -+"ਸ਼ਾਰਟਕੱਟ \"%s\" ਨੂੰ ਵਰਤਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ ਹੈ, ਕਿਉਂਕਿ ਇਹ ਸਵਿੱਚ ਦੀ ਵਰਤੋਂ ਕਰਕੇ ਲਿਖਣਾ ਮੁਸ਼ਕਿਲ ਹੋ " - "ਜਾਵੇਗਾ।\n" --"ਇੱਕ ਅਜੇਹੀ ਸਵਿੱਚ ਨਾਲ ਕੋਸ਼ਿਸ਼ ਕਰੋ, ਜਿਸ ਵਿੱਚ ਇੱਕ ਸਮੇਂ Control, Alt ਜਾਂ Shift " --"ਇੱਕਠੇ ਹੋਣ।" -+"ਇੱਕ ਅਜੇਹੀ ਸਵਿੱਚ ਨਾਲ ਕੋਸ਼ਿਸ਼ ਕਰੋ, ਜਿਸ ਵਿੱਚ ਇੱਕ ਸਮੇਂ Control, Alt ਜਾਂ Shift ਇੱਕਠੇ ਹੋਣ।" - - #: ../panels/keyboard/keyboard-shortcuts.c:1387 - #, c-format -@@ -1803,25 +1777,19 @@ msgid "" - "The \"%s\" shortcut has an associated \"%s\" shortcut. Do you want to " - "automatically set it to \"%s\"?" - msgstr "" --"ਸ਼ਾਰਟਕੱਟ \"%s\" ਨਾਲ ਸੰਬੰਧਿਤ \"%s\" ਸ਼ਾਰਟਕ਼ਟ ਹੈ। ਕੀ ਤੁਸੀਂ ਇਸ ਨੂੰ \"%s\" ਲਈ " --"ਆਟੋਮੈਟਿਕ " --"ਸੈੱਟ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" -+"ਸ਼ਾਰਟਕੱਟ \"%s\" ਨਾਲ ਸੰਬੰਧਿਤ \"%s\" ਸ਼ਾਰਟਕ਼ਟ ਹੈ। ਕੀ ਤੁਸੀਂ ਇਸ ਨੂੰ \"%s\" ਲਈ ਆਟੋਮੈਟਿਕ ਸੈੱਟ " -+"ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" - - #: ../panels/keyboard/keyboard-shortcuts.c:1436 - #, c-format --#| msgid "" --#| "If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be " --#| "disabled." - msgid "" - "\"%s\" is currently associated with \"%s\", this shortcut will be disabled " - "if you move forward." - msgstr "" --"\"%s\" ਇਸ ਸਮੇਂ \"%s\" ਨਾਲ ਸੰਬੰਧਿਤ ਹੈ, ਇਹ ਸ਼ਾਰਟਕੱਟ ਨੂੰ ਅਸਮਰੱਥ ਕਰ ਦਿੱਤਾ ਜਾਵੇਗਾ, " --"ਜੇ ਤੁਸੀਂ ਅੱਗੇ " -+"\"%s\" ਇਸ ਸਮੇਂ \"%s\" ਨਾਲ ਸੰਬੰਧਿਤ ਹੈ, ਇਹ ਸ਼ਾਰਟਕੱਟ ਨੂੰ ਅਸਮਰੱਥ ਕਰ ਦਿੱਤਾ ਜਾਵੇਗਾ, ਜੇ ਤੁਸੀਂ ਅੱਗੇ " - "ਜਾਰੀ ਰੱਖਿਆ।" - - #: ../panels/keyboard/keyboard-shortcuts.c:1442 --#| msgid "_Reassign" - msgid "_Assign" - msgstr "ਮੁੜ-ਜਾਰੀ(_A)" - -@@ -1840,15 +1808,13 @@ msgstr "ਮਾਊਸ ਤੇ ਟੱਚਪ - #: ../panels/mouse/gnome-mouse-panel.desktop.in.in.h:2 - msgid "" - "Change your mouse or touchpad sensitivity and select right or left-handed" --msgstr "" --"ਆਪਣੇ ਮਾਊਸ ਜਾਂ ਟੱਚਪੈਡ ਦੀ ਸੰਵੇਦਨਸ਼ੀਲਤਾ ਬਦਲੋ ਅਤੇ ਸੱਜੇ ਜਾਂ ਖੱਬੇ-ਹੱਥ ਦੀ ਚੋਣ ਕਰੋ" -+msgstr "ਆਪਣੇ ਮਾਊਸ ਜਾਂ ਟੱਚਪੈਡ ਦੀ ਸੰਵੇਦਨਸ਼ੀਲਤਾ ਬਦਲੋ ਅਤੇ ਸੱਜੇ ਜਾਂ ਖੱਬੇ-ਹੱਥ ਦੀ ਚੋਣ ਕਰੋ" - - #. Translators: those are keywords for the mouse and touchpad control-center panel - #: ../panels/mouse/gnome-mouse-panel.desktop.in.in.h:4 - msgid "Trackpad;Pointer;Click;Tap;Double;Button;Trackball;Scroll;" - msgstr "" --"Trackpad;Pointer;Click;Tap;Double;Button;Trackball;ਟਰੈਕਪੈਂਡ;ਪੁਆਇੰਟਰ;ਕਲਿੱਕ;ਟੈਪ;" --"ਡਬਲ;" -+"Trackpad;Pointer;Click;Tap;Double;Button;Trackball;ਟਰੈਕਪੈਂਡ;ਪੁਆਇੰਟਰ;ਕਲਿੱਕ;ਟੈਪ;ਡਬਲ;" - "ਬਟਨ;ਟਰੈਕਬਾਲ;Scroll;" - - #: ../panels/mouse/gnome-mouse-properties.ui.h:1 -@@ -2499,15 +2465,13 @@ msgid "" - "Reset the settings for this network, including passwords, but remember it as " - "a preferred network" - msgstr "" --"ਇਹ ਨੈੱਟਵਰਕ ਲਈ ਸੈਟਿੰਗ, ਜਿਸ ਵਿੱਚ ਪਾਸਵਰਡ ਹਨ, ਨੂੰ ਮੁੜ-ਸੈੱਟ ਕਰੋ, ਪਰ ਪਸੰਦੀਦਾ " --"ਨੈੱਟਵਰਕ ਵਜੋਂ ਯਾਦ ਰੱਖੋ।" -+"ਇਹ ਨੈੱਟਵਰਕ ਲਈ ਸੈਟਿੰਗ, ਜਿਸ ਵਿੱਚ ਪਾਸਵਰਡ ਹਨ, ਨੂੰ ਮੁੜ-ਸੈੱਟ ਕਰੋ, ਪਰ ਪਸੰਦੀਦਾ ਨੈੱਟਵਰਕ ਵਜੋਂ ਯਾਦ ਰੱਖੋ।" - - #: ../panels/network/connection-editor/reset-page.ui.h:4 - msgid "" - "Remove all details relating to this network and do not try to automatically " - "connect" --msgstr "" --"ਇਹ ਨੈੱਟਵਰਕ ਨਾਲ ਸਬੰਧਿਤ ਵੇਰਵਾ ਹਟਾਉ ਅਤੇ ਆਟੋਮੈਟਿਕ ਕੁਨੈਕਟ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਨਾ ਕਰੋ।" -+msgstr "ਇਹ ਨੈੱਟਵਰਕ ਨਾਲ ਸਬੰਧਿਤ ਵੇਰਵਾ ਹਟਾਉ ਅਤੇ ਆਟੋਮੈਟਿਕ ਕੁਨੈਕਟ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਨਾ ਕਰੋ।" - - #: ../panels/network/connection-editor/security-page.ui.h:1 - #: ../panels/network/network-wifi.ui.h:16 -@@ -2571,7 +2535,6 @@ msgstr "" - "ਗਲਤੀ: %s" - - #: ../panels/network/connection-editor/vpn-helpers.c:371 --#| msgid "Export VPN connection..." - msgid "Export VPN connection" - msgstr "VPN ਕੁਨੈਕਸ਼ਨ ਐਕਸਪੋਰਟ ਕਰੋ" - -@@ -2609,15 +2572,12 @@ msgstr "ਕੰਟਰੋਲ ਕਰੋ ਕ - - #. Translators: those are keywords for the network control-center panel - #: ../panels/network/gnome-network-panel.desktop.in.in.h:4 --#| msgid "" --#| "Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;" --#| "vpn;vlan;bridge;bond;" - msgid "" - "Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;" - "vlan;bridge;bond;DNS;" - msgstr "" --"ਨੈੱਟਵਰਕ;ਬੇਤਾਰ;ਵਾਈ-ਫਾਈ;ਆਈਪੀ;ਬਰਾਡਬੈਂਡ;ਮਾਡਮ;ਬਲਿਊਟੁੱਥ;Wireless;Wi-Fi;Wifi;IP;" --"LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;vlan;bridge;bond;DNS;" -+"ਨੈੱਟਵਰਕ;ਬੇਤਾਰ;ਵਾਈ-ਫਾਈ;ਆਈਪੀ;ਬਰਾਡਬੈਂਡ;ਮਾਡਮ;ਬਲਿਊਟੁੱਥ;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;" -+"WAN;Broadband;Modem;Bluetooth;vpn;vlan;bridge;bond;DNS;" - - #: ../panels/network/net-device-bond.c:77 - msgid "Bond slaves" -@@ -2698,22 +2658,19 @@ msgid "" - "If you have a connection to the Internet other than wireless, you can set up " - "a wireless hotspot to share the connection with others." - msgstr "" --"ਜੇ ਤੁਸੀਂ ਬੇਤਾਰ ਤੋਂ ਬਿਨਾਂ ਕਿਸੇ ਹੋਰ ਤਰ੍ਹਾਂ ਇੰਟਰਨੈੱਟ ਨਾਲ ਕੁਨੈਕਟ ਹੋ ਤਾਂ ਤੁਸੀਂ ਇਸ " --"ਨੂੰ ਹੋਰਾਂ ਨਾਲ ਆਪਣੇ ਇੰਟਰਨੈੱਟ " -+"ਜੇ ਤੁਸੀਂ ਬੇਤਾਰ ਤੋਂ ਬਿਨਾਂ ਕਿਸੇ ਹੋਰ ਤਰ੍ਹਾਂ ਇੰਟਰਨੈੱਟ ਨਾਲ ਕੁਨੈਕਟ ਹੋ ਤਾਂ ਤੁਸੀਂ ਇਸ ਨੂੰ ਹੋਰਾਂ ਨਾਲ ਆਪਣੇ ਇੰਟਰਨੈੱਟ " - "ਕੁਨੈਕਸ਼ਨ ਨੂੰ ਸਾਂਝਾ ਕਰਨ ਲਈ ਵਰਤ ਸਕਦੇ ਹੋ।" - - #: ../panels/network/net-device-wifi.c:1158 - #, c-format - msgid "Switching on the wireless hotspot will disconnect you from %s." --msgstr "" --"ਬੇਤਾਰ ਹਾਟਸਪਾਟ ਚਾਲੂ ਕਰਨ ਨਾਲ ਤੁਹਾਨੂੰ %s ਤੋਂ ਡਿਸ-ਕੁਨੈਕਟ ਕੀਤਾ ਜਾਵੇਗਾ।" -+msgstr "ਬੇਤਾਰ ਹਾਟਸਪਾਟ ਚਾਲੂ ਕਰਨ ਨਾਲ ਤੁਹਾਨੂੰ %s ਤੋਂ ਡਿਸ-ਕੁਨੈਕਟ ਕੀਤਾ ਜਾਵੇਗਾ।" - - #: ../panels/network/net-device-wifi.c:1162 - msgid "" - "It is not possible to access the Internet through your wireless while the " - "hotspot is active." --msgstr "" --"ਤੁਹਾਡੇ ਬੇਤਾਰ ਰਾਹੀਂ ਇੰਟਰਨੈੱਟ ਵਰਤਣਾ ਸੰਭਵ ਨਹੀਂ ਹੈ, ਜਦੋਂ ਕਿ ਹਾਟਸਪਾਟ ਸਰਗਰਮ ਹੋਵੇ।" -+msgstr "ਤੁਹਾਡੇ ਬੇਤਾਰ ਰਾਹੀਂ ਇੰਟਰਨੈੱਟ ਵਰਤਣਾ ਸੰਭਵ ਨਹੀਂ ਹੈ, ਜਦੋਂ ਕਿ ਹਾਟਸਪਾਟ ਸਰਗਰਮ ਹੋਵੇ।" - - #: ../panels/network/net-device-wifi.c:1245 - msgid "Stop hotspot and disconnect any users?" -@@ -2736,8 +2693,7 @@ msgid "" - "Network details for the selected networks, including passwords and any " - "custom configuration will be lost." - msgstr "" --"ਚੁਣੇ ਗਏ ਨੈੱਟਵਰਕਾਂ ਲਈ ਨੈੱਟਵਰਕ ਵੇਰਵਾ, ਜਿਸ ਵਿੱਚ ਪਾਸਵਰਡ ਅਤੇ ਹੋਰ ਪਸੰਦੀਦਾ ਸੰਰਚਨਾ " --"ਦਿੱਤੀ ਸੀ, ਖਤਮ ਹੋ " -+"ਚੁਣੇ ਗਏ ਨੈੱਟਵਰਕਾਂ ਲਈ ਨੈੱਟਵਰਕ ਵੇਰਵਾ, ਜਿਸ ਵਿੱਚ ਪਾਸਵਰਡ ਅਤੇ ਹੋਰ ਪਸੰਦੀਦਾ ਸੰਰਚਨਾ ਦਿੱਤੀ ਸੀ, ਖਤਮ ਹੋ " - "ਜਾਵੇਗਾ।" - - #: ../panels/network/net-device-wifi.c:1745 -@@ -2762,8 +2718,7 @@ msgstr "ਭੁੱਲ ਜਾਓ(_F)" - #: ../panels/network/net-proxy.c:67 - msgid "" - "Web Proxy Autodiscovery is used when a Configuration URL is not provided." --msgstr "" --"ਵੈੱਬ ਪਰਾਕਸੀ ਆਪੇ-ਆਪ ਖੋਜ ਵਰਤੀ ਜਾਂਦੀ ਹੈ, ਜਦੋਂ ਸੰਰਚਨਾ URL ਨਾ ਦਿੱਤਾ ਗਿਆ ਹੋਵੇ।" -+msgstr "ਵੈੱਬ ਪਰਾਕਸੀ ਆਪੇ-ਆਪ ਖੋਜ ਵਰਤੀ ਜਾਂਦੀ ਹੈ, ਜਦੋਂ ਸੰਰਚਨਾ URL ਨਾ ਦਿੱਤਾ ਗਿਆ ਹੋਵੇ।" - - #. TRANSLATORS: WPAD is bad: if you enable it on an untrusted - #. * network, then anyone else on that network can tell your -@@ -2951,17 +2906,13 @@ msgstr "ਹਾਰਡਵੇਅਰ" - msgid "" - "Reset the settings for this connection to their defaults, but remember as a " - "preferred connection." --msgstr "" --"ਇਹ ਕੁਨੈਕਸ਼ਨ ਲਈ ਸੈਟਿੰਗ ਉਹਨਾਂ ਦੇ ਡਿਫਾਲਟ ਲਈ ਮੁੜ-ਸੈੱਟ ਕਰੋ, ਪਰ ਪਸੰਦੀਦਾ ਕੁਨੈਕਸ਼ਨ ਵਜੋਂ " --"ਯਾਦ ਰੱਖੋ।" -+msgstr "ਇਹ ਕੁਨੈਕਸ਼ਨ ਲਈ ਸੈਟਿੰਗ ਉਹਨਾਂ ਦੇ ਡਿਫਾਲਟ ਲਈ ਮੁੜ-ਸੈੱਟ ਕਰੋ, ਪਰ ਪਸੰਦੀਦਾ ਕੁਨੈਕਸ਼ਨ ਵਜੋਂ ਯਾਦ ਰੱਖੋ।" - - #: ../panels/network/network-wifi.ui.h:44 - msgid "" - "Remove all details relating to this network and do not try to automatically " - "connect to it." --msgstr "" --"ਇਹ ਨੈੱਟਵਰਕ ਨਾਲ ਸਬੰਧਿਤ ਵੇਰਵਾ ਹਟਾਉ ਅਤੇ ਇਸ ਨਾਲ ਆਟੋਮੈਟਿਕ ਕੁਨੈਕਟ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਨਾ " --"ਕਰੋ।" -+msgstr "ਇਹ ਨੈੱਟਵਰਕ ਨਾਲ ਸਬੰਧਿਤ ਵੇਰਵਾ ਹਟਾਉ ਅਤੇ ਇਸ ਨਾਲ ਆਟੋਮੈਟਿਕ ਕੁਨੈਕਟ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਨਾ ਕਰੋ।" - - #: ../panels/network/network-wifi.ui.h:45 - msgid "reset" -@@ -3315,8 +3266,7 @@ msgid "" - "to insecure, rogue Wi-Fi networks. Would you like to choose a Certificate " - "Authority certificate?" - msgstr "" --"ਸਰਟੀਫਿਕੇਟ ਅਥਾਰਟੀ (CA) ਸਰਟੀਫਿਕੇਟ ਦੀ ਵਰਤੋਂ ਨਾ ਕਰਨ ਨਾਲ ਕੁਨੈਕਸ਼ਨ ਅਸੁਰੱਖਿਅਤ, ਠੱਗ " --"ਵਾਈ-ਫਾਈ " -+"ਸਰਟੀਫਿਕੇਟ ਅਥਾਰਟੀ (CA) ਸਰਟੀਫਿਕੇਟ ਦੀ ਵਰਤੋਂ ਨਾ ਕਰਨ ਨਾਲ ਕੁਨੈਕਸ਼ਨ ਅਸੁਰੱਖਿਅਤ, ਠੱਗ ਵਾਈ-ਫਾਈ " - "ਨੈੱਟਵਰਕ ਹੋ ਸਕਦੇ ਹਨ। ਕੀ ਤੁਸੀਂ ਸਰਟੀਫਿਕੇਟ ਅਥਾਰਟੀ ਸਰਟੀਫਿਕੇਟ ਚੁਣਨਾ ਚਾਹੁੰਦੇ ਹੋ?" - - #: ../panels/network/wireless-security/eap-method.c:281 -@@ -3347,7 +3297,6 @@ msgid "MSCHAPv2" - msgstr "MSCHAPv2" - - #: ../panels/network/wireless-security/eap-method-fast.c:409 --#| msgid "Choose a PAC file..." - msgid "Choose a PAC file" - msgstr "PAC ਫਾਇਲ ਚੁਣੋ" - -@@ -3413,7 +3362,6 @@ msgstr "MD5" - #: ../panels/network/wireless-security/eap-method-peap.c:350 - #: ../panels/network/wireless-security/eap-method-tls.c:456 - #: ../panels/network/wireless-security/eap-method-ttls.c:350 --#| msgid "Choose a Certificate Authority certificate..." - msgid "Choose a Certificate Authority certificate" - msgstr "ਸਰਟੀਫਿਕੇਟ ਅਥਾਰਟੀ ਸਰਫੀਟਿਕੇਟ ਚੁਣੋ" - -@@ -3451,19 +3399,16 @@ msgid "" - "\n" - "(You can password-protect your private key with openssl)" - msgstr "" --"ਚੁਣੀ ਗਈ ਪ੍ਰਾਈਵੇਟ ਕੁੰਜੀ ਪਾਸਵਰਡ ਨਾਲ ਸੁਰੱਖਿਅਤ ਨਹੀਂ ਜਾਪਦੀ ਹੈ। ਇਹ ਤੁਹਾਡੀ ਸੁਰੱਖਿਅਤ " --"ਸਨਦ ਨੂੰ ਖਤਰਾ " -+"ਚੁਣੀ ਗਈ ਪ੍ਰਾਈਵੇਟ ਕੁੰਜੀ ਪਾਸਵਰਡ ਨਾਲ ਸੁਰੱਖਿਅਤ ਨਹੀਂ ਜਾਪਦੀ ਹੈ। ਇਹ ਤੁਹਾਡੀ ਸੁਰੱਖਿਅਤ ਸਨਦ ਨੂੰ ਖਤਰਾ " - "ਪੈਦਾ ਕਰ ਸਕਦੀ ਹੈ। ਪਾਸਵਰਡ ਨਾਲ ਸੁਰੱਖਿਅਤ ਪ੍ਰਾਈਵੇਟ ਕੁੰਜੀ ਚੁਣੋ ਜੀ।\n" - "\n" - "(ਤੁਸੀਂ openssl ਨਾਲ ਪ੍ਰਾਈਵੇਟ ਕੁੰਜੀ ਪਾਸਵਰਡ ਸੁਰੱਖਿਅਤ ਕਰ ਸਕਦੇ ਹੋ)" - - #: ../panels/network/wireless-security/eap-method-tls.c:450 --#| msgid "Choose your personal certificate..." - msgid "Choose your personal certificate" - msgstr "ਆਪਣਾ ਨਿੱਜੀ ਸਰਟੀਫਿਕੇਟ ਚੁਣੋ" - - #: ../panels/network/wireless-security/eap-method-tls.c:462 --#| msgid "Choose your private key..." - msgid "Choose your private key" - msgstr "ਆਪਣੀ ਪ੍ਰਾਈਵੇਟ ਕੁੰਜੀ ਚੁਣੋ" - -@@ -3702,8 +3647,7 @@ msgstr "ਆਨਲਾਈਨ ਅਕਾਊ? - - #: ../panels/online-accounts/gnome-online-accounts-panel.desktop.in.in.h:2 - msgid "Connect to your online accounts and decide what to use them for" --msgstr "" --"ਆਪਣੇ ਆਨਲਾਈਨ ਖਾਤਿਆਂ ਨਾਲ ਕੁਨੈਕਟ ਹੋਵੋ ਅਤੇ ਫੈਸਲਾ ਕਰੋ ਕਿ ਉਹਨਾਂ ਨੂੰ ਕਿਸ ਲਈ ਵਰਤਣਾ ਹੈ" -+msgstr "ਆਪਣੇ ਆਨਲਾਈਨ ਖਾਤਿਆਂ ਨਾਲ ਕੁਨੈਕਟ ਹੋਵੋ ਅਤੇ ਫੈਸਲਾ ਕਰੋ ਕਿ ਉਹਨਾਂ ਨੂੰ ਕਿਸ ਲਈ ਵਰਤਣਾ ਹੈ" - - #. For ReadItLater and Pocket, see http://en.wikipedia.org/wiki/Pocket_(application) - #: ../panels/online-accounts/gnome-online-accounts-panel.desktop.in.in.h:4 -@@ -3711,8 +3655,7 @@ msgid "" - "Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;" - "Kerberos;IMAP;SMTP;Pocket;ReadItLater;" - msgstr "" --"ਗੂਗਲ;ਫੇਸਬੁੱਕ;ਟਵਿੱਟਰ;ਯਾਹੂ;ਵੈੱਬ;ਆਨਲਾਈਨ;ਗੱਲਬਾਤ;ਚੈਟ;ਕੈਲੰਡਰ;ਮੇਲ;ਸੰਪਰਕ;Google;Facebo" --"ok;Twitter;" -+"ਗੂਗਲ;ਫੇਸਬੁੱਕ;ਟਵਿੱਟਰ;ਯਾਹੂ;ਵੈੱਬ;ਆਨਲਾਈਨ;ਗੱਲਬਾਤ;ਚੈਟ;ਕੈਲੰਡਰ;ਮੇਲ;ਸੰਪਰਕ;Google;Facebook;Twitter;" - "Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;Kerberos;IMAP;SMTP;" - "Packet;ReaditLater" - -@@ -3733,8 +3676,7 @@ msgid "" - "Adding an account allows your applications to access it for documents, mail, " - "contacts, calendar, chat and more." - msgstr "" --"ਅਕਾਊਂਟ ਸ਼ਾਮਿਲ ਕਰਨ ਨਾਲ ਤੁਹਾਡੀਆਂ ਐਪਲੀਕੇਸ਼ਨ ਉਸ ਲਈ ਡੌਕੂਮੈਂਟ, ਮੇਲ, ਸੰਪਰਕ, ਕੈਲੰਡਰ, " --"ਚੈਟ ਅਤੇ ਹੋਰ ਚੀਜ਼ਾਂ " -+"ਅਕਾਊਂਟ ਸ਼ਾਮਿਲ ਕਰਨ ਨਾਲ ਤੁਹਾਡੀਆਂ ਐਪਲੀਕੇਸ਼ਨ ਉਸ ਲਈ ਡੌਕੂਮੈਂਟ, ਮੇਲ, ਸੰਪਰਕ, ਕੈਲੰਡਰ, ਚੈਟ ਅਤੇ ਹੋਰ ਚੀਜ਼ਾਂ " - "ਵਰਤ ਸਕਦੀਆਂ ਹਨ।" - - #: ../panels/power/cc-power-panel.c:183 -@@ -4284,8 +4226,7 @@ msgstr "ਪਰਿੰਟਰ" - - #: ../panels/printers/gnome-printers-panel.desktop.in.in.h:2 - msgid "Add printers, view printer jobs and decide how you want to print" --msgstr "" --"ਪਰਿੰਟਰ ਜੋੜੋ, ਪਰਿੰਟਰ ਜਾਬ ਵੇਖੋ ਅਤੇ ਤਹਿ ਕਰੋ ਤੁਸੀਂ ਕਿਵੇਂ ਪਰਿੰਟ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੈ" -+msgstr "ਪਰਿੰਟਰ ਜੋੜੋ, ਪਰਿੰਟਰ ਜਾਬ ਵੇਖੋ ਅਤੇ ਤਹਿ ਕਰੋ ਤੁਸੀਂ ਕਿਵੇਂ ਪਰਿੰਟ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੈ" - - #. Translators: those are keywords for the printing control-center panel - #: ../panels/printers/gnome-printers-panel.desktop.in.in.h:4 -@@ -4347,13 +4288,11 @@ msgstr "...ਡਰਾਇਵਰ ਡਾਟ? - - #. Translators: The found device is a JetDirect printer - #: ../panels/printers/pp-host.c:506 --#| msgid "Remove Printer" - msgid "JetDirect Printer" - msgstr "JetDirect ਪਰਿੰਟਰ" - - #. Translators: The found device is a Line Printer Daemon printer - #: ../panels/printers/pp-host.c:756 --#| msgid "%s Printer" - msgid "LPD Printer" - msgstr "LPD ਪਰਿੰਟਰ" - -@@ -4750,8 +4689,7 @@ msgid "" - "screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;" - "network;identity;" - msgstr "" --"ਸਕਰੀਨ;ਲਾਕ;ਜਾਂਚ;ਪੜਤਾਲ;ਪ੍ਰਾਈਵੇਟ;ਨਿੱਜੀ;ਆਰਜ਼ੀ;ਇੰਡੈਕਸ;ਨਾਂ;ਨੈੱਟਵਰਕ;ਪਛਾਣ;ਕਰੈਸ਼;ਤਾਜ਼ਾ;scr" --"een;lock;" -+"ਸਕਰੀਨ;ਲਾਕ;ਜਾਂਚ;ਪੜਤਾਲ;ਪ੍ਰਾਈਵੇਟ;ਨਿੱਜੀ;ਆਰਜ਼ੀ;ਇੰਡੈਕਸ;ਨਾਂ;ਨੈੱਟਵਰਕ;ਪਛਾਣ;ਕਰੈਸ਼;ਤਾਜ਼ਾ;screen;lock;" - "diagnostics;crash;private;recent;temporary;tmp;index;name;network;identity;" - - #: ../panels/privacy/privacy.ui.h:1 -@@ -4807,8 +4745,7 @@ msgid "" - "Remembering your history makes things easier to find again. These items are " - "never shared over the network." - msgstr "" --"ਤੁਹਾਡੇ ਅਤੀਤ ਨੂੰ ਯਾਦ ਰੱਖਣ ਨਾਲ ਚੀਜ਼ਾਂ ਨੂੰ ਮੁੜ-ਲੱਭਣਾ ਸੌਖਾ ਹੋ ਜਾਂਦਾ ਹੈ। ਇਹ ਚੀਜ਼ਾਂ " --"ਨੂੰ ਨੈੱਟਵਰਕ ਉੱਤੇ ਕਦੇ " -+"ਤੁਹਾਡੇ ਅਤੀਤ ਨੂੰ ਯਾਦ ਰੱਖਣ ਨਾਲ ਚੀਜ਼ਾਂ ਨੂੰ ਮੁੜ-ਲੱਭਣਾ ਸੌਖਾ ਹੋ ਜਾਂਦਾ ਹੈ। ਇਹ ਚੀਜ਼ਾਂ ਨੂੰ ਨੈੱਟਵਰਕ ਉੱਤੇ ਕਦੇ " - "ਵੀ ਸਾਂਝਾ ਨਹੀਂ ਕੀਤਾ ਜਾਂਦਾ ਹੈ।" - - #: ../panels/privacy/privacy.ui.h:21 -@@ -4844,8 +4781,7 @@ msgid "" - "Automatically purge the Trash and temporary files to help keep your computer " - "free of unnecessary sensitive information." - msgstr "" --"ਆਪਣੇ ਕੰਪਿਊਟਰ ਨੂੰ ਕਿਸੇ ਵੀ ਗ਼ੈਰ-ਜ਼ਰੂਰੀ ਸੰਵੇਦਨਸ਼ੀਲ ਜਾਣਕਾਰੀ ਤੋਂ ਮੁਕਤ ਰੱਖਣ ਲਈ ਮੱਦਦ " --"ਵਾਸਤੇ ਰੱਦੀ ਅਤੇ " -+"ਆਪਣੇ ਕੰਪਿਊਟਰ ਨੂੰ ਕਿਸੇ ਵੀ ਗ਼ੈਰ-ਜ਼ਰੂਰੀ ਸੰਵੇਦਨਸ਼ੀਲ ਜਾਣਕਾਰੀ ਤੋਂ ਮੁਕਤ ਰੱਖਣ ਲਈ ਮੱਦਦ ਵਾਸਤੇ ਰੱਦੀ ਅਤੇ " - "ਆਰਜ਼ੀਫਾਇਲਾਂ ਨੂੰ ਆਪਣੇ-ਆਪ ਨਸ਼ਟ ਕਰੋ" - - #: ../panels/privacy/privacy.ui.h:31 -@@ -4869,13 +4805,10 @@ msgid "" - "All the information we collect is made anonymous, and we will never share " - "your data with third parties." - msgstr "" --"ਸਾਨੂੰ ਤੁਹਾਡੇ ਵਲੋਂ ਵਰਤੇ ਜਾਂਦੇ ਸਾਫਟਵੇਅਰ ਬਾਰੇ ਜਾਣਾਕਰੀ ਭੇਜਣ ਨਾਲ ਸਾਨੂੰ ਤੁਹਾਡੀ ਹੋਰ " --"ਵੀ ਠੀਕ ਢੰਗ ਨਾਲ " --"ਸਿਫਾਰਸ਼ ਕਰਨ ਲਈ ਮੱਦਦ ਹੋਵੇਗੀ। ਇਸ ਨਾਲ ਸਾਡੇ ਸਾਫਟਵੇਅਰ ਵਿੱਚ ਸੁਧਾਰ ਲਈ ਵੀ ਸਾਡੀ ਮੱਦਦ " --"ਹੋਵੇਗੀ।\n" -+"ਸਾਨੂੰ ਤੁਹਾਡੇ ਵਲੋਂ ਵਰਤੇ ਜਾਂਦੇ ਸਾਫਟਵੇਅਰ ਬਾਰੇ ਜਾਣਾਕਰੀ ਭੇਜਣ ਨਾਲ ਸਾਨੂੰ ਤੁਹਾਡੀ ਹੋਰ ਵੀ ਠੀਕ ਢੰਗ ਨਾਲ " -+"ਸਿਫਾਰਸ਼ ਕਰਨ ਲਈ ਮੱਦਦ ਹੋਵੇਗੀ। ਇਸ ਨਾਲ ਸਾਡੇ ਸਾਫਟਵੇਅਰ ਵਿੱਚ ਸੁਧਾਰ ਲਈ ਵੀ ਸਾਡੀ ਮੱਦਦ ਹੋਵੇਗੀ।\n" - "\n" --"ਸਾਡੇ ਵਲੋਂ ਇੱਕਠੀ ਕੀਤੀ ਜਾਂਦੀ ਸਾਰੀ ਜਾਣਕਾਰੀ ਅਗਿਆਤ ਵਜੋਂ ਹੈ, ਅਤੇ ਅਸੀਂ ਤੁਹਾਡੇ ਡਾਟੇ " --"ਨੂੰ ਕਿਸੇ ਵੀ ਹੋਰ " -+"ਸਾਡੇ ਵਲੋਂ ਇੱਕਠੀ ਕੀਤੀ ਜਾਂਦੀ ਸਾਰੀ ਜਾਣਕਾਰੀ ਅਗਿਆਤ ਵਜੋਂ ਹੈ, ਅਤੇ ਅਸੀਂ ਤੁਹਾਡੇ ਡਾਟੇ ਨੂੰ ਕਿਸੇ ਵੀ ਹੋਰ " - "ਸੁਤੰਤਰ ਧਿਰ ਨਾਲ ਸਾਂਝਾ ਨਹੀਂ ਕਰੇਗੇ।" - - #: ../panels/privacy/privacy.ui.h:40 -@@ -4887,7 +4820,6 @@ msgid "Privacy Policy" - msgstr "ਪਰਾਈਵੇਸੀ ਪਾਲਸੀ" - - #: ../panels/privacy/privacy.ui.h:42 --#| msgid "Location: %s" - msgid "_Location Services" - msgstr "ਟਿਕਾਣਾ ਸੇਵਾਵਾਂ(_L)" - -@@ -5048,8 +4980,7 @@ msgstr "ਚੋਣਾਂ" - - #: ../panels/region/region.ui.h:7 - msgid "Login settings are used by all users when logging into the system" --msgstr "" --"ਲਾਗਇਨ ਸੈਟਿੰਗ ਨੂੰ ਸਭ ਯੂਜ਼ਰ ਵਲੋਂ ਵਰਤਿਆ ਜਾਂਦਾ ਹੈ, ਜਦੋਂ ਸਿਸਟਮ ਵਿੱਚ ਲਾਗਇਨ ਕਰਦੇ ਹਨ" -+msgstr "ਲਾਗਇਨ ਸੈਟਿੰਗ ਨੂੰ ਸਭ ਯੂਜ਼ਰ ਵਲੋਂ ਵਰਤਿਆ ਜਾਂਦਾ ਹੈ, ਜਦੋਂ ਸਿਸਟਮ ਵਿੱਚ ਲਾਗਇਨ ਕਰਦੇ ਹਨ" - - #: ../panels/search/cc-search-locations-dialog.c:476 - msgctxt "Search Location" -@@ -5091,8 +5022,7 @@ msgstr "ਕੰਟਰੋਲ ਕਰੋ ਕ - #: ../panels/search/gnome-search-panel.desktop.in.in.h:4 - msgid "Search;Find;Index;Hide;Privacy;Results;" - msgstr "" --"ਖੋਜ;ਲੱਭੋ;ਲੱਭਣਾ;ਇੰਡੈਕਸ;ਤਤਕਰਾ;ਪਰਾਈਵੇਸੀ;ਨਤੀਜੇ;Search;Find;Index;Hide;Privacy;Resu" --"lts;" -+"ਖੋਜ;ਲੱਭੋ;ਲੱਭਣਾ;ਇੰਡੈਕਸ;ਤਤਕਰਾ;ਪਰਾਈਵੇਸੀ;ਨਤੀਜੇ;Search;Find;Index;Hide;Privacy;Results;" - - #: ../panels/search/search-locations-dialog.ui.h:1 - msgid "Search Locations" -@@ -5122,13 +5052,11 @@ msgid "Off" - msgstr "ਬੰਦ" - - #: ../panels/sharing/cc-sharing-panel.c:304 --#| msgid "Enabled" - msgctxt "service is enabled" - msgid "Enabled" - msgstr "ਯੋਗ ਕੀਤਾ" - - #: ../panels/sharing/cc-sharing-panel.c:307 --#| msgid "_Activate" - msgctxt "service is active" - msgid "Active" - msgstr "ਸਰਗਰਮ" -@@ -5155,8 +5083,7 @@ msgid "" - "share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;" - "pictures;photos;movies;server;renderer;" - msgstr "" --"ਸਾਂਝਾ;ਸਾਂਝਾ ਕਰਨਾ;ਸ਼ੇਅਰ;ਹੋਸਟ;ਨਾਂ;ਡੈਸਕਟਾਪ;ਰਿਮੋਟ;ਬਲਿਊਟੁੱਥ;ਮੀਡਿਆ;ਆਡੀਓ;ਵਿਡੀਓ;ਤਸਵੀਰ;ਫ" --"ੋਟੋ;ਸਰਵਰ;" -+"ਸਾਂਝਾ;ਸਾਂਝਾ ਕਰਨਾ;ਸ਼ੇਅਰ;ਹੋਸਟ;ਨਾਂ;ਡੈਸਕਟਾਪ;ਰਿਮੋਟ;ਬਲਿਊਟੁੱਥ;ਮੀਡਿਆ;ਆਡੀਓ;ਵਿਡੀਓ;ਤਸਵੀਰ;ਫੋਟੋ;ਸਰਵਰ;" - "ਮੂਵੀ;ਫਿਲਮਾਂ;share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;" - "audio;video;pictures;photos;movies;server;renderer;" - -@@ -5170,7 +5097,6 @@ msgstr "ਰਿਮੋਟ ਲਾਗਇਨ - - #. Label - #: ../panels/sharing/cc-sharing-networks.c:299 --#| msgid "List of keyboard layouts selected for usage" - msgid "No networks selected for sharing" - msgstr "ਸਾਂਝਾ ਕਰਨ ਲਈ ਕੋਈ ਨੈੱਟਵਰਕ ਨਹੀਂ ਚੁਣਿਆ" - -@@ -5178,7 +5104,6 @@ msgstr "ਸਾਂਝਾ ਕਰਨ ਲਈ - #. * vim: sw=2 ts=8 cindent noai bs=2 - #. - #: ../panels/sharing/networks.ui.h:1 --#| msgid "Network" - msgid "Networks" - msgstr "ਨੈੱਟਵਰਕ" - -@@ -5190,9 +5115,7 @@ msgstr "ਬਲਿਊਟੁੱਥ ਸਾ? - msgid "" - "Bluetooth Sharing allows you to share files with other Bluetooth enabled " - "devices" --msgstr "" --"ਬਲਿਉਟੁੱਥ ਸਾਂਝਾ ਕਰਨ ਨਾਲ ਤੁਸੀਂ ਬਲਿਊਟੁੱਥ ਰੱਖਣ ਵਾਲੇ ਜੰਤਰਾਂ ਉੱਤੇ ਫਾਇਲਾਂ ਸਾਂਝੀਆਂ ਕਰ " --"ਸਕਦੇ ਹੋ" -+msgstr "ਬਲਿਉਟੁੱਥ ਸਾਂਝਾ ਕਰਨ ਨਾਲ ਤੁਸੀਂ ਬਲਿਊਟੁੱਥ ਰੱਖਣ ਵਾਲੇ ਜੰਤਰਾਂ ਉੱਤੇ ਫਾਇਲਾਂ ਸਾਂਝੀਆਂ ਕਰ ਸਕਦੇ ਹੋ" - - #: ../panels/sharing/sharing.ui.h:3 - msgid "Only Receive From Trusted Devices" -@@ -5232,8 +5155,7 @@ msgid "" - "Personal File Sharing allows you to share your Public folder with others on " - "your current network using: dav://%s" - msgstr "" --"ਨਿੱਜੀ ਫਾਇਲ ਸਾਂਝ ਤੁਹਾਨੂੰ ਤੁਹਾਡੇ ਪਬਲਿਕ ਫੋਲਡਰ ਨੂੰ ਹੋਰਾਂ ਨਾਲ ਤੁਹਾਡੇ ਮੌਜੂਦਾ " --"ਨੈੱਟਵਰਕ ਉੱਤੇ dav://%s ਦੀ ਵਰਤੋਂ ਨਾਲ ਸਾਂਝਾ ਕਰਨ ਲਈ ਸਹਾਇਕ ਹੈ" - - #: ../panels/sharing/sharing.ui.h:13 -@@ -5255,8 +5177,7 @@ msgid "" - "Allow remote users to view or control your screen by connecting to: vnc://%s" - msgstr "" --"ਰਿਮੋਟ ਯੂਜ਼ਰ ਨੂੰ ਆਪਣੀ ਸਕਰੀਨ ਵੇਖਣ ਜਾਂ ਕੰਟਰੋਲ ਕਰਨ ਦਿਉ, ਇਸ ਨਾਲ ਕੁਨੈਕਟ ਕਰਕੇ: vnc://%s" - - #: ../panels/sharing/sharing.ui.h:20 -@@ -5284,12 +5205,10 @@ msgid "Require a password" - msgstr "ਪਾਸਵਰਡ ਚਾਹੀਦਾ ਹੈ" - - #: ../panels/sharing/sharing.ui.h:26 --#| msgid "Share Music, Photos and Videos with others on the current network." - msgid "Share music, photos and videos over the network." - msgstr "ਮੌਜੂਦਾ ਨੈੱਟਵਰਕ ਉੱਤੇ ਹੋਰਾਂ ਨਾਲ ਸੰਗੀਤ, ਫੋਟੋ ਤੇ ਵਿਡੀਓ ਨੂੰ ਸਾਂਝਾ ਕਰੋ।" - - #: ../panels/sharing/sharing.ui.h:27 --#| msgid "Add Folder" - msgid "Folders" - msgstr "ਫੋਲਡਰ" - -@@ -6005,9 +5924,7 @@ msgstr "ਜਾਂਚ(_V)" - msgid "" - "Enterprise login allows an existing centrally managed user account to be " - "used on this device." --msgstr "" --"ਇੰਟਰਪਰਾਈਜ਼ ਲਾਗਇਨ ਮੌਜੂਦਾ ਕੇਂਦਰੀਕ੍ਰਿਤ ਯੂਜ਼ਰ ਅਕਾਊਂਟ ਨੂੰ ਇਹ ਜੰਤਰ ਉੱਤੇ ਵਰਤਣ ਲਈ ਸਹਾਇਕ " --"ਹੈ।" -+msgstr "ਇੰਟਰਪਰਾਈਜ਼ ਲਾਗਇਨ ਮੌਜੂਦਾ ਕੇਂਦਰੀਕ੍ਰਿਤ ਯੂਜ਼ਰ ਅਕਾਊਂਟ ਨੂੰ ਇਹ ਜੰਤਰ ਉੱਤੇ ਵਰਤਣ ਲਈ ਸਹਾਇਕ ਹੈ।" - - #: ../panels/user-accounts/data/account-dialog.ui.h:12 - msgid "_Domain" -@@ -6111,8 +6028,7 @@ msgid "" - "Your fingerprint was successfully saved. You should now be able to log in " - "using your fingerprint reader." - msgstr "" --"ਤੁਹਾਡੇ ਫਿੰਗਰਪਰਿੰਟ ਸਫ਼ਲਤਾ ਨਾਲ ਸੰਭਾਲੇ ਗਏ ਹਨ। ਹੁਣ ਤੁਸੀਂ ਫਿੰਗਰਪਰਿੰਟ ਰੀਡਰ ਦੀ ਵਰਤੋਂ " --"ਕਰਕੇ ਲਾਗਇਨ " -+"ਤੁਹਾਡੇ ਫਿੰਗਰਪਰਿੰਟ ਸਫ਼ਲਤਾ ਨਾਲ ਸੰਭਾਲੇ ਗਏ ਹਨ। ਹੁਣ ਤੁਸੀਂ ਫਿੰਗਰਪਰਿੰਟ ਰੀਡਰ ਦੀ ਵਰਤੋਂ ਕਰਕੇ ਲਾਗਇਨ " - "ਕਰਨ ਦੇ ਯੋਗ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ।" - - #: ../panels/user-accounts/data/gnome-user-accounts-panel.desktop.in.in.h:1 -@@ -6133,7 +6049,6 @@ msgid "Login History" - msgstr "ਲਾਗਇਨ ਅਤੀਤ" - - #: ../panels/user-accounts/data/password-dialog.ui.h:1 --#| msgid "Change pa_ssword" - msgid "Change Password" - msgstr "ਪਾਸਵਰਡ ਬਦਲੋ" - -@@ -6269,8 +6184,7 @@ msgid "" - "Try to avoid repeating the same type of character: you need to mix up " - "letters, numbers and punctuation." - msgstr "" --"ਇੱਕੋ ਕਿਸਮ ਦੇ ਅੱਖਰ ਮੁੜ-ਵਰਤਣ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰੋ: ਤੁਸੀਂ ਅੱਖਰਾਂ, ਅੰਕਾਂ ਅਤੇ ਵਿਰਾਮ " --"ਚਿੰਨ੍ਹਾਂ ਨੂੰ ਮਿਲ ਸਕਦੇ ਹੋ।" -+"ਇੱਕੋ ਕਿਸਮ ਦੇ ਅੱਖਰ ਮੁੜ-ਵਰਤਣ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰੋ: ਤੁਸੀਂ ਅੱਖਰਾਂ, ਅੰਕਾਂ ਅਤੇ ਵਿਰਾਮ ਚਿੰਨ੍ਹਾਂ ਨੂੰ ਮਿਲ ਸਕਦੇ ਹੋ।" - - #: ../panels/user-accounts/pw-utils.c:113 - msgctxt "Password hint" -@@ -6292,8 +6206,7 @@ msgctxt "Password hint" - msgid "" - "Good password! Adding more letters, numbers and punctuation will make it " - "stronger." --msgstr "" --"ਚੰਗਾ ਪਾਸਵਰਡ! ਹੋਰ ਅੱਖਰ, ਨੰਬਰ ਤੇ ਵਿਰਾਮ ਚਿੰਨ੍ਹ ਜੋੜਨ ਨਾਲ ਇਹ ਹੋਰ ਵੀ ਮਜ਼ਬੂਤ ਬਣੇਗਾ।" -+msgstr "ਚੰਗਾ ਪਾਸਵਰਡ! ਹੋਰ ਅੱਖਰ, ਨੰਬਰ ਤੇ ਵਿਰਾਮ ਚਿੰਨ੍ਹ ਜੋੜਨ ਨਾਲ ਇਹ ਹੋਰ ਵੀ ਮਜ਼ਬੂਤ ਬਣੇਗਾ।" - - #: ../panels/user-accounts/pw-utils.c:141 - #: ../panels/user-accounts/pw-utils.c:171 -@@ -6426,8 +6339,7 @@ msgstr "ਡੋਮੇਨ ਲੱਭਣ ਲ - #: ../panels/user-accounts/um-fingerprint-dialog.c:138 - msgid "" - "You are not allowed to access the device. Contact your system administrator." --msgstr "" --"ਤੁਹਾਨੂੰ ਜੰਤਰ ਵਰਤਣ ਦੀ ਇਜ਼ਾਜ਼ਤ ਨਹੀਂ ਹੈ। ਆਪਣੇ ਸਿਸਟਮ ਐਡਮਿਨਸਟੇਟਰ ਨਾਲ ਸੰਪਰਕ ਕਰੋ।" -+msgstr "ਤੁਹਾਨੂੰ ਜੰਤਰ ਵਰਤਣ ਦੀ ਇਜ਼ਾਜ਼ਤ ਨਹੀਂ ਹੈ। ਆਪਣੇ ਸਿਸਟਮ ਐਡਮਿਨਸਟੇਟਰ ਨਾਲ ਸੰਪਰਕ ਕਰੋ।" - - #: ../panels/user-accounts/um-fingerprint-dialog.c:140 - msgid "The device is already in use." -@@ -6454,8 +6366,7 @@ msgid "" - "Do you want to delete your registered fingerprints so fingerprint login is " - "disabled?" - msgstr "" --"ਕੀ ਤੁਸੀਂ ਆਪਣੇ ਰਜਿਸਟਰ ਕੀਤੇ ਫਿੰਗਰਪਰਿੰਟ ਹਟਾਉਣੇ ਚਾਹੁੰਦੇ ਹੋ ਤਾਂ ਕਿ ਫਿੰਗਰਪਰਿੰਟ " --"ਲਾਗਇਨ ਨੂੰ ਆਯੋਗ ਕੀਤਾ " -+"ਕੀ ਤੁਸੀਂ ਆਪਣੇ ਰਜਿਸਟਰ ਕੀਤੇ ਫਿੰਗਰਪਰਿੰਟ ਹਟਾਉਣੇ ਚਾਹੁੰਦੇ ਹੋ ਤਾਂ ਕਿ ਫਿੰਗਰਪਰਿੰਟ ਲਾਗਇਨ ਨੂੰ ਆਯੋਗ ਕੀਤਾ " - "ਜਾ ਸਕੇ?" - - #: ../panels/user-accounts/um-fingerprint-dialog.c:444 -@@ -6498,8 +6409,7 @@ msgid "" - "To enable fingerprint login, you need to save one of your fingerprints, " - "using the '%s' device." - msgstr "" --"ਫਿੰਗਰਪਰਿੰਟ ਲਾਗਇਨ ਯੋਗ ਕਰਨ ਲਈ, ਤੁਹਾਨੂੰ ਆਪਣੇ ਫਿੰਗਰਪਰਿੰਟ ਸੰਭਾਲਣ ਦੀ ਲੋੜ ਹੈ, '%s' " --"ਜੰਤਰ ਦੀ ਵਰਤੋਂ " -+"ਫਿੰਗਰਪਰਿੰਟ ਲਾਗਇਨ ਯੋਗ ਕਰਨ ਲਈ, ਤੁਹਾਨੂੰ ਆਪਣੇ ਫਿੰਗਰਪਰਿੰਟ ਸੰਭਾਲਣ ਦੀ ਲੋੜ ਹੈ, '%s' ਜੰਤਰ ਦੀ ਵਰਤੋਂ " - "ਕਰਕੇ।" - - #: ../panels/user-accounts/um-fingerprint-dialog.c:728 -@@ -6650,9 +6560,7 @@ msgstr "%s ਹਾਲੇ ਲਾਗਇਨ - msgid "" - "Deleting a user while they are logged in can leave the system in an " - "inconsistent state." --msgstr "" --"ਜਦੋਂ ਯੂਜ਼ਰ ਲਾਗਇਨ ਹੋਵੇ ਤਾਂ ਉਸ ਨੂੰ ਹਟਾਉਣ ਨਾਲ ਸਿਸਟਮ ਖਰਾਬ ਹੋਣ ਦੀ ਹਾਲਤ 'ਚ ਆ ਸਕਦਾ " --"ਹੈ।" -+msgstr "ਜਦੋਂ ਯੂਜ਼ਰ ਲਾਗਇਨ ਹੋਵੇ ਤਾਂ ਉਸ ਨੂੰ ਹਟਾਉਣ ਨਾਲ ਸਿਸਟਮ ਖਰਾਬ ਹੋਣ ਦੀ ਹਾਲਤ 'ਚ ਆ ਸਕਦਾ ਹੈ।" - - #: ../panels/user-accounts/um-user-panel.c:504 - #, c-format -@@ -6664,8 +6572,7 @@ msgid "" - "It is possible to keep the home directory, mail spool and temporary files " - "around when deleting a user account." - msgstr "" --"ਘਰ ਡਾਇਰੈਕਟਰੀ, ਮੇਲ ਸਪੂਲ ਅਤੇ ਆਰਜ਼ੀ ਫਾਇਲਾਂ ਨੂੰ ਰੱਖਣਾ ਸੰਭਵ ਹੈ, ਜਦੋਂ ਯੂਜ਼ਰ ਅਕਾਊਂਟ " --"ਹਟਾਉਣਾ ਹੋਵੇ।" -+"ਘਰ ਡਾਇਰੈਕਟਰੀ, ਮੇਲ ਸਪੂਲ ਅਤੇ ਆਰਜ਼ੀ ਫਾਇਲਾਂ ਨੂੰ ਰੱਖਣਾ ਸੰਭਵ ਹੈ, ਜਦੋਂ ਯੂਜ਼ਰ ਅਕਾਊਂਟ ਹਟਾਉਣਾ ਹੋਵੇ।" - - #: ../panels/user-accounts/um-user-panel.c:511 - msgid "_Delete Files" -@@ -6742,31 +6649,24 @@ msgstr "ਮੇਰਾ ਅਕਾਊਂਟ" - - #: ../panels/user-accounts/um-utils.c:567 - #, c-format --#| msgid "A user with the username '%s' already exists" - msgid "A user with the username '%s' already exists." - msgstr "'%s' ਯੂਜ਼ਰ ਨਾਂ ਨਾਲ ਯੂਜ਼ਰ ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦ ਹੈ।" - - #: ../panels/user-accounts/um-utils.c:571 - #, c-format --#| msgid "The username is too long" - msgid "The username is too long." - msgstr "ਯੂਜ਼ਰ ਨਾਂ ਬਹੁਤ ਲੰਮਾ ਹੈ।" - - #: ../panels/user-accounts/um-utils.c:574 --#| msgid "The username cannot start with a '-'" - msgid "The username cannot start with a '-'." - msgstr "ਯੂਜ਼ਰ ਨਾਂ '-' ਨਾਲ ਸ਼ੁਰੂ ਨਹੀਂ ਹੋ ਸਕਦਾ ਹੈ।" - - #: ../panels/user-accounts/um-utils.c:577 --#| msgid "" --#| "The username should only consist of lower and upper case letters from a-" --#| "z, digits and any of characters '.', '-' and '_'" - msgid "" - "The username should only consist of lower and upper case letters from a-z, " - "digits and any of characters '.', '-' and '_'." - msgstr "" --"ਯੂਜ਼ਰ ਨਾਂ ਵਿੱਚ ਕੇਵਲ ਅੰਗਰੇਜ਼ੀ ਦੇ ਵੱਡੇ ਤੇ ਛੋਟੇ ਅੱਖਰ (a-z), ਅੰਕ, '.', '-' ਅਤੇ " --"'_' ਵਿੱਚੋਂ ਕੋਈ ਵੀ ਅੱਖਰ " -+"ਯੂਜ਼ਰ ਨਾਂ ਵਿੱਚ ਕੇਵਲ ਅੰਗਰੇਜ਼ੀ ਦੇ ਵੱਡੇ ਤੇ ਛੋਟੇ ਅੱਖਰ (a-z), ਅੰਕ, '.', '-' ਅਤੇ '_' ਵਿੱਚੋਂ ਕੋਈ ਵੀ ਅੱਖਰ " - "ਹੋ ਸਕਦੇ ਹਨ।" - - #: ../panels/user-accounts/um-utils.c:581 -@@ -6796,8 +6696,7 @@ msgid "" - "To edit a shortcut, choose the \"Send Keystroke\" action, press the keyboard " - "shortcut button and hold down the new keys or press Backspace to clear." - msgstr "" --"ਸ਼ਾਰਟਕੱਟ ਸੋਧਣ ਲਈ, \"ਕੀ-ਸਟੋਰਕ ਭੇਜੋ\" ਕਾਰਵਾਈ ਚੁਣੋ, ਕੀਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਬਟਨ ਦੱਬੋ ਅਤੇ " --"ਨਵੀਆਂ ਸਵਿੱਚਾਂ " -+"ਸ਼ਾਰਟਕੱਟ ਸੋਧਣ ਲਈ, \"ਕੀ-ਸਟੋਰਕ ਭੇਜੋ\" ਕਾਰਵਾਈ ਚੁਣੋ, ਕੀਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਬਟਨ ਦੱਬੋ ਅਤੇ ਨਵੀਆਂ ਸਵਿੱਚਾਂ " - "ਲਈ ਹੋਲਡ ਕਰਕੇ ਰੱਖੋ ਜਾਂ ਬੈਕਸਪੇਸ ਸਾਫ਼ ਕਰਨ ਲਈ ਵਰਤੋਂ।" - - #: ../panels/wacom/calibrator/calibrator-gui.c:83 -@@ -6805,8 +6704,7 @@ msgid "" - "Please tap the target markers as they appear on screen to calibrate the " - "tablet." - msgstr "" --"ਟਾਰਗੇਟ ਮਾਰਕਰ ਲਈ ਟੈਪ ਕਰੋ ਜਿਵੇਂ ਕਿ ਉਹ ਸਕਰੀਨ ਉੱਤੇ ਟੇਬਲੇਟ ਨੂੰ ਕੈਲੀਬਰੇਟ ਕਰਨ ਲਈ " --"ਵੇਖਾਈ ਦਿੰਦਾ ਹੈ।" -+"ਟਾਰਗੇਟ ਮਾਰਕਰ ਲਈ ਟੈਪ ਕਰੋ ਜਿਵੇਂ ਕਿ ਉਹ ਸਕਰੀਨ ਉੱਤੇ ਟੇਬਲੇਟ ਨੂੰ ਕੈਲੀਬਰੇਟ ਕਰਨ ਲਈ ਵੇਖਾਈ ਦਿੰਦਾ ਹੈ।" - - #: ../panels/wacom/calibrator/calibrator-gui.c:87 - msgid "Mis-click detected, restarting..." -@@ -7924,7 +7822,6 @@ msgstr "ਮੇਰੀ ਪਸੰਦ;ਸੈ - #~ msgid "Carrier/link changed" - #~ msgstr "ਕੈਰੀਅਰ/ਲਿੰਕ ਬਦਲਿਆ" - --#~| msgid "Mark As Inactive After" - #~ msgid "_Mark As Inactive After" - #~ msgstr "ਇਸ ਦੇ ਬਾਅਦ ਨਾ-ਸਰਗਰਮ ਬਣਾਉ(_M)" - -@@ -7943,7 +7840,6 @@ msgstr "ਮੇਰੀ ਪਸੰਦ;ਸੈ - #~ msgid "Out of range" - #~ msgstr "ਹੱਦ ਤੋਂ ਬਾਹਰ" - --#~| msgid "_Configure..." - #~ msgid "_Configure…" - #~ msgstr "…ਸੰਰਚਨਾ(_C)" - -@@ -7953,7 +7849,6 @@ msgstr "ਮੇਰੀ ਪਸੰਦ;ਸੈ - #~ msgid "_Connect" - #~ msgstr "ਕੁਨੈਕਸ਼ਨ ਕਰੋ(_C)" - --#~| msgid "Settings" - #~ msgid "_Settings…" - #~ msgstr "…ਸੈਟਿੰਗ(_S)" - -@@ -8745,11 +8640,9 @@ msgstr "ਮੇਰੀ ਪਸੰਦ;ਸੈ - #~ msgid "%.1f EB" - #~ msgstr "%.1f EB" - --#~| msgid "Email" - #~ msgid "Example" - #~ msgstr "ਉਦਾਹਰਨ" - --#~| msgid "System Settings" - #~ msgid "System settings" - #~ msgstr "ਸਿਸਟਮ ਸੈਟਿੰਗ" - -@@ -8931,12 +8824,10 @@ msgstr "ਮੇਰੀ ਪਸੰਦ;ਸੈ - #~ msgid "Error unsetting accelerator in configuration database: %s" - #~ msgstr "ਗਲਤੀ, ਸੰਰਚਨਾ ਡੈਟਾਬੇਸ ਵਿੱਚ ਨਵਾਂ ਐਕਸਰਲੇਟਰ ਅਣ-ਸੈਟਿੰਗ ਕਰਨ ਵਿੱਚ: %s" - --#~| msgid "Idle" - #~ msgctxt "printer state" - #~ msgid "Idle" - #~ msgstr "ਵੇਹਲਾ" - --#~| msgid "_Deactivate" - #~ msgid "0 active" - #~ msgstr "0 ਸਰਗਰਮ" - -@@ -9027,13 +8918,6 @@ msgstr "ਮੇਰੀ ਪਸੰਦ;ਸੈ - #~ msgid "Vendors" - #~ msgstr "ਵੇਂਡਰ" - --#~| msgid "" --#~| "A guest account will allow anyone to temporarily log in to this computer " --#~| "without a password. For security, remote logins to this account are not " --#~| "allowed.\n" --#~| "\n" --#~| "When the guest user logs out, all files and data associated with the " --#~| "account will be deleted." - #~ msgid "" - #~ "A guest account will allow anyone to temporarily log in to this computer " - #~ "without a password. For security, remote logins to this account are not " -@@ -9306,41 +9190,33 @@ msgstr "ਮੇਰੀ ਪਸੰਦ;ਸੈ - #~ msgid "Mirror Screens" - #~ msgstr "ਦਰਪਨ ਸਕਰੀਨਾਂ" - --#~| msgid "Open" - #~ msgid "Open %s" - #~ msgstr "%s ਖੋਲ੍ਹੋ" - - #~ msgid "Open with other Application..." - #~ msgstr "...ਹੋਰ ਐਪਲੀਕੇਸ਼ਨ ਨਾਲ ਖੋਲ੍ਹੋ" - --#~| msgid "Could not get screen information" - #~ msgid "Could not run application" - #~ msgstr "ਐਫਲੀਕੇਸ਼ਨ ਚਲਾਈ ਨਹੀਂ ਜਾ ਸਕੀ" - --#~| msgid "Could not open %s: %s\n" - #~ msgid "Could not find '%s'" - #~ msgstr "'%s' ਨਹੀਂ ਲੱਭੀ ਜਾ ਸਕੀ" - --#~| msgid "Version of this application" - #~ msgid "Could not find application" - #~ msgstr "ਐਪਲੀਕੇਸ਼ਣ ਨਹੀਂ ਲੱਭੀ ਜਾ ਸਕੀ" - - #~ msgid "Could not add application to the application database: %s" - #~ msgstr "ਐਪਲੀਕੇਸ਼ਨ ਨੂੰ ਐਪਲੀਕੇਸ਼ਨ ਡਾਟਾਬੇਸ ਵਿੱਚ ਸ਼ਾਮਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ: %s" - --#~| msgid "Version of this application" - #~ msgid "Could not add application" - #~ msgstr "ਐਪਲੀਕੇਸ਼ਨ ਸ਼ਾਮਲ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕੀ" - --#~| msgid "Could not get information for %s: %s\n" - #~ msgid "Could not set application as the default: %s" - #~ msgstr "ਐਪਲੀਕੇਸ਼ਨ ਨੂੰ ਡਿਫਾਲਟ ਸੈੱਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ: %s" - --#~| msgid "Select your default applications" - #~ msgid "Could not set as default application" - #~ msgstr "ਡਿਫਾਲਟ ਐਪਲੀਕੇਸ਼ਨ ਸੈੱਟ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕੀ" - --#~| msgid "Open with \"%s\"" - #~ msgid "Open With" - #~ msgstr "ਇਸ ਨਾਲ ਖੋਲ੍ਹੋ" - -@@ -9350,7 +9226,6 @@ msgstr "ਮੇਰੀ ਪਸੰਦ;ਸੈ - #~ msgid "Open %s and other %s document with:" - #~ msgstr "%s ਅਤੇ ਹੋਰ %s ਡੌਕੂਮੈਂਟ ਖੋਲ੍ਹੋ:" - --#~| msgid "Open with \"%s\"" - #~ msgid "Open %s with:" - #~ msgstr "%s ਨਾਲ ਖੋਲ੍ਹੋ:" - -@@ -9369,7 +9244,6 @@ msgstr "ਮੇਰੀ ਪਸੰਦ;ਸੈ - #~ msgid "Open all \"%s\" files with:" - #~ msgstr "ਸਭ \"%s\" ਫਾਇਲਾਂ ਇਸ ਨਾਲ ਖੋਲ੍ਹੋ:" - --#~| msgid "Applications" - #~ msgid "Add Application" - #~ msgstr "ਐਪਲੀਕੇਸ਼ਨ ਸ਼ਾਮਲ" - -@@ -9379,7 +9253,6 @@ msgstr "ਮੇਰੀ ਪਸੰਦ;ਸੈ - #~ msgid "Set your network proxy preferences" - #~ msgstr "ਆਪਣੀ ਨੈੱਟਵਰਕ ਪਰਾਕਸੀ ਪਸੰਦ ਦਿਓ" - --#~| msgid "Location:" - #~ msgid "Web;Location;" - #~ msgstr "ਵੈੱਬ;ਟਿਕਾਣਾ;" - -@@ -9557,16 +9430,12 @@ msgstr "ਮੇਰੀ ਪਸੰਦ;ਸੈ - #~ msgid "Waiting for sound system to respond" - #~ msgstr "ਸਾਊਂਡ ਸਿਸਟਮ ਦੇ ਜਵਾਬ ਦੀ ਉਡੀਕ ਜਾਰੀ" - --#~| msgid "Sounds" - #~ msgid "No sounds" - #~ msgstr "ਕੋਈ ਆਵਾਜ਼ ਨਹੀਂ" - --#~| msgid "Icon theme" - #~ msgid "Sound _theme:" - #~ msgstr "ਸਾਊਂਡ ਥੀਮ(_t):" - --#~| msgctxt "Sound event" --#~| msgid "Windows and Buttons" - #~ msgid "Enable _window and button sounds" - #~ msgstr "ਵਿੰਡੋ ਅਤੇ ਬਟਨ ਸਾਊਂਡ ਚਾਲੂ(_w)" - -@@ -9618,21 +9487,16 @@ msgstr "ਮੇਰੀ ਪਸੰਦ;ਸੈ - #~ msgid "Information or question" - #~ msgstr "ਜਾਣਕਾਰੀ ਜਾਂ ਸਵਾਲ" - --#~| msgid "Hearing" - #~ msgctxt "Sound event" - #~ msgid "Warning" - #~ msgstr "ਚੇਤਾਵਨੀ" - --#~| msgid "Custom" - #~ msgid "Custom…" - #~ msgstr "ਪਸੰਦੀਦਾ…" - --#~| msgid "Sound Theme" - #~ msgid "Sound Theme:" - #~ msgstr "ਸਾਊਂਡ ਥੀਮ:" - --#~| msgctxt "Sound event" --#~| msgid "Windows and Buttons" - #~ msgid "Enable window and button sounds" - #~ msgstr "ਵਿੰਡੋ ਅਤੇ ਬਟਨ ਸਾਊਂਡ ਚਾਲੂ" - -@@ -10707,7 +10571,6 @@ msgstr "ਮੇਰੀ ਪਸੰਦ;ਸੈ - #~ "Specify the name of the page to show (internet|multimedia|system|a11y)" - #~ msgstr "ਵੇਖਾਉਣ ਲਈ ਪੇਜ਼ ਦਾ ਨਾਂ ਦਿਓ (internet|multimedia|system|a11y)" - --#~| msgid "Mouse Preferences" - #~ msgid "Monitor Preferences" - #~ msgstr "ਮਾਊਸ ਪਸੰਦ" - -@@ -10862,7 +10725,6 @@ msgstr "ਮੇਰੀ ਪਸੰਦ;ਸੈ - #~ msgid "Change screen resolution" - #~ msgstr "ਸਕਰੀਨ ਦੀ ਰੈਜੋਲੇਸ਼ਨ ਬਦਲੋ" - --#~| msgid "Menus and Toolbars" - #~ msgid "Menus and Toolbars" - #~ msgstr "ਮੇਨੂ ਅਤੇ ਟੂਲਬਾਰ" - -Index: new/po/sr.po -=================================================================== ---- new.orig/po/sr.po -+++ new/po/sr.po -@@ -19,8 +19,8 @@ msgstr "" - "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-Project-Style: gnome\n" - - #: ../panels/background/background.ui.h:1 -@@ -5633,7 +5633,6 @@ msgid "_Disable if two keys are pressed - msgstr "_Искључи ако су два тастера притиснута истовремено" - - #: ../panels/universal-access/uap.ui.h:31 --#| msgid "Beep when a _modifer key is pressed" - msgid "Beep when a _modifier key is pressed" - msgstr "Запишти када је притиснут _измењивач" - -Index: new/po/sr@latin.po -=================================================================== ---- new.orig/po/sr@latin.po -+++ new/po/sr@latin.po -@@ -19,8 +19,8 @@ msgstr "" - "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-Project-Style: gnome\n" - - #: ../panels/background/background.ui.h:1 -@@ -540,9 +540,9 @@ msgid "" - "screen. The longer you spend on calibration, the better the quality of the " - "color profile." - msgstr "" --"Kalibracija će proizvesti profil koji možete da koristite da upravljate bojom " --"vašeg ekrana. Što duže bude trajala kalibracija, to će biti bolji kvalitet " --"profila boje." -+"Kalibracija će proizvesti profil koji možete da koristite da upravljate " -+"bojom vašeg ekrana. Što duže bude trajala kalibracija, to će biti bolji " -+"kvalitet profila boje." - - #: ../panels/color/color.ui.h:3 - msgid "" -@@ -596,8 +596,8 @@ msgid "" - "Please set the display to a brightness that is typical for you. Color " - "management will be most accurate at this brightness level." - msgstr "" --"Molim podesite ekran na osvetljaj koji vam najviše odgovara. Upravljanje bojom " --"će biti najtačnije na tom nivou osvetljaja." -+"Molim podesite ekran na osvetljaj koji vam najviše odgovara. Upravljanje " -+"bojom će biti najtačnije na tom nivou osvetljaja." - - #: ../panels/color/color.ui.h:16 - msgid "" -@@ -3296,8 +3296,8 @@ msgid "" - "to insecure, rogue Wi-Fi networks. Would you like to choose a Certificate " - "Authority certificate?" - msgstr "" --"Ukoliko ne izaberete uverenje izdavača ovlašćenja (CA) vaša bežična veza može " --"biti nesigurna ili lažna. Da li želite da izaberete uverenje?" -+"Ukoliko ne izaberete uverenje izdavača ovlašćenja (CA) vaša bežična veza " -+"može biti nesigurna ili lažna. Da li želite da izaberete uverenje?" - - #: ../panels/network/wireless-security/eap-method.c:281 - msgid "Ignore" -@@ -3429,8 +3429,8 @@ msgid "" - "\n" - "(You can password-protect your private key with openssl)" - msgstr "" --"Izgleda da izabrani privatni ključ nije zaštićen lozinkom. Ovo može ugroziti " --"vaše sigurnosne podatke. Izaberite privatni ključ koji ze zaštićen " -+"Izgleda da izabrani privatni ključ nije zaštićen lozinkom. Ovo može " -+"ugroziti vaše sigurnosne podatke. Izaberite privatni ključ koji ze zaštićen " - "lozinkom.\n" - "\n" - "(Možete zaštititi privatne ključeve koristeći „openssl“)" -@@ -3707,8 +3707,8 @@ msgid "" - "Adding an account allows your applications to access it for documents, mail, " - "contacts, calendar, chat and more." - msgstr "" --"Dodavanje naloga omogućava vašim aplikacijama da mu pristupe zbog dokumenata, " --"pošte, kontakata, kalendara, ćaskanja i drugih stvari." -+"Dodavanje naloga omogućava vašim aplikacijama da mu pristupe zbog " -+"dokumenata, pošte, kontakata, kalendara, ćaskanja i drugih stvari." - - #: ../panels/power/cc-power-panel.c:192 - msgid "Unknown time" -@@ -3968,15 +3968,16 @@ msgstr "Napajanje" - - #: ../panels/power/gnome-power-panel.desktop.in.in.h:2 - msgid "View your battery status and change power saving settings" --msgstr "Pogledajte stanje vaše baterije i izmenite podešavanja uštede napajanja" -+msgstr "" -+"Pogledajte stanje vaše baterije i izmenite podešavanja uštede napajanja" - - #. Translators: those are keywords for the power control-center panel - #: ../panels/power/gnome-power-panel.desktop.in.in.h:4 - msgid "" - "Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;" - msgstr "" --"napajanje;spavanje;obustava;zamrzavanje;baterija;osvetljaj;zatamnjenje;monitor;" --"DPMS;mirovanje;" -+"napajanje;spavanje;obustava;zamrzavanje;baterija;osvetljaj;zatamnjenje;" -+"monitor;DPMS;mirovanje;" - - #: ../panels/power/power.ui.h:1 - msgid "Hibernate" -@@ -4742,8 +4743,8 @@ msgid "" - "screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;" - "network;identity;" - msgstr "" --"ekran;zaključaj;dijagnoza;pad;urušavanje;lično;skorašnje;nedavno;privremen;prv;" --"popis;naziv;mreža;identitet;" -+"ekran;zaključaj;dijagnoza;pad;urušavanje;lično;skorašnje;nedavno;privremen;" -+"prv;popis;naziv;mreža;identitet;" - - #: ../panels/privacy/privacy.ui.h:1 - msgid "Screen Turns Off" -@@ -5035,7 +5036,8 @@ msgstr "Mogućnosti" - #: ../panels/region/region.ui.h:7 - msgid "Login settings are used by all users when logging into the system" - msgstr "" --"Podešavanja prijavljivanja koriste svi korisnici kada se prijavljuju na sistem" -+"Podešavanja prijavljivanja koriste svi korisnici kada se prijavljuju na " -+"sistem" - - #: ../panels/search/cc-search-locations-dialog.c:476 - msgctxt "Search Location" -@@ -5150,8 +5152,8 @@ msgstr "Uključite ili isključite udalj - #: ../panels/sharing/org.gnome.controlcenter.remote-login-helper.policy.in.in.h:2 - msgid "Authentication is required to enable or disable remote login" - msgstr "" --"Potrebno je potvrđivanje identiteta za uključivanje ili isključivanje udaljenog " --"prijavljivanja" -+"Potrebno je potvrđivanje identiteta za uključivanje ili isključivanje " -+"udaljenog prijavljivanja" - - #. Label - #: ../panels/sharing/cc-sharing-networks.c:303 -@@ -5174,8 +5176,8 @@ msgid "" - "Bluetooth Sharing allows you to share files with other Bluetooth enabled " - "devices" - msgstr "" --"Deljenje blututa vam omogućava da delite datoteke sa drugim uključenim blutut " --"uređajima" -+"Deljenje blututa vam omogućava da delite datoteke sa drugim uključenim " -+"blutut uređajima" - - #: ../panels/sharing/sharing.ui.h:3 - msgid "Only Receive From Trusted Devices" -@@ -5283,7 +5285,8 @@ msgstr "Izmenite nivoe zvuka, ulaze, izl - #. Translators: those are keywords for the sound control-center panel - #: ../panels/sound/data/gnome-sound-panel.desktop.in.in.h:4 - msgid "Card;Microphone;Volume;Fade;Balance;Bluetooth;Headset;Audio;" --msgstr "kartica;mikrofon;jačina zvuka;iščezavanje;balans;blutut;slušalice;zvuk;" -+msgstr "" -+"kartica;mikrofon;jačina zvuka;iščezavanje;balans;blutut;slušalice;zvuk;" - - #. Translators: This is the name of an audio file that sounds like the bark of a dog. - #. You might want to translate it into the equivalent words of your language. -@@ -5633,7 +5636,6 @@ msgid "_Disable if two keys are pressed - msgstr "_Isključi ako su dva tastera pritisnuta istovremeno" - - #: ../panels/universal-access/uap.ui.h:31 --#| msgid "Beep when a _modifer key is pressed" - msgid "Beep when a _modifier key is pressed" - msgstr "Zapišti kada je pritisnut _izmenjivač" - -@@ -7569,8 +7571,8 @@ msgstr "postavke;podešavanja;" - #~ msgid "" - #~ "Choose a picture that will be shown at the login screen for this account." - #~ msgstr "" --#~ "Izaberite sliku koja će biti prikazana na ekranu za prijavljivanje za ovaj " --#~ "nalog." -+#~ "Izaberite sliku koja će biti prikazana na ekranu za prijavljivanje za " -+#~ "ovaj nalog." - - #~ msgid "Gallery" - #~ msgstr "Zbirka" -Index: new/po/ta.po -=================================================================== ---- new.orig/po/ta.po -+++ new/po/ta.po -@@ -25,8 +25,7 @@ msgstr "" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" - "X-Generator: Lokalize 1.5\n" --"Plural-Forms: nplurals=2; plural=(n!=1);\\n" --"\n" -+"Plural-Forms: nplurals=2; plural=(n!=1);\\n\n" - "\n" - "\n" - "\n" -@@ -119,9 +118,7 @@ msgstr "இல்லம்" - #: ../panels/background/cc-background-chooser-dialog.c:576 - #, c-format - msgid "You can add images to your %s folder and they will show up here" --msgstr "" --"உங்கள் %s கோப்புறையில் நீங்கள் படங்களைச் சேர்க்கலாம், அவை இங்கு " --"காண்பிக்கப்படும்" -+msgstr "உங்கள் %s கோப்புறையில் நீங்கள் படங்களைச் சேர்க்கலாம், அவை இங்கு காண்பிக்கப்படும்" - - #: ../panels/background/cc-background-chooser-dialog.c:583 - #: ../panels/color/cc-color-panel.c:224 ../panels/color/cc-color-panel.c:961 -@@ -205,15 +202,12 @@ msgstr "ப்ளூடூத்" - - #: ../panels/bluetooth/gnome-bluetooth-panel.desktop.in.in.h:2 - msgid "Turn Bluetooth on and off and connect your devices" --msgstr "" --"Bluetooth ஐ ஆன் மற்றும் ஆஃப் செய்யவும் மற்றும் உங்கள் சாதனங்களை இணைக்கவும்" -+msgstr "Bluetooth ஐ ஆன் மற்றும் ஆஃப் செய்யவும் மற்றும் உங்கள் சாதனங்களை இணைக்கவும்" - - #. TRANSLATORS: The user has to attach the sensor to the screen - #: ../panels/color/cc-color-calibrate.c:361 - msgid "Place your calibration device over the square and press 'Start'" --msgstr "" --"உங்கள் அளவைவகுத்தல் சாதனத்தை சதுரத்தின் மீது வைத்து 'தொடங்கு' என்பதை " --"அழுத்தவும்" -+msgstr "உங்கள் அளவைவகுத்தல் சாதனத்தை சதுரத்தின் மீது வைத்து 'தொடங்கு' என்பதை அழுத்தவும்" - - #. TRANSLATORS: Some calibration devices need the user to move a - #. * dial or switch manually. We also show a picture showing them -@@ -222,8 +216,7 @@ msgstr "" - msgid "" - "Move your calibration device to the calibrate position and press 'Continue'" - msgstr "" --"உங்கள் அளவைவகுத்தல் சாதனத்தை அளவைவகுத்தல் இடநிலைக்கு நகர்த்தி 'தொடரு' என்பதை " --"அழுத்தவும்" -+"உங்கள் அளவைவகுத்தல் சாதனத்தை அளவைவகுத்தல் இடநிலைக்கு நகர்த்தி 'தொடரு' என்பதை அழுத்தவும்" - - #. TRANSLATORS: Some calibration devices need the user to move a - #. * dial or switch manually. We also show a picture showing them -@@ -232,8 +225,7 @@ msgstr "" - msgid "" - "Move your calibration device to the surface position and press 'Continue'" - msgstr "" --"உங்கள் அளவைவகுத்தல் சாதனத்தை மேற்பரப்பு இடநிலைக்கு நகர்த்தி 'தொடரு' என்பதை " --"அழுத்தவும்" -+"உங்கள் அளவைவகுத்தல் சாதனத்தை மேற்பரப்பு இடநிலைக்கு நகர்த்தி 'தொடரு' என்பதை அழுத்தவும்" - - #. TRANSLATORS: on some hardware e.g. Lenovo W700 the sensor - #. * is built into the palmrest and we need to fullscreen the -@@ -406,14 +398,12 @@ msgstr "இந்த URL ஐ எழு?? - - #: ../panels/color/cc-color-panel.c:923 - msgid "Restart this computer and boot your normal operating system." --msgstr "" --"இந்த கணினியை மறுதொடக்கம் செய்து உங்கள் வழக்கமான இயக்க முறைமையை பூட் செய்யவும்." -+msgstr "இந்த கணினியை மறுதொடக்கம் செய்து உங்கள் வழக்கமான இயக்க முறைமையை பூட் செய்யவும்." - - #: ../panels/color/cc-color-panel.c:924 - msgid "Type the URL into your browser to download and install the profile." - msgstr "" --"சுயவிவரத்தைப் பதிவிறக்க இந்த URL ஐ உங்கள் உலாவியில் தட்டச்சு செய்து, " --"சுயவிவரத்தை " -+"சுயவிவரத்தைப் பதிவிறக்க இந்த URL ஐ உங்கள் உலாவியில் தட்டச்சு செய்து, சுயவிவரத்தை " - "நிறுவவும்." - - #. TRANSLATORS: this is the dialog to save the ICC profile -@@ -437,8 +427,7 @@ msgid "" - "The measuring instrument is not detected. Please check it is turned on and " - "correctly connected." - msgstr "" --"அளவீட்டு கருவி காணவில்லை. அது இயக்கப்பட்டுள்ளது, சரியாக பொருத்தப்பட்டுள்ளது " --"என உறுதி " -+"அளவீட்டு கருவி காணவில்லை. அது இயக்கப்பட்டுள்ளது, சரியாக பொருத்தப்பட்டுள்ளது என உறுதி " - "செய்து கொள்க." - - #. TRANSLATORS: this is when the button is insensitive -@@ -567,10 +556,8 @@ msgid "" - "screen. The longer you spend on calibration, the better the quality of the " - "color profile." - msgstr "" --"அளவைவகுத்தல் செய்தால், ஒரு சுஉயவிவரம் உருவாக்கப்படும், அதைக் கொண்டு நீங்கள் " --"உங்கள் திரையின் " --"நிறங்களை மேலாண்மை செய்யலாம். அளவைவகுத்தலில் அதிக நேரம் செலவழித்தால் உங்கள் " --"நிற சுயவிவரம் " -+"அளவைவகுத்தல் செய்தால், ஒரு சுஉயவிவரம் உருவாக்கப்படும், அதைக் கொண்டு நீங்கள் உங்கள் திரையின் " -+"நிறங்களை மேலாண்மை செய்யலாம். அளவைவகுத்தலில் அதிக நேரம் செலவழித்தால் உங்கள் நிற சுயவிவரம் " - "தரமாக இருக்கும்." - - #: ../panels/color/color.ui.h:3 -@@ -594,9 +581,7 @@ msgstr "அளவைவகுத்த?? - - #: ../panels/color/color.ui.h:9 - msgid "Select the sensor device you want to use for calibration." --msgstr "" --"அளவைவகுத்தலுக்கு நீங்கள் பயன்படுத்த விரும்பும் சென்சார் சாதனத்தைத் " --"தேர்ந்தெடுக்கவும்." -+msgstr "அளவைவகுத்தலுக்கு நீங்கள் பயன்படுத்த விரும்பும் சென்சார் சாதனத்தைத் தேர்ந்தெடுக்கவும்." - - #: ../panels/color/color.ui.h:10 - msgid "Calibration Device" -@@ -627,8 +612,7 @@ msgid "" - "Please set the display to a brightness that is typical for you. Color " - "management will be most accurate at this brightness level." - msgstr "" --"காட்சியை உங்களுக்கு வழக்கமாக இருக்கும் ஒளிர்வில் அமைக்கவும். இந்த ஒளிர்வு " --"அளவில் நிற " -+"காட்சியை உங்களுக்கு வழக்கமாக இருக்கும் ஒளிர்வில் அமைக்கவும். இந்த ஒளிர்வு அளவில் நிற " - "மேலாண்மை மிகத் துல்லியமாக இருக்கும்." - - #: ../panels/color/color.ui.h:16 -@@ -636,8 +620,7 @@ msgid "" - "Alternatively, you can use the brightness level used with one of the other " - "profiles for this device." - msgstr "" --"மாற்றாக இந்த சாதனத்திற்கு பயன்படுத்தப்படும் மற்ற சுயவிவரங்களில் ஒன்றில் " --"பயன்படுத்தப்பட்டுள்ள " -+"மாற்றாக இந்த சாதனத்திற்கு பயன்படுத்தப்படும் மற்ற சுயவிவரங்களில் ஒன்றில் பயன்படுத்தப்பட்டுள்ள " - "ஒளிர்வு அளவையும் நீங்கள் பயன்படுத்தலாம்." - - #: ../panels/color/color.ui.h:17 -@@ -649,8 +632,7 @@ msgid "" - "You can use a color profile on different computers, or even create profiles " - "for different lighting conditions." - msgstr "" --"நீங்கள் வெவ்வேறு கணினிகளில் ஒரு நிற சுயவிவரத்தைப் பயன்படுத்தலாம் அல்லது " --"வெவ்வேறு ஒளி " -+"நீங்கள் வெவ்வேறு கணினிகளில் ஒரு நிற சுயவிவரத்தைப் பயன்படுத்தலாம் அல்லது வெவ்வேறு ஒளி " - "நிலைகளுக்கு என சுயவிவரங்களை உருவாக்கிக்கொள்ளலாம்." - - #: ../panels/color/color.ui.h:19 -@@ -714,14 +696,12 @@ msgid "" - "Problems detected. The profile may not work correctly. Show " - "details." - msgstr "" --"சிக்கல்கள் உள்ளது. சுயவிவரம் சரியாக செயல்படாது போகலாம். " --"விவரங்களைக் " -+"சிக்கல்கள் உள்ளது. சுயவிவரம் சரியாக செயல்படாது போகலாம். விவரங்களைக் " - "காண்பி." - - #: ../panels/color/color.ui.h:32 - msgid "Each device needs an up to date color profile to be color managed." --msgstr "" --"வண்ண மேலாண்மைக்கு ஒவ்வொரு சாதனமும் வண்ண வரிவுருவை இற்றைப்படுத்த வேண்டியுள்ளது." -+msgstr "வண்ண மேலாண்மைக்கு ஒவ்வொரு சாதனமும் வண்ண வரிவுருவை இற்றைப்படுத்த வேண்டியுள்ளது." - - #: ../panels/color/color.ui.h:33 - msgid "Learn more" -@@ -864,8 +844,7 @@ msgstr "நிறம்" - msgid "" - "Calibrate the color of your devices, such as displays, cameras or printers" - msgstr "" --"உங்கள் காட்சிகள், கேமராக்கள் அல்லது அச்சுப்பொறிகள் போன்ற சாதனங்களின் நிறத்தை " --"அளவைவகுக்கவும்" -+"உங்கள் காட்சிகள், கேமராக்கள் அல்லது அச்சுப்பொறிகள் போன்ற சாதனங்களின் நிறத்தை அளவைவகுக்கவும்" - - #. Translators: those are keywords for the color control-center panel - #: ../panels/color/gnome-color-panel.desktop.in.in.h:4 -@@ -929,8 +908,6 @@ msgstr "%e %B %Y, %R" - #. Translators: "city, country" - #: ../panels/datetime/cc-datetime-panel.c:523 - #, c-format --#| msgctxt "login date-time" --#| msgid "%s, %s" - msgctxt "timezone loc" - msgid "%s, %s" - msgstr "%s, %s" -@@ -939,7 +916,6 @@ msgstr "%s, %s" - #. Translators: "timezone (details)" - #: ../panels/datetime/cc-datetime-panel.c:553 - #, c-format --#| msgid "%d x %d (%s)" - msgctxt "timezone desc" - msgid "%s (%s)" - msgstr "%s (%s)" -@@ -964,7 +940,6 @@ msgstr "%R" - #. Translators: "timezone (utc shift)" - #: ../panels/datetime/cc-datetime-panel.c:576 - #, c-format --#| msgid "%d x %d (%s)" - msgctxt "timezone map" - msgid "%s (%s)" - msgstr "%s (%s)" -@@ -1102,8 +1077,7 @@ msgstr "கணினி நேரம் - - #: ../panels/datetime/org.gnome.controlcenter.datetime.policy.in.h:2 - msgid "To change time or date settings, you need to authenticate." --msgstr "" --"கணினி நேரம் மற்றும் தேதி அமைப்புகளை மாற்ற நீங்கள் உறுதிப்படுத்த வேண்டும்." -+msgstr "கணினி நேரம் மற்றும் தேதி அமைப்புகளை மாற்ற நீங்கள் உறுதிப்படுத்த வேண்டும்." - - #: ../panels/display/cc-display-panel.c:487 - msgid "Lid Closed" -@@ -1166,8 +1140,7 @@ msgstr "தெளிதிறன் " - - #: ../panels/display/cc-display-panel.c:2146 - msgid "Show the top bar and Activities Overview on this display" --msgstr "" --"இந்த திரைகாட்டியில் மேல் பட்டியையும் செயல்பாடுகள் மேலோட்டத்தையும் காண்பி" -+msgstr "இந்த திரைகாட்டியில் மேல் பட்டியையும் செயல்பாடுகள் மேலோட்டத்தையும் காண்பி" - - #: ../panels/display/cc-display-panel.c:2152 - msgid "Secondary Display" -@@ -1175,8 +1148,7 @@ msgstr "இரண்டாம் நி? - - #: ../panels/display/cc-display-panel.c:2153 - msgid "Join this display with another to create an extra workspace" --msgstr "" --"இந்தத் திரைகாட்டியை மற்றொன்றுடன் இணைத்து கூடுதல் பணியிடத்தை உருவாக்கலாம்" -+msgstr "இந்தத் திரைகாட்டியை மற்றொன்றுடன் இணைத்து கூடுதல் பணியிடத்தை உருவாக்கலாம்" - - #: ../panels/display/cc-display-panel.c:2160 - msgid "Presentation" -@@ -1218,13 +1190,11 @@ msgstr "காட்டிகள்" - #: ../panels/display/gnome-display-panel.desktop.in.in.h:2 - msgid "Choose how to use connected monitors and projectors" - msgstr "" --"இணைக்கப்பட்ட திரைகளையும் ஒளிப்படக்காட்டிகளையும் எப்படிப் பயன்படுத்த வேண்டும் " --"எனத் தேர்வு " -+"இணைக்கப்பட்ட திரைகளையும் ஒளிப்படக்காட்டிகளையும் எப்படிப் பயன்படுத்த வேண்டும் எனத் தேர்வு " - "செய்யவும்" - - #. Translators: those are keywords for the display control-center panel - #: ../panels/display/gnome-display-panel.desktop.in.in.h:4 --#| msgid "Panel;Projector;xrandr;Screen;Resolution;Refresh;" - msgid "Panel;Projector;xrandr;Screen;Resolution;Refresh;Monitor;" - msgstr "பலகம்;ஒளிப்படக்காட்டி;எக்ஸ்ரான்டர்;திரை;தெளிதிறன்;புதுப்பி;திரை" - -@@ -1374,8 +1344,7 @@ msgid "" - "device;system;information;memory;processor;version;default;application;" - "preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" - msgstr "" --"சாதனம்;கணினி;தகவல்;நினைவகம்;செயலி;பதிப்பு;முன்னிருப்பு;நிரல்;பயன்பாடு; " --"முன்னுரிமை;" -+"சாதனம்;கணினி;தகவல்;நினைவகம்;செயலி;பதிப்பு;முன்னிருப்பு;நிரல்;பயன்பாடு; முன்னுரிமை;" - "சிடி;டிவிடி;யூஎஸ்பி;ஒலி;விடியோ;வட்டு;வெளியேற்றக்கூடிய;ஊடகம்;தானியங்கிஇயக்கம்;" - - #: ../panels/info/info.ui.h:1 -@@ -1424,7 +1393,6 @@ msgid "Virtualization" - msgstr "மெய்நிகராக்கம்" - - #: ../panels/info/info.ui.h:13 --#| msgid "Checking for Updates" - msgid "Check for updates" - msgstr "புதுப்பிப்புகள் உள்ளதா எனப் பார்" - -@@ -1694,8 +1662,7 @@ msgstr "விசைப்பலகை" - #: ../panels/keyboard/gnome-keyboard-panel.desktop.in.in.h:2 - msgid "View and change keyboard shortcuts and set your typing preferences" - msgstr "" --"விசைப்பலகை குறூக்கு வழிகளைக் கண்டு மாற்றவும், அத்துடன் உங்கள் தட்டச்சு " --"முன்னுரிமைகளை " -+"விசைப்பலகை குறூக்கு வழிகளைக் கண்டு மாற்றவும், அத்துடன் உங்கள் தட்டச்சு முன்னுரிமைகளை " - "அமைக்கவும்" - - #. Translators: those are keywords for the keyboard control-center panel -@@ -1812,11 +1779,9 @@ msgid "" - "using this key.\n" - "Please try with a key such as Control, Alt or Shift at the same time." - msgstr "" --"புதிய குறுக்குவழி \"%s\" யை பயன்படுத்த முடியாது. ஏனெனில் இந்த விசையை " --"வைத்துக்கொண்டு " -+"புதிய குறுக்குவழி \"%s\" யை பயன்படுத்த முடியாது. ஏனெனில் இந்த விசையை வைத்துக்கொண்டு " - "தட்டச்ச முடியாது.\n" --"அதே நேரத்தில் கன்ட்ரோல், ஆல்ட் அல்லது ஷிப்ட் விசைகளை பயன்படுத்தி " --"முயற்சிக்கவும்." -+"அதே நேரத்தில் கன்ட்ரோல், ஆல்ட் அல்லது ஷிப்ட் விசைகளை பயன்படுத்தி முயற்சிக்கவும்." - - #: ../panels/keyboard/keyboard-shortcuts.c:1387 - #, c-format -@@ -1829,8 +1794,7 @@ msgstr "குறுவழி \"%s\"ஏ? - #, c-format - msgid "" - "If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be disabled." --msgstr "" --" \"%s\" க்கு குறுவழியாக மாற்றி அமைத்தால் \"%s\" குறுவழி முடங்கிவிடும்." -+msgstr " \"%s\" க்கு குறுவழியாக மாற்றி அமைத்தால் \"%s\" குறுவழி முடங்கிவிடும்." - - #: ../panels/keyboard/keyboard-shortcuts.c:1398 - msgid "_Reassign" -@@ -1842,23 +1806,19 @@ msgid "" - "The \"%s\" shortcut has an associated \"%s\" shortcut. Do you want to " - "automatically set it to \"%s\"?" - msgstr "" --"\"%s\" குறுக்குவழியுடன் \"%s\" எனும் குறுக்குவழி இணைந்துள்ளது. " --"அதை தானாகவே \"%s\" க்கு அமைக்க வேண்டுமா?" -+"\"%s\" குறுக்குவழியுடன் \"%s\" எனும் குறுக்குவழி இணைந்துள்ளது. அதை தானாகவே \"%s\" " -+"க்கு அமைக்க வேண்டுமா?" - - #: ../panels/keyboard/keyboard-shortcuts.c:1449 - #, c-format --#| msgid "" --#| "If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be " --#| "disabled." - msgid "" - "\"%s\" is currently associated with \"%s\", this shortcut will be disabled " - "if you move forward." - msgstr "" --"தற்போது \"%s\" ஆனது \"%s\" உடன் இணைந்துள்ளது, நீங்கள் தொடர்ந்தால் இந்தக் " --"குறுக்குவழி முடக்கப்படும்." -+"தற்போது \"%s\" ஆனது \"%s\" உடன் இணைந்துள்ளது, நீங்கள் தொடர்ந்தால் இந்தக் குறுக்குவழி " -+"முடக்கப்படும்." - - #: ../panels/keyboard/keyboard-shortcuts.c:1456 --#| msgid "_Reassign" - msgid "_Assign" - msgstr "அமை (_A)" - -@@ -1878,8 +1838,7 @@ msgstr "சொடுக்கி மற? - msgid "" - "Change your mouse or touchpad sensitivity and select right or left-handed" - msgstr "" --"உங்கள் சொடுக்கி அல்லது தொடுதிட்டின் உணர்திறனை மாற்றவும், வலதுகைப் பழக்கமா " --"இடதுகைப் " -+"உங்கள் சொடுக்கி அல்லது தொடுதிட்டின் உணர்திறனை மாற்றவும், வலதுகைப் பழக்கமா இடதுகைப் " - "பழக்கமா எனத் தேர்ந்தெடுக்கவும்" - - #. Translators: those are keywords for the mouse and touchpad control-center panel -@@ -2471,8 +2430,7 @@ msgstr "தானியங்கி ப? - #: ../panels/network/connection-editor/ip6-page.ui.h:8 - #: ../panels/network/network-wifi.ui.h:34 - msgid "Use this connection _only for resources on its network" --msgstr "" --"இந்த இணைப்பை இந்த பிணையத்தில் உள்ளவர்களுக்கு மட்டும் பயன்படுத்தவும் (_o)" -+msgstr "இந்த இணைப்பை இந்த பிணையத்தில் உள்ளவர்களுக்கு மட்டும் பயன்படுத்தவும் (_o)" - - #: ../panels/network/connection-editor/ip6-page.ui.h:1 - #: ../panels/network/network-wifi.ui.h:36 -@@ -2536,8 +2494,7 @@ msgid "" - "Reset the settings for this network, including passwords, but remember it as " - "a preferred network" - msgstr "" --"இந்தப் பிணையத்திற்கான கடவுச்சொற்கள் உள்ளிட்ட அமைப்புகளை மீட்டமைக்கவும், ஆனால் " --"இதை விரும்பும் " -+"இந்தப் பிணையத்திற்கான கடவுச்சொற்கள் உள்ளிட்ட அமைப்புகளை மீட்டமைக்கவும், ஆனால் இதை விரும்பும் " - "பிணையமாக நினைவில் கொள்ளவும்" - - #: ../panels/network/connection-editor/reset-page.ui.h:4 -@@ -2545,8 +2502,7 @@ msgid "" - "Remove all details relating to this network and do not try to automatically " - "connect" - msgstr "" --"இந்தப் பிணையம் தொடர்பான அனைத்து விவரங்களையும் அகற்றவும், மேலும் தானாக இணைக்க " --"முயற்சிக்க " -+"இந்தப் பிணையம் தொடர்பான அனைத்து விவரங்களையும் அகற்றவும், மேலும் தானாக இணைக்க முயற்சிக்க " - "வேண்டாம்" - - #: ../panels/network/connection-editor/security-page.ui.h:1 -@@ -2612,7 +2568,6 @@ msgstr "" - "பிழை: %s." - - #: ../panels/network/connection-editor/vpn-helpers.c:371 --#| msgid "Export VPN connection..." - msgid "Export VPN connection" - msgstr "VPN இணைப்பை ஏற்றுமதிசெய்" - -@@ -2650,9 +2605,6 @@ msgstr "நீங்கள் எப்? - - #. Translators: those are keywords for the network control-center panel - #: ../panels/network/gnome-network-panel.desktop.in.in.h:4 --#| msgid "" --#| "Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;" --#| "vpn;vlan;bridge;bond;" - msgid "" - "Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;" - "vlan;bridge;bond;DNS;" -@@ -2739,23 +2691,20 @@ msgid "" - "If you have a connection to the Internet other than wireless, you can set up " - "a wireless hotspot to share the connection with others." - msgstr "" --"உங்களிடம் வயர்லெஸ் அல்லாத ஒரு இணைய இணைப்பு இருந்தால், இணைப்பை மற்றவர்களிடம் " --"பகிர்ந்துகொள்ள " -+"உங்களிடம் வயர்லெஸ் அல்லாத ஒரு இணைய இணைப்பு இருந்தால், இணைப்பை மற்றவர்களிடம் பகிர்ந்துகொள்ள " - "நீங்கள் ஒரு வயர்லெஸ் ஹாட்ஸ்பாட்டை அமைத்துப் பயன்படுத்தலாம்." - - #: ../panels/network/net-device-wifi.c:1158 - #, c-format - msgid "Switching on the wireless hotspot will disconnect you from %s." --msgstr "" --"கம்பியில்லா வட்டத்துக்கு மாறுவது %s யிலிருந்ஹ்டு உங்களை துண்டிக்கும்." -+msgstr "கம்பியில்லா வட்டத்துக்கு மாறுவது %s யிலிருந்ஹ்டு உங்களை துண்டிக்கும்." - - #: ../panels/network/net-device-wifi.c:1162 - msgid "" - "It is not possible to access the Internet through your wireless while the " - "hotspot is active." - msgstr "" --"கம்பியில்லா வட்டம் செயலில் இருப்பின் உங்களது கம்பியில்லா இணைப்பு மூலம் " --"நீங்கள் பிணையத்தை " -+"கம்பியில்லா வட்டம் செயலில் இருப்பின் உங்களது கம்பியில்லா இணைப்பு மூலம் நீங்கள் பிணையத்தை " - "அணுக இயலாது." - - #: ../panels/network/net-device-wifi.c:1245 -@@ -2779,8 +2728,7 @@ msgid "" - "Network details for the selected networks, including passwords and any " - "custom configuration will be lost." - msgstr "" --"தேர்ந்தெடுக்கப்பட்ட பிணையங்களின் கடவுச்சொற்கள் மற்றும் தனிப்பயன் " --"அமைவாக்கங்கள் உட்பட அனைத்து " -+"தேர்ந்தெடுக்கப்பட்ட பிணையங்களின் கடவுச்சொற்கள் மற்றும் தனிப்பயன் அமைவாக்கங்கள் உட்பட அனைத்து " - "விவரங்களும் இழக்கப்படும்." - - #: ../panels/network/net-device-wifi.c:1745 -@@ -2805,8 +2753,7 @@ msgstr "மற (_F)" - #: ../panels/network/net-proxy.c:67 - msgid "" - "Web Proxy Autodiscovery is used when a Configuration URL is not provided." --msgstr "" --"வலை பதிலாள் தானியங்கி காணல் வடிவமைப்பு, யூஆர்எல் இல்லாத போது பயன்படும்." -+msgstr "வலை பதிலாள் தானியங்கி காணல் வடிவமைப்பு, யூஆர்எல் இல்லாத போது பயன்படும்." - - #. TRANSLATORS: WPAD is bad: if you enable it on an untrusted - #. * network, then anyone else on that network can tell your -@@ -2995,8 +2942,7 @@ msgid "" - "Reset the settings for this connection to their defaults, but remember as a " - "preferred connection." - msgstr "" --"இந்த இணைப்புக்கான அமைவுகளை அவற்றின் முன்னிருப்பு அமைப்புக்கு மீட்டமை, ஆனால் " --"இதை விரும்பும் " -+"இந்த இணைப்புக்கான அமைவுகளை அவற்றின் முன்னிருப்பு அமைப்புக்கு மீட்டமை, ஆனால் இதை விரும்பும் " - "இணைப்பாக நினைவில் கொள்." - - #: ../panels/network/network-wifi.ui.h:44 -@@ -3004,8 +2950,7 @@ msgid "" - "Remove all details relating to this network and do not try to automatically " - "connect to it." - msgstr "" --"இந்தப் பிணையம் தொடர்பான அனைத்து விவரங்களையும் அகற்றவும், மேலும் தானாக இதற்கு " --"இணைக்க " -+"இந்தப் பிணையம் தொடர்பான அனைத்து விவரங்களையும் அகற்றவும், மேலும் தானாக இதற்கு இணைக்க " - "முயற்சிக்க வேண்டாம்." - - #: ../panels/network/network-wifi.ui.h:45 -@@ -3361,8 +3306,7 @@ msgid "" - "Authority certificate?" - msgstr "" - "ஓரு சான்றிதழ் அங்கீகார (CA) சான்றிதழைப் பயன்படுத்தாவிட்டால், Wi-Fi பிணையங்கள் " --"பாதுகாப்பற்றதாகவும் நம்பகமற்றதாகவும் விளங்கலாம். ஓரு சான்றிதழ் அங்கீகார (CA) " --"சான்றிதழைத் " -+"பாதுகாப்பற்றதாகவும் நம்பகமற்றதாகவும் விளங்கலாம். ஓரு சான்றிதழ் அங்கீகார (CA) சான்றிதழைத் " - "தேர்வு செய்ய வேண்டுமா?" - - #: ../panels/network/wireless-security/eap-method.c:281 -@@ -3393,7 +3337,6 @@ msgid "MSCHAPv2" - msgstr "MSCHAPv2" - - #: ../panels/network/wireless-security/eap-method-fast.c:409 --#| msgid "Choose a PAC file..." - msgid "Choose a PAC file" - msgstr "ஒரு PAC கோப்பினைத் தேர்ந்தெடுக்கவும்" - -@@ -3459,7 +3402,6 @@ msgstr "MD5" - #: ../panels/network/wireless-security/eap-method-peap.c:350 - #: ../panels/network/wireless-security/eap-method-tls.c:456 - #: ../panels/network/wireless-security/eap-method-ttls.c:350 --#| msgid "Choose a Certificate Authority certificate..." - msgid "Choose a Certificate Authority certificate" - msgstr "அங்கீகார அதிகாரச் சான்றிதழைத் தேர்ந்தெடுக்கவும்" - -@@ -3498,21 +3440,17 @@ msgid "" - "(You can password-protect your private key with openssl)" - msgstr "" - "தேர்ந்தெடுக்கப்பட்ட தனிப்பட்ட விசையானது கடவுச்சொல்லால் பாதுகாக்கப்படாதது எனத் " --"தோன்றுகிறது. இதனால் பாதுகாப்பு சான்றளிப்பு உத்தரவாதமானதாக இல்லாமல் " --"போகக்கூடும். " -+"தோன்றுகிறது. இதனால் பாதுகாப்பு சான்றளிப்பு உத்தரவாதமானதாக இல்லாமல் போகக்கூடும். " - "கடவுச்சொல்லால் பாதுகாக்கப்பட்ட ஒரு தனிப்பட்ட விசையைத் தேர்ந்தெடுக்கவும்.\n" - "\n" --"(openssl ஐக் கொண்டு நீங்கள் உங்கள் தனிப்பட்ட விசையை கடவுச்சொல்லால் " --"பாதுகாக்கப்பட்டதாக " -+"(openssl ஐக் கொண்டு நீங்கள் உங்கள் தனிப்பட்ட விசையை கடவுச்சொல்லால் பாதுகாக்கப்பட்டதாக " - "மாற்றலாம்)" - - #: ../panels/network/wireless-security/eap-method-tls.c:450 --#| msgid "Choose your personal certificate..." - msgid "Choose your personal certificate" - msgstr "உங்கள் தனிப்பட்ட சான்றிதழைத் தேர்ந்தெடுக்கவும்" - - #: ../panels/network/wireless-security/eap-method-tls.c:462 --#| msgid "Choose your private key..." - msgid "Choose your private key" - msgstr "உங்கள் தனிப்பட்ட விசையைத் தேர்ந்தெடுக்கவும்" - -@@ -3668,8 +3606,7 @@ msgstr "அறிவிப்புக?? - #: ../panels/notifications/gnome-notifications-panel.desktop.in.in.h:2 - msgid "Control which notifications are displayed and what they show" - msgstr "" --"எந்தெந்த அறிவிப்புகள் காண்பிக்கப்பட வேண்டும் என்பதையும் அவை எவற்றைக் " --"காண்பிக்க வேண்டும் " -+"எந்தெந்த அறிவிப்புகள் காண்பிக்கப்பட வேண்டும் என்பதையும் அவை எவற்றைக் காண்பிக்க வேண்டும் " - "என்பதையும் கட்டுப்படுத்தவும்" - - #. Translators: those are keywords for the notifications control-center panel -@@ -3755,8 +3692,7 @@ msgstr "ஆன் லைன் கண?? - #: ../panels/online-accounts/gnome-online-accounts-panel.desktop.in.in.h:2 - msgid "Connect to your online accounts and decide what to use them for" - msgstr "" --"உங்கள் ஆன்லைன் கணக்குகளில் இணைந்து அவற்றை எதற்கு பயன்படுத்த வேண்டும் என " --"முடிவு செய்யவும்" -+"உங்கள் ஆன்லைன் கணக்குகளில் இணைந்து அவற்றை எதற்கு பயன்படுத்த வேண்டும் என முடிவு செய்யவும்" - - #. For ReadItLater and Pocket, see http://en.wikipedia.org/wiki/Pocket_(application) - #: ../panels/online-accounts/gnome-online-accounts-panel.desktop.in.in.h:4 -@@ -3784,8 +3720,7 @@ msgid "" - "Adding an account allows your applications to access it for documents, mail, " - "contacts, calendar, chat and more." - msgstr "" --"ஒரு கணக்கை சேர்ப்பது உங்கள் பயன்பாடுகளை அதன் ஆவணங்கள், மின்னஞ்சல், " --"தொடர்புகள், நாட்காட்டி, " -+"ஒரு கணக்கை சேர்ப்பது உங்கள் பயன்பாடுகளை அதன் ஆவணங்கள், மின்னஞ்சல், தொடர்புகள், நாட்காட்டி, " - "அரட்டை மேலும் பலவற்றை அணுக அனுமதிக்கும்." - - #: ../panels/power/cc-power-panel.c:183 -@@ -4043,9 +3978,7 @@ msgstr "பேட்டரி நில? - #: ../panels/power/gnome-power-panel.desktop.in.in.h:4 - msgid "" - "Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;" --msgstr "" --"சக்தி;உறங்கு;இடைநிறுத்தம்;பேட்டரி;பிரகாசம்;மங்கல்;வெற்று;மானிட்டர்;DPMS;செயலின" --"்றி;" -+msgstr "சக்தி;உறங்கு;இடைநிறுத்தம்;பேட்டரி;பிரகாசம்;மங்கல்;வெற்று;மானிட்டர்;DPMS;செயலின்றி;" - - #: ../panels/power/power.ui.h:1 - msgid "Hibernate" -@@ -4299,8 +4232,7 @@ msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" --"போஸ்ட்ஸ்கிரிப்ட் அசுப்பொறி விவர கோப்புகள் (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, " --"*.PPD." -+"போஸ்ட்ஸ்கிரிப்ட் அசுப்பொறி விவர கோப்புகள் (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD." - "GZ)" - - #: ../panels/printers/cc-printers-panel.c:2258 -@@ -4338,8 +4270,7 @@ msgstr "அச்சுப்பொற?? - #: ../panels/printers/gnome-printers-panel.desktop.in.in.h:2 - msgid "Add printers, view printer jobs and decide how you want to print" - msgstr "" --"அச்சுப்பொறிகளைச் சேர்க்கவும், அச்சுப்பொறி பணிகளைக் காணவும் மற்றும் அவை எப்படி " --"அச்சிட " -+"அச்சுப்பொறிகளைச் சேர்க்கவும், அச்சுப்பொறி பணிகளைக் காணவும் மற்றும் அவை எப்படி அச்சிட " - "வேண்டும் என முடிவு செய்யவும்" - - #. Translators: those are keywords for the printing control-center panel -@@ -4386,8 +4317,7 @@ msgstr "அச்சுப்பொற?? - #. Translators: The entered text should contain network address of a printer or a text which will filter found devices (their names and locations) - #: ../panels/printers/new-printer-dialog.ui.h:9 - msgid "Enter address of a printer or a text to filter results" --msgstr "" --"முடிவுகளை வடிகட்ட ஒரு அச்சுப்பொறியின் முகவரி அல்லது உரை ஒன்றை உள்ளிடவும்" -+msgstr "முடிவுகளை வடிகட்ட ஒரு அச்சுப்பொறியின் முகவரி அல்லது உரை ஒன்றை உள்ளிடவும்" - - #: ../panels/printers/options-dialog.ui.h:1 - msgid "Loading options…" -@@ -4403,13 +4333,11 @@ msgstr "இயக்கிகள் த? - - #. Translators: The found device is a JetDirect printer - #: ../panels/printers/pp-host.c:506 --#| msgid "Remove Printer" - msgid "JetDirect Printer" - msgstr "JetDirect அச்சுப்பொறி" - - #. Translators: The found device is a Line Printer Daemon printer - #: ../panels/printers/pp-host.c:756 --#| msgid "%s Printer" - msgid "LPD Printer" - msgstr "LPD அச்சுப்பொறி" - -@@ -4531,14 +4459,12 @@ msgstr "இணையான துறை" - #. Translators: Location of found network printer (e.g. Kitchen, Reception) - #: ../panels/printers/pp-new-printer-dialog.c:1739 - #, c-format --#| msgid "Location" - msgid "Location: %s" - msgstr "இடம்: %s" - - #. Translators: Network address of found printer - #: ../panels/printers/pp-new-printer-dialog.c:1744 - #, c-format --#| msgid "A_ddress:" - msgid "Address: %s" - msgstr "முகவரி: %s" - -@@ -4681,8 +4607,7 @@ msgstr "இயக்கி" - #, c-format - msgid "Enter your username and password to view printers available on %s." - msgstr "" --"%s இல் கிடைக்கும் அச்சுப்பொறிகளைக் காண உங்கள் பயனர் பெயர் மற்றும் " --"கடவுச்சொல்லை உள்ளிடவும்." -+"%s இல் கிடைக்கும் அச்சுப்பொறிகளைக் காண உங்கள் பயனர் பெயர் மற்றும் கடவுச்சொல்லை உள்ளிடவும்." - - #: ../panels/printers/printers.ui.h:1 - msgid "Add Printer" -@@ -4704,7 +4629,6 @@ msgstr "இடம்" - - #. Translators: This checkbox is checked when the default printer is selected. - #: ../panels/printers/printers.ui.h:8 --#| msgid "Default Route" - msgid "_Default printer" - msgstr "முன்னிருப்பு அச்சுப்பொறி (_D)" - -@@ -4794,7 +4718,6 @@ msgid "Purge Trash & Temporary Files" - msgstr "தேவையற்றதையும் தற்காலிகக் கோப்புகளையும் அழி" - - #: ../panels/privacy/cc-privacy-panel.c:576 ../panels/privacy/privacy.ui.h:36 --#| msgid "Software" - msgid "Software Usage" - msgstr "மென்பொருள் பயன்பாடு" - -@@ -4805,8 +4728,7 @@ msgstr "தனியுரிமை" - #: ../panels/privacy/gnome-privacy-panel.desktop.in.in.h:2 - msgid "Protect your personal information and control what others might see" - msgstr "" --"உங்கள் தனிப்பட்ட தகவல்களைப் பாதுகாப்பாக வைத்திருந்து, மற்றவர்கள் எவற்றை " --"மட்டும் காணக்கூடும் " -+"உங்கள் தனிப்பட்ட தகவல்களைப் பாதுகாப்பாக வைத்திருந்து, மற்றவர்கள் எவற்றை மட்டும் காணக்கூடும் " - "என்பதை நீங்களே கட்டுப்படுத்துங்கள்" - - #. Translators: those are keywords for the privacy control-center panel -@@ -4815,8 +4737,7 @@ msgid "" - "screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;" - "network;identity;" - msgstr "" --"திரை;பூட்டு;கண்டறிதல்கள்;செயலிழப்பு;தனிப்பட்ட;சமீபத்திய;தற்காலிக;tmp;அட்டவணை;ப" --"ெயர்;" -+"திரை;பூட்டு;கண்டறிதல்கள்;செயலிழப்பு;தனிப்பட்ட;சமீபத்திய;தற்காலிக;tmp;அட்டவணை;பெயர்;" - "பிணையம்;அடையாளம்;" - - #: ../panels/privacy/privacy.ui.h:1 -@@ -4872,8 +4793,7 @@ msgid "" - "Remembering your history makes things easier to find again. These items are " - "never shared over the network." - msgstr "" --"உங்கள் வரலாற்றை நினைவில் கொள்வதால், வேண்டியவற்றை எளிதில் மீண்டும் " --"கண்டுபிடிக்க முடியும். " -+"உங்கள் வரலாற்றை நினைவில் கொள்வதால், வேண்டியவற்றை எளிதில் மீண்டும் கண்டுபிடிக்க முடியும். " - "இவை பிணையத்தின் வழியாக எப்போதும் பகிரப்படாது." - - #: ../panels/privacy/privacy.ui.h:21 -@@ -4911,8 +4831,7 @@ msgid "" - "Automatically purge the Trash and temporary files to help keep your computer " - "free of unnecessary sensitive information." - msgstr "" --"தேவையில்லாத முக்கியத் தகவல்கள் அடைத்துக்கொண்டு இல்லாமல் உங்கள் கணினி சிறப்பாக " --"இருக்க, " -+"தேவையில்லாத முக்கியத் தகவல்கள் அடைத்துக்கொண்டு இல்லாமல் உங்கள் கணினி சிறப்பாக இருக்க, " - "குப்பை தொட்டியையும் தற்காலிகக் கோப்புகளையும் தானாக அழிக்கவும்." - - #: ../panels/privacy/privacy.ui.h:31 -@@ -4936,26 +4855,22 @@ msgid "" - "All the information we collect is made anonymous, and we will never share " - "your data with third parties." - msgstr "" --"நீங்கள் எந்த மென்பொருளைப் பயன்படுத்துகிறீர்கள் என்ற தகவலை எங்களுக்கு " --"அனுப்பினால், உங்களுக்கு " --"இன்னும் துல்லியமான பரிந்துரைகளை வழங்க எங்களுக்கு அது உதவியாக இருக்கும். அது " --"எங்கள் மென்பொருளை " --"மேம்படுத்தவும் உதவும்.\n" -+"நீங்கள் எந்த மென்பொருளைப் பயன்படுத்துகிறீர்கள் என்ற தகவலை எங்களுக்கு அனுப்பினால், உங்களுக்கு " -+"இன்னும் துல்லியமான பரிந்துரைகளை வழங்க எங்களுக்கு அது உதவியாக இருக்கும். அது எங்கள் " -+"மென்பொருளை மேம்படுத்தவும் உதவும்.\n" - "\n" --"நாங்கள் சேகரிக்கும் தகவல் அனைத்துமே பெயரிலாததாக்கப்படும், உங்கள் தரவை ஒரு " --"போதும் மூன்றாம் தரப்பினரிடம் பகிர மாட்டோம்." -+"நாங்கள் சேகரிக்கும் தகவல் அனைத்துமே பெயரிலாததாக்கப்படும், உங்கள் தரவை ஒரு போதும் மூன்றாம் " -+"தரப்பினரிடம் பகிர மாட்டோம்." - - #: ../panels/privacy/privacy.ui.h:40 - msgid "_Send software usage statistics" - msgstr "மென்பொருள் பயன்பாடு விவரங்களை அனுப்பு (_S)" - - #: ../panels/privacy/privacy.ui.h:41 --#| msgid "Privacy" - msgid "Privacy Policy" - msgstr "தனியுரிமைக் கொள்கை" - - #: ../panels/privacy/privacy.ui.h:42 --#| msgid "_Location name:" - msgid "_Location Services" - msgstr "இருப்பிடச் சேவைகள் (_L)" - -@@ -5048,8 +4963,7 @@ msgstr " வட்டாரம் மற - msgid "" - "Select your display language, formats, keyboard layouts and input sources" - msgstr "" --"உங்கள் காட்சி மொழி, வடிவமைப்புகள், விசைப்பலகை தளவமைப்புகள் மற்றும் உள்ளீட்டு " --"மூலங்களைத் " -+"உங்கள் காட்சி மொழி, வடிவமைப்புகள், விசைப்பலகை தளவமைப்புகள் மற்றும் உள்ளீட்டு மூலங்களைத் " - "தேர்ந்தெடுக்கவும்" - - #. Translators: those are keywords for the region control-center panel -@@ -5158,8 +5072,7 @@ msgstr "தேடு" - msgid "" - "Control which applications show search results in the Activities Overview" - msgstr "" --"செயல்பாடுகளின் மேலோட்டப் பார்வையில், எந்த பயன்பாடுகள் தேடல் முடிவுகளைக் " --"காண்பிக்க வேண்டும் " -+"செயல்பாடுகளின் மேலோட்டப் பார்வையில், எந்த பயன்பாடுகள் தேடல் முடிவுகளைக் காண்பிக்க வேண்டும் " - "என்பதைக் கட்டுப்படுத்தவும்" - - #. Translators: those are keywords for the search control-center panel -@@ -5195,13 +5108,11 @@ msgid "Off" - msgstr "ஆஃப்" - - #: ../panels/sharing/cc-sharing-panel.c:304 --#| msgid "Enabled" - msgctxt "service is enabled" - msgid "Enabled" - msgstr "செயல்படுத்தப்பட்டது" - - #: ../panels/sharing/cc-sharing-panel.c:307 --#| msgid "Active Jobs" - msgctxt "service is active" - msgid "Active" - msgstr "செயலில் உள்ளது" -@@ -5220,8 +5131,7 @@ msgstr "பகிர்வு" - - #: ../panels/sharing/gnome-sharing-panel.desktop.in.in.h:2 - msgid "Control what you want to share with others" --msgstr "" --"நீங்கள் மற்றவர்களுடன் எவற்றைப் பகிர வேண்டும் என்பதைக் கட்டுப்படுத்தவும்" -+msgstr "நீங்கள் மற்றவர்களுடன் எவற்றைப் பகிர வேண்டும் என்பதைக் கட்டுப்படுத்தவும்" - - #. Translators: those are keywords for the sharing control-center panel - #: ../panels/sharing/gnome-sharing-panel.desktop.in.in.h:4 -@@ -5229,8 +5139,7 @@ msgid "" - "share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;" - "pictures;photos;movies;server;renderer;" - msgstr "" --"பகிர்;பகிர்தல்;ssh;ஹோஸ்ட்;பெயர்;தொலைநிலை;டெஸ்க்டாப்;bluetooth;obex;மீடியா;ஆடிய" --"ோ;வீடியோ;" -+"பகிர்;பகிர்தல்;ssh;ஹோஸ்ட்;பெயர்;தொலைநிலை;டெஸ்க்டாப்;bluetooth;obex;மீடியா;ஆடியோ;வீடியோ;" - "படங்கள்;புகைப்படங்கள்;மூவிகள்;சேவையகம்;ரென்டெரர்;" - - #: ../panels/sharing/org.gnome.controlcenter.remote-login-helper.policy.in.in.h:1 -@@ -5243,7 +5152,6 @@ msgstr "தொலைநிலை பு? - - #. Label - #: ../panels/sharing/cc-sharing-networks.c:299 --#| msgid "List of keyboard layouts selected for usage" - msgid "No networks selected for sharing" - msgstr "பகிர்வதற்கு பிணையங்கள் எதுவும் தேர்ந்தெடுக்கப்படவில்லை" - -@@ -5251,7 +5159,6 @@ msgstr "பகிர்வதற்க?? - #. * vim: sw=2 ts=8 cindent noai bs=2 - #. - #: ../panels/sharing/networks.ui.h:1 --#| msgid "Network" - msgid "Networks" - msgstr "பிணையங்கள்" - -@@ -5264,8 +5171,7 @@ msgid "" - "Bluetooth Sharing allows you to share files with other Bluetooth enabled " - "devices" - msgstr "" --"Bluetooth பகிர்வைக் கொண்டு நீங்கள் Bluetooth செயல்படுத்தப்பட்ட மற்ற " --"சாதனங்களுடன் " -+"Bluetooth பகிர்வைக் கொண்டு நீங்கள் Bluetooth செயல்படுத்தப்பட்ட மற்ற சாதனங்களுடன் " - "கோப்புகளைப் பகிர்ந்து கொள்ளலாம்" - - #: ../panels/sharing/sharing.ui.h:3 -@@ -5306,10 +5212,8 @@ msgid "" - "Personal File Sharing allows you to share your Public folder with others on " - "your current network using: dav://%s" - msgstr "" --"தனிப்பட்ட கோப்புப் பகிர்வைக் கொண்டு நீங்கள் இதைப் பயன்படுத்தி உங்கள் தற்போதைய " --"பிணையத்திலுள்ள " --"மற்றவர்களுடன் உங்கள் பொதுக் கோப்புறையைப் பகிர்ந்துகொள்ள முடியும்: dav://%s" - - #: ../panels/sharing/sharing.ui.h:13 -@@ -5322,8 +5226,7 @@ msgid "" - "Allow remote users to connect using the Secure Shell command:\n" - "ssh %s" - msgstr "" --"Secure Shell கட்டளையைப் பயன்படுத்தி தொலைநிலை பயனர்கள் இணைவதற்கு " --"அனுமதிக்கவும்:\n" -+"Secure Shell கட்டளையைப் பயன்படுத்தி தொலைநிலை பயனர்கள் இணைவதற்கு அனுமதிக்கவும்:\n" - "ssh %s" - - #: ../panels/sharing/sharing.ui.h:19 -@@ -5332,17 +5235,14 @@ msgid "" - "Allow remote users to view or control your screen by connecting to: vnc://%s" - msgstr "" --"தொலைநிலை பயனர்கள் இதில் இணைவதன் மூலம் உங்கள் திரையை அணுகவும் " --"கட்டுப்படுத்தவும் " -+"தொலைநிலை பயனர்கள் இதில் இணைவதன் மூலம் உங்கள் திரையை அணுகவும் கட்டுப்படுத்தவும் " - "அனுமதிக்கவும்: vnc://%s" - - #: ../panels/sharing/sharing.ui.h:20 --#| msgid "Remote Control" - msgid "Allow Remote Control" - msgstr "தொலைநிலைக் கட்டுப்பாட்டை அனுமதி" - - #: ../panels/sharing/sharing.ui.h:21 --#| msgid "Password" - msgid "Password:" - msgstr "கடவுச்சொல்:" - -@@ -5351,7 +5251,6 @@ msgid "Show Password" - msgstr "கடவுச்சொல்லை காட்டு" - - #: ../panels/sharing/sharing.ui.h:23 --#| msgid "%s Options" - msgid "Access Options" - msgstr "அணுகல் விருப்பங்கள்" - -@@ -5360,17 +5259,14 @@ msgid "New connections must ask for acce - msgstr "புதிய இணைப்புகள் அணுகலைக் கோர வேண்டும்" - - #: ../panels/sharing/sharing.ui.h:25 --#| msgid "Require Password" - msgid "Require a password" - msgstr "கடவுச்சொல் தேவை" - - #: ../panels/sharing/sharing.ui.h:26 --#| msgid "Share Music, Photos and Videos with others on the current network." - msgid "Share music, photos and videos over the network." - msgstr "பிணையத்தின் வழியாக இசை, புகைப்படங்கள் மற்றும் வீடியோக்களைப் பகிரலாம்." - - #: ../panels/sharing/sharing.ui.h:27 --#| msgid "Add Folder" - msgid "Folders" - msgstr "கோப்புறைகள்" - -@@ -5380,8 +5276,7 @@ msgstr "ஒலி" - - #: ../panels/sound/data/gnome-sound-panel.desktop.in.in.h:2 - msgid "Change sound levels, inputs, outputs, and alert sounds" --msgstr "" --"ஒலி அளவுகள், உள்ளீடுகள், வெளியீடுகள் மற்றும் விழிப்பூட்டல் ஒலிகளை மாற்று" -+msgstr "ஒலி அளவுகள், உள்ளீடுகள், வெளியீடுகள் மற்றும் விழிப்பூட்டல் ஒலிகளை மாற்று" - - #. Translators: those are keywords for the sound control-center panel - #: ../panels/sound/data/gnome-sound-panel.desktop.in.in.h:4 -@@ -5609,8 +5504,7 @@ msgstr "தனிப்பயன்" - #: ../panels/universal-access/gnome-universal-access-panel.desktop.in.in.h:2 - msgid "Make it easier to see, hear, type, point and click" - msgstr "" --"பார்ப்பது, கேட்பது, தட்டச்சு செய்வது, சுட்டுவது மற்றும் சொடுக்குவது " --"அனைத்தையும் " -+"பார்ப்பது, கேட்பது, தட்டச்சு செய்வது, சுட்டுவது மற்றும் சொடுக்குவது அனைத்தையும் " - "எளிதாக்கவும்" - - #. Translators: those are keywords for the universal access control-center panel -@@ -5667,7 +5561,6 @@ msgid "_Typing Assist (AccessX)" - msgstr "தட்டச்சு உதவியாளர் (AccessX) (_T)" - - #: ../panels/universal-access/uap.ui.h:14 --#| msgid "Pointing and Clicking" - msgid "Pointing & Clicking" - msgstr "சுட்டி & சொடுக்கல்" - -@@ -5686,8 +5579,7 @@ msgstr "திரைபடிப்ப?? - #: ../panels/universal-access/uap.ui.h:18 - msgid "The screen reader reads displayed text as you move the focus." - msgstr "" --"திரைபடிப்பான் நீங்கள் திரை கவனப் பகுதியை நகர்த்தும் போது அதற்குரிய உரையை " --"படித்துக் " -+"திரைபடிப்பான் நீங்கள் திரை கவனப் பகுதியை நகர்த்தும் போது அதற்குரிய உரையை படித்துக் " - "காட்டும்." - - #: ../panels/universal-access/uap.ui.h:19 -@@ -5749,8 +5641,7 @@ msgstr "மெது விசைகள? - #: ../panels/universal-access/uap.ui.h:33 - msgid "Puts a delay between when a key is pressed and when it is accepted" - msgstr "" --"ஒரு விசை அழுத்தப்படுவதற்கும் அது ஒப்புக்கொள்ளப் படுவதற்கும் இடையே ஒரு " --"இடைவெளியை அமை " -+"ஒரு விசை அழுத்தப்படுவதற்கும் அது ஒப்புக்கொள்ளப் படுவதற்கும் இடையே ஒரு இடைவெளியை அமை " - - #: ../panels/universal-access/uap.ui.h:34 - msgid "A_cceptance delay:" -@@ -6096,8 +5987,7 @@ msgid "" - "Enterprise login allows an existing centrally managed user account to be " - "used on this device." - msgstr "" --"தொழில் ரீதியான புகுபதிவில், இந்த சாதனத்தில் மைய முறையில் நிர்வகிக்கப்படும் " --"முன்பே உள்ள " -+"தொழில் ரீதியான புகுபதிவில், இந்த சாதனத்தில் மைய முறையில் நிர்வகிக்கப்படும் முன்பே உள்ள " - "ஒரு பயனர் கணக்கைப் பயன்படுத்த முடிகிறது." - - #: ../panels/user-accounts/data/account-dialog.ui.h:12 -@@ -6202,8 +6092,7 @@ msgid "" - "Your fingerprint was successfully saved. You should now be able to log in " - "using your fingerprint reader." - msgstr "" --"உங்கள் கைரேகை வெற்றிகரமாக சேமிக்கப்பட்டது. இப்போது நீங்கள் கைரேகை வாசிப்பி " --"மூலம் " -+"உங்கள் கைரேகை வெற்றிகரமாக சேமிக்கப்பட்டது. இப்போது நீங்கள் கைரேகை வாசிப்பி மூலம் " - "புகுபதிவு செய்ய முடியும்." - - #: ../panels/user-accounts/data/gnome-user-accounts-panel.desktop.in.in.h:1 -@@ -6212,8 +6101,7 @@ msgstr "பயனர்கள்" - - #: ../panels/user-accounts/data/gnome-user-accounts-panel.desktop.in.in.h:2 - msgid "Add or remove users and change your password" --msgstr "" --"பயனர்களைச் சேர்க்கவும் அல்லது நீக்கவும் மற்றும் உங்கள் கடவுச்சொல்லை மாற்றவும்" -+msgstr "பயனர்களைச் சேர்க்கவும் அல்லது நீக்கவும் மற்றும் உங்கள் கடவுச்சொல்லை மாற்றவும்" - - #. Translators: those are keywords for the user accounts control-center panel - #: ../panels/user-accounts/data/gnome-user-accounts-panel.desktop.in.in.h:4 -@@ -6225,7 +6113,6 @@ msgid "Login History" - msgstr "புகுபதிவு வரலாறு" - - #: ../panels/user-accounts/data/password-dialog.ui.h:1 --#| msgid "Change pa_ssword" - msgid "Change Password" - msgstr "கடவுச்சொல்லை மாற்று" - -@@ -6308,15 +6195,12 @@ msgstr "உங்கள் பயனர? - #: ../panels/user-accounts/pw-utils.c:89 - msgctxt "Password hint" - msgid "Try to avoid using your name in the password." --msgstr "" --"கடவுச்சொல்லில் உங்கள் பயனர் பெயரைப் பயன்படுத்துவதைத் தவிர்க்க முயற்சிக்கவும்." -+msgstr "கடவுச்சொல்லில் உங்கள் பயனர் பெயரைப் பயன்படுத்துவதைத் தவிர்க்க முயற்சிக்கவும்." - - #: ../panels/user-accounts/pw-utils.c:91 - msgctxt "Password hint" - msgid "Try to avoid some of the words included in the password." --msgstr "" --"சேர்க்கப்பட்டுள்ள சில சொற்களை கடவுச்சொல்லில் பயன்படுத்துவதைத் தவிர்க்க " --"முயற்சிக்கவும்." -+msgstr "சேர்க்கப்பட்டுள்ள சில சொற்களை கடவுச்சொல்லில் பயன்படுத்துவதைத் தவிர்க்க முயற்சிக்கவும்." - - #: ../panels/user-accounts/pw-utils.c:95 - msgctxt "Password hint" -@@ -6346,21 +6230,17 @@ msgstr "அதிக சிறிய எ - #: ../panels/user-accounts/pw-utils.c:105 - msgctxt "Password hint" - msgid "Try to use more special characters, like punctuation." --msgstr "" --"நிறுத்தக் குறிகள் போன்ற சிறப்பு எழுத்துகளை அதிகம் பயன்படுத்த முயற்சிக்கவும்." -+msgstr "நிறுத்தக் குறிகள் போன்ற சிறப்பு எழுத்துகளை அதிகம் பயன்படுத்த முயற்சிக்கவும்." - - #: ../panels/user-accounts/pw-utils.c:107 - msgctxt "Password hint" - msgid "Try to use a mixture of letters, numbers and punctuation." --msgstr "" --"எண்கள், எழுத்துகள் மற்றும் நிறுத்தக்குறிகளைக் கலந்து பயன்படுத்த " --"முயற்சிக்கவும்." -+msgstr "எண்கள், எழுத்துகள் மற்றும் நிறுத்தக்குறிகளைக் கலந்து பயன்படுத்த முயற்சிக்கவும்." - - #: ../panels/user-accounts/pw-utils.c:109 - msgctxt "Password hint" - msgid "Try to avoid repeating the same character." --msgstr "" --"ஒரே எழுத்தை மீண்டும் மீண்டும் பயன்படுத்துவதைத் தவிர்க்க முயற்சிக்கவும்." -+msgstr "ஒரே எழுத்தை மீண்டும் மீண்டும் பயன்படுத்துவதைத் தவிர்க்க முயற்சிக்கவும்." - - #: ../panels/user-accounts/pw-utils.c:111 - msgctxt "Password hint" -@@ -6368,16 +6248,14 @@ msgid "" - "Try to avoid repeating the same type of character: you need to mix up " - "letters, numbers and punctuation." - msgstr "" --"ஒரே வகை எழுத்தை மீண்டும் மீண்டும் பயன்படுத்துவதைத் தவிர்க்க முயற்சிக்கவும்: " --"எண்கள், எழுத்துகள் " -+"ஒரே வகை எழுத்தை மீண்டும் மீண்டும் பயன்படுத்துவதைத் தவிர்க்க முயற்சிக்கவும்: எண்கள், எழுத்துகள் " - "மற்றும் நிறுத்தக்குறிகளைக் கலந்து பயன்படுத்த வேண்டும்." - - #: ../panels/user-accounts/pw-utils.c:113 - msgctxt "Password hint" - msgid "Try to avoid sequences like 1234 or abcd." - msgstr "" --"1234 அல்லது abcd போன்ற வரிசை எழுத்துகளைப் பயன்படுத்துவதைத் தவிர்க்க " --"முயற்சிக்கவும்." -+"1234 அல்லது abcd போன்ற வரிசை எழுத்துகளைப் பயன்படுத்துவதைத் தவிர்க்க முயற்சிக்கவும்." - - #: ../panels/user-accounts/pw-utils.c:115 - msgctxt "Password hint" -@@ -6388,8 +6266,7 @@ msgstr "அதிக எண்கள், - msgctxt "Password hint" - msgid "Mix uppercase and lowercase and use a number or two." - msgstr "" --"பெரிய எழுத்துகள் மற்றும் சிறிய எழுத்துகளைக் கலந்து பயன்படுத்தி ஓரிரண்டு " --"எண்களையும் " -+"பெரிய எழுத்துகள் மற்றும் சிறிய எழுத்துகளைக் கலந்து பயன்படுத்தி ஓரிரண்டு எண்களையும் " - "பயன்படுத்தவும்." - - #: ../panels/user-accounts/pw-utils.c:119 -@@ -6398,8 +6275,7 @@ msgid "" - "Good password! Adding more letters, numbers and punctuation will make it " - "stronger." - msgstr "" --"நல்ல கடவுச்சொல்! அதிக எண்களையும் எழுத்துகளையும் நிறுத்தக் குறிகளையும் " --"சேர்த்தால் இன்னும் " -+"நல்ல கடவுச்சொல்! அதிக எண்களையும் எழுத்துகளையும் நிறுத்தக் குறிகளையும் சேர்த்தால் இன்னும் " - "வலிமையாகும்." - - #: ../panels/user-accounts/pw-utils.c:141 -@@ -6469,9 +6345,7 @@ msgstr "பழைய மற்றும? - #: ../panels/user-accounts/run-passwd.c:528 - #, c-format - msgid "Your password has been changed since you initially authenticated!" --msgstr "" --"ஆரம்ப அங்கீகாரத்திலிருந்து உங்கள் கடவுச்சொல் மாற்றப்பட்டுள்ளது! மீண்டும் " --"அங்கீகரிக்கவும்." -+msgstr "ஆரம்ப அங்கீகாரத்திலிருந்து உங்கள் கடவுச்சொல் மாற்றப்பட்டுள்ளது! மீண்டும் அங்கீகரிக்கவும்." - - #: ../panels/user-accounts/run-passwd.c:532 - #, c-format -@@ -6605,8 +6479,7 @@ msgid "" - "To enable fingerprint login, you need to save one of your fingerprints, " - "using the '%s' device." - msgstr "" --"கைரேகை புகுபதிவை செயல்படுத்த உங்கள் கைரேகையை '%s' சாதனத்தை பயன்படுத்தி " --"சேமிக்க " -+"கைரேகை புகுபதிவை செயல்படுத்த உங்கள் கைரேகையை '%s' சாதனத்தை பயன்படுத்தி சேமிக்க " - "வேண்டும்." - - #: ../panels/user-accounts/um-fingerprint-dialog.c:728 -@@ -6757,9 +6630,7 @@ msgstr "%s இன்னும் உள? - msgid "" - "Deleting a user while they are logged in can leave the system in an " - "inconsistent state." --msgstr "" --"ஒரு பயனர் உள் நுழைந்து உள்லபோது அவர் கணக்கை நீக்குவது கணினியை " --"நிலையற்றதாக்கும்." -+msgstr "ஒரு பயனர் உள் நுழைந்து உள்லபோது அவர் கணக்கை நீக்குவது கணினியை நிலையற்றதாக்கும்." - - #: ../panels/user-accounts/um-user-panel.c:504 - #, c-format -@@ -6771,8 +6642,7 @@ msgid "" - "It is possible to keep the home directory, mail spool and temporary files " - "around when deleting a user account." - msgstr "" --"ஒரு பயனரின் கணக்கை நீக்கும்போது இல்ல அடைவு, அஞ்சல் சுருள், தற்காலிக கோப்புகள் " --"ஆகியவற்றை " -+"ஒரு பயனரின் கணக்கை நீக்கும்போது இல்ல அடைவு, அஞ்சல் சுருள், தற்காலிக கோப்புகள் ஆகியவற்றை " - "வைத்துக்கொள்ள முடியும்." - - #: ../panels/user-accounts/um-user-panel.c:511 -@@ -6808,8 +6678,7 @@ msgstr "கணக்கு சேவை? - - #: ../panels/user-accounts/um-user-panel.c:1069 - msgid "Please make sure that the AccountService is installed and enabled." --msgstr "" --"கணக்கு சேவை நிறுவப்பட்டுள்ளதா செயலாக்கப்பட்டுள்ளதா என்பதை சரிபார்க்கவும்" -+msgstr "கணக்கு சேவை நிறுவப்பட்டுள்ளதா செயலாக்கப்பட்டுள்ளதா என்பதை சரிபார்க்கவும்" - - #: ../panels/user-accounts/um-user-panel.c:1110 - msgid "" -@@ -6851,38 +6720,29 @@ msgstr "என் கணக்கு" - - #: ../panels/user-accounts/um-utils.c:567 - #, c-format --#| msgid "A user with the username '%s' already exists" - msgid "A user with the username '%s' already exists." - msgstr "'%s' என்ற பயனர் பெயரில் ஏற்கனவே ஒரு பயனர் உள்ளார்." - - #: ../panels/user-accounts/um-utils.c:571 - #, c-format --#| msgid "The username is too long" - msgid "The username is too long." - msgstr "பயனர் பெயர் மிக நீளமாக உள்ளது." - - #: ../panels/user-accounts/um-utils.c:574 --#| msgid "The username cannot start with a '-'" - msgid "The username cannot start with a '-'." - msgstr "பயனர் பெயர் '-' ஐக் கொண்டு தொடங்கக்கூடாது." - - #: ../panels/user-accounts/um-utils.c:577 --#| msgid "" --#| "The username should only consist of lower and upper case letters from a-" --#| "z, digits and any of characters '.', '-' and '_'" - msgid "" - "The username should only consist of lower and upper case letters from a-z, " - "digits and any of characters '.', '-' and '_'." - msgstr "" --"பயனர் பெயரில் a-z வரையிலான பெரிய மற்றும் சிறிய எழுத்துகள், எண்கள் மற்றும் " --"'.', '-', " -+"பயனர் பெயரில் a-z வரையிலான பெரிய மற்றும் சிறிய எழுத்துகள், எண்கள் மற்றும் '.', '-', " - "'_' ஆகிய எழுத்துகள் மட்டுமே இருக்கலாம்." - - #: ../panels/user-accounts/um-utils.c:581 - msgid "This will be used to name your home folder and can't be changed." --msgstr "" --"இது உங்கள் இல்லக் கோப்புறைக்குப் பெயரிடப் பயன்படுத்தப்படும், இதை மாற்ற " --"முடியாது." -+msgstr "இது உங்கள் இல்லக் கோப்புறைக்குப் பெயரிடப் பயன்படுத்தப்படும், இதை மாற்ற முடியாது." - - #. Translators: This is a date format string in the style of "Feb 24". - #: ../panels/user-accounts/um-utils.c:827 -@@ -6907,18 +6767,15 @@ msgid "" - "To edit a shortcut, choose the \"Send Keystroke\" action, press the keyboard " - "shortcut button and hold down the new keys or press Backspace to clear." - msgstr "" --"ஒரு குறுக்குவழியைத் திருத்த, \"விசை அழுத்தலை அனுப்பு\" செயல்பாட்டைத் தேர்வு " --"செய்து, " --"விசைப்பலகை குறுக்குவழி பொத்தானை அழுத்தி, புதிய விசைகளை அழுத்திப் பிடிக்கவும் " --"அல்லது " -+"ஒரு குறுக்குவழியைத் திருத்த, \"விசை அழுத்தலை அனுப்பு\" செயல்பாட்டைத் தேர்வு செய்து, " -+"விசைப்பலகை குறுக்குவழி பொத்தானை அழுத்தி, புதிய விசைகளை அழுத்திப் பிடிக்கவும் அல்லது " - "அழிக்க பேக்ஸ்பேஸ் ஐ அழுத்தவும்." - - #: ../panels/wacom/calibrator/calibrator-gui.c:83 - msgid "" - "Please tap the target markers as they appear on screen to calibrate the " - "tablet." --msgstr "" --"தொடு பல்கையை அளவிட திரையில் இலக்கு குறிகள் தோன்றுகையில் அவற்றை தொடவும்." -+msgstr "தொடு பல்கையை அளவிட திரையில் இலக்கு குறிகள் தோன்றுகையில் அவற்றை தொடவும்." - - #: ../panels/wacom/calibrator/calibrator-gui.c:87 - msgid "Mis-click detected, restarting..." -@@ -6989,8 +6846,7 @@ msgstr "வாகாம் தொடு? - #: ../panels/wacom/gnome-wacom-panel.desktop.in.in.h:2 - msgid "Set button mappings and adjust stylus sensitivity for graphics tablets" - msgstr "" --"கிராஃபிக்ஸ் டாப்ளெட்டுகளுக்கு பொத்தான் இணைப்புகளை அமைத்து ஸ்டைலஸின் உணர்திறனை " --"சரிசெய்யவும்" -+"கிராஃபிக்ஸ் டாப்ளெட்டுகளுக்கு பொத்தான் இணைப்புகளை அமைத்து ஸ்டைலஸின் உணர்திறனை சரிசெய்யவும்" - - #. Translators: those are keywords for the wacom tablet control-center panel - #: ../panels/wacom/gnome-wacom-panel.desktop.in.in.h:4 -Index: new/po/te.po -=================================================================== ---- new.orig/po/te.po -+++ new/po/te.po -@@ -44,7 +44,6 @@ msgstr "రోజు మొత్తం? - - #. To translators: This is a noun, not a verb - #: ../panels/background/background.ui.h:5 --#| msgid "Lock screen" - msgid "Lock Screen" - msgstr "తెరకు తాళంవేయి" - -@@ -97,7 +96,6 @@ msgstr "రంగులు" - - #. translators: No pictures were found - #: ../panels/background/cc-background-chooser-dialog.c:540 --#| msgid "No input sources found" - msgid "No Pictures Found" - msgstr "ఏ చిత్రాలు కనబడలేదు" - -@@ -209,8 +207,7 @@ msgstr "మీ కాలిబరేష? - #: ../panels/color/cc-color-calibrate.c:367 - msgid "" - "Move your calibration device to the calibrate position and press 'Continue'" --msgstr "" --"మీ కాలిబరేషన్ పరికరంను కాలిబరేట్ స్థానమునకు కదల్చి అప్పడు 'కొనసాగించు' వత్తండి" -+msgstr "మీ కాలిబరేషన్ పరికరంను కాలిబరేట్ స్థానమునకు కదల్చి అప్పడు 'కొనసాగించు' వత్తండి" - - #. TRANSLATORS: Some calibration devices need the user to move a - #. * dial or switch manually. We also show a picture showing them -@@ -218,8 +215,7 @@ msgstr "" - #: ../panels/color/cc-color-calibrate.c:373 - msgid "" - "Move your calibration device to the surface position and press 'Continue'" --msgstr "" --"మీ కాలిబరేషన్ పరికరంను ఉపరితల స్థానమునకు కదల్చి అప్పడు 'కొనసాగించు' వత్తండి" -+msgstr "మీ కాలిబరేషన్ పరికరంను ఉపరితల స్థానమునకు కదల్చి అప్పడు 'కొనసాగించు' వత్తండి" - - #. TRANSLATORS: on some hardware e.g. Lenovo W700 the sensor - #. * is built into the palmrest and we need to fullscreen the -@@ -419,8 +415,7 @@ msgid "" - "The measuring instrument is not detected. Please check it is turned on and " - "correctly connected." - msgstr "" --"కొలుస్తున్న సాధనము కనుగొనబడలేదు. దయచేసి ఆన్ ఉందా మరియు సరిగ్గా అనుసంధానమయి " --"ఉందా చాచుకొనుము." -+"కొలుస్తున్న సాధనము కనుగొనబడలేదు. దయచేసి ఆన్ ఉందా మరియు సరిగ్గా అనుసంధానమయి ఉందా చాచుకొనుము." - - #. TRANSLATORS: this is when the button is insensitive - #: ../panels/color/cc-color-panel.c:1371 -@@ -548,8 +543,7 @@ msgid "" - "screen. The longer you spend on calibration, the better the quality of the " - "color profile." - msgstr "" --"మీ తెర రంగు నిర్వహణ కొరకు వుపయోగించుకొనుటకు కాలిబరేషన్ వొక ప్రొఫైల్ " --"అందించును. మీరు యెంతసేపు " -+"మీ తెర రంగు నిర్వహణ కొరకు వుపయోగించుకొనుటకు కాలిబరేషన్ వొక ప్రొఫైల్ అందించును. మీరు యెంతసేపు " - "కాలిబరేషన్‌పై గడిపితే, రంగు ప్రొఫైల్ యొక్క నాణ్యత వుత్తమంగా వుంటుంది." - - #: ../panels/color/color.ui.h:3 -@@ -573,8 +567,7 @@ msgstr "క్యాలిబ్రే?? - - #: ../panels/color/color.ui.h:9 - msgid "Select the sensor device you want to use for calibration." --msgstr "" --"కాలిబరేషన్ కొరకు వుపయోగించాలని అనుకొనుచున్న సెన్సార్ పరికరం యెంపికచేయి." -+msgstr "కాలిబరేషన్ కొరకు వుపయోగించాలని అనుకొనుచున్న సెన్సార్ పరికరం యెంపికచేయి." - - #: ../panels/color/color.ui.h:10 - msgid "Calibration Device" -@@ -593,8 +586,7 @@ msgid "" - "Select a display target white point. Most displays should be calibrated to a " - "D65 illuminant." - msgstr "" --"ప్రదర్శన లక్ష్యం వైట్ పాయింట్ యెంపికచేయి. చాలా ప్రదర్శనలు D65 " --"యిల్యుమినెంట్‌కు కాలిబరేట్ అయివుండును." -+"ప్రదర్శన లక్ష్యం వైట్ పాయింట్ యెంపికచేయి. చాలా ప్రదర్శనలు D65 యిల్యుమినెంట్‌కు కాలిబరేట్ అయివుండును." - - #: ../panels/color/color.ui.h:14 - msgid "Profile Whitepoint" -@@ -605,8 +597,7 @@ msgid "" - "Please set the display to a brightness that is typical for you. Color " - "management will be most accurate at this brightness level." - msgstr "" --"మీకు తగిన కాంతిప్రకాశంకు పదర్శనను అమర్చండి. ఈ కాంతిప్రకాశ స్థాయినందు రంగు " --"నిర్వహణ చాలా ఖచ్చితంగా " -+"మీకు తగిన కాంతిప్రకాశంకు పదర్శనను అమర్చండి. ఈ కాంతిప్రకాశ స్థాయినందు రంగు నిర్వహణ చాలా ఖచ్చితంగా " - "వుండును." - - #: ../panels/color/color.ui.h:16 -@@ -614,8 +605,7 @@ msgid "" - "Alternatively, you can use the brightness level used with one of the other " - "profiles for this device." - msgstr "" --"ప్రత్యామ్నాయంగా, ఈ పరికరం కొరకు యితర ప్రొఫైల్సులో వొక దానినందు వుపయోగించిన " --"కాంతిప్రకాశం స్థాయిను మీరు " -+"ప్రత్యామ్నాయంగా, ఈ పరికరం కొరకు యితర ప్రొఫైల్సులో వొక దానినందు వుపయోగించిన కాంతిప్రకాశం స్థాయిను మీరు " - "వుపయోగించవచ్చు." - - #: ../panels/color/color.ui.h:17 -@@ -627,8 +617,7 @@ msgid "" - "You can use a color profile on different computers, or even create profiles " - "for different lighting conditions." - msgstr "" --"రంగు ప్రొఫైల్సును మీరు విభిన్న కంప్యూటర్లపై వుపయోగించవచ్చు, లేదా విభిన్న " --"లైటింగ్ నిభందనల కొరకు ప్రొఫైల్స్ " -+"రంగు ప్రొఫైల్సును మీరు విభిన్న కంప్యూటర్లపై వుపయోగించవచ్చు, లేదా విభిన్న లైటింగ్ నిభందనల కొరకు ప్రొఫైల్స్ " - "సృష్టించవచ్చు." - - #: ../panels/color/color.ui.h:19 -@@ -666,8 +655,7 @@ msgid "" - "\">Microsoft Windows systems useful." - msgstr "" - "GNU/Linux, Apple OS X మరియు Microsoft Windows వ్యవస్థలపై ప్రొఫైల్ యేలా వుపయోగించాలి " --"అనేదానికొరకు మీకు యీ " -+"\"windows\">Microsoft Windows వ్యవస్థలపై ప్రొఫైల్ యేలా వుపయోగించాలి అనేదానికొరకు మీకు యీ " - "సూచనలు వుపయోగకరంగా వుంటాయి." - - #: ../panels/color/color.ui.h:27 -@@ -683,9 +671,7 @@ msgstr "ఫైల్ ను దిగు - msgid "" - "Problems detected. The profile may not work correctly. Show " - "details." --msgstr "" --"సమస్యలు గుర్తించబడెను. ప్రొఫైల్ సరిగా పనిచేయకపోవచ్చు.వివరాలు " --"చూడండి." -+msgstr "సమస్యలు గుర్తించబడెను. ప్రొఫైల్ సరిగా పనిచేయకపోవచ్చు.వివరాలు చూడండి." - - #: ../panels/color/color.ui.h:30 - msgid "Each device needs an up to date color profile to be color managed." -@@ -831,9 +817,7 @@ msgstr "రంగు" - #: ../panels/color/gnome-color-panel.desktop.in.in.h:2 - msgid "" - "Calibrate the color of your devices, such as displays, cameras or printers" --msgstr "" --"మీ పరికరముల యొక్క రంగును కాలిబరేట్ చేయండి, ప్రదర్శనలు, కేమెరాలు లేదా " --"ముద్రికలు వలె" -+msgstr "మీ పరికరముల యొక్క రంగును కాలిబరేట్ చేయండి, ప్రదర్శనలు, కేమెరాలు లేదా ముద్రికలు వలె" - - #. Translators: those are keywords for the color control-center panel - #: ../panels/color/gnome-color-panel.desktop.in.in.h:4 -@@ -886,7 +870,6 @@ msgstr "అయినది (_D)" - - #. Translators: This is the full date and time format used in 12-hour mode. - #: ../panels/datetime/cc-datetime-panel.c:340 --#| msgid "%b %d %l:%M %p" - msgid "%e %B %Y, %l:%M %p" - msgstr "%e %B %Y, %l:%M %p" - -@@ -906,7 +889,6 @@ msgstr "%s, %s" - #. Translators: "timezone (details)" - #: ../panels/datetime/cc-datetime-panel.c:553 - #, c-format --#| msgid "%d x %d (%s)" - msgctxt "timezone desc" - msgid "%s (%s)" - msgstr "%s (%s)" -@@ -931,7 +913,6 @@ msgstr "%R" - #. Translators: "timezone (utc shift)" - #: ../panels/datetime/cc-datetime-panel.c:576 - #, c-format --#| msgid "%d x %d (%s)" - msgctxt "timezone map" - msgid "%s (%s)" - msgstr "%s (%s)" -@@ -999,8 +980,6 @@ msgid "∶" - msgstr "∶" - - #: ../panels/datetime/datetime.ui.h:17 --#| msgid "minute" --#| msgid_plural "minutes" - msgid "Minute" - msgstr "నిమిషం" - -@@ -1017,42 +996,34 @@ msgid "Year" - msgstr "సంవత్సరం" - - #: ../panels/datetime/datetime.ui.h:21 --#| msgid "Time" - msgid "Time Zone" - msgstr "సమయ క్షేత్రం" - - #: ../panels/datetime/datetime.ui.h:22 --#| msgid "Search for the string" - msgid "Search for a city" - msgstr "పట్టణం కొరకు వెతుకు" - - #: ../panels/datetime/datetime.ui.h:23 --#| msgid "Date & Time" - msgid "Automatic _Date & Time" - msgstr "స్వయంచాలక తేది మరియు సమయం (_D)" - - #: ../panels/datetime/datetime.ui.h:24 --#| msgid "Requires Internet connection" - msgid "Requires internet access" - msgstr "ఇంటర్నెట్ అనుసంధానం కావాలి" - - #: ../panels/datetime/datetime.ui.h:25 --#| msgid "Automatic _Connect" - msgid "Automatic Time _Zone" - msgstr "స్వయంచాలక సమయ క్షేత్రం (_Z)" - - #: ../panels/datetime/datetime.ui.h:26 --#| msgid "Date & Time" - msgid "Date & _Time" - msgstr "తేది మరియు సమయం (_T)" - - #: ../panels/datetime/datetime.ui.h:27 --#| msgid "Firewall _Zone" - msgid "Time _Zone" - msgstr "సమయ క్షేత్రం (_Z)" - - #: ../panels/datetime/datetime.ui.h:28 --#| msgid "Formats" - msgid "Time _Format" - msgstr "సమయ ఫార్మేట్ (_F)" - -@@ -1082,19 +1053,16 @@ msgid "To change time or date settings, - msgstr "సమయం లేదా తేదీ అమరికలను మార్చుటకు, మీరు ధృవీకరించాలి." - - #: ../panels/display/cc-display-panel.c:487 --#| msgid "Close" - msgid "Lid Closed" - msgstr "లిడ్ మూసివేయి" - - #. translators: "Mirrored" describes when both displays show the same view - #: ../panels/display/cc-display-panel.c:490 --#| msgid "Mirrored Displays" - msgid "Mirrored" - msgstr "మిర్రర్డ్" - - #: ../panels/display/cc-display-panel.c:492 - #: ../panels/display/cc-display-panel.c:2145 --#| msgid "Primary _button" - msgid "Primary" - msgstr "ప్రాథమిక" - -@@ -1111,12 +1079,10 @@ msgid "Off" - msgstr "ఆఫ్" - - #: ../panels/display/cc-display-panel.c:497 --#| msgid "Secondary color" - msgid "Secondary" - msgstr "రెండవ" - - #: ../panels/display/cc-display-panel.c:1533 --#| msgid "Mirrored Displays" - msgid "Arrange Combined Displays" - msgstr "కలగలిపిన ప్రదర్శనలు అమర్చు" - -@@ -1131,7 +1097,6 @@ msgid "Drag displays to rearrange them" - msgstr "ప్రదర్శనలను పట్టిలాగుతూ వాటిని తిరిగిసర్దవచ్చు" - - #: ../panels/display/cc-display-panel.c:2081 --#| msgid "Size:" - msgid "Size" - msgstr "పరిమాణము" - -@@ -1150,7 +1115,6 @@ msgid "Show the top bar and Activities O - msgstr "ఈ ప్రదర్శనపై కార్యకలాపాల అవలోకనం మరియు పై పట్టీ చూపుము" - - #: ../panels/display/cc-display-panel.c:2152 --#| msgid "Secondary click delay" - msgid "Secondary Display" - msgstr "రెండవ ప్రదర్శన" - -@@ -1159,7 +1123,6 @@ msgid "Join this display with another to - msgstr "అదనపు పనిస్థలం సృష్టించుటకు ఈ ప్రదర్శనను వేరొక దానితో కలుపుము" - - #: ../panels/display/cc-display-panel.c:2160 --#| msgid "Orientation" - msgid "Presentation" - msgstr "సమర్పణ" - -@@ -1177,12 +1140,10 @@ msgid "Show your existing view on both d - msgstr "రెండు ప్రదర్శనలపై మీరు దర్శించునది చూపుము" - - #: ../panels/display/cc-display-panel.c:2173 --#| msgid "_Turn On" - msgid "Turn Off" - msgstr "ఆఫ్ చేయి" - - #: ../panels/display/cc-display-panel.c:2174 --#| msgid "Panel to display" - msgid "Don't use this display" - msgstr "ఈ ప్రదర్శనను ఉపయోగించవద్దు" - -@@ -1191,7 +1152,6 @@ msgid "Could not get screen information" - msgstr "తెర సమాచారమును పొందలేక పోయింది" - - #: ../panels/display/cc-display-panel.c:2414 --#| msgid "Mirrored Displays" - msgid "_Arrange Combined Displays" - msgstr "కలగలిపిన ప్రదర్శనలు అమర్చు (_A)" - -@@ -1205,7 +1165,6 @@ msgstr "అనుసంధానిత ? - - #. Translators: those are keywords for the display control-center panel - #: ../panels/display/gnome-display-panel.desktop.in.in.h:4 --#| msgid "Panel;Projector;xrandr;Screen;Resolution;Refresh;" - msgid "Panel;Projector;xrandr;Screen;Resolution;Refresh;Monitor;" - msgstr "పానల్;ప్రొజెక్టర్;xrandr;తెర;రిజొల్యూషన్;రీఫ్రెష్;మానిటర్;" - -@@ -1355,8 +1314,7 @@ msgid "" - "device;system;information;memory;processor;version;default;application;" - "preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" - msgstr "" --"పరికరం;వ్యవస్థ;సమాచారం;మెమోరీ;ప్రోసెసర్;రూపాంతరం;అప్రమేయం;అనువర్తనం;ప్రాధాన్యమ" --"ిచ్చేవి;సీడీ;డీవీడీ;యూఎస్‌బీ;" -+"పరికరం;వ్యవస్థ;సమాచారం;మెమోరీ;ప్రోసెసర్;రూపాంతరం;అప్రమేయం;అనువర్తనం;ప్రాధాన్యమిచ్చేవి;సీడీ;డీవీడీ;యూఎస్‌బీ;" - "ఆడియో;వీడియో;డిస్క్;తీసివేయదగిన;మాధ్యమం;స్వయంగానడుచు;" - - #: ../panels/info/info.ui.h:1 -@@ -1405,7 +1363,6 @@ msgid "Virtualization" - msgstr "వర్చ్యులైజేషన్" - - #: ../panels/info/info.ui.h:13 --#| msgid "Checking for Updates" - msgid "Check for updates" - msgstr "నవీకరణల కొరకు పరిశీలించుము" - -@@ -1459,8 +1416,7 @@ msgstr "ఇతర మాధ్యమం. - - #: ../panels/info/info.ui.h:28 - msgid "_Never prompt or start programs on media insertion" --msgstr "" --"మాధ్యమ ప్రవేశమప్పుడు యెప్పుడూ ప్రోగ్రామ్సు ప్రారంభించవద్దు అడుగవద్దు (_N)" -+msgstr "మాధ్యమ ప్రవేశమప్పుడు యెప్పుడూ ప్రోగ్రామ్సు ప్రారంభించవద్దు అడుగవద్దు (_N)" - - #: ../panels/keyboard/00-multimedia.xml.in.h:1 - msgid "Sound and Media" -@@ -1777,8 +1733,7 @@ msgid "" - "To edit a shortcut, click the row and hold down the new keys or press " - "Backspace to clear." - msgstr "" --"ఒక షార్ట్ కట్ ని సరిచేయుటకు,రో పై క్లిక్ చేసి మరియు కొత్త కీలను నొక్కుము లేదా " --"బ్యాక్ స్పేస్ నొక్కుము " -+"ఒక షార్ట్ కట్ ని సరిచేయుటకు,రో పై క్లిక్ చేసి మరియు కొత్త కీలను నొక్కుము లేదా బ్యాక్ స్పేస్ నొక్కుము " - "చెరుపుటకు" - - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:24 -@@ -1801,8 +1756,7 @@ msgid "" - "using this key.\n" - "Please try with a key such as Control, Alt or Shift at the same time." - msgstr "" --"అడ్డదారి \"%s\" ఉపయోగించబడదు ఎంచేతంటే ఈ కీ ఉపయోగించి దీనిని టైపుచేయుట అసాధ్యం " --"అవుతుంది.\n" -+"అడ్డదారి \"%s\" ఉపయోగించబడదు ఎంచేతంటే ఈ కీ ఉపయోగించి దీనిని టైపుచేయుట అసాధ్యం అవుతుంది.\n" - "Control,Alt లేదా అదే సమయంలో Shift వంటి కీలతో దయచేసి ప్రయత్నించండి." - - #: ../panels/keyboard/keyboard-shortcuts.c:1386 -@@ -1818,9 +1772,7 @@ msgstr "" - #, c-format - msgid "" - "If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be disabled." --msgstr "" --"మీరు అడ్డదారిని \"%s\"కు తిరిగిఅప్పగిస్తే, \"%s\" అడ్డదారి అచేతనము " --"చేయబడుతుంది." -+msgstr "మీరు అడ్డదారిని \"%s\"కు తిరిగిఅప్పగిస్తే, \"%s\" అడ్డదారి అచేతనము చేయబడుతుంది." - - #: ../panels/keyboard/keyboard-shortcuts.c:1397 - msgid "_Reassign" -@@ -1832,23 +1784,19 @@ msgid "" - "The \"%s\" shortcut has an associated \"%s\" shortcut. Do you want to " - "automatically set it to \"%s\"?" - msgstr "" --"\"%s\" లఘువు అనునది \"%s\" లఘువుతో కలిసివుంది. మీరు దానిని స్వయంచాలకంగా \"%" --"s\" కు అమర్చాలని అనుకుంటున్నారా?" -+"\"%s\" లఘువు అనునది \"%s\" లఘువుతో కలిసివుంది. మీరు దానిని స్వయంచాలకంగా \"%s\" కు అమర్చాలని " -+"అనుకుంటున్నారా?" - - #: ../panels/keyboard/keyboard-shortcuts.c:1435 - #, c-format --#| msgid "" --#| "If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be " --#| "disabled." - msgid "" - "\"%s\" is currently associated with \"%s\", this shortcut will be disabled " - "if you move forward." - msgstr "" --"\"%s\" ప్రస్తుతం ఇప్పుడు \"%s\" తో కలిసివుంది, మీరు ముందుకు కదిలితే ఈ లఘువు " --"అచేతనం చేయబడును." -+"\"%s\" ప్రస్తుతం ఇప్పుడు \"%s\" తో కలిసివుంది, మీరు ముందుకు కదిలితే ఈ లఘువు అచేతనం " -+"చేయబడును." - - #: ../panels/keyboard/keyboard-shortcuts.c:1441 --#| msgid "_Reassign" - msgid "_Assign" - msgstr "అప్పగించు (_A)" - -@@ -1857,7 +1805,6 @@ msgid "Test Your _Settings" - msgstr "మీ అమరికలను పరీక్షించండి (_S)" - - #: ../panels/mouse/cc-mouse-panel.c:107 --#| msgid "Test Your _Settings" - msgid "Test Your Settings" - msgstr "మీ అమరికలను పరీక్షించండి" - -@@ -1868,13 +1815,10 @@ msgstr "మౌసు మరియు ట - #: ../panels/mouse/gnome-mouse-panel.desktop.in.in.h:2 - msgid "" - "Change your mouse or touchpad sensitivity and select right or left-handed" --msgstr "" --"మీ మౌస్ లేదా టచ్‌పాడ్ సెన్సిటివిటిని మార్చు మరియు కుడి లేదా ఎడమచేతి-వాటం " --"యెంపికచేయండి" -+msgstr "మీ మౌస్ లేదా టచ్‌పాడ్ సెన్సిటివిటిని మార్చు మరియు కుడి లేదా ఎడమచేతి-వాటం యెంపికచేయండి" - - #. Translators: those are keywords for the mouse and touchpad control-center panel - #: ../panels/mouse/gnome-mouse-panel.desktop.in.in.h:4 --#| msgid "Trackpad;Pointer;Click;Tap;Double;Button;Trackball;" - msgid "Trackpad;Pointer;Click;Tap;Double;Button;Trackball;Scroll;" - msgstr "ట్రాక్‌పాడ్;సూచకి;నొక్కు;టాప్;డబుల్;బటన్;ట్రాక్‌బాల్;స్క్రాల్;" - -@@ -1960,7 +1904,6 @@ msgstr "రెండు-వేళ్ళ - - #. 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/gnome-mouse-properties.ui.h:20 --#| msgid "_Edge scrolling" - msgid "_Natural scrolling" - msgstr "సాధారణ స్క్రాలింగ్ (_N)" - -@@ -2527,16 +2470,14 @@ msgid "" - "Reset the settings for this network, including passwords, but remember it as " - "a preferred network" - msgstr "" --"ఈ నెట్వర్కుకు అమరికలను తిరిగివుంచు, సంకేతపదములతో సహా, అయితే దీనిని అబీష్ట " --"నెట్వర్కు వలె గుర్తించు" -+"ఈ నెట్వర్కుకు అమరికలను తిరిగివుంచు, సంకేతపదములతో సహా, అయితే దీనిని అబీష్ట నెట్వర్కు వలె గుర్తించు" - - #: ../panels/network/connection-editor/reset-page.ui.h:4 - msgid "" - "Remove all details relating to this network and do not try to automatically " - "connect" - msgstr "" --"ఈ నెట్వర్కునకు సంభందించిన అన్ని వివరాలను తీసివేయి మరియు స్వయంచాలకంగా " --"అనుసంధానించుటకు ప్రయత్నించవద్దు" -+"ఈ నెట్వర్కునకు సంభందించిన అన్ని వివరాలను తీసివేయి మరియు స్వయంచాలకంగా అనుసంధానించుటకు ప్రయత్నించవద్దు" - - #: ../panels/network/connection-editor/security-page.ui.h:1 - #: ../panels/network/network-wifi.ui.h:14 -@@ -2600,7 +2541,6 @@ msgstr "" - "దోషం: %s." - - #: ../panels/network/connection-editor/vpn-helpers.c:371 --#| msgid "Export VPN connection..." - msgid "Export VPN connection" - msgstr "VPN అనుసంధానం ఎగుమతిచేయి" - -@@ -2638,9 +2578,6 @@ msgstr "మీరు యింటర్? - - #. Translators: those are keywords for the network control-center panel - #: ../panels/network/gnome-network-panel.desktop.in.in.h:4 --#| msgid "" --#| "Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;" --#| "vpn;vlan;bridge;bond;" - msgid "" - "Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;" - "vlan;bridge;bond;DNS;" -@@ -2719,7 +2656,6 @@ msgid "Add new connection" - msgstr "కొత్త అనుసంధానాన్ని జతచేయి" - - #: ../panels/network/net-device-team.c:77 --#| msgid "Bridge slaves" - msgid "Team slaves" - msgstr "టీమ్ స్లేవ్స్" - -@@ -2728,24 +2664,19 @@ msgid "" - "If you have a connection to the Internet other than wireless, you can set up " - "a wireless hotspot to share the connection with others." - msgstr "" --"మీరు వైర్‌లెస్ కాక యింకా వేరే యింటర్నెట్ అనుసంధానం కలిగివుంటే, మీరు మీ " --"యింటర్నెట్ అనుసంధానం పంచుకొనుటకు " -+"మీరు వైర్‌లెస్ కాక యింకా వేరే యింటర్నెట్ అనుసంధానం కలిగివుంటే, మీరు మీ యింటర్నెట్ అనుసంధానం పంచుకొనుటకు " - "వైర్‌లెస్ హాట్‌స్పాట్ అమర్చవచ్చు." - - #: ../panels/network/net-device-wifi.c:1157 - #, c-format - msgid "Switching on the wireless hotspot will disconnect you from %s." --msgstr "" --"వైర్‌లెస్ హాట్‌స్పాట్ల మధ్యన మారుట అనునది మీ అనుసంధానమును %s నుండి " --"తెంచును." -+msgstr "వైర్‌లెస్ హాట్‌స్పాట్ల మధ్యన మారుట అనునది మీ అనుసంధానమును %s నుండి తెంచును." - - #: ../panels/network/net-device-wifi.c:1161 - msgid "" - "It is not possible to access the Internet through your wireless while the " - "hotspot is active." --msgstr "" --"హాట్‌స్పాట్ క్రియాశీలముగా వున్నప్పుడు మీ వైర్‌లెస్ ద్వారా యింటర్నెట్‌ను " --"యాక్సెస్ చేయుట సాధ్యంకాదు." -+msgstr "హాట్‌స్పాట్ క్రియాశీలముగా వున్నప్పుడు మీ వైర్‌లెస్ ద్వారా యింటర్నెట్‌ను యాక్సెస్ చేయుట సాధ్యంకాదు." - - #: ../panels/network/net-device-wifi.c:1238 - msgid "Stop hotspot and disconnect any users?" -@@ -2769,8 +2700,7 @@ msgid "" - "Network details for the selected networks, including passwords and any " - "custom configuration will be lost." - msgstr "" --"ఎంపికచేసిన నెట్వర్కు కొరకు నెట్వర్కు వివరాలు, సంకేతపదములతో సహా మలచుకొనిన " --"ఆకృతీకరణ కోల్పోవును." -+"ఎంపికచేసిన నెట్వర్కు కొరకు నెట్వర్కు వివరాలు, సంకేతపదములతో సహా మలచుకొనిన ఆకృతీకరణ కోల్పోవును." - - #: ../panels/network/net-device-wifi.c:1753 - #: ../panels/user-accounts/data/user-accounts-dialog.ui.h:13 -@@ -2981,16 +2911,14 @@ msgid "" - "Reset the settings for this connection to their defaults, but remember as a " - "preferred connection." - msgstr "" --"ఈ అనుసంధానం కొరకు అమరికలను వాటి అప్రమేయాలకు వుంచండి, అయితే అభీష్ట అనుసంధానంగా " --"గుర్తుంచుకో." -+"ఈ అనుసంధానం కొరకు అమరికలను వాటి అప్రమేయాలకు వుంచండి, అయితే అభీష్ట అనుసంధానంగా గుర్తుంచుకో." - - #: ../panels/network/network-wifi.ui.h:42 - msgid "" - "Remove all details relating to this network and do not try to automatically " - "connect to it." - msgstr "" --"ఈ నెట్వర్కునకు సంభందించిన అన్ని వివరాలను తీసివేయి మరియు స్వయంచాలకంగా దానికి " --"అనుసంధానించుటకు " -+"ఈ నెట్వర్కునకు సంభందించిన అన్ని వివరాలను తీసివేయి మరియు స్వయంచాలకంగా దానికి అనుసంధానించుటకు " - "ప్రయత్నించవద్దు." - - #: ../panels/network/network-wifi.ui.h:43 -@@ -3345,10 +3273,8 @@ msgid "" - "to insecure, rogue Wi-Fi networks. Would you like to choose a Certificate " - "Authority certificate?" - msgstr "" --" ధృ‌వీకరణపత్ర ఆధికారిక (CA) ధృవీకరణపత్రం వుపయోగించుట లేదు సురక్షితం కాని " --"అనుసంధానములనందు, రోగ్ " --"Wi-Fi నెట్వర్కులకు కారణమగును. మీరు ధృవీకరణపత్ర అధికారిక ధృవీకరణపత్రం " --"యెంచుకోవాలని " -+" ధృ‌వీకరణపత్ర ఆధికారిక (CA) ధృవీకరణపత్రం వుపయోగించుట లేదు సురక్షితం కాని అనుసంధానములనందు, రోగ్ " -+"Wi-Fi నెట్వర్కులకు కారణమగును. మీరు ధృవీకరణపత్ర అధికారిక ధృవీకరణపత్రం యెంచుకోవాలని " - "అనుకొనుచున్నారా?" - - #: ../panels/network/wireless-security/eap-method.c:281 -@@ -3379,7 +3305,6 @@ msgid "MSCHAPv2" - msgstr "MSCHAPv2" - - #: ../panels/network/wireless-security/eap-method-fast.c:409 --#| msgid "Choose a PAC file..." - msgid "Choose a PAC file" - msgstr "PAC ఫైలు యెంపికచేయి" - -@@ -3445,7 +3370,6 @@ msgstr "MD5" - #: ../panels/network/wireless-security/eap-method-peap.c:350 - #: ../panels/network/wireless-security/eap-method-tls.c:456 - #: ../panels/network/wireless-security/eap-method-ttls.c:350 --#| msgid "Choose a Certificate Authority certificate..." - msgid "Choose a Certificate Authority certificate" - msgstr "ధృవీకరణపత్ర అధికార ధృవీకరణపత్రం యెంపికచేయి" - -@@ -3483,19 +3407,16 @@ msgid "" - "\n" - "(You can password-protect your private key with openssl)" - msgstr "" --"ఎంపికచేసిన వ్యక్తిగత కీ సంకేతపదంచే రక్షించబడుతున్నట్లు అనిపించుటలేదు. దీని " --"వలన మీ రక్షణ ఆనవాళ్ళు " -+"ఎంపికచేసిన వ్యక్తిగత కీ సంకేతపదంచే రక్షించబడుతున్నట్లు అనిపించుటలేదు. దీని వలన మీ రక్షణ ఆనవాళ్ళు " - "రాజీపడవచ్చు. దయచేసి సంకేతపదంతో-రక్షితమగు వ్యక్తిగత కీ యెంపికచేయండి.\n" - "\n" - "(మీరు మీ వ్యక్తిగత కీను openssl తో సంకేతపద-రక్షితం చేయవచ్చు)" - - #: ../panels/network/wireless-security/eap-method-tls.c:450 --#| msgid "Choose your personal certificate..." - msgid "Choose your personal certificate" - msgstr "మీ వ్యక్తిగత ధృవీకరణపత్రం యెంపికచేయి" - - #: ../panels/network/wireless-security/eap-method-tls.c:462 --#| msgid "Choose your private key..." - msgid "Choose your private key" - msgstr "మీ వ్యక్తిగత కీ యెంపికచేయి" - -@@ -3666,7 +3587,6 @@ msgid "Show in Lock Screen" - msgstr "లాక్ తెర నందు చూపు" - - #: ../panels/online-accounts/cc-online-accounts-add-account-dialog.c:169 --#| msgid "Other" - msgctxt "Online Account" - msgid "Other" - msgstr "ఇతర" -@@ -3735,15 +3655,10 @@ msgstr "ఆన్‌లైన్ ఖా? - - #: ../panels/online-accounts/gnome-online-accounts-panel.desktop.in.in.h:2 - msgid "Connect to your online accounts and decide what to use them for" --msgstr "" --"మీ ఆన్‌లైన్ ఖాతాలకు అనుసంధానమై మరియు వాటిని దేని కొరకు వుపయోగించాలో " --"నిర్ణయించు" -+msgstr "మీ ఆన్‌లైన్ ఖాతాలకు అనుసంధానమై మరియు వాటిని దేని కొరకు వుపయోగించాలో నిర్ణయించు" - - #. For ReadItLater and Pocket, see http://en.wikipedia.org/wiki/Pocket_(application) - #: ../panels/online-accounts/gnome-online-accounts-panel.desktop.in.in.h:4 --#| msgid "" --#| "Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;" --#| "ownCloud;" - msgid "" - "Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;" - "Kerberos;IMAP;SMTP;Pocket;ReadItLater;" -@@ -3768,8 +3683,7 @@ msgid "" - "Adding an account allows your applications to access it for documents, mail, " - "contacts, calendar, chat and more." - msgstr "" --"ఒక ఖాతాను జతచేయుట ద్వారా మీ అనువర్తనములు దాని పత్రములను, మెయిల్, పరిచయాలను, " --"క్యాలెండర్‌ను, " -+"ఒక ఖాతాను జతచేయుట ద్వారా మీ అనువర్తనములు దాని పత్రములను, మెయిల్, పరిచయాలను, క్యాలెండర్‌ను, " - "సంభాషణను మరియు మరిన్నింటిని యాక్సెస్ చేసుకొనుటకు అనుమతించును." - - #: ../panels/power/cc-power-panel.c:183 -@@ -3952,22 +3866,18 @@ msgid "Power Saving" - msgstr "విద్యుత్ ఆదా" - - #: ../panels/power/cc-power-panel.c:1473 --#| msgid "_Screen Brightness" - msgid "_Screen brightness" - msgstr "తెర ప్రకాశత (_S)" - - #: ../panels/power/cc-power-panel.c:1479 --#| msgid "Keyboard Preferences" - msgid "_Keyboard brightness" - msgstr "కీబోర్డు ప్రకాశత (_K)" - - #: ../panels/power/cc-power-panel.c:1489 --#| msgid "_Dim Screen when Inactive" - msgid "_Dim screen when inactive" - msgstr "క్రియాహీనంగా ఉంటే తెర ప్రకాశత తగ్గించు (_D)" - - #: ../panels/power/cc-power-panel.c:1514 --#| msgid "_Blank Screen" - msgid "_Blank screen" - msgstr "శూన్య తెర (_B)" - -@@ -3980,12 +3890,10 @@ msgid "Turns off wireless devices" - msgstr "వైర్‌లెస్ పరికరాలను ఆఫ్ చేయును" - - #: ../panels/power/cc-power-panel.c:1581 --#| msgid "_Mobile Broadband" - msgid "_Mobile broadband" - msgstr "మొబైల్ బ్రాడ్‌బాండ్ (_M)" - - #: ../panels/power/cc-power-panel.c:1586 --#| msgid "Turns off Mobile Broadband (3G, 4G, WiMax, etc.) devices" - msgid "Turns off mobile broadband (3G, 4G, WiMax, etc.) devices" - msgstr "మొబైల్ బ్రాడ్‌బ్యాండ్ (3G, 4G, WiMax, మొద.) పరికరాలను ఆఫ్ చేయును" - -@@ -4006,12 +3914,10 @@ msgid "Suspend & Power Off" - msgstr "నిలిపివేయి మరియు విద్యుత్ ఆపు" - - #: ../panels/power/cc-power-panel.c:1851 --#| msgid "_Automatic Suspend" - msgid "_Automatic suspend" - msgstr "స్వయంచాలక నిలుపుదల (_A)" - - #: ../panels/power/cc-power-panel.c:1875 --#| msgid "When Battery Power is _Critical" - msgid "When battery power is _critical" - msgstr "బ్యాటరీ విద్యుత్ క్లిష్టస్థితిలో ఉన్నప్పుడు (_C)" - -@@ -4035,9 +3941,7 @@ msgstr "మీ బ్యాటరీ స - #: ../panels/power/gnome-power-panel.desktop.in.in.h:4 - msgid "" - "Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;" --msgstr "" --"విద్యుత్;నిద్రావస్థ;నిలిపివేయి;సుప్తావస్థ;బ్యాటరీ;ప్రకాశత;డిమ్;శూన్యం;మానిటర్;" --"DPMS;నిష్క్రియ;" -+msgstr "విద్యుత్;నిద్రావస్థ;నిలిపివేయి;సుప్తావస్థ;బ్యాటరీ;ప్రకాశత;డిమ్;శూన్యం;మానిటర్;DPMS;నిష్క్రియ;" - - #: ../panels/power/power.ui.h:1 - msgid "Hibernate" -@@ -4291,8 +4195,7 @@ msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" --"పోస్టుస్క్రిప్ట్ ప్రింటర్ డిస్క్రిప్షన్ ఫైళ్ళు (*.ppd, *.PPD, *.ppd.gz, " --"*.PPD.gz, *.PPD.GZ)" -+"పోస్టుస్క్రిప్ట్ ప్రింటర్ డిస్క్రిప్షన్ ఫైళ్ళు (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD.GZ)" - - #: ../panels/printers/cc-printers-panel.c:2258 - msgid "No suitable driver found" -@@ -4328,8 +4231,7 @@ msgstr "ముద్రకాలు" - - #: ../panels/printers/gnome-printers-panel.desktop.in.in.h:2 - msgid "Add printers, view printer jobs and decide how you want to print" --msgstr "" --"ముద్రికలను జతచేయి, ముద్రణ పనులను దర్శించి మరియు యెలా ముద్రించాలో నిర్ణయించు" -+msgstr "ముద్రికలను జతచేయి, ముద్రణ పనులను దర్శించి మరియు యెలా ముద్రించాలో నిర్ణయించు" - - #. Translators: those are keywords for the printing control-center panel - #: ../panels/printers/gnome-printers-panel.desktop.in.in.h:4 -@@ -4364,7 +4266,6 @@ msgstr "ఒక కొత్త ముద - - #. Translators: This button opens authentication dialog for selected server. - #: ../panels/printers/new-printer-dialog.ui.h:5 --#| msgid "Authenticate" - msgid "A_uthenticate" - msgstr "దృవీకరించు (_u)" - -@@ -4375,7 +4276,6 @@ msgstr "ఏ ముద్రకాలు - - #. Translators: The entered text should contain network address of a printer or a text which will filter found devices (their names and locations) - #: ../panels/printers/new-printer-dialog.ui.h:9 --#| msgid "Search for network printers or filter result" - msgid "Enter address of a printer or a text to filter results" - msgstr "ఫలితాలను వడపోయుటకు ముద్రకం లేదా పాఠం చిరునామా ప్రవేశపెట్టండి" - -@@ -4393,13 +4293,11 @@ msgstr "చోదకంల డాటా? - - #. Translators: The found device is a JetDirect printer - #: ../panels/printers/pp-host.c:506 --#| msgid "Remove Printer" - msgid "JetDirect Printer" - msgstr "JetDirect ముద్రకం" - - #. Translators: The found device is a Line Printer Daemon printer - #: ../panels/printers/pp-host.c:756 --#| msgid "%s Printer" - msgid "LPD Printer" - msgstr "LPD ముద్రకం" - -@@ -4521,20 +4419,17 @@ msgstr "సమాంతర పోర్? - #. Translators: Location of found network printer (e.g. Kitchen, Reception) - #: ../panels/printers/pp-new-printer-dialog.c:1739 - #, c-format --#| msgid "Location" - msgid "Location: %s" - msgstr "స్థానము: %s" - - #. Translators: Network address of found printer - #: ../panels/printers/pp-new-printer-dialog.c:1744 - #, c-format --#| msgid "A_ddress:" - msgid "Address: %s" - msgstr "చిరునామా: %s" - - #. Translators: This item is a server which needs authentication to show its printers - #: ../panels/printers/pp-new-printer-dialog.c:1768 --#| msgid "_Inner authentication" - msgid "Server requires authentication" - msgstr "సేవికకు ధృవీకరణ అవసరం" - -@@ -4671,9 +4566,7 @@ msgstr "చోదకం" - #: ../panels/printers/pp-samba.c:248 - #, c-format - msgid "Enter your username and password to view printers available on %s." --msgstr "" --"%s పైన అందుబాటులోని ముద్రకాలను దర్శించుటకు మీ వాడుకరిపేరు మరియు సంకేతపదం " --"ప్రవేశపెట్టండి." -+msgstr "%s పైన అందుబాటులోని ముద్రకాలను దర్శించుటకు మీ వాడుకరిపేరు మరియు సంకేతపదం ప్రవేశపెట్టండి." - - #: ../panels/printers/printers.ui.h:1 - msgid "Add Printer" -@@ -4695,7 +4588,6 @@ msgstr "స్థానము" - - #. Translators: This checkbox is checked when the default printer is selected. - #: ../panels/printers/printers.ui.h:8 --#| msgid "Default Route" - msgid "_Default printer" - msgstr "అప్రమేయ ముద్రకం (_D)" - -@@ -4769,7 +4661,6 @@ msgid "_Empty Trash" - msgstr "చెత్త ఖాళీచేయి (_E)" - - #: ../panels/privacy/cc-privacy-panel.c:512 --#| msgid "Purge Trash & Temporary Files" - msgid "Delete all the temporary files?" - msgstr "అన్ని తాత్కాలిక ఫైళ్ళను తొలగించాలా?" - -@@ -4786,7 +4677,6 @@ msgid "Purge Trash & Temporary Files" - msgstr "చెత్త మరియు తాత్కాలిక ఫైళ్ళు శుద్దంచేయి" - - #: ../panels/privacy/cc-privacy-panel.c:576 ../panels/privacy/privacy.ui.h:36 --#| msgid "Software" - msgid "Software Usage" - msgstr "సాఫ్ట్‌వేర్ వాడుక" - -@@ -4796,8 +4686,7 @@ msgstr "గోప్యత" - - #: ../panels/privacy/gnome-privacy-panel.desktop.in.in.h:2 - msgid "Protect your personal information and control what others might see" --msgstr "" --"మీ వ్యక్తిగత సమాచారం రక్షించును మరియు యితరులు యేమి చూడాలో నియంత్రించును" -+msgstr "మీ వ్యక్తిగత సమాచారం రక్షించును మరియు యితరులు యేమి చూడాలో నియంత్రించును" - - #. Translators: those are keywords for the privacy control-center panel - #: ../panels/privacy/gnome-privacy-panel.desktop.in.in.h:4 -@@ -4861,8 +4750,7 @@ msgid "" - "Remembering your history makes things easier to find again. These items are " - "never shared over the network." - msgstr "" --"మీ చరిత్రను గుర్తుంచుకొనుట వలన విషయాలను మరలా కనుగొనుటకు శులభతరం అగును. ఈ " --"అంశములు " -+"మీ చరిత్రను గుర్తుంచుకొనుట వలన విషయాలను మరలా కనుగొనుటకు శులభతరం అగును. ఈ అంశములు " - "నెట్వర్కు నందు యెప్పుడూ భాగస్వామ్యపరచ బడవు." - - #: ../panels/privacy/privacy.ui.h:21 -@@ -4898,8 +4786,7 @@ msgid "" - "Automatically purge the Trash and temporary files to help keep your computer " - "free of unnecessary sensitive information." - msgstr "" --"మీ కంప్యూటర్‌ను అక్కరలేని సున్నితమైన సమాచారం లేకుండా వుంచుటకు తాత్కాలిక " --"ఫైళ్ళను మరియు చెత్తను " -+"మీ కంప్యూటర్‌ను అక్కరలేని సున్నితమైన సమాచారం లేకుండా వుంచుటకు తాత్కాలిక ఫైళ్ళను మరియు చెత్తను " - "స్వయంచాలకంగా శుద్దపరచును." - - #: ../panels/privacy/privacy.ui.h:31 -@@ -4923,24 +4810,20 @@ msgid "" - "All the information we collect is made anonymous, and we will never share " - "your data with third parties." - msgstr "" --"మీరు ఏ సాఫ్టువేర్లు ఉపయోగిస్తున్నారు అనే సమాచారం మాకు పంపితే మీకు సరిపోయే " --"సిఫార్సులను చేయడంలో మాకు దోహదపడును. " --"అది మా సాఫ్టువేర్‌ను మెరుగుపరచుడానికి కూడా సహాయకంగా ఉంటుంది.\n" -+"మీరు ఏ సాఫ్టువేర్లు ఉపయోగిస్తున్నారు అనే సమాచారం మాకు పంపితే మీకు సరిపోయే సిఫార్సులను చేయడంలో మాకు " -+"దోహదపడును. అది మా సాఫ్టువేర్‌ను మెరుగుపరచుడానికి కూడా సహాయకంగా ఉంటుంది.\n" - "\n" --"మేము సేకరించే సమాచారం అంతా అజ్ఞాతంగా ఉంచబడును, మరియు మేము ఎప్పటికీ మూడో " --"వ్యక్తులతో అది పంచుకోము." -+"మేము సేకరించే సమాచారం అంతా అజ్ఞాతంగా ఉంచబడును, మరియు మేము ఎప్పటికీ మూడో వ్యక్తులతో అది పంచుకోము." - - #: ../panels/privacy/privacy.ui.h:40 - msgid "_Send software usage statistics" - msgstr "సాఫ్టువేర్ వినియోగపు గణాంకాలు పంపుము (_S)" - - #: ../panels/privacy/privacy.ui.h:41 --#| msgid "Privacy" - msgid "Privacy Policy" - msgstr "గోప్యతా విధానం" - - #: ../panels/privacy/privacy.ui.h:42 --#| msgid "Location" - msgid "_Location Services" - msgstr "స్థానం సేవలు (_L)" - -@@ -4967,7 +4850,6 @@ msgid "No input sources found" - msgstr "ఏ యిన్పుట్ మూలాలు కనబడలేదు" - - #: ../panels/region/cc-input-chooser.c:1076 --#| msgid "Other" - msgctxt "Input Source" - msgid "Other" - msgstr "ఇతర" -@@ -5033,9 +4915,7 @@ msgstr "ప్రాంతము & భ?? - #: ../panels/region/gnome-region-panel.desktop.in.in.h:2 - msgid "" - "Select your display language, formats, keyboard layouts and input sources" --msgstr "" --"మీ ప్రదర్శన భాషను, ఫార్మాట్లను, కీబోర్డు లేఅవుట్లను మరియు యిన్పుట్ మూలాలను " --"యెంపికచేయండి" -+msgstr "మీ ప్రదర్శన భాషను, ఫార్మాట్లను, కీబోర్డు లేఅవుట్లను మరియు యిన్పుట్ మూలాలను యెంపికచేయండి" - - #. Translators: those are keywords for the region control-center panel - #: ../panels/region/gnome-region-panel.desktop.in.in.h:4 -@@ -5104,23 +4984,19 @@ msgstr "ఐచ్ఛికాలు" - - #: ../panels/region/region.ui.h:7 - msgid "Login settings are used by all users when logging into the system" --msgstr "" --"వ్యవస్థనకు లాగిన్ అగునప్పుడు లాగన్ అమరికలు అందరి వాడుకరుల చేత వుపయోగించబడును" -+msgstr "వ్యవస్థనకు లాగిన్ అగునప్పుడు లాగన్ అమరికలు అందరి వాడుకరుల చేత వుపయోగించబడును" - - #: ../panels/search/cc-search-locations-dialog.c:476 --#| msgid "Places" - msgctxt "Search Location" - msgid "Places" - msgstr "స్థానములు" - - #: ../panels/search/cc-search-locations-dialog.c:478 --#| msgid "Bookmarks" - msgctxt "Search Location" - msgid "Bookmarks" - msgstr "ఇష్టాంశాలు" - - #: ../panels/search/cc-search-locations-dialog.c:480 --#| msgid "Other" - msgctxt "Search Location" - msgid "Other" - msgstr "ఇతర" -@@ -5130,7 +5006,6 @@ msgid "Select Location" - msgstr "స్థానము యెంపికచేయి" - - #: ../panels/search/cc-search-locations-dialog.c:682 --#| msgid "GOK" - msgid "_OK" - msgstr "సరే (_O)" - -@@ -5145,8 +5020,7 @@ msgstr "శోధించు" - #: ../panels/search/gnome-search-panel.desktop.in.in.h:2 - msgid "" - "Control which applications show search results in the Activities Overview" --msgstr "" --"క్రియాశీలతల వోవర్‌వ్యూ నందు యే అనువర్తనములు శోధన ఫలితాలను చూపాలో నియంత్రించును" -+msgstr "క్రియాశీలతల వోవర్‌వ్యూ నందు యే అనువర్తనములు శోధన ఫలితాలను చూపాలో నియంత్రించును" - - #. Translators: those are keywords for the search control-center panel - #: ../panels/search/gnome-search-panel.desktop.in.in.h:4 -@@ -5181,13 +5055,11 @@ msgid "Off" - msgstr "ఆఫ్" - - #: ../panels/sharing/cc-sharing-panel.c:304 --#| msgid "Enabled" - msgctxt "service is enabled" - msgid "Enabled" - msgstr "చేతనమైంది" - - #: ../panels/sharing/cc-sharing-panel.c:307 --#| msgid "Active Jobs" - msgctxt "service is active" - msgid "Active" - msgstr "క్రియాశీల" -@@ -5234,7 +5106,6 @@ msgstr "పంచుకొనుటక?? - #. * vim: sw=2 ts=8 cindent noai bs=2 - #. - #: ../panels/sharing/networks.ui.h:1 --#| msgid "Network" - msgid "Networks" - msgstr "నెట్‌వర్కులు" - -@@ -5246,9 +5117,7 @@ msgstr "బ్లూటూత్ భా? - msgid "" - "Bluetooth Sharing allows you to share files with other Bluetooth enabled " - "devices" --msgstr "" --"బ్లూటూట్ భాగస్వామ్యం అనునది వేరే బ్లూట్ చేతన పరికరాలతో ఫైళ్ళను పంచుకొనుటకు " --"అనుమతించును" -+msgstr "బ్లూటూట్ భాగస్వామ్యం అనునది వేరే బ్లూట్ చేతన పరికరాలతో ఫైళ్ళను పంచుకొనుటకు అనుమతించును" - - #: ../panels/sharing/sharing.ui.h:3 - msgid "Only Receive From Trusted Devices" -@@ -5288,8 +5157,7 @@ msgid "" - "Personal File Sharing allows you to share your Public folder with others on " - "your current network using: dav://%s" - msgstr "" --"వ్యక్తిగత ఫైల్ భాగస్వామ్యం అనునది మిమ్ములను ప్రస్తుత నెట్వర్కునందు యితరులతో " --"మీ పబ్లిక్ ఫోల్డర్‌ను " -+"వ్యక్తిగత ఫైల్ భాగస్వామ్యం అనునది మిమ్ములను ప్రస్తుత నెట్వర్కునందు యితరులతో మీ పబ్లిక్ ఫోల్డర్‌ను " - "పంచుకొనుటకు అనుమతించును: dav://%s వుపయోగించి" - - #: ../panels/sharing/sharing.ui.h:13 -@@ -5302,8 +5170,7 @@ msgid "" - "Allow remote users to connect using the Secure Shell command:\n" - "ssh %s" - msgstr "" --"సెక్యూర్ షెల్ కమాండ్ వుపయోగించి రిమోట్ వాడుకరులను అనుసంధానించుటకు " --"అనుమతించుము:\n" -+"సెక్యూర్ షెల్ కమాండ్ వుపయోగించి రిమోట్ వాడుకరులను అనుసంధానించుటకు అనుమతించుము:\n" - "ssh %s" - - #: ../panels/sharing/sharing.ui.h:19 -@@ -5312,17 +5179,14 @@ msgid "" - "Allow remote users to view or control your screen by connecting to: vnc://%s" - msgstr "" --"దీనికి అనుసంధానమగుట ద్వారా రిమోట్ వాడుకరులను మీ తెరను దర్శించుటకు లేదా " --"నియంత్రించుటకు " -+"దీనికి అనుసంధానమగుట ద్వారా రిమోట్ వాడుకరులను మీ తెరను దర్శించుటకు లేదా నియంత్రించుటకు " - "అనుమతించుము: vnc://%s" - - #: ../panels/sharing/sharing.ui.h:20 --#| msgid "Remote Control" - msgid "Allow Remote Control" - msgstr "రిమోట్ నియంత్రణ అనుమతించు" - - #: ../panels/sharing/sharing.ui.h:21 --#| msgid "_Password:" - msgid "Password:" - msgstr "సంకేతపదం:" - -@@ -5331,7 +5195,6 @@ msgid "Show Password" - msgstr "సంకేతపదమును చూపుము" - - #: ../panels/sharing/sharing.ui.h:23 --#| msgid "%s Options" - msgid "Access Options" - msgstr "ఏక్సెస్ ఐచ్ఛికాలు" - -@@ -5340,17 +5203,14 @@ msgid "New connections must ask for acce - msgstr "ఏక్సెస్ కొరకు కొత్త అనుసంధానాలు తప్పక అడగాలి" - - #: ../panels/sharing/sharing.ui.h:25 --#| msgid "Require Password" - msgid "Require a password" - msgstr "సంకేతపదం అవసరం" - - #: ../panels/sharing/sharing.ui.h:26 --#| msgid "Share Music, Photos and Videos with others on the current network." - msgid "Share music, photos and videos over the network." - msgstr "నెట్వర్కునందు సంగీతం, చిత్రాలు మరియు వీడియోలు పంచుకొనుము." - - #: ../panels/sharing/sharing.ui.h:27 --#| msgid "Add Folder" - msgid "Folders" - msgstr "సంచయాలు" - -@@ -5360,8 +5220,7 @@ msgstr "శబ్దము" - - #: ../panels/sound/data/gnome-sound-panel.desktop.in.in.h:2 - msgid "Change sound levels, inputs, outputs, and alert sounds" --msgstr "" --"శబ్ద స్థాయిలను, యిన్పుట్లను, అవుట్పుట్లను, మరియు హెచ్చరిక శబ్దములను మార్చు" -+msgstr "శబ్ద స్థాయిలను, యిన్పుట్లను, అవుట్పుట్లను, మరియు హెచ్చరిక శబ్దములను మార్చు" - - #. Translators: those are keywords for the sound control-center panel - #: ../panels/sound/data/gnome-sound-panel.desktop.in.in.h:4 -@@ -5588,14 +5447,10 @@ msgstr "అనురూపితం" - - #: ../panels/universal-access/gnome-universal-access-panel.desktop.in.in.h:2 - msgid "Make it easier to see, hear, type, point and click" --msgstr "" --"చూడుటకు, వినుటకు, టైపునకు, సూచించుటకు మరియు నొక్కుటకు దీనిని సులభతరం చేయి" -+msgstr "చూడుటకు, వినుటకు, టైపునకు, సూచించుటకు మరియు నొక్కుటకు దీనిని సులభతరం చేయి" - - #. Translators: those are keywords for the universal access control-center panel - #: ../panels/universal-access/gnome-universal-access-panel.desktop.in.in.h:4 --#| msgid "" --#| "Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen Reader;text;font;" --#| "size;AccessX;Sticky Keys;Slow Keys;Bounce Keys;Mouse Keys;" - msgid "" - "Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;" - "AccessX;Sticky;Keys;Slow;Bounce;Mouse;" -@@ -5604,7 +5459,6 @@ msgstr "" - "AccessX;Sticky;Keys;Slow;Bounce;Mouse;" - - #: ../panels/universal-access/uap.ui.h:1 --#| msgid "Universal Access" - msgid "_Always Show Universal Access Menu" - msgstr "సార్వత్రిక ఏక్సెస్ మెనూ ఎల్లప్పుడూ చూపుము (_A)" - -@@ -5613,27 +5467,22 @@ msgid "Seeing" - msgstr "చూస్తున్న" - - #: ../panels/universal-access/uap.ui.h:3 --#| msgid "High Contrast" - msgid "_High Contrast" - msgstr "అధిక కాంట్రాస్ట్ (_H)" - - #: ../panels/universal-access/uap.ui.h:4 --#| msgid "Large Text" - msgid "_Large Text" - msgstr "అతిపెద్ద పాఠం (_L)" - - #: ../panels/universal-access/uap.ui.h:5 --#| msgid "Zoom" - msgid "_Zoom" - msgstr "జూమ్ (_Z)" - - #: ../panels/universal-access/uap.ui.h:7 --#| msgid "Screen Reader" - msgid "Screen _Reader" - msgstr "తెర చదువరి (_R)" - - #: ../panels/universal-access/uap.ui.h:8 --#| msgid "Bounce Keys" - msgid "_Sound Keys" - msgstr "శబ్ద కీలు (_S)" - -@@ -5642,27 +5491,22 @@ msgid "Hearing" - msgstr "వినుట" - - #: ../panels/universal-access/uap.ui.h:10 --#| msgid "Visual Alerts" - msgid "_Visual Alerts" - msgstr "దృశ్య హెచ్చరికలు (_V)" - - #: ../panels/universal-access/uap.ui.h:12 --#| msgid "Screen keyboard" - msgid "Screen _Keyboard" - msgstr "తెర కీబోర్డు (_K)" - - #: ../panels/universal-access/uap.ui.h:13 --#| msgid "Typing Assistant" - msgid "_Typing Assist (AccessX)" - msgstr "టైపింగు సహాయకం (AccessX) (_T)" - - #: ../panels/universal-access/uap.ui.h:14 --#| msgid "Pointing and Clicking" - msgid "Pointing & Clicking" - msgstr "ఎత్తిచూపు మరియు క్లిక్ చేయు" - - #: ../panels/universal-access/uap.ui.h:15 --#| msgid "Mouse Keys" - msgid "_Mouse Keys" - msgstr "మౌస్ కీలు (_M)" - -@@ -5676,16 +5520,13 @@ msgstr "తెర చదువకం" - - #: ../panels/universal-access/uap.ui.h:18 - msgid "The screen reader reads displayed text as you move the focus." --msgstr "" --"మీరు ఫోకస్‌ను కదల్చగానే ప్రదర్శించబడుతున్న పాఠంను తెరచదువరి దాన్ని చదువును." -+msgstr "మీరు ఫోకస్‌ను కదల్చగానే ప్రదర్శించబడుతున్న పాఠంను తెరచదువరి దాన్ని చదువును." - - #: ../panels/universal-access/uap.ui.h:19 --#| msgid "Screen Reader" - msgid "_Screen Reader" - msgstr "తెర చదువరి (_S)" - - #: ../panels/universal-access/uap.ui.h:20 --#| msgid "Bounce Keys" - msgid "Sound Keys" - msgstr "శబ్ద కీలు" - -@@ -5702,27 +5543,22 @@ msgid "_Test flash" - msgstr "ఫ్లాష్ పరీక్షించు (_T)" - - #: ../panels/universal-access/uap.ui.h:24 --#| msgid "Use a visual indication when an alert sound occurs" - msgid "Use a visual indication when an alert sound occurs." - msgstr "హెచ్చరిక శబ్దము కలిగినపుడు దృశ్య సూచిని ఉపయోగించు." - - #: ../panels/universal-access/uap.ui.h:25 --#| msgid "Flash the window title" - msgid "Flash the _window title" - msgstr "విండో శీర్షికను ఫ్లాష్ చేయు (_w)" - - #: ../panels/universal-access/uap.ui.h:26 --#| msgid "Flash the entire screen" - msgid "Flash the entire _screen" - msgstr "పూర్తి తెరను ఫ్లాష్ చేయు (_s)" - - #: ../panels/universal-access/uap.ui.h:27 --#| msgid "Typing Assistant" - msgid "Typing Assist" - msgstr "టైపింగు సహాయకం" - - #: ../panels/universal-access/uap.ui.h:28 --#| msgid "Sticky Keys" - msgid "_Sticky Keys" - msgstr "అంటివుండే కీలు (_S)" - -@@ -5739,7 +5575,6 @@ msgid "Beep when a _modifer key is press - msgstr "బీప్ ఎపుడైతే ఒక మార్పుచేయనున్న కీ ని ప్రెస్ చేసినపుడు(_m)" - - #: ../panels/universal-access/uap.ui.h:32 --#| msgid "Slow Keys" - msgid "S_low Keys" - msgstr "నెమ్మది కీలు (_l" - -@@ -5752,8 +5587,6 @@ msgid "A_cceptance delay:" - msgstr "అంగీకరించు జాప్యం:(_c)" - - #: ../panels/universal-access/uap.ui.h:35 --#| msgctxt "keyboard, delay" --#| msgid "Short" - msgctxt "slow keys delay" - msgid "Short" - msgstr "పొట్టి" -@@ -5763,8 +5596,6 @@ msgid "Slow keys typing delay" - msgstr "నెమ్మది మీటల టైపింగు ఆలస్యం" - - #: ../panels/universal-access/uap.ui.h:37 --#| msgctxt "keyboard, delay" --#| msgid "Long" - msgctxt "slow keys delay" - msgid "Long" - msgstr "పొడవు" -@@ -5774,7 +5605,6 @@ msgid "Beep when a key is pr_essed" - msgstr "కీ వత్తినప్పుడు బీప్‌చేయుము(_e)" - - #: ../panels/universal-access/uap.ui.h:39 --#| msgid "Beep when key is _accepted" - msgid "Beep when a key is _accepted" - msgstr "కీ ఆమోదించినప్పుడు బీప్ చేయుము (_a)" - -@@ -5783,7 +5613,6 @@ msgid "Beep when a key is _rejected" - msgstr "బీప్ ఎపుడైతే ఒక కీ ని తిరస్కిరించినపుడు(_r) " - - #: ../panels/universal-access/uap.ui.h:41 --#| msgid "Bounce Keys" - msgid "_Bounce Keys" - msgstr "బౌన్సు కీలు (_B)" - -@@ -5792,8 +5621,6 @@ msgid "Ignores fast duplicate keypresses - msgstr "వేగ నకలీ కీప్రెస్ ను పట్టించుకోదు" - - #: ../panels/universal-access/uap.ui.h:43 --#| msgctxt "keyboard, delay" --#| msgid "Short" - msgctxt "bounce keys delay" - msgid "Short" - msgstr "పొట్టి" -@@ -5803,14 +5630,11 @@ msgid "Bounce keys typing delay" - msgstr "బౌన్స్ మీటల టైపింగు ఆలస్యం" - - #: ../panels/universal-access/uap.ui.h:45 --#| msgctxt "keyboard, delay" --#| msgid "Long" - msgctxt "bounce keys delay" - msgid "Long" - msgstr "పొడవు" - - #: ../panels/universal-access/uap.ui.h:46 --#| msgid "Enable by Keyboard" - msgid "_Enable by Keyboard" - msgstr "కీబోర్డుతో చేతనించు (_E)" - -@@ -5823,7 +5647,6 @@ msgid "Click Assist" - msgstr "సహాయకి నొక్కండి" - - #: ../panels/universal-access/uap.ui.h:49 --#| msgid "Simulated Secondary Click" - msgid "_Simulated Secondary Click" - msgstr "సిమ్యులేటెడ్ రెండవ నొక్కు (_S)" - -@@ -5832,8 +5655,6 @@ msgid "Trigger a secondary click by hold - msgstr "ప్రధమ బట్టన్ ను నొక్కుతూ ద్వితీయ క్లిక్ ను మొదలెట్టు" - - #: ../panels/universal-access/uap.ui.h:51 --#| msgctxt "keyboard, delay" --#| msgid "Short" - msgctxt "secondary click" - msgid "Short" - msgstr "పొట్టి" -@@ -5843,14 +5664,11 @@ msgid "Secondary click delay" - msgstr "రెండవ నొక్కు ఆలస్యం" - - #: ../panels/universal-access/uap.ui.h:53 --#| msgctxt "keyboard, delay" --#| msgid "Long" - msgctxt "secondary click delay" - msgid "Long" - msgstr "పొడవు" - - #: ../panels/universal-access/uap.ui.h:54 --#| msgid "Hover Click" - msgid "_Hover Click" - msgstr "హోవర్ క్లిక్ (_H)" - -@@ -5863,15 +5681,11 @@ msgid "D_elay:" - msgstr "ఆలస్యం (_e):" - - #: ../panels/universal-access/uap.ui.h:57 --#| msgctxt "keyboard, delay" --#| msgid "Short" - msgctxt "dwell click delay" - msgid "Short" - msgstr "పొట్టి" - - #: ../panels/universal-access/uap.ui.h:58 --#| msgctxt "keyboard, delay" --#| msgid "Long" - msgctxt "dwell click delay" - msgid "Long" - msgstr "పొడవు" -@@ -5881,15 +5695,11 @@ msgid "Motion _threshold:" - msgstr "గతి ఉపక్రమణ:(_t)" - - #: ../panels/universal-access/uap.ui.h:60 --#| msgctxt "universal access, text size" --#| msgid "Small" - msgctxt "dwell click threshold" - msgid "Small" - msgstr "చిన్న" - - #: ../panels/universal-access/uap.ui.h:61 --#| msgctxt "universal access, text size" --#| msgid "Large" - msgctxt "dwell click threshold" - msgid "Large" - msgstr "పెద్ద" -@@ -6089,7 +5899,6 @@ msgid "Administrator" - msgstr "నిర్వాహకుడు" - - #: ../panels/user-accounts/data/account-dialog.ui.h:4 --#| msgid "Full Name" - msgid "_Full Name" - msgstr "పూర్తి నామము (_F)" - -@@ -6100,7 +5909,6 @@ msgstr "ఖాతా రకం (_T)" - - #: ../panels/user-accounts/data/account-dialog.ui.h:7 - #: ../panels/user-accounts/data/password-dialog.ui.h:7 --#| msgid "Choose password at next login" - msgid "Allow user to set a password when they next login" - msgstr "తరువాత ప్రవేశంలో సంకేతపదాన్ని ఎన్నుకొనుటకు వాడుకరిని అనుమతించు" - -@@ -6118,8 +5926,8 @@ msgid "" - "Enterprise login allows an existing centrally managed user account to be " - "used on this device." - msgstr "" --"మనుగడలోవున్న కేంద్రీకృత నిర్వాహిత వాడుకరి ఖాతాను ఈ పరికరంపై ఉపయోగించుటకు " --"ఎంటర్‌ప్రైజ్ లాగిన్ అనుమతించును." -+"మనుగడలోవున్న కేంద్రీకృత నిర్వాహిత వాడుకరి ఖాతాను ఈ పరికరంపై ఉపయోగించుటకు ఎంటర్‌ప్రైజ్ లాగిన్ " -+"అనుమతించును." - - #: ../panels/user-accounts/data/account-dialog.ui.h:12 - msgid "_Domain" -@@ -6157,8 +5965,7 @@ msgid "" - "enrolled in the domain. Please have your network administrator\n" - "type their domain password here." - msgstr "" --"ఎంటర్‌ప్రైజ్ లాగిన్స్ వుపయోగించుటకు, ఈ కంప్యూటర్ డొమైన్ నందు ఎన్‌రోల్ " --"కావలసివుంటుంది\n" -+"ఎంటర్‌ప్రైజ్ లాగిన్స్ వుపయోగించుటకు, ఈ కంప్యూటర్ డొమైన్ నందు ఎన్‌రోల్ కావలసివుంటుంది\n" - "మీ నెట్వర్కు నిర్వహణాధికారి వారి డొమైన్ సంకేతపదంను యిక్కడ టైపు చేయవలెను." - - #: ../panels/user-accounts/data/account-dialog.ui.h:24 -@@ -6223,8 +6030,7 @@ msgid "" - "Your fingerprint was successfully saved. You should now be able to log in " - "using your fingerprint reader." - msgstr "" --"మీ వేలిముద్ర విజయవంతంగా భద్రపరుచబడింది. మీరు ఇప్పుడు మీ వేలిముద్ర " --"చదువరి(రీడర్) ఉపయోగించి " -+"మీ వేలిముద్ర విజయవంతంగా భద్రపరుచబడింది. మీరు ఇప్పుడు మీ వేలిముద్ర చదువరి(రీడర్) ఉపయోగించి " - "ప్రవేశించగలుగుతారు." - - #: ../panels/user-accounts/data/gnome-user-accounts-panel.desktop.in.in.h:1 -@@ -6245,7 +6051,6 @@ msgid "Login History" - msgstr "లాగిన్ చరిత్ర" - - #: ../panels/user-accounts/data/password-dialog.ui.h:1 --#| msgid "Changing password for" - msgid "Change Password" - msgstr "సంకేతపదమును మార్చు" - -@@ -6254,17 +6059,14 @@ msgid "Ch_ange" - msgstr "మార్చు (_a)" - - #: ../panels/user-accounts/data/password-dialog.ui.h:4 --#| msgid "_New password" - msgid "_Verify New Password" - msgstr "కొత్త సంకేతపదం నిర్ధారించు (_V)" - - #: ../panels/user-accounts/data/password-dialog.ui.h:5 --#| msgid "_New password" - msgid "_New Password" - msgstr "కొత్త సంకేతపదం (_N)" - - #: ../panels/user-accounts/data/password-dialog.ui.h:6 --#| msgid "Current _password" - msgid "Current _Password" - msgstr "ప్రస్తుత సంకేతపదం (_P)" - -@@ -6309,7 +6111,6 @@ msgid "Authentication is required to cha - msgstr "వాడుకరి సమాచారాన్ని మార్చాలంటే ధృవీకరణ అవసరం" - - #: ../panels/user-accounts/pw-utils.c:81 --#| msgid "The new password does not contain enough different characters" - msgctxt "Password hint" - msgid "The new password needs to be different from the old one." - msgstr "కొత్త సంకేతపదం పాత సకేతపదానికి వేరుగా ఉండాలి." -@@ -6320,7 +6121,6 @@ msgid "Try changing some letters and num - msgstr "కొన్ని అక్షరాలు మరియు సంఖ్యలు మార్చుటకు ప్రయత్నించు." - - #: ../panels/user-accounts/pw-utils.c:85 ../panels/user-accounts/pw-utils.c:93 --#| msgid "Changing password for" - msgctxt "Password hint" - msgid "Try changing the password a bit more." - msgstr "సంకేతపదం ఇంకొంచం మార్చడానికి ప్రయత్నించండి." -@@ -6386,8 +6186,7 @@ msgid "" - "Try to avoid repeating the same type of character: you need to mix up " - "letters, numbers and punctuation." - msgstr "" --"ఒకే రకమైన అక్షరం తిరిగి వాడకుండా చూసుకోండి: మీరు అక్షరాలు, సంఖ్యలు మరియు " --"విరామచిహ్నాలు కలిపివాడాలి." -+"ఒకే రకమైన అక్షరం తిరిగి వాడకుండా చూసుకోండి: మీరు అక్షరాలు, సంఖ్యలు మరియు విరామచిహ్నాలు కలిపివాడాలి." - - #: ../panels/user-accounts/pw-utils.c:113 - msgctxt "Password hint" -@@ -6409,9 +6208,7 @@ msgctxt "Password hint" - msgid "" - "Good password! Adding more letters, numbers and punctuation will make it " - "stronger." --msgstr "" --"మంచి సంకేతపదం! మరిన్ని అక్షరాలు, సంఖ్యలు మరియు విరామచిహ్నాలు జతచేస్తే మరింత " --"దృఢమౌతుంది." -+msgstr "మంచి సంకేతపదం! మరిన్ని అక్షరాలు, సంఖ్యలు మరియు విరామచిహ్నాలు జతచేస్తే మరింత దృఢమౌతుంది." - - #: ../panels/user-accounts/pw-utils.c:141 - #: ../panels/user-accounts/pw-utils.c:171 -@@ -6421,7 +6218,6 @@ msgstr "పటిష్టత: బలహ - - #: ../panels/user-accounts/pw-utils.c:145 - #: ../panels/user-accounts/pw-utils.c:172 --#| msgid "Length:" - msgctxt "Password strength" - msgid "Strength: Low" - msgstr "పటిష్టత: తక్కువ" -@@ -6502,7 +6298,6 @@ msgid "Failed to add account" - msgstr "ఖాతాను జతచేయుటలో విఫలమైంది" - - #: ../panels/user-accounts/um-account-dialog.c:452 --#| msgid "Passwords do not match" - msgid "Passwords do not match." - msgstr "సంకేతపదాలు సరిపోలటం లేదు." - -@@ -6528,7 +6323,6 @@ msgstr "" - "దయచేసి తిరిగి ప్రయత్నించండి." - - #: ../panels/user-accounts/um-account-dialog.c:1042 --#| msgid "Invalid password, please try again" - msgid "" - "That login password didn't work.\n" - "Please try again." -@@ -6542,15 +6336,12 @@ msgstr "డొమైన్ నందు - - #: ../panels/user-accounts/um-account-dialog.c:1108 - msgid "Unable find the domain. Maybe you misspelled it?" --msgstr "" --"డొమైన్ కనుగొనలేక పోయింది. బహుశా మీరు దానిని సరిగా టైప్ చేసివుండకపోవచ్చు?" -+msgstr "డొమైన్ కనుగొనలేక పోయింది. బహుశా మీరు దానిని సరిగా టైప్ చేసివుండకపోవచ్చు?" - - #: ../panels/user-accounts/um-fingerprint-dialog.c:137 - msgid "" - "You are not allowed to access the device. Contact your system administrator." --msgstr "" --"పరికరమును యాక్సిస్ చేయుటకు మీరు అనుమతిలేదు. మీ సిస్టమ్ నిర్వహణాధికారిని " --"సంప్రదించండి." -+msgstr "పరికరమును యాక్సిస్ చేయుటకు మీరు అనుమతిలేదు. మీ సిస్టమ్ నిర్వహణాధికారిని సంప్రదించండి." - - #: ../panels/user-accounts/um-fingerprint-dialog.c:139 - msgid "The device is already in use." -@@ -6577,9 +6368,7 @@ msgstr "వేలిముద్రల?? - msgid "" - "Do you want to delete your registered fingerprints so fingerprint login is " - "disabled?" --msgstr "" --"వేలిముద్ర లాగిన్ అచేతనపరిచే నమోదైన వేలిముద్రల తొలగింపును మారు " --"చేద్దామనుకొనుచున్నారా?" -+msgstr "వేలిముద్ర లాగిన్ అచేతనపరిచే నమోదైన వేలిముద్రల తొలగింపును మారు చేద్దామనుకొనుచున్నారా?" - - #: ../panels/user-accounts/um-fingerprint-dialog.c:452 - msgid "Done!" -@@ -6621,8 +6410,7 @@ msgid "" - "To enable fingerprint login, you need to save one of your fingerprints, " - "using the '%s' device." - msgstr "" --"వేలిముద్ర ప్రవేశాన్ని చేతనపరచుటకు, '%s' పరికరము ఉపయోగించి మీ వేలిముద్రలలో " --"ఒకటి " -+"వేలిముద్ర ప్రవేశాన్ని చేతనపరచుటకు, '%s' పరికరము ఉపయోగించి మీ వేలిముద్రలలో ఒకటి " - "భద్రపరుచవలసివుంటుంది." - - #: ../panels/user-accounts/um-fingerprint-dialog.c:738 -@@ -6647,7 +6435,6 @@ msgstr "ఆఖరి వారం" - #. shown as the last day of a week on login history dialog. - #: ../panels/user-accounts/um-history-dialog.c:77 - #: ../panels/user-accounts/um-history-dialog.c:81 --#| msgid "%b %d %Y" - msgctxt "login history week label" - msgid "%b %e" - msgstr "%b %e" -@@ -6655,7 +6442,6 @@ msgstr "%b %e" - #. Translators: This is a date format string in the style of "Feb 24, 2013", - #. shown as the last day of a week on login history dialog. - #: ../panels/user-accounts/um-history-dialog.c:86 --#| msgid "%b %d %Y" - msgctxt "login history week label" - msgid "%b %e, %Y" - msgstr "%b %e, %Y" -@@ -6706,7 +6492,6 @@ msgid "Password could not be changed" - msgstr "సంకేతపదం మార్చబడదు" - - #: ../panels/user-accounts/um-password-dialog.c:286 --#| msgid "The passwords do not match" - msgid "The passwords do not match." - msgstr "సంకేతపదాలు సరిపోలలేదు." - -@@ -6776,9 +6561,7 @@ msgstr "%s ఇంకా ప్రవే? - msgid "" - "Deleting a user while they are logged in can leave the system in an " - "inconsistent state." --msgstr "" --"ప్రవేశించివున్న వాడుకరిని తొలగించినచో వ్యవస్థను అస్థిరస్థితిలో " --"వదిలివేయబడవచ్చు." -+msgstr "ప్రవేశించివున్న వాడుకరిని తొలగించినచో వ్యవస్థను అస్థిరస్థితిలో వదిలివేయబడవచ్చు." - - #: ../panels/user-accounts/um-user-panel.c:504 - #, c-format -@@ -6790,8 +6573,7 @@ msgid "" - "It is possible to keep the home directory, mail spool and temporary files " - "around when deleting a user account." - msgstr "" --"వాడుకరి ఖాతాను తొలగించునపుడు నివాస సంచయం,మెయిల్ స్పూల్ మరియు తాత్కాలిక " --"దస్త్రాలను ఉంచడం కుదురుతుంది" -+"వాడుకరి ఖాతాను తొలగించునపుడు నివాస సంచయం,మెయిల్ స్పూల్ మరియు తాత్కాలిక దస్త్రాలను ఉంచడం కుదురుతుంది" - - #: ../panels/user-accounts/um-user-panel.c:511 - msgid "_Delete Files" -@@ -6868,48 +6650,37 @@ msgstr "నా ఖాతా" - - #: ../panels/user-accounts/um-utils.c:567 - #, c-format --#| msgid "A user with the username '%s' already exists" - msgid "A user with the username '%s' already exists." - msgstr "'%s' వాడుకరిపేరుతో ఒక వాడుకరి ఇదివరకే ఉన్నారు." - - #: ../panels/user-accounts/um-utils.c:571 - #, c-format --#| msgid "The username is too long" - msgid "The username is too long." - msgstr "వాడుకరిపేరు మరీ పెద్దగా ఉంది." - - #: ../panels/user-accounts/um-utils.c:574 --#| msgid "The username cannot start with a '-'" - msgid "The username cannot start with a '-'." - msgstr "వాడుకరిపేరు '-' తో మొదలవ్వకూడదు." - - #: ../panels/user-accounts/um-utils.c:577 --#| msgid "" --#| "The username must only consist of:\n" --#| " ➣ letters from the English alphabet\n" --#| " ➣ digits\n" --#| " ➣ any of the characters '.', '-' and '_'" - msgid "" - "The username should only consist of lower and upper case letters from a-z, " - "digits and any of characters '.', '-' and '_'." - msgstr "" --"వాడుకరిపేరు చిన్న మరియు పెద్దబడి అక్షరాలను a-z వరకు, అంకెలు మరియు '.', '-', " --"'_' వీటిలో ఏదైనా కలిగివుండవచ్చు." -+"వాడుకరిపేరు చిన్న మరియు పెద్దబడి అక్షరాలను a-z వరకు, అంకెలు మరియు '.', '-', '_' వీటిలో ఏదైనా " -+"కలిగివుండవచ్చు." - - #: ../panels/user-accounts/um-utils.c:581 - msgid "This will be used to name your home folder and can't be changed." --msgstr "" --"మీ నివాస సంచయం పేరు పెట్టుటకు యిది వుపయోగించబడును మరియు దీనిని మార్చలేము." -+msgstr "మీ నివాస సంచయం పేరు పెట్టుటకు యిది వుపయోగించబడును మరియు దీనిని మార్చలేము." - - #. Translators: This is a date format string in the style of "Feb 24". - #: ../panels/user-accounts/um-utils.c:827 --#| msgid "%b %d %Y" - msgid "%b %e" - msgstr "%b %e" - - #. Translators: This is a date format string in the style of "Feb 24, 2013". - #: ../panels/user-accounts/um-utils.c:831 --#| msgid "%b %d %Y" - msgid "%b %e, %Y" - msgstr "%b %e, %Y" - -@@ -6922,24 +6693,18 @@ msgid "Map buttons to functions" - msgstr " కార్యాలను పటం మీటలు" - - #: ../panels/wacom/button-mapping.ui.h:3 --#| msgid "" --#| "To edit a shortcut, click the row and hold down the new keys or press " --#| "Backspace to clear." - msgid "" - "To edit a shortcut, choose the \"Send Keystroke\" action, press the keyboard " - "shortcut button and hold down the new keys or press Backspace to clear." - msgstr "" --"ఒక షార్ట్ కట్ ని సరిచేయుటకు, \"కీస్ట్రోక్ పంపు\" చర్య ఎంచుకొని, కీబోర్డ్ " --"లఘువు బటన్ వత్తండి మరియు కొత్త కీలను పట్టివుంచండి లేదా శుబ్రంచేయుటకు " --"బ్యాక్‌స్పేస్ వత్తండి." -+"ఒక షార్ట్ కట్ ని సరిచేయుటకు, \"కీస్ట్రోక్ పంపు\" చర్య ఎంచుకొని, కీబోర్డ్ లఘువు బటన్ వత్తండి మరియు " -+"కొత్త కీలను పట్టివుంచండి లేదా శుబ్రంచేయుటకు బ్యాక్‌స్పేస్ వత్తండి." - - #: ../panels/wacom/calibrator/calibrator-gui.c:83 - msgid "" - "Please tap the target markers as they appear on screen to calibrate the " - "tablet." --msgstr "" --"తాము మాత్ర బలాన్ని నిర్ణయించు కు తెరపైన కనిపించే విధంగా లక్ష్యాన్ని " --"గుర్తులను పొందేల చెయ్యండి." -+msgstr "తాము మాత్ర బలాన్ని నిర్ణయించు కు తెరపైన కనిపించే విధంగా లక్ష్యాన్ని గుర్తులను పొందేల చెయ్యండి." - - #: ../panels/wacom/calibrator/calibrator-gui.c:87 - msgid "Mis-click detected, restarting..." -@@ -7009,9 +6774,7 @@ msgstr "వ్యాకం టాబ్? - - #: ../panels/wacom/gnome-wacom-panel.desktop.in.in.h:2 - msgid "Set button mappings and adjust stylus sensitivity for graphics tablets" --msgstr "" --"గ్రాఫిక్స్ టాబ్లెట్ల కొరకు బటన్ మాపింగ్ మరియు స్టైలస్ సున్నితత్వం సర్దుబాటు " --"చేయును" -+msgstr "గ్రాఫిక్స్ టాబ్లెట్ల కొరకు బటన్ మాపింగ్ మరియు స్టైలస్ సున్నితత్వం సర్దుబాటు చేయును" - - #. Translators: those are keywords for the wacom tablet control-center panel - #: ../panels/wacom/gnome-wacom-panel.desktop.in.in.h:4 -@@ -7152,7 +6915,6 @@ msgid "Bottom Button #%d" - msgstr "దిగువ మీట #%d" - - #: ../panels/wacom/gsd-wacom-key-shortcut-button.c:263 --#| msgid "New shortcut..." - msgid "New shortcut…" - msgstr "కొత్త లఘువు…" - -@@ -7264,8 +7026,7 @@ msgid "" - "Run '%s --help' to see a full list of available command line options.\n" - msgstr "" - "%s\n" --"అందుబాటులో వున్న ఆదేశ వరుస ఐచ్చికముల పూర్తి జాబితా కొరకు '%s --help' " --"నడుపండి.\n" -+"అందుబాటులో వున్న ఆదేశ వరుస ఐచ్చికముల పూర్తి జాబితా కొరకు '%s --help' నడుపండి.\n" - - #: ../shell/cc-application.c:193 - msgid "Available panels:" diff --git a/SOURCES/cursor-size-selection.patch b/SOURCES/cursor-size-selection.patch new file mode 100644 index 0000000..1439bda --- /dev/null +++ b/SOURCES/cursor-size-selection.patch @@ -0,0 +1,666 @@ +From d0e477e42b8d9567d3e675a49e9eafccaa6cda79 Mon Sep 17 00:00:00 2001 +From: Bastien Nocera +Date: Mon, 6 Mar 2017 16:39:29 +0100 +Subject: [PATCH 1/4] universal-access: Don't use C++ style comments + +--- + panels/universal-access/cc-ua-panel.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/panels/universal-access/cc-ua-panel.c b/panels/universal-access/cc-ua-panel.c +index 477a6895a..88e55e66e 100644 +--- a/panels/universal-access/cc-ua-panel.c ++++ b/panels/universal-access/cc-ua-panel.c +@@ -358,7 +358,7 @@ activate_row (CcUaPanel *self, GtkListBoxRow *row) + const gchar *dialog_id; + const gchar *widget_name; + +- // Check switches to toggle ++ /* Check switches to toggle */ + widget_name = gtk_buildable_get_name (GTK_BUILDABLE (row)); + if (widget_name) + { +@@ -384,7 +384,7 @@ activate_row (CcUaPanel *self, GtkListBoxRow *row) + } + } + +- // Check dialog to open ++ /* Check dialog to open */ + dialog_id = (const gchar *)g_object_get_data (G_OBJECT (row), "dialog-id"); + if (g_strcmp0 (dialog_id, "zoom") == 0) + { +-- +2.12.0 + + +From 1d3aadcf331572b770b89d22101edc8fdfc1ca8d Mon Sep 17 00:00:00 2001 +From: Bastien Nocera +Date: Mon, 6 Mar 2017 17:30:07 +0100 +Subject: [PATCH 2/4] universal-access: Add bits for glade to shut up + +--- + panels/universal-access/uap.ui | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/panels/universal-access/uap.ui b/panels/universal-access/uap.ui +index e6c7955dc..636b7740d 100644 +--- a/panels/universal-access/uap.ui ++++ b/panels/universal-access/uap.ui +@@ -1,5 +1,7 @@ + ++ + ++ + + 100 + 1000 +-- +2.12.0 + + +From d0c8026172f441d00519577064aad04d7cd68429 Mon Sep 17 00:00:00 2001 +From: Bastien Nocera +Date: Mon, 6 Mar 2017 17:28:33 +0100 +Subject: [PATCH 3/4] universal-access: Add Cursor Size selection dialogue + +The dialogue offers the 5 separate cursor sizes that adwaita's cursor +theme supports, aligned in a row. + +The cursor sizes are described in a way that doesn't judge their +respective sizes, but simply describes them. + +https://bugzilla.gnome.org/show_bug.cgi?id=608231 +--- + panels/universal-access/cc-ua-panel.c | 118 +++++++++++++++++++++ + panels/universal-access/left_ptr_24px.png | Bin 0 -> 762 bytes + panels/universal-access/left_ptr_32px.png | Bin 0 -> 1081 bytes + panels/universal-access/left_ptr_48px.png | Bin 0 -> 1766 bytes + panels/universal-access/left_ptr_64px.png | Bin 0 -> 2447 bytes + panels/universal-access/left_ptr_96px.png | Bin 0 -> 3995 bytes + panels/universal-access/uap.ui | 111 +++++++++++++++++++ + .../universal-access.gresource.xml | 5 + + 8 files changed, 234 insertions(+) + create mode 100644 panels/universal-access/left_ptr_24px.png + create mode 100644 panels/universal-access/left_ptr_32px.png + create mode 100644 panels/universal-access/left_ptr_48px.png + create mode 100644 panels/universal-access/left_ptr_64px.png + create mode 100644 panels/universal-access/left_ptr_96px.png + +diff --git a/panels/universal-access/cc-ua-panel.c b/panels/universal-access/cc-ua-panel.c +index 88e55e66e..1985f7718 100644 +--- a/panels/universal-access/cc-ua-panel.c ++++ b/panels/universal-access/cc-ua-panel.c +@@ -50,6 +50,7 @@ + #define KEY_ICON_THEME "icon-theme" + #define KEY_CURSOR_BLINKING "cursor-blink" + #define KEY_CURSOR_BLINKING_TIME "cursor-blink-time" ++#define KEY_MOUSE_CURSOR_SIZE "cursor-size" + + /* application settings */ + #define APPLICATION_SETTINGS "org.gnome.desktop.a11y.applications" +@@ -178,6 +179,67 @@ zoom_options_launch (CcUaPanel *self) + GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (self)))); + } + ++/* cursor size dialog */ ++static void ++cursor_size_toggled (GtkWidget *button, ++ CcUaPanel *self) ++{ ++ CcUaPanelPrivate *priv = self->priv; ++ guint cursor_size; ++ ++ if (!gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (button))) ++ return; ++ ++ cursor_size = GPOINTER_TO_UINT (g_object_get_data (G_OBJECT (button), "cursor-size")); ++ g_settings_set_int (priv->interface_settings, KEY_MOUSE_CURSOR_SIZE, cursor_size); ++ g_debug ("Setting cursor size to %d", cursor_size); ++} ++ ++static void ++cursor_size_setup (CcUaPanel *self) ++{ ++ guint cursor_sizes[] = { 24, 32, 48, 64, 96 }; ++ guint current_cursor_size, i; ++ CcUaPanelPrivate *priv = self->priv; ++ GtkWidget *grid; ++ GtkSizeGroup *size_group; ++ GtkWidget *last_radio_button = NULL; ++ ++ grid = WID ("cursor_size_grid"); ++ gtk_style_context_add_class (gtk_widget_get_style_context (grid), "linked"); ++ ++ current_cursor_size = g_settings_get_int (priv->interface_settings, ++ KEY_MOUSE_CURSOR_SIZE); ++ size_group = gtk_size_group_new (GTK_SIZE_GROUP_BOTH); ++ ++ for (i = 0; i < G_N_ELEMENTS(cursor_sizes); i++) ++ { ++ GtkWidget *image, *button; ++ char *cursor_image_name; ++ ++ cursor_image_name = g_strdup_printf ("/org/gnome/control-center/universal-access/left_ptr_%dpx.png", cursor_sizes[i]); ++ image = gtk_image_new_from_resource (cursor_image_name); ++ g_free (cursor_image_name); ++ ++ button = gtk_radio_button_new_from_widget (GTK_RADIO_BUTTON (last_radio_button)); ++ last_radio_button = button; ++ gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (button), FALSE); ++ g_object_set_data (G_OBJECT (button), "cursor-size", GUINT_TO_POINTER (cursor_sizes[i])); ++ ++ gtk_container_add (GTK_CONTAINER (button), image); ++ gtk_grid_attach (GTK_GRID (grid), button, i, 0, 1, 1); ++ gtk_size_group_add_widget (size_group, button); ++ ++ g_signal_connect (button, "toggled", ++ G_CALLBACK (cursor_size_toggled), self); ++ ++ if (current_cursor_size == cursor_sizes[i]) ++ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), TRUE); ++ } ++ ++ gtk_widget_show_all (grid); ++} ++ + /* seeing section */ + + static gboolean +@@ -271,6 +333,45 @@ on_off_label_mapping_get (GValue *value, + return TRUE; + } + ++static gboolean ++cursor_size_label_mapping_get (GValue *value, ++ GVariant *variant, ++ gpointer user_data) ++{ ++ char *label; ++ int cursor_size; ++ ++ cursor_size = g_variant_get_int32 (variant); ++ ++ switch (cursor_size) ++ { ++ case 24: ++ /* translators: the labels will read: ++ * Cursor Size: Default */ ++ label = g_strdup (C_("cursor size", "Default")); ++ break; ++ case 32: ++ label = g_strdup (C_("cursor size", "Medium")); ++ break; ++ case 48: ++ label = g_strdup (C_("cursor size", "Large")); ++ break; ++ case 64: ++ label = g_strdup (C_("cursor size", "Larger")); ++ break; ++ case 96: ++ label = g_strdup (C_("cursor size", "Largest")); ++ break; ++ default: ++ label = g_strdup_printf (_("%d pixels"), g_variant_get_int32 (variant)); ++ break; ++ } ++ ++ g_value_take_string (value, label); ++ ++ return TRUE; ++} ++ + static void + add_separators (GtkListBox *list) + { +@@ -434,6 +535,23 @@ cc_ua_panel_init_seeing (CcUaPanel *self) + priv->interface_settings, + NULL); + ++ /* cursor size */ ++ ++ cursor_size_setup (self); ++ ++ g_settings_bind_with_mapping (priv->interface_settings, KEY_MOUSE_CURSOR_SIZE, ++ WID ("value_cursor_size"), ++ "label", G_SETTINGS_BIND_GET, ++ cursor_size_label_mapping_get, ++ NULL, NULL, NULL); ++ ++ dialog = WID ("cursor_size_dialog"); ++ priv->toplevels = g_slist_prepend (priv->toplevels, dialog); ++ ++ g_object_set_data (G_OBJECT (WID ("row_cursor_size")), "dialog", dialog); ++ g_signal_connect (dialog, "delete-event", ++ G_CALLBACK (gtk_widget_hide_on_delete), NULL); ++ + /* zoom */ + + g_settings_bind_with_mapping (priv->application_settings, "screen-magnifier-enabled", +diff --git a/panels/universal-access/left_ptr_24px.png b/panels/universal-access/left_ptr_24px.png +new file mode 100644 +index 0000000000000000000000000000000000000000..46f77601dea43e8a9a0739a145633b2218230f0e +GIT binary patch +literal 762 +zcmVVa0*6UN +zK~y-)m6I_@TTv8-KTT5`W71$_B`Q%w;-D_#P>~K!wNh{>3Y|(7B`BR*`#RbwL(EW@ +z2En1yDIgTZfI~rW5W%IOQ>%g^LX>ABrs|9F?-C^{wR)C&hx>o$Kj+*7U^h)O3b=tn +z?ifxUCq+}u~-@m&BeNos6t)YjIPH8V341-!QfxFpH#cB`eO +zMcdok*6i%;XW-Fo04_;#I294zX{ +zUe(mpsHv$*t*xyx3`40@>LeTvzsUz&YeXiK!LqDN=hD&=;c)o=z`($lP$<*|6rTew +zWd`JMIOOyBw7$N6rYn(7rw<~LNC#lQCa$io*5KfvJRXk>!_e~b@)i&TUIJafbD#-$ +za7kQSTdU2@&CLG({%K`prTl)s5{X2nudnYNP?hVrJ7>G_qUJy#z{0}9>GbsUkCl~` +zpTS@-dw6)r#KeTHzrX)Aa1TfW2f!cT>>~5d&Q4}@bo4vWIXpc4!Zb~*qM}0e_4P_7 +zlbP=B?pJ{G+MKi5Y&H^!d;^~4Hp;cSx;j5HGLrRry^6=<*4WtC1W}&bOhwdjU`cl;nVEz{-E~7sl3M3zH_@{r~^~07*qoM6N<$g72Pdm;e9( + +literal 0 +HcmV?d00001 + +diff --git a/panels/universal-access/left_ptr_32px.png b/panels/universal-access/left_ptr_32px.png +new file mode 100644 +index 0000000000000000000000000000000000000000..5d9ba96be4a15321c24a371038e7bbc3b0002a1b +GIT binary patch +literal 1081 +zcmV-91jhS`P)>|vIE)3aBCCE7t#9avL!gUkkF&v^B3q#m(LhCT!{oeQK=G~ZXo;;_1@Lav` +z`+1(@9#@js4?>U{$y8tQy$etO~>-8!kqSMpUgQljYcm5MtU0tmv +zA`(TB5{blt#bSB;nZZ0ZF)=}BXJZ!pz*4NiZHk*yk&(DS9H)z;SD +z3x~rqDwV1h!0nrWB^YB2J3BjYxm+@n$@D=a68TP{P#6I`_itbUBccMv7{lh~CI$xw +zxyHuEmPjP>4S<&bD4zsgTHIocF^2W^bqoy+ab~mmqphv2Q2;eh0xx03Q_aWP+8TU5 +zA7`~%?Hd~#UH}FFigIAdwqL~`%&COwPaS`q9 +z?GF|f7Cr}{%Y*WAm?(;ck2#J*TU#3x3I&u(B@_w;j*gCyNF=!K?(Q#VXJ@kxhvRzy +zj|%N%x7!IoA>?v7RaRD#!C;_BBtqAXTrQUj1Oi_GsFGiI0G&=J=I7_Z7{m1RG^|!D +zy1Kf4SYBTK4ZvRj1S#=j0Dk~bmaWX|^%4=$z`y{h)oQA#siFP-eIXi+J_OJXpaH-u +z0A2=Qly>&{5^QvIlmtPb!^6WrPfkt*tyW7qosL{C7cs`fo}M13)LIn)Zb=~nz+J+o +zrlyE7CXS7b1uYiKSJ`Zqx!rE6s;VNR(Ma)lT-e^;-U4v9Y~$y#-Q8Wv<#OW4$jDCs +zJ^}FV-rnBN$z+mgG#b+D_2lt*=;GpnwYIi?EFB41S&Zj-VR(4>M*#N$ybhq+R2omjK||lr_+(y +zY^GEyCHVdR6##FR+#q_rUbVWq`Wb-t0ho&JeGWi{*Xy-rGMUGzREp(tIWd_`KB}*; +ze*oaMtG&rdrRFR78^DEhMDov7ZnyixmX?{BA0PiEolfrq_#HqRfLM%iQYFP5 +zP&{r)$+XhHAS)pm0Ic|Z?uI`xSy6~mlqCKKwtYsZ`atu@00000NkvXXu0mjfq1E$r + +literal 0 +HcmV?d00001 + +diff --git a/panels/universal-access/left_ptr_48px.png b/panels/universal-access/left_ptr_48px.png +new file mode 100644 +index 0000000000000000000000000000000000000000..51b1dc2f726b2adc3fff54246b5b799a91db35b9 +GIT binary patch +literal 1766 +zcmV|1%~tnU`c<6t~+7CX>v}Gtd0@%Y7c6 +zn90Po*}ZTXEG!)PUlDZ!XY9`6Yj~`zK@FM_)0E`-AR(x0~ +z#=U#@x&XWb!2Nwf3#b{x!^3|TP}lbbwJESvDn*hU7#R4Y25MMos0!S_e?MheCdu@T +z8#jIrpbCIfKy@n)bT}M5a^#4zOkcl#{dWTDSV^b~wApMdEG*=S6DLTLvMkG2u3Y&X +zz&ZiVT?wcPv|6onI-T_Sd~9oLQ_eNj(a~{Sq>OzfpeoR0GSP0gbM@-g^!xp6Z*M0_ +zN|Ka{L?TB4RIUV61saV;=I7_r<#Ms8sE8#cCG70%BuOTd$;7#H=UM?&0I>Z(P!*Vy +zlS8xFOozikkH^D6Ai#=>3U+sQlO*Hu`25L}Cz}D311JEH^EOZwsMqV6mzT$af&#kT +zZWb38v$V97RaI5&>+4gXbH|S#{|$h$w}q-e0L;zJrNv^Q)9Iww>t!$)WJN^`QH_~0I1jNX)>AA6!H80EGsMHx^?SVQ&Yo{kr9$)EEbz? +zX=(WcK*@K7E&u|c!C;`(YNgBNqR;2!nl)=!Sy{>T>({fcu8yOlqa?{_H2QMSo;@D{ +zSo5aPj2bD+GScZZWLZ|HvW~~&2#3RX@ZbTgR;#nEt?i43hK7wo7>oc`WrJn}YGLVg +zdeJ%-i{aqGgP53@fX!xG-PzgMzH{f!YN5MXp&5ZBvwA7ZGG=CG(AwIHM~@!CZnt|c +zUcC6_)~#FL(RixQ1YNT1Eazo9oyPR^G!7j)geOm)!0mPiu3fv5@s%+3@f!Vy2 +zWf@abQwWE{c=qfW+-`SCcX#)f)z#G%LIM{-vliAj@luv$OioTB91df0auQyzx3aIV +z?~AgsvQiCHr$Dm;m+~sp`uX$cIC}IbUcP(@zu&)pXlUpU!CJ@^);Jbr^gKaLC%P%BQE#Qk1UpsX=9gRk#s;}kc<(!(D;+u|%iHTve +z*}PF{KbQ58Kg(xo>R>a}av{`~&^`=^XXqYZ#TCp`Qg0O)j?1!DK^-RSM@ +zh0$n)!C-*LQ0OxN?~BS&DEe8am=1Ai%tG8V1J9m4tMoH+EEY?UWPN?T+Jg9eKKAtV +zkR(S&Muq`w2H+PP=Zejhxk@Vl3xGPEPVLx|$)p?(hp%^ab$uXyWLKY$HUE= +zH&d2nCK8EcU0q$H2wj0jytQ+2J=E!RJb(VY7WNf@PXmEK)7;!#lq5r;keVVzMMb=I +z>lR6}zrVi^z|R19mTQ_-;DrkpNRo*}BGuB;as|L|0qg+q{^;oFC6XK*9Hhl!p~K;z +z*Xw0NLxa+G#LCOdKNhW|HJggrw22yz$ED`x=F8&deIOn+foV{p8zxg_=PwVm$=TJ@$vDCBzg1Z%>`Zh +zzJ2>hlH=p!;{dh+2m;7ksvZ&mlF8)!fddC39UUFF0sIrdzeS=(MMBS>K7G1flBD@i +zD1@4t8dZTLNdf@m=H}*!Te@Tc27r7?l4gz_JJt%|*8sMNcZ5UpHq?m_6+V3Uu!|(e +z#>Uv#*vKfj^M0C}!zaMns&z9}mw^vV3 +zPd|QLq=$xv?(6mXW?^t(sgNp`TZBbv0CNE50i=|0Yrf3^P_S#)uIi?yroB$5bM1>4 +zFXnrCdj1}XME)l9@?YXN3P65s57lx-4Jbg1KGYM8zP!pBK@I3s}Z|-sZWbKv!urlENEVOe|&ew@NkcY$HW^Hvj+t07*qo +IM6N<$g64`j8 +zK~z}7&6$62RMi#7KfBpLl4Y}OLVo`u8ces8Snv-NP^f5sSddc3U=1`Rng*;*15$s~ +zI56O#)Qnq0bO0v;!%!yE5Sz>dC&G+tW+G^HqB6rMqs0zl8WJ~~ADe78yYKW5?`~g0 +zvSj&X@64Iqef!>hpZ7iIo_p_k0EozH{*T&p5gGaX^UogwW&tySIKTuL0mF?3iW3nD +z1Omg&&CTn8*+4R22BN(yu5rp@WUGo6#{B%YLbSAh7i=? +z;Gk>$`t=V3b`|JxHv%dI)Y#Z4$;rvm+}s?38Wf?U9+%TZC+3d%VCfF4NGH2V7bShsE+XU?1fASERw +zueG)H6}#P@eLd#AunGmu?RHaAQo@&CehENoYHI%5Z@=xx$;ru5P}eM*PYFoVG`hRH +zDJd!8>#x5CATu*_URzt+%bA&(nL4Ge8tSqx(_3d}C&k6Zbar+Eke!|VW2e)(%Vx8s +zDX7@1g^CDB(=;wzxIkH189hBc0Ni}@%?sPx+jqpo#H6Y~kG-07a0yU2w*~FoxpS14 +zm*aN30kGTc%Rc<@!|f)MDH*Wp+!ryFaiW8l1JX2&vuDq;VZ#Rc`}+ZyJ9qB#_uqfN +zN=+|To%x86>jI>pwlTk-q-0NiuWJ;lw<&5!EbHzg=zINC^|+S=OKzI{7^Kmfq7a^=bm +zZ@&3vaU@EG1&RbFXile->gsAl1i*0r{r5k9`0(L1I;iQo$=DDP(3L{H_10TB91cVT +zqtR$wvu4efef##U1`+{_Qffk|>jI={8Z9j??A^N;fT*absM6BXKkwPIXQfhVQYhn8 +za>JEEH8wVK=+L1clRoI?6c3_2_%e%GEQ}lxf&pVy1F`A +zT3WsUfcAfjC0Y=l+0>#J2^WuvyVl)~@%`98CEb=-~T-;2D!|}4;@87t8|Nf7G +zfbmL!^!D0ouU+vP+H5w@s;Q}|DJ?C%35YXA+QE_~OE`J*z$l<8x1c^Xz^BgX1-=DL5h?WKlTUK|_;K>`@+MWuXfztOZQHg0 +z7yx>J3&6jDf9dR;vhzR};0A^O|CE8YZr#eRUAu^iisGrKp1K66wY8NmzW4%w#ful) +z@3`ZR7@$wx@VtULr-S-R9UBkzzpZqAeZ2&uU2i*g?i^Fl8XX-KyWK8kvsq@&oGD33 +zNs^Y9CR?^_37vD|#0e+x0I(3aNiA&?)b2!YRyFCG)e18_&`U496uOC~X`%0Lyzz#_ +z#>Pr~e7qzkCQ3?5isa_zN@r(hunIRaZ{ED$0gHef-I^$R0y8O#niR-jFo?t9(AOSE +zAA9Vv#;&feZ-dpg{QP{GF=K|qUR9j1skzIjo4Y2m +zOMwgqgY4eDTVHb=EiW%W0z6k!Q}g%W@x6QZN?cr=Sglq`OiYy2)KtmO&li`=6)X!5 +zW@l#?0k;8ZYI}6q!o(OLgTWxLzWS;j##dHWb_n8GyKr%xYL6C@QC6_;f1;1(M&n9XLhE)RtrX$c}C!^6Yfg@uJr0L8$sfjd?HNE%nR +zGpfauZQ;U&1zxYWS45=0zhAPlvczh&N^)|tR8>_;AP^7{k*=<;9^g?Ghru|Sv{*XR +z=ks0IxN+lyz|Vo7DQV{@e~&N!8q^cU0qGxo^wBFpzg)a{QQmpy9qI1w4uyc<@7FeM +z+O!||t$N5D<@!m1EVZ?@3)MS~1!^Sas-@**wP-_7CA-}|*X?$nl?j^H>-AMvSN{We +z9Qc(Q`l;cDeiUFlcI;R`5CDc%tPH5{qv|-iwG8@>dU|@aQ>RX~<>uxZ&1Q3=&*$^I +zTrT&!@4owSSy@?qU0q!Va8bo#kLuf}>vv2uCsbNb$~&qbkw*UBMKle!J2x)_Fu0HG1 + +literal 0 +HcmV?d00001 + +diff --git a/panels/universal-access/left_ptr_96px.png b/panels/universal-access/left_ptr_96px.png +new file mode 100644 +index 0000000000000000000000000000000000000000..5897a7c3d03a87d018184fbcc2a23ade15ad6a02 +GIT binary patch +literal 3995 +zcmX9>2{=^W`@f83tV6O>gNp1$c4N-W +zk$r9K{ut)uCPzum4B>TvK +z9fggqraEx>@5MFczXM08JhYy?000`Me~ko4O=klKDZRAyH7MsHlvL7?Uc0qz0DuW- +ztE(8l`n8$iYiK-{Noc8&PR&c>R#)NO&DM%h`#9HTyA&F7C97OqEhguoSn$1XG;AMw +zg6Q{${Z3+N67+f*(ixaFwIj6k;3l^;pr`^irkGtLIl)%-cag#s+jRQG6eStf{-)Py +zaH;7a;v?^)MLP3NcSv;QUe19tHmEKmMt%Ci|%B`a9C@&m98dptbqH(kDY0#KeM +zMb(H0qY)V$V`F2nq;L@tk?r-vlL-JrLI&)R%~9j2f~bQ?0nKRPY6c_{>C^TDsdRoo +zALId4lJo#`uH+bS!pFx4$(vC0s5Fywhb*WLz}P_-1>`dN(zLWpOiU0#0>J(axPU!W +z>WZ|q^mQAJuI}zx(z5sUH&`(D!%*@-vmM!O5s~wI(Ekhr89cqc5Bd0_>k0~1TLj2v +zxP3bro>StjzU$DRT5RhqChQ8;CVFD^A^hUotQKO{@CJ%YXkKCdxBU5Gz +zouk5QgrRH!OG`_;&0k-0TUx9DYY&fsZH()0U(ohUWKH#zMlT+o6=IT6e(AZ +zlsmQ*on2iOK?7i%;!{&kkN^wF3mLwnqoa-b6Ee#HgTZJS7+}dmGBY!i4%f#nN${#b +zOE$xlJ=B(LZev4lYHEtCHMs_pBJnJtu~C5rIz2tDFV?uzMnTagNv$HJR*M7-3=F=R +z;wfxrs2zG!HK?hnh2dUaUc>x1ZYUsmdOk56Ty4wE8Za7PR}FbPZzGjvEtMvMm~8Tw +zoUKOHkaC}i>FUx^;SLN8Y`HBYB!88ILoT*FM4Qf9wH97z3xPn!>%E0U +zEgJ<22(z9@bMo +zbKjtRfE;fX;ewJ9(Z+*8-J|*N>tu(aAtA!e9`kKk>FMc>$@mS)6u7{~>(*0Gm5tre +zQPbSq+_}G-lbDmXwzedzdapmTCW49iP>iwOTap+l?nJrKsi~OZVdLSE5vny>7!3XS +z^XE0IKSA7SAES6YV2VMfvE&PjbaZrD+S)2=YQea^h=_>UEG0A|R&_w7cFnC#)q^eQ +zXSHA9;^E=pc$E{AnVA{cp{Pau!SUYS9-2kvEr-N{9bg+n9&miTl2vZs%>srUx`vI7 +zoi;QxtB-#Q8@rn{Cmhc$%Y|u+XT4rTa|Io^+{K)m +zpZ^Ud4uyZQY?9j?E__&&l03)Dn9NPxnhktU#p=BITvGDAFGJp1l4JW^CRDZDZMq)a +z3Fc=Fsmi<~lv?u?Uk(Dpf$Ws|Y+EMleVRW>)XBRmD=RC(&%eU%KsFNUsY$;nBF}{n +z{)bIaNT}R>7LnZRz=9FHdGqG}Tx&2|$eN127klgK|KRs$$cJxiJZDf1E6sUOC^=c} +zdb&T;91t@{P&%Yg9tQm8IXmsY`N9i!$!sy?fDUOTcRI`s7-ZR$B1r +zL4j&5%{(kCE9+vf^z2o0-JGAb8#7I(BUM#ZEsRev@A%-LCkuM85afr4__ZE@b +zB-5f1d+^E2%~jZPgfd+TDwcCPE5~3+8;LXim~~ls`Sr@mN?7sJ8c{voTLPQp)~Y0B +zCUSx%d;9yIzkAqQ?^#$_G|l*}7jJ+YtnNw@>H}2<6$DjPj{1TF=EloykCxsc+Zh6| +z*A)E(K=mSP(+(_5WPwovPxEp%?lfPdr*lQ$)AVaX;L6IxT_!5*CD@^Te}lxcffz{z +zYnq}t9xg<{xJ_?-e*Q|&!otEBn6|;F*QUL{?}{3Oi=Q_%G;oe56&uD}TqNq;e6MrU +zSa4*=rMf3Yf)e~QqREQm^44_2z3vZUvoFt24&?xDzz<*pXo1zNJr+1KO}j`#bu|m< +zy7-@~l2VH-_(cf{)3VTf)Q%wuTW818(o)RiA%v9lniBfrtQCiY!;F*zUjb*SN-bW0 +zu7Eq?J5w8z75e-TVP$3YVV6wYn&`zBg75E#>Feto3S3PP|L?^MMs{}D0BolnuWpjC +ztoQChhr?PWCBWu%2Li8BKKKBLld$CmHp7%zgADv)I7`2OPA&kdT_?l(5vR0VgeS4& +zAggC?c{*sN8Q8I#O!tKKQIjyW#0dMB!=H_2SMMViRF){TUF4q`o{Jk4hHTsdt +z+r;759%ahGkk%Um3!3p7_blaOK-_&s;fs0QptGinhX(^8?mBBa)Aj4u+1c0%9Nv%V +zpZiiSCX5fN>I#L98npBWFOuld$NT9dIC&>54`i#E`uLn|HEc(i7BMTh^dRinIXHC8 +zo<1dCNk_b{hvMY`Pk_K!`|=FMMg&Eo0gdSnm4BDsH(Q@FcBAGl}I6w&YwA&&-(iMGMR-;xgcef_^i)GMWy8gG4ooKHTgyo +zrIC@59SWsvxZ+aU^p_%N*4B}js7Z2Uc!}VtmMin8H55$z(ce#q7HbwbY6P=b`u6QV +zoBs+csjPA^r)negSy{y_W0I5Eipp^%CG_AakMSETv1mx37>dv2Ni(zQB^`FYcRUvi +z6E+J3mH3&SUJoOX0!Tr|p>x|L3h2|no822eLV|)IKVR#2HJ?BK(&1*Fl9ED6as%bq +z63LKC73s5(`ilkk)6wJPz)68P^#apB`RkY5qhd4f&lMGW&rq@^8D7KVb3ryYVDC2~FIZuKw}k$0ga0J1_`*p)9+C +zcXx7$1sEm<26l=aS1dX=-H%Y|$;pnM#j%{yTcl;AYMc>Dm~2IzjQP3PZ<{tGTm&8- +z9+jOZwzjrU0|L%E!336zyyna)!VSpvr^~(wQIr-Hr3cw1-ZO6UULQ62_!#H#KJNB5 +z=CPBbqhn-rw7lo>-m)Br$0S=vjReG65%3!v9Bg)Wayk}zs_Ex<67hmU6U)U2b5baO +zK2ZS(wT@fs4sX)Wf#-^Td3pKqqf$%Ps*h))auFj!jDn+Sd5L0 +z=f1~s5(5iVvtJ!Af5<7E{Aq(ZqlATKBwAhP!npxk{?^!oQfpAvR(?%R +zmX^7>60qESTZ%Vk&Th-d$V3RvM0%=p6(*BEp*sOoQN|Ba0c3&<# +z9VOt~N)}r5vD4{BWxvf#qpzv0iobuu+%;oC<}8vzc3@#UtL|jJlZ8( +zPh(rIiNyslNr?6%nK?lGi0#$Y+CH;Zu)ery@z$*Pdl(%j8F9B;tfgvUrXJb6jBJAU +zcutj(OWwO@5sSsn_^*!^-@4Vm@)RB3o-AMbYS(-d0KV0|SRpelbLiy=2@j_+AJ~|v +zGU_qx<|CkP!=UUC^e&z?Pd;qQOiQBY7|F^j%zN=R*p7i@S}ed0Ei +z=D++D5nrpxd^lOc5&ONeuC7iie<*a%%F*3jQ(K#gmI9I)u&1r?cifhRc(7SBd$Ijd +zBN}Vt*cG1@_&kqjjeFZWYQCC#1-x(cgSELBi>NubZg^3 +zaYJKq1D?k}w=msm1BUj;5NL5>p{ydu@}ozO#=^qFE<&+)&LNw0Vjpc)5!h=?9HlgS +z(JABfaVedSM-#W+{n%s>BK}Y_9Fm&`UL_?ZUD$eg9YmWIj|MBYI!dOx%`_fAR8eV_ +zE^R(pvtq9y#7XS7wuH~Xl-BKih!U2-kpX?$8l#c3><_X@tJ8TdCYs@^W%NPemZijr +zDyN~3Z{NPvg!1&&xJ|DiUT%yRfB$|TQ9yjC;d4hDP@3-(mF2~vfB|Y*`n~a +z)F+6<<o;ovqdht=&<$02|wa{SC6Vyf6o< +p4&;Tw2jPkzywU$mckcU3O4qYJ*qKyxICzZ)v^5OWOH@&q{{x(hmxBNR + +literal 0 +HcmV?d00001 + +diff --git a/panels/universal-access/uap.ui b/panels/universal-access/uap.ui +index 636b7740d..ab0c0c4a7 100644 +--- a/panels/universal-access/uap.ui ++++ b/panels/universal-access/uap.ui +@@ -224,6 +224,53 @@ + + + ++ ++ True ++ True ++ ++ ++ True ++ False ++ ++ ++ True ++ False ++ 20 ++ 20 ++ 6 ++ 6 ++ C_ursor Size ++ True ++ 0 ++ ++ ++ True ++ True ++ 0 ++ ++ ++ ++ ++ True ++ False ++ 20 ++ 20 ++ 6 ++ 6 ++ 24 pixels ++ 1 ++ ++ ++ False ++ True ++ 1 ++ ++ ++ ++ ++ ++ ++ + + True + True +@@ -952,6 +999,7 @@ + + + ++ + + + +@@ -962,6 +1010,69 @@ + + + ++ ++ False ++ 5 ++ Cursor Size ++ False ++ True ++ dialog ++ ++ ++ False ++ vertical ++ 2 ++ ++ ++ False ++ ++ ++ False ++ False ++ 0 ++ ++ ++ ++ ++ True ++ False ++ 12 ++ 6 ++ 6 ++ 6 ++ Cursor size can be combined with zoom to make it easier to see the cursor. ++ True ++ 45 ++ 0 ++ ++ ++ False ++ True ++ 0 ++ ++ ++ ++ ++ True ++ False ++ ++ ++ False ++ True ++ 2 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ False ++ ++ ++ + + False + 5 +diff --git a/panels/universal-access/universal-access.gresource.xml b/panels/universal-access/universal-access.gresource.xml +index bc07b356f..d7f2e337a 100644 +--- a/panels/universal-access/universal-access.gresource.xml ++++ b/panels/universal-access/universal-access.gresource.xml +@@ -3,5 +3,10 @@ + + uap.ui + zoom-options.ui ++ left_ptr_24px.png ++ left_ptr_32px.png ++ left_ptr_48px.png ++ left_ptr_64px.png ++ left_ptr_96px.png + + +-- +2.12.0 + + +From 4196874fcd6ed1ceac1923065d9bda2dce67fbe2 Mon Sep 17 00:00:00 2001 +From: Bastien Nocera +Date: Thu, 9 Mar 2017 12:44:25 +0100 +Subject: [PATCH 4/4] universal-access: Handle "pixels" plural correctly + +Using g_dngettext() as required. + +https://bugzilla.gnome.org/show_bug.cgi?id=779798 +--- + panels/universal-access/cc-ua-panel.c | 6 +++++- + 1 file changed, 5 insertions(+), 1 deletion(-) + +diff --git a/panels/universal-access/cc-ua-panel.c b/panels/universal-access/cc-ua-panel.c +index 1985f7718..f0928555e 100644 +--- a/panels/universal-access/cc-ua-panel.c ++++ b/panels/universal-access/cc-ua-panel.c +@@ -363,7 +363,11 @@ cursor_size_label_mapping_get (GValue *value, + label = g_strdup (C_("cursor size", "Largest")); + break; + default: +- label = g_strdup_printf (_("%d pixels"), g_variant_get_int32 (variant)); ++ label = g_strdup_printf (g_dngettext (GETTEXT_PACKAGE, ++ "%d pixel", ++ "%d pixels", ++ cursor_size), ++ cursor_size); + break; + } + +-- +2.12.0 + diff --git a/SOURCES/distro-logo.patch b/SOURCES/distro-logo.patch index 25e41a5..65a2cb4 100644 --- a/SOURCES/distro-logo.patch +++ b/SOURCES/distro-logo.patch @@ -8,125 +8,89 @@ information in the small print. https://bugzilla.gnome.org/show_bug.cgi?id=695691 --- - panels/info/cc-info-panel.c | 90 +++++++++++++++++++++++++++++++++------------ - panels/info/info.ui | 77 +++++++++++++++++++++++++++----------- - 2 files changed, 121 insertions(+), 46 deletions(-) + panels/info/cc-info-panel.c | 55 +++++++++++++++++--------------- + panels/info/info.ui | 77 ++++++++++++++++++++++++++++++++------------- + 2 files changed, 84 insertions(+), 48 deletions(-) diff --git a/panels/info/cc-info-panel.c b/panels/info/cc-info-panel.c -index 9fba215..bc52c61 100644 +index 79729dd..bc3789f 100644 --- a/panels/info/cc-info-panel.c +++ b/panels/info/cc-info-panel.c -@@ -432,48 +432,85 @@ cc_info_panel_class_init (CcInfoPanelClass *klass) - } - - static char * -+get_item (const char *buffer, const char *name) -+{ -+ char *label, *start, *end, *result; -+ char end_char; -+ -+ result = NULL; -+ start = NULL; -+ end = NULL; -+ label = g_strconcat (name, "=", NULL); -+ if ((start = strstr (buffer, label)) != NULL) -+ { -+ start += strlen (label); -+ end_char = '\n'; -+ if (*start == '"') -+ { -+ start++; -+ end_char = '"'; -+ } -+ -+ end = strchr (start, end_char); -+ } -+ -+ if (start != NULL && end != NULL) -+ { -+ result = g_strndup (start, end - start); -+ } -+ -+ g_free (label); -+ -+ return result; -+} -+ -+static char * +@@ -455,42 +455,23 @@ static char * get_os_type (void) { + GHashTable *os_info; +- gchar *name, *result, *build_id; - int bits; - char *buffer; - char *name; - char *result; -+ char *version; ++ gchar *name, *result, *version; -+ result = NULL; - name = NULL; -- -+ version = NULL; - if (g_file_get_contents ("/etc/os-release", &buffer, NULL, NULL)) - { -- char *start, *end; -+ name = get_item (buffer, "NAME"); -+ version = get_item (buffer, "VERSION_ID"); + os_info = get_os_info (); -- start = end = NULL; -- if ((start = strstr (buffer, "PRETTY_NAME=\"")) != NULL) -- { -- start += strlen ("PRETTY_NAME=\""); -- end = strchr (start, '"'); -- } -- -- if (start != NULL && end != NULL) -- { -- name = g_strndup (start, end - start); -- } -+ g_free (buffer); -+ } + if (!os_info) + return NULL; -- g_free (buffer); +- name = g_hash_table_lookup (os_info, "PRETTY_NAME"); +- build_id = g_hash_table_lookup (os_info, "BUILD_ID"); ++ name = g_hash_table_lookup (os_info, "NAME"); ++ version = g_hash_table_lookup (os_info, "VERSION_ID"); + +- if (GLIB_SIZEOF_VOID_P == 8) +- bits = 64; +- else +- bits = 32; +- +- if (build_id) + if (name && version) -+ { + { +- /* translators: This is the name of the OS, followed by the type +- * of architecture and the build id, for example: +- * "Fedora 18 (Spherical Cow) 64-bit (Build ID: xyz)" or +- * "Ubuntu (Oneric Ocelot) 32-bit (Build ID: jki)" */ +- if (name) +- result = g_strdup_printf (_("%s %d-bit (Build ID: %s)"), name, bits, build_id); +- else +- result = g_strdup_printf (_("%d-bit (Build ID: %s)"), bits, build_id); + result = g_strconcat (name, " ", version, NULL); -+ } + } +- else + else if (name) -+ { + { +- /* translators: This is the name of the OS, followed by the type +- * of architecture, for example: +- * "Fedora 18 (Spherical Cow) 64-bit" or "Ubuntu (Oneric Ocelot) 32-bit" */ +- if (name) +- result = g_strdup_printf (_("%s %d-bit"), name, bits); +- else +- result = g_strdup_printf (_("%d-bit"), bits); + result = g_strdup (name); } -+ g_free (name); -+ g_free (version); -+ -+ return result; -+} -+ + g_clear_pointer (&os_info, g_hash_table_destroy); +@@ -498,6 +479,23 @@ get_os_type (void) + return result; + } + +static char * +get_os_description (void) +{ + int bits; + gchar *result; + - if (GLIB_SIZEOF_VOID_P == 8) - bits = 64; - else - bits = 32; - -- /* translators: This is the name of the OS, followed by the type -- * of architecture, for example: -- * "Fedora 18 (Spherical Cow) 64-bit" or "Ubuntu (Oneric Ocelot) 32-bit" */ -- if (name) -- result = g_strdup_printf (_("%s %d-bit"), name, bits); -- else -- result = g_strdup_printf (_("%d-bit"), bits); -- -- g_free (name); ++ if (GLIB_SIZEOF_VOID_P == 8) ++ bits = 64; ++ else ++ bits = 32; ++ + /* translators: This is the the type of OS architecture, eg: "64-bit" or "32-bit" */ + result = g_strdup_printf (_("%d-bit"), bits); - - return result; - } -@@ -1499,6 +1536,11 @@ info_panel_setup_overview (CcInfoPanel *self) ++ ++ return result; ++} ++ + static void + query_done (GFile *file, + GAsyncResult *res, +@@ -1519,6 +1517,11 @@ info_panel_setup_overview (CcInfoPanel *self) gtk_label_set_text (GTK_LABEL (widget), text ? text : ""); g_free (text); @@ -315,5 +279,5 @@ index 1967fdf..0bdfc1a 100644 -- -2.0.1 +2.9.3 diff --git a/SOURCES/gnome-control-center-3.14.5-EL7.3_translations.patch b/SOURCES/gnome-control-center-3.14.5-EL7.3_translations.patch deleted file mode 100644 index c19472d..0000000 --- a/SOURCES/gnome-control-center-3.14.5-EL7.3_translations.patch +++ /dev/null @@ -1,28811 +0,0 @@ -diff -urN gnome-control-center-3.14.5/po/de.po gnome-control-center-3.14.5_localized/po/de.po ---- gnome-control-center-3.14.5/po/de.po 2015-04-30 17:35:48.000000000 +0530 -+++ gnome-control-center-3.14.5_localized/po/de.po 2016-03-12 12:09:00.133000000 +0530 -@@ -1,6 +1,6 @@ - # German gnome-control-center translation - # Copyright (C) 1998-2004 Free Software Foundation, Inc. --# -+# - # Carsten Schaar , 1998. - # Karsten Weiss , 1999. - # Matthias Warkus , 1999. -@@ -18,23 +18,25 @@ - # Tobias Endrigkeit , 2012, 2013. - # Christian Kirbach , 2009-2013, 2013. - # Benjamin Steinwender , 2013-2014. --# -+# lstemmle , 2016. #zanata -+# pnemade , 2016. #zanata - msgid "" - msgstr "" --"Project-Id-Version: gnome-control-center master\n" -+"Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-03-21 00:26+0100\n" --"PO-Revision-Date: 2015-03-21 00:30+0100\n" --"Last-Translator: Christian Kirbach \n" --"Language-Team: Deutsch \n" --"Language: de\n" -+"POT-Creation-Date: 2016-02-10 09:57+0530\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"PO-Revision-Date: 2016-03-07 03:52+0000\n" -+"Last-Translator: lstemmle \n" -+"Language-Team: Deutsch \n" -+"Language: de\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Poedit 1.7.4\n" -+"X-Generator: Zanata 3.8.2\n" - --#: ../panels/background/background.ui.h:1 ../panels/background/gnome-background-panel.desktop.in.in.h:1 -+#: ../panels/background/background.ui.h:1 -+#: ../panels/background/gnome-background-panel.desktop.in.in.h:1 - msgid "Background" - msgstr "Hintergrund" - -@@ -104,7 +106,8 @@ - #. translators: "Home" is used in place of the Pictures - #. * directory in the string below when XDG_PICTURES_DIR is - #. * undefined --#: ../panels/background/cc-background-chooser-dialog.c:564 ../panels/search/cc-search-locations-dialog.c:274 -+#: ../panels/background/cc-background-chooser-dialog.c:564 -+#: ../panels/search/cc-search-locations-dialog.c:274 - msgid "Home" - msgstr "Persönlicher Ordner" - -@@ -113,25 +116,40 @@ - #: ../panels/background/cc-background-chooser-dialog.c:576 - #, c-format - msgid "You can add images to your %s folder and they will show up here" --msgstr "Wenn Sie Bilder in Ihrem %s-Ordner ablegen werden diese hier erscheinen" -+msgstr "" -+"Wenn Sie Bilder in Ihrem %s-Ordner ablegen werden diese hier erscheinen" - --#: ../panels/background/cc-background-chooser-dialog.c:583 ../panels/color/cc-color-panel.c:224 --#: ../panels/color/cc-color-panel.c:961 ../panels/color/color.ui.h:29 ../panels/common/language-chooser.ui.h:3 --#: ../panels/display/cc-display-panel.c:1537 ../panels/display/cc-display-panel.c:1987 --#: ../panels/keyboard/gnome-keyboard-panel.ui.h:2 ../panels/network/connection-editor/connection-editor.ui.h:1 --#: ../panels/network/connection-editor/vpn-helpers.c:245 ../panels/network/connection-editor/vpn-helpers.c:374 --#: ../panels/network/net-device-wifi.c:1247 ../panels/network/net-device-wifi.c:1440 --#: ../panels/network/network-wifi.ui.h:1 ../panels/printers/cc-printers-panel.c:1947 --#: ../panels/printers/new-printer-dialog.ui.h:2 ../panels/privacy/cc-privacy-panel.c:468 --#: ../panels/region/format-chooser.ui.h:3 ../panels/region/input-chooser.ui.h:2 --#: ../panels/search/cc-search-locations-dialog.c:681 ../panels/sharing/cc-sharing-panel.c:491 --#: ../panels/user-accounts/data/account-dialog.ui.h:17 ../panels/user-accounts/data/password-dialog.ui.h:2 --#: ../panels/user-accounts/um-fingerprint-dialog.c:264 ../panels/user-accounts/um-photo-dialog.c:95 --#: ../panels/user-accounts/um-photo-dialog.c:222 ../panels/user-accounts/um-user-panel.c:513 -+#: ../panels/background/cc-background-chooser-dialog.c:583 -+#: ../panels/color/cc-color-panel.c:224 ../panels/color/cc-color-panel.c:961 -+#: ../panels/color/color.ui.h:29 ../panels/common/language-chooser.ui.h:3 -+#: ../panels/display/cc-display-panel.c:1540 -+#: ../panels/display/cc-display-panel.c:1985 -+#: ../panels/keyboard/gnome-keyboard-panel.ui.h:2 -+#: ../panels/network/connection-editor/connection-editor.ui.h:1 -+#: ../panels/network/connection-editor/vpn-helpers.c:245 -+#: ../panels/network/connection-editor/vpn-helpers.c:374 -+#: ../panels/network/net-device-wifi.c:1247 -+#: ../panels/network/net-device-wifi.c:1440 -+#: ../panels/network/network-wifi.ui.h:1 -+#: ../panels/printers/cc-printers-panel.c:1949 -+#: ../panels/printers/new-printer-dialog.ui.h:2 -+#: ../panels/privacy/cc-privacy-panel.c:468 -+#: ../panels/region/format-chooser.ui.h:3 -+#: ../panels/region/input-chooser.ui.h:2 -+#: ../panels/search/cc-search-locations-dialog.c:681 -+#: ../panels/sharing/cc-sharing-panel.c:491 -+#: ../panels/user-accounts/data/account-dialog.ui.h:17 -+#: ../panels/user-accounts/data/password-dialog.ui.h:2 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:264 -+#: ../panels/user-accounts/um-photo-dialog.c:95 -+#: ../panels/user-accounts/um-photo-dialog.c:222 -+#: ../panels/user-accounts/um-user-panel.c:708 -+#: ../panels/user-accounts/um-user-panel.c:726 - msgid "_Cancel" - msgstr "Abbre_chen" - --#: ../panels/background/cc-background-chooser-dialog.c:584 ../panels/printers/ppd-selection-dialog.ui.h:3 -+#: ../panels/background/cc-background-chooser-dialog.c:584 -+#: ../panels/printers/ppd-selection-dialog.ui.h:3 - #: ../panels/user-accounts/um-photo-dialog.c:97 - msgid "Select" - msgstr "Auswählen" -@@ -144,8 +162,8 @@ - #. * Note that this is not an "x", but U+00D7 MULTIPLICATION SIGN - #: ../panels/background/cc-background-item.c:207 - #, c-format --msgid "%d ے %d" --msgstr "%d ے %d" -+msgid "%d × %d" -+msgstr "%d × %d" - - #: ../panels/background/cc-background-item.c:333 - msgid "No Desktop Background" -@@ -177,7 +195,8 @@ - msgstr "Bluetooth ist durch Hardware-Schalter deaktiviert" - - #. Translators: The found device is a printer connected via Bluetooth --#: ../panels/bluetooth/gnome-bluetooth-panel.desktop.in.in.h:1 ../panels/printers/pp-new-printer-dialog.c:1688 -+#: ../panels/bluetooth/gnome-bluetooth-panel.desktop.in.in.h:1 -+#: ../panels/printers/pp-new-printer-dialog.c:1688 - msgid "Bluetooth" - msgstr "Bluetooth" - -@@ -188,21 +207,29 @@ - #. TRANSLATORS: The user has to attach the sensor to the screen - #: ../panels/color/cc-color-calibrate.c:361 - msgid "Place your calibration device over the square and press 'Start'" --msgstr "Platzieren Sie Ihr Kalibrierungsgerät über dem Quadrat und wählen Sie »Start«" -+msgstr "" -+"Platzieren Sie Ihr Kalibrierungsgerät über dem Quadrat und wählen Sie " -+"»Start«" - - #. TRANSLATORS: Some calibration devices need the user to move a - #. * dial or switch manually. We also show a picture showing them - #. * what to do... - #: ../panels/color/cc-color-calibrate.c:367 --msgid "Move your calibration device to the calibrate position and press 'Continue'" --msgstr "Verschieben Sie Ihr Kalibrierungsgerät in die Kalibrierungsposition und wählen Sie »Fortsetzen«" -+msgid "" -+"Move your calibration device to the calibrate position and press 'Continue'" -+msgstr "" -+"Verschieben Sie Ihr Kalibrierungsgerät in die Kalibrierungsposition und " -+"wählen Sie »Fortsetzen«" - - #. TRANSLATORS: Some calibration devices need the user to move a - #. * dial or switch manually. We also show a picture showing them - #. * what to do... - #: ../panels/color/cc-color-calibrate.c:373 --msgid "Move your calibration device to the surface position and press 'Continue'" --msgstr "Verschieben Sie Ihr Kalibrierungsgerät in die Oberflächenposition und wählen Sie »Fortsetzen«" -+msgid "" -+"Move your calibration device to the surface position and press 'Continue'" -+msgstr "" -+"Verschieben Sie Ihr Kalibrierungsgerät in die Oberflächenposition und wählen " -+"Sie »Fortsetzen«" - - #. TRANSLATORS: on some hardware e.g. Lenovo W700 the sensor - #. * is built into the palmrest and we need to fullscreen the -@@ -347,7 +374,8 @@ - msgstr "Importierte ICC-Profile" - - #. TRANSLATORS: filter name on the file->open dialog --#: ../panels/color/cc-color-panel.c:243 ../panels/network/wireless-security/eap-method-fast.c:420 -+#: ../panels/color/cc-color-panel.c:243 -+#: ../panels/network/wireless-security/eap-method-fast.c:420 - msgid "All files" - msgstr "Alle Dateien" - -@@ -378,14 +406,17 @@ - - #: ../panels/color/cc-color-panel.c:924 - msgid "Type the URL into your browser to download and install the profile." --msgstr "Geben Sie die Adresse in Ihren Browser ein, um das Profil herunterzuladen und zu installieren." -+msgstr "" -+"Geben Sie die Adresse in Ihren Browser ein, um das Profil herunterzuladen " -+"und zu installieren." - - #. TRANSLATORS: this is the dialog to save the ICC profile - #: ../panels/color/cc-color-panel.c:958 - msgid "Save Profile" - msgstr "Profil speichern" - --#: ../panels/color/cc-color-panel.c:962 ../panels/network/connection-editor/vpn-helpers.c:375 -+#: ../panels/color/cc-color-panel.c:962 -+#: ../panels/network/connection-editor/vpn-helpers.c:375 - msgid "_Save" - msgstr "_Speichern" - -@@ -396,8 +427,12 @@ - - #. TRANSLATORS: this is when the button is insensitive - #: ../panels/color/cc-color-panel.c:1337 ../panels/color/cc-color-panel.c:1361 --msgid "The measuring instrument is not detected. Please check it is turned on and correctly connected." --msgstr "Das Messgerät wurde nicht erkannt. Bitte prüfen Sie, ob es korrekt angeschlossen und eingeschaltet ist." -+msgid "" -+"The measuring instrument is not detected. Please check it is turned on and " -+"correctly connected." -+msgstr "" -+"Das Messgerät wurde nicht erkannt. Bitte prüfen Sie, ob es korrekt " -+"angeschlossen und eingeschaltet ist." - - #. TRANSLATORS: this is when the button is insensitive - #: ../panels/color/cc-color-panel.c:1371 -@@ -489,8 +524,10 @@ - msgid "Display Calibration" - msgstr "Bildschirm-Kalibrierung" - --#: ../panels/color/color-calibrate.ui.h:2 ../panels/printers/authentication-dialog.ui.h:2 --#: ../panels/printers/ppd-selection-dialog.ui.h:2 ../panels/user-accounts/um-account-dialog.c:1468 -+#: ../panels/color/color-calibrate.ui.h:2 -+#: ../panels/printers/authentication-dialog.ui.h:2 -+#: ../panels/printers/ppd-selection-dialog.ui.h:2 -+#: ../panels/user-accounts/um-account-dialog.c:1468 - msgid "Cancel" - msgstr "Abbrechen" - -@@ -519,15 +556,19 @@ - - #: ../panels/color/color.ui.h:2 - msgid "" --"Calibration will produce a profile that you can use to color manage your screen. The longer you spend on " --"calibration, the better the quality of the color profile." --msgstr "" --"Eine Kalibrierung wird ein Profil erstellen, dass Sie für die Farbverwaltung Ihres Bildschirms einsetzen " --"können. Je länger Sie kalibrieren, desto höher wird die Qualität des Farbprofils." -+"Calibration will produce a profile that you can use to color manage your " -+"screen. The longer you spend on calibration, the better the quality of the " -+"color profile." -+msgstr "" -+"Eine Kalibrierung wird ein Profil erstellen, dass Sie für die Farbverwaltung " -+"Ihres Bildschirms einsetzen können. Je länger Sie kalibrieren, desto höher " -+"wird die Qualität des Farbprofils." - - #: ../panels/color/color.ui.h:3 --msgid "You will not be able to use your computer while calibration takes place." --msgstr "Sie können Ihren Rechner nicht nutzen, während die Kalibrierung läuft." -+msgid "" -+"You will not be able to use your computer while calibration takes place." -+msgstr "" -+"Sie können Ihren Rechner nicht nutzen, während die Kalibrierung läuft." - - #. This is the approximate time it takes to calibrate the display. - #: ../panels/color/color.ui.h:5 -@@ -545,7 +586,9 @@ - - #: ../panels/color/color.ui.h:9 - msgid "Select the sensor device you want to use for calibration." --msgstr "Wählen Sie die Art des Sensor-Geräts, welches Sie zum Kalibrieren verwenden wollen." -+msgstr "" -+"Wählen Sie die Art des Sensor-Geräts, welches Sie zum Kalibrieren verwenden " -+"wollen." - - #: ../panels/color/color.ui.h:10 - msgid "Calibration Device" -@@ -560,8 +603,12 @@ - msgstr "Anzeigentyp" - - #: ../panels/color/color.ui.h:13 --msgid "Select a display target white point. Most displays should be calibrated to a D65 illuminant." --msgstr "Wählen Sie das Anzeigeziel für den Weißpunkt. Die meisten Anzeigen sollten als D65 eingestellt werden." -+msgid "" -+"Select a display target white point. Most displays should be calibrated to a " -+"D65 illuminant." -+msgstr "" -+"Wählen Sie das Anzeigeziel für den Weißpunkt. Die meisten Anzeigen sollten " -+"als D65 eingestellt werden." - - #: ../panels/color/color.ui.h:14 - msgid "Profile Whitepoint" -@@ -569,17 +616,19 @@ - - #: ../panels/color/color.ui.h:15 - msgid "" --"Please set the display to a brightness that is typical for you. Color management will be most accurate at this " --"brightness level." -+"Please set the display to a brightness that is typical for you. Color " -+"management will be most accurate at this brightness level." - msgstr "" --"Bitte stellen Sie den Bildschirm auf eine typische Helligkeitsstufe ein. Die Farbverwaltung wird auf dieser " --"Stufe die besten Ergebnisse erzielen." -+"Bitte stellen Sie den Bildschirm auf eine typische Helligkeitsstufe ein. Die " -+"Farbverwaltung wird auf dieser Stufe die besten Ergebnisse erzielen." - - #: ../panels/color/color.ui.h:16 --msgid "Alternatively, you can use the brightness level used with one of the other profiles for this device." -+msgid "" -+"Alternatively, you can use the brightness level used with one of the other " -+"profiles for this device." - msgstr "" --"Alternativ können Sie die Helligkeitsstufe einstellen, die mit einem der anderen Profile für dieses Gerät " --"verwendet wird." -+"Alternativ können Sie die Helligkeitsstufe einstellen, die mit einem der " -+"anderen Profile für dieses Gerät verwendet wird." - - #: ../panels/color/color.ui.h:17 - msgid "Display Brightness" -@@ -587,10 +636,11 @@ - - #: ../panels/color/color.ui.h:18 - msgid "" --"You can use a color profile on different computers, or even create profiles for different lighting conditions." -+"You can use a color profile on different computers, or even create profiles " -+"for different lighting conditions." - msgstr "" --"Sie können Farbprofile auf verschiedenen Rechnern einsetzen oder sogar Profile für verschiedenes Umgebungslicht " --"erstellen." -+"Sie können Farbprofile auf verschiedenen Rechnern einsetzen oder sogar " -+"Profile für verschiedenes Umgebungslicht erstellen." - - #: ../panels/color/color.ui.h:19 - msgid "Profile Name:" -@@ -622,13 +672,16 @@ - - #: ../panels/color/color.ui.h:26 - msgid "" --"You may find these instructions on how to use the profile on GNU/Linux, Apple OS X and Microsoft Windows systems useful." --msgstr "" --"Eventuell sind diese Anweisungen hilfreich, wie ein Profil unter GNU/Linux, Apple OS X und Microsoft Windows eingesetzt wird." -+"You may find these instructions on how to use the profile on GNU/Linux, Apple OS X and Microsoft Windows systems useful." -+msgstr "" -+"Eventuell sind diese Anweisungen hilfreich, wie ein Profil unter GNU/Linux, Apple OS X und Microsoft Windows eingesetzt wird." - --#: ../panels/color/color.ui.h:27 ../panels/user-accounts/um-fingerprint-dialog.c:732 -+#: ../panels/color/color.ui.h:27 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:732 - msgid "Summary" - msgstr "Zusammenfassung" - -@@ -636,19 +689,28 @@ - msgid "Import File…" - msgstr "Datei importieren …" - --#: ../panels/color/color.ui.h:30 ../panels/keyboard/gnome-keyboard-panel.ui.h:3 --#: ../panels/network/connection-editor/net-connection-editor.c:512 ../panels/printers/new-printer-dialog.ui.h:3 --#: ../panels/region/input-chooser.ui.h:3 ../panels/user-accounts/um-account-dialog.c:1469 -+#: ../panels/color/color.ui.h:30 -+#: ../panels/keyboard/gnome-keyboard-panel.ui.h:3 -+#: ../panels/network/connection-editor/net-connection-editor.c:512 -+#: ../panels/printers/new-printer-dialog.ui.h:3 -+#: ../panels/region/input-chooser.ui.h:3 -+#: ../panels/user-accounts/um-account-dialog.c:1469 - msgid "_Add" - msgstr "_Hinzufügen" - - #: ../panels/color/color.ui.h:31 --msgid "Problems detected. The profile may not work correctly. Show details." --msgstr "Probleme entdeckt. Das Profil funktioniert eventuell nicht richtig. Details anzeigen." -+msgid "" -+"Problems detected. The profile may not work correctly. Show " -+"details." -+msgstr "" -+"Probleme entdeckt. Das Profil funktioniert eventuell nicht richtig. Details anzeigen." - - #: ../panels/color/color.ui.h:32 - msgid "Each device needs an up to date color profile to be color managed." --msgstr "Jedes Gerät benötigt ein aktuelles Farbprofil, um die Farbverwaltung zu ermöglichen." -+msgstr "" -+"Jedes Gerät benötigt ein aktuelles Farbprofil, um die Farbverwaltung zu " -+"ermöglichen." - - #: ../panels/color/color.ui.h:33 - msgid "Learn more" -@@ -674,7 +736,8 @@ - msgid "Add profile" - msgstr "Profil hinzufügen" - --#: ../panels/color/color.ui.h:39 ../panels/wacom/gnome-wacom-properties.ui.h:11 -+#: ../panels/color/color.ui.h:39 -+#: ../panels/wacom/gnome-wacom-properties.ui.h:11 - msgid "Calibrate…" - msgstr "Kalibrieren …" - -@@ -748,7 +811,8 @@ - msgid "Medium" - msgstr "Medium" - --#: ../panels/color/color.ui.h:57 ../panels/power/power.ui.h:4 ../panels/privacy/privacy.ui.h:7 -+#: ../panels/color/color.ui.h:57 ../panels/power/power.ui.h:4 -+#: ../panels/privacy/privacy.ui.h:7 - msgid "30 minutes" - msgstr "30 Minuten" - -@@ -787,8 +851,11 @@ - msgstr "Farbe" - - #: ../panels/color/gnome-color-panel.desktop.in.in.h:2 --msgid "Calibrate the color of your devices, such as displays, cameras or printers" --msgstr "Kalibrieren Sie die Farbe für Ihre Geräte, wie Monitore, Kameras oder Drucker." -+msgid "" -+"Calibrate the color of your devices, such as displays, cameras or printers" -+msgstr "" -+"Kalibrieren Sie die Farbe für Ihre Geräte, wie Monitore, Kameras oder " -+"Drucker." - - #. Translators: those are keywords for the color control-center panel - #: ../panels/color/gnome-color-panel.desktop.in.in.h:4 -@@ -820,7 +887,8 @@ - msgid "Other…" - msgstr "Andere …" - --#: ../panels/common/cc-language-chooser.c:123 ../panels/region/cc-format-chooser.c:267 -+#: ../panels/common/cc-language-chooser.c:123 -+#: ../panels/region/cc-format-chooser.c:267 - #: ../panels/region/cc-input-chooser.c:165 - msgid "More…" - msgstr "Mehr …" -@@ -833,7 +901,8 @@ - msgid "Language" - msgstr "Sprache" - --#: ../panels/common/language-chooser.ui.h:2 ../panels/region/format-chooser.ui.h:2 -+#: ../panels/common/language-chooser.ui.h:2 -+#: ../panels/region/format-chooser.ui.h:2 - msgid "_Done" - msgstr "_Fertig" - -@@ -934,7 +1003,8 @@ - msgid "December" - msgstr "Dezember" - --#: ../panels/datetime/datetime.ui.h:13 ../panels/datetime/gnome-datetime-panel.desktop.in.in.h:1 -+#: ../panels/datetime/datetime.ui.h:13 -+#: ../panels/datetime/gnome-datetime-panel.desktop.in.in.h:1 - msgid "Date & Time" - msgstr "Datum und Zeit" - -@@ -1018,102 +1088,115 @@ - - #: ../panels/datetime/org.gnome.controlcenter.datetime.policy.in.h:2 - msgid "To change time or date settings, you need to authenticate." --msgstr "Um die Einstellungen für Zeit und Datum zu ändern, müssen Sie sich legitimieren." -+msgstr "" -+"Um die Einstellungen für Zeit und Datum zu ändern, müssen Sie sich " -+"legitimieren." - --#: ../panels/display/cc-display-panel.c:487 -+#: ../panels/display/cc-display-panel.c:490 - msgid "Lid Closed" - msgstr "Deckel geschlossen" - - # "mirror" ist hier ein Adjektiv - #. translators: "Mirrored" describes when both displays show the same view --#: ../panels/display/cc-display-panel.c:490 -+#: ../panels/display/cc-display-panel.c:493 - msgid "Mirrored" - msgstr "Gespiegelte Bildschirme" - --#: ../panels/display/cc-display-panel.c:492 ../panels/display/cc-display-panel.c:2156 -+#: ../panels/display/cc-display-panel.c:495 -+#: ../panels/display/cc-display-panel.c:2155 - msgid "Primary" - msgstr "Primäre Anzeige" - --#: ../panels/display/cc-display-panel.c:494 ../panels/notifications/cc-notifications-panel.c:185 --#: ../panels/power/cc-power-panel.c:1697 ../panels/power/cc-power-panel.c:1708 --#: ../panels/privacy/cc-privacy-panel.c:84 ../panels/privacy/cc-privacy-panel.c:124 --#: ../panels/universal-access/cc-ua-panel.c:257 ../panels/universal-access/cc-ua-panel.c:572 --#: ../panels/universal-access/cc-ua-panel.c:695 ../panels/universal-access/uap.ui.h:6 -+#: ../panels/display/cc-display-panel.c:497 -+#: ../panels/notifications/cc-notifications-panel.c:185 -+#: ../panels/power/cc-power-panel.c:1704 ../panels/power/cc-power-panel.c:1715 -+#: ../panels/privacy/cc-privacy-panel.c:84 -+#: ../panels/privacy/cc-privacy-panel.c:124 -+#: ../panels/universal-access/cc-ua-panel.c:257 -+#: ../panels/universal-access/cc-ua-panel.c:572 -+#: ../panels/universal-access/cc-ua-panel.c:695 -+#: ../panels/universal-access/uap.ui.h:6 - msgid "Off" - msgstr "Aus" - --#: ../panels/display/cc-display-panel.c:497 -+#: ../panels/display/cc-display-panel.c:500 - msgid "Secondary" - msgstr "Sekundäre Anzeige" - --#: ../panels/display/cc-display-panel.c:1533 -+#: ../panels/display/cc-display-panel.c:1536 - msgid "Arrange Combined Displays" - msgstr "Verbundene Anzeigen anordnen" - --#: ../panels/display/cc-display-panel.c:1539 ../panels/display/cc-display-panel.c:1990 --#: ../panels/network/connection-editor/connection-editor.ui.h:2 ../panels/network/network-wifi.ui.h:2 -+#: ../panels/display/cc-display-panel.c:1542 -+#: ../panels/display/cc-display-panel.c:1988 -+#: ../panels/network/connection-editor/connection-editor.ui.h:2 -+#: ../panels/network/network-wifi.ui.h:2 - msgid "_Apply" - msgstr "An_wenden" - --#: ../panels/display/cc-display-panel.c:1560 -+#: ../panels/display/cc-display-panel.c:1563 - msgid "Drag displays to rearrange them" - msgstr "Ziehen Sie die Anzeigen um sie anzuordnen" - --#: ../panels/display/cc-display-panel.c:2092 -+#: ../panels/display/cc-display-panel.c:2090 - msgid "Size" - msgstr "Größe" - - #. aspect ratio --#: ../panels/display/cc-display-panel.c:2105 -+#: ../panels/display/cc-display-panel.c:2103 - msgid "Aspect Ratio" - msgstr "Anzeigeverhältnis" - --#: ../panels/display/cc-display-panel.c:2126 ../panels/printers/pp-options-dialog.c:85 -+#: ../panels/display/cc-display-panel.c:2125 -+#: ../panels/printers/pp-options-dialog.c:85 - msgid "Resolution" - msgstr "Auflösung" - --#: ../panels/display/cc-display-panel.c:2157 -+#: ../panels/display/cc-display-panel.c:2156 - msgid "Show the top bar and Activities Overview on this display" --msgstr "Die Menüleiste und Aktivitätenübersicht auf dieser Anzeigen darstellen" -+msgstr "" -+"Die Menüleiste und Aktivitätenübersicht auf dieser Anzeigen darstellen" - --#: ../panels/display/cc-display-panel.c:2163 -+#: ../panels/display/cc-display-panel.c:2162 - msgid "Secondary Display" - msgstr "Zweitbildschirm" - --#: ../panels/display/cc-display-panel.c:2164 -+#: ../panels/display/cc-display-panel.c:2163 - msgid "Join this display with another to create an extra workspace" --msgstr "Diese Anzeige mit einer anderen verbinden, um einen zusätzliche Bildschirmoberfläche zu erhalten" -+msgstr "" -+"Diese Anzeige mit einer anderen verbinden, um einen zusätzliche " -+"Bildschirmoberfläche zu erhalten" - --#: ../panels/display/cc-display-panel.c:2171 -+#: ../panels/display/cc-display-panel.c:2170 - msgid "Presentation" - msgstr "Präsentation" - --#: ../panels/display/cc-display-panel.c:2172 -+#: ../panels/display/cc-display-panel.c:2171 - msgid "Show slideshows and media only" - msgstr "Nur Bildvorführungen und Medien anzeigen" - - #. translators: "Mirror" describes when both displays show the same view --#: ../panels/display/cc-display-panel.c:2177 -+#: ../panels/display/cc-display-panel.c:2176 - msgid "Mirror" - msgstr "Bildschirm spiegeln" - --#: ../panels/display/cc-display-panel.c:2178 -+#: ../panels/display/cc-display-panel.c:2177 - msgid "Show your existing view on both displays" - msgstr "Die bestehende Ansicht auf beiden Anzeigen darstellen" - --#: ../panels/display/cc-display-panel.c:2184 -+#: ../panels/display/cc-display-panel.c:2183 - msgid "Turn Off" - msgstr "Ausschalten" - --#: ../panels/display/cc-display-panel.c:2185 -+#: ../panels/display/cc-display-panel.c:2184 - msgid "Don't use this display" - msgstr "Diese Anzeige nicht verwenden" - --#: ../panels/display/cc-display-panel.c:2394 -+#: ../panels/display/cc-display-panel.c:2388 - msgid "Could not get screen information" - msgstr "Bildschirminformationen konnten nicht ausgelesen werden" - --#: ../panels/display/cc-display-panel.c:2425 -+#: ../panels/display/cc-display-panel.c:2419 - msgid "_Arrange Combined Displays" - msgstr "Verbundene Anzeigen _anordnen" - -@@ -1139,49 +1222,46 @@ - msgid "Unknown" - msgstr "Unbekannt" - --#: ../panels/info/cc-info-panel.c:472 --#, c-format --msgid "%s %d-bit" --msgstr "%s %d-Bit" -- --#: ../panels/info/cc-info-panel.c:474 -+#. translators: This is the the type of OS architecture, eg: "64-bit" or "32-bit" -+#: ../panels/info/cc-info-panel.c:513 - #, c-format - msgid "%d-bit" - msgstr "%d Bit" - --#: ../panels/info/cc-info-panel.c:1154 -+#: ../panels/info/cc-info-panel.c:1191 - msgid "Ask what to do" - msgstr "Nachfragen, was geschehen soll" - --#: ../panels/info/cc-info-panel.c:1158 -+#: ../panels/info/cc-info-panel.c:1195 - msgid "Do nothing" - msgstr "Nichts tun" - --#: ../panels/info/cc-info-panel.c:1162 -+#: ../panels/info/cc-info-panel.c:1199 - msgid "Open folder" - msgstr "Ordner öffnen" - --#: ../panels/info/cc-info-panel.c:1253 -+#: ../panels/info/cc-info-panel.c:1290 - msgid "Other Media" - msgstr "Andere Medien" - --#: ../panels/info/cc-info-panel.c:1284 -+#: ../panels/info/cc-info-panel.c:1321 - msgid "Select an application for audio CDs" - msgstr "Eine Anwendung für Audio-CDs wählen" - --#: ../panels/info/cc-info-panel.c:1285 -+#: ../panels/info/cc-info-panel.c:1322 - msgid "Select an application for video DVDs" - msgstr "Eine Anwendung für Video-DVDs wählen" - --#: ../panels/info/cc-info-panel.c:1286 -+#: ../panels/info/cc-info-panel.c:1323 - msgid "Select an application to run when a music player is connected" --msgstr "Wählen Sie eine Anwendung, wenn ein Musikabspielgerät angeschlossen wird" -+msgstr "" -+"Wählen Sie eine Anwendung, wenn ein Musikabspielgerät angeschlossen wird" - --#: ../panels/info/cc-info-panel.c:1287 -+#: ../panels/info/cc-info-panel.c:1324 - msgid "Select an application to run when a camera is connected" - msgstr "Wählen Sie eine Anwendung, wenn eine Kamera angeschlossen wird" - --#: ../panels/info/cc-info-panel.c:1288 -+#: ../panels/info/cc-info-panel.c:1325 - msgid "Select an application for software CDs" - msgstr "Eine Anwendung für Software-CDs wählen" - -@@ -1189,77 +1269,79 @@ - #. * strings, just here to fix capitalization of the English originals. - #. * If the shared-mime-info translation works for your language, - #. * simply leave these untranslated. --#. --#: ../panels/info/cc-info-panel.c:1300 -+#. -+#: ../panels/info/cc-info-panel.c:1337 - msgid "audio DVD" - msgstr "Audio-DVD" - --#: ../panels/info/cc-info-panel.c:1301 -+#: ../panels/info/cc-info-panel.c:1338 - msgid "blank Blu-ray disc" - msgstr "Leere Blu-ray-Disc" - --#: ../panels/info/cc-info-panel.c:1302 -+#: ../panels/info/cc-info-panel.c:1339 - msgid "blank CD disc" - msgstr "Leere CD" - --#: ../panels/info/cc-info-panel.c:1303 -+#: ../panels/info/cc-info-panel.c:1340 - msgid "blank DVD disc" - msgstr "Leere DVD" - --#: ../panels/info/cc-info-panel.c:1304 -+#: ../panels/info/cc-info-panel.c:1341 - msgid "blank HD DVD disc" - msgstr "Leere HD-DVD" - --#: ../panels/info/cc-info-panel.c:1305 -+#: ../panels/info/cc-info-panel.c:1342 - msgid "Blu-ray video disc" - msgstr "Blu-Ray-Video-Disc" - --#: ../panels/info/cc-info-panel.c:1306 -+#: ../panels/info/cc-info-panel.c:1343 - msgid "e-book reader" - msgstr "E-Book-Reader" - --#: ../panels/info/cc-info-panel.c:1307 -+#: ../panels/info/cc-info-panel.c:1344 - msgid "HD DVD video disc" - msgstr "HD-DVD-Video-Disc" - --#: ../panels/info/cc-info-panel.c:1308 -+#: ../panels/info/cc-info-panel.c:1345 - msgid "Picture CD" - msgstr "Foto-CD" - --#: ../panels/info/cc-info-panel.c:1309 -+#: ../panels/info/cc-info-panel.c:1346 - msgid "Super Video CD" - msgstr "Super-Video-CD" - --#: ../panels/info/cc-info-panel.c:1310 -+#: ../panels/info/cc-info-panel.c:1347 - msgid "Video CD" - msgstr "Video-CD" - --#: ../panels/info/cc-info-panel.c:1311 -+#: ../panels/info/cc-info-panel.c:1348 - msgid "Windows software" - msgstr "Windows-Software" - --#: ../panels/info/cc-info-panel.c:1434 ../panels/keyboard/keyboard-shortcuts.c:1932 -+#: ../panels/info/cc-info-panel.c:1471 -+#: ../panels/keyboard/keyboard-shortcuts.c:1932 - msgid "Section" - msgstr "Abschnitt" - --#: ../panels/info/cc-info-panel.c:1443 ../panels/info/info.ui.h:14 -+#: ../panels/info/cc-info-panel.c:1480 ../panels/info/info.ui.h:13 - msgid "Overview" - msgstr "Übersicht" - --#: ../panels/info/cc-info-panel.c:1449 ../panels/info/info.ui.h:21 -+#: ../panels/info/cc-info-panel.c:1486 ../panels/info/info.ui.h:20 - msgid "Default Applications" - msgstr "Vorgabe-Anwendungen" - --#: ../panels/info/cc-info-panel.c:1454 ../panels/info/info.ui.h:29 -+#: ../panels/info/cc-info-panel.c:1491 ../panels/info/info.ui.h:28 - msgid "Removable Media" - msgstr "Wechselmedien" - --#: ../panels/info/cc-info-panel.c:1479 -+#: ../panels/info/cc-info-panel.c:1516 - #, c-format - msgid "Version %s" - msgstr "Version %s" - --#: ../panels/info/gnome-info-panel.desktop.in.in.h:1 ../panels/network/connection-editor/ce-page-details.c:240 -+#: ../panels/info/gnome-info-panel.desktop.in.in.h:1 -+#: ../panels/network/connection-editor/ce-page-details.c:240 - #: ../panels/network/network-wifi.ui.h:46 - msgid "Details" - msgstr "Details" -@@ -1271,11 +1353,9 @@ - #. sure that you use the same "translation" for those keywords - #: ../panels/info/gnome-info-panel.desktop.in.in.h:4 - msgid "" --"device;system;information;memory;processor;version;default;application;preferred;cd;dvd;usb;audio;video;disc;" --"removable;media;autorun;" -+"device;system;information;memory;processor;version;default;application;preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" - msgstr "" --"Gerät;System;Information;Speicher;Prozessor;Version;Vorgabe;Anwendung;Ersatz;bevorzugt;CD;DVD;USB;Audio;Video;" --"Medien;Wechsel;Medien;Autostart;" -+"Gerät;System;Information;Speicher;Prozessor;Version;Vorgabe;Anwendung;Ersatz;bevorzugt;CD;DVD;USB;Audio;Video;Medien;Wechsel;Medien;Autostart;" - - #: ../panels/info/info.ui.h:1 - msgid "Select how other media should be handled" -@@ -1301,80 +1381,79 @@ - msgid "Processor" - msgstr "Prozessor" - --#. To translators: this field contains the distro name, version and type --#: ../panels/info/info.ui.h:8 --msgid "Base system" --msgstr "Basissystem" -+#: ../panels/info/info.ui.h:7 -+msgid "OS Type" -+msgstr "OS Typ" - --#: ../panels/info/info.ui.h:9 -+#: ../panels/info/info.ui.h:8 - msgid "Disk" - msgstr "Datenträger" - --#: ../panels/info/info.ui.h:10 -+#: ../panels/info/info.ui.h:9 - msgid "Calculating…" - msgstr "Berechnung läuft …" - --#: ../panels/info/info.ui.h:11 -+#: ../panels/info/info.ui.h:10 - msgid "Graphics" - msgstr "Grafik" - --#: ../panels/info/info.ui.h:12 -+#: ../panels/info/info.ui.h:11 - msgid "Virtualization" - msgstr "Virtualisierung" - --#: ../panels/info/info.ui.h:13 -+#: ../panels/info/info.ui.h:12 - msgid "Check for updates" - msgstr "Nach Aktualisierungen suchen" - --#: ../panels/info/info.ui.h:15 -+#: ../panels/info/info.ui.h:14 - msgid "_Web" - msgstr "_Internet" - --#: ../panels/info/info.ui.h:16 -+#: ../panels/info/info.ui.h:15 - msgid "_Mail" - msgstr "_E-Mail" - --#: ../panels/info/info.ui.h:17 -+#: ../panels/info/info.ui.h:16 - msgid "_Calendar" - msgstr "_Kalender" - --#: ../panels/info/info.ui.h:18 -+#: ../panels/info/info.ui.h:17 - msgid "M_usic" - msgstr "M_usik" - --#: ../panels/info/info.ui.h:19 -+#: ../panels/info/info.ui.h:18 - msgid "_Video" - msgstr "V_ideo" - --#: ../panels/info/info.ui.h:20 -+#: ../panels/info/info.ui.h:19 - msgid "_Photos" - msgstr "_Fotos" - --#: ../panels/info/info.ui.h:22 -+#: ../panels/info/info.ui.h:21 - msgid "Select how media should be handled" - msgstr "Wählen Sie, wie mit Medien umgegangen werden soll" - --#: ../panels/info/info.ui.h:23 -+#: ../panels/info/info.ui.h:22 - msgid "CD _audio" - msgstr "CD-_Audio" - --#: ../panels/info/info.ui.h:24 -+#: ../panels/info/info.ui.h:23 - msgid "_DVD video" - msgstr "_DVD-Video" - --#: ../panels/info/info.ui.h:25 -+#: ../panels/info/info.ui.h:24 - msgid "_Music player" - msgstr "_Musikwiedergabe" - --#: ../panels/info/info.ui.h:26 -+#: ../panels/info/info.ui.h:25 - msgid "_Software" - msgstr "_Software" - --#: ../panels/info/info.ui.h:27 -+#: ../panels/info/info.ui.h:26 - msgid "_Other Media…" - msgstr "_Andere Medien …" - --#: ../panels/info/info.ui.h:28 -+#: ../panels/info/info.ui.h:27 - msgid "_Never prompt or start programs on media insertion" - msgstr "Beim _Einlegen von Datenträgern nie nachfragen oder Programme starten" - -@@ -1422,7 +1501,8 @@ - msgid "Eject" - msgstr "Auswerfen" - --#: ../panels/keyboard/01-input-sources.xml.in.h:1 ../panels/keyboard/gnome-keyboard-panel.ui.h:20 -+#: ../panels/keyboard/01-input-sources.xml.in.h:1 -+#: ../panels/keyboard/gnome-keyboard-panel.ui.h:20 - #: ../panels/universal-access/uap.ui.h:11 - msgid "Typing" - msgstr "Texteingabe" -@@ -1556,16 +1636,19 @@ - - #. translators: - #. * The device has been disabled --#: ../panels/keyboard/cc-keyboard-option.c:276 ../panels/keyboard/cc-keyboard-option.c:395 --#: ../panels/keyboard/keyboard-shortcuts.c:1218 ../panels/network/network-wifi.ui.h:31 --#: ../panels/sound/gvc/gvc-mixer-control.c:1830 ../panels/user-accounts/um-fingerprint-dialog.c:213 -+#: ../panels/keyboard/cc-keyboard-option.c:276 -+#: ../panels/keyboard/cc-keyboard-option.c:395 -+#: ../panels/keyboard/keyboard-shortcuts.c:1218 -+#: ../panels/network/network-wifi.ui.h:31 -+#: ../panels/sound/gvc/gvc-mixer-control.c:1830 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:213 - msgid "Disabled" - msgstr "Deaktiviert" - - #. Translators: This key is also known as 'third level - #. * chooser'. AltGr is often used for this purpose. See - #. * https://live.gnome.org/Design/SystemSettings/RegionAndLanguage --#. -+#. - #: ../panels/keyboard/cc-keyboard-option.c:354 - msgid "Alternative Characters Key" - msgstr "Taste für alternative Zeichen" -@@ -1573,7 +1656,7 @@ - #. Translators: The Compose key is used to initiate key - #. * sequences that are combined to form a single character. - #. * See http://en.wikipedia.org/wiki/Compose_key --#. -+#. - #: ../panels/keyboard/cc-keyboard-option.c:363 - msgid "Compose Key" - msgstr "Compose-Taste" -@@ -1588,7 +1671,8 @@ - - #: ../panels/keyboard/gnome-keyboard-panel.desktop.in.in.h:2 - msgid "View and change keyboard shortcuts and set your typing preferences" --msgstr "Tastaturkürzel anzeigen und ändern und Ihre Tastaturbelegung einstellen" -+msgstr "" -+"Tastaturkürzel anzeigen und ändern und Ihre Tastaturbelegung einstellen" - - #. Translators: those are keywords for the keyboard control-center panel - #: ../panels/keyboard/gnome-keyboard-panel.desktop.in.in.h:4 -@@ -1663,7 +1747,8 @@ - msgid "Cursor blink speed" - msgstr "Blinkgeschwindigkeit des Cursors" - --#: ../panels/keyboard/gnome-keyboard-panel.ui.h:19 ../panels/region/region.ui.h:5 -+#: ../panels/keyboard/gnome-keyboard-panel.ui.h:19 -+#: ../panels/region/region.ui.h:5 - msgid "Input Sources" - msgstr "Eingabequellen" - -@@ -1677,16 +1762,20 @@ - - # extrem gekürzt, wirkt sich auf Fensterbreite aus - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:23 --msgid "To edit a shortcut, click the row and hold down the new keys or press Backspace to clear." -+msgid "" -+"To edit a shortcut, click the row and hold down the new keys or press " -+"Backspace to clear." - msgstr "" --"Um ein Tastenkürzel zu bearbeiten, klicken Sie auf die Zeile und drücken Sie die neue Tastenkombination, oder " --"drücken Sie die Rücktaste, um sie zu löschen." -+"Um ein Tastenkürzel zu bearbeiten, klicken Sie auf die Zeile und drücken Sie " -+"die neue Tastenkombination, oder drücken Sie die Rücktaste, um sie zu " -+"löschen." - - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:24 - msgid "Shortcuts" - msgstr "Tastaturkürzel" - --#: ../panels/keyboard/keyboard-shortcuts.c:635 ../panels/keyboard/keyboard-shortcuts.c:643 -+#: ../panels/keyboard/keyboard-shortcuts.c:635 -+#: ../panels/keyboard/keyboard-shortcuts.c:643 - msgid "Custom Shortcuts" - msgstr "Eigene Tastenkombinationen" - -@@ -1697,27 +1786,31 @@ - #: ../panels/keyboard/keyboard-shortcuts.c:1357 - #, c-format - msgid "" --"The shortcut \"%s\" cannot be used because it will become impossible to type using this key.\n" -+"The shortcut \"%s\" cannot be used because it will become impossible to type " -+"using this key.\n" - "Please try with a key such as Control, Alt or Shift at the same time." - msgstr "" --"Die Tastenkombination »%s« kann nicht verwendet werden, da es dann unmöglich wäre, mit dieser Taste zu " --"schreiben.\n" --"Bitte versuchen Sie eine Kombination mit einer Taste wie Strg, Alt oder der Umschalttaste." -+"Die Tastenkombination »%s« kann nicht verwendet werden, da es dann unmöglich " -+"wäre, mit dieser Taste zu schreiben.\n" -+"Bitte versuchen Sie eine Kombination mit einer Taste wie Strg, Alt oder der " -+"Umschalttaste." - - #: ../panels/keyboard/keyboard-shortcuts.c:1387 - #, c-format --msgid "" --"The shortcut \"%s\" is already used for\n" -+msgid "The shortcut \"%s\" is already used for\n" - "\"%s\"" --msgstr "" --"Die Tastenkombination »%s« wird bereits für\n" -+msgstr "Die Tastenkombination »%s« wird bereits für\n" - "»%s«\n" - "verwendet." - - #: ../panels/keyboard/keyboard-shortcuts.c:1392 - #, c-format --msgid "If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be disabled." --msgstr "Wenn Sie diese Tastenkombination »%s« zuweisen, wird die Tastenkombination für »%s« deaktiviert." -+msgid "" -+"If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be disabled." -+"" -+msgstr "" -+"Wenn Sie diese Tastenkombination »%s« zuweisen, wird die Tastenkombination " -+"für »%s« deaktiviert." - - #: ../panels/keyboard/keyboard-shortcuts.c:1398 - msgid "_Reassign" -@@ -1725,15 +1818,21 @@ - - #: ../panels/keyboard/keyboard-shortcuts.c:1439 - #, c-format --msgid "The \"%s\" shortcut has an associated \"%s\" shortcut. Do you want to automatically set it to \"%s\"?" -+msgid "" -+"The \"%s\" shortcut has an associated \"%s\" shortcut. Do you want to " -+"automatically set it to \"%s\"?" - msgstr "" --"Die Tastenkombination »%s« ist der Tastenkombination »%s« zugewiesen. Soll diese automatisch auf »%s« " --"festgelegt werden?" -+"Die Tastenkombination »%s« ist der Tastenkombination »%s« zugewiesen. Soll " -+"diese automatisch auf »%s« festgelegt werden?" - - #: ../panels/keyboard/keyboard-shortcuts.c:1449 - #, c-format --msgid "\"%s\" is currently associated with \"%s\", this shortcut will be disabled if you move forward." --msgstr "»%s« ist derzeit »%s« zugewiesen. Diese Tastenkombination wird deaktiviert, wenn Sie fortsetzen." -+msgid "" -+"\"%s\" is currently associated with \"%s\", this shortcut will be disabled " -+"if you move forward." -+msgstr "" -+"»%s« ist derzeit »%s« zugewiesen. Diese Tastenkombination wird deaktiviert, " -+"wenn Sie fortsetzen." - - #: ../panels/keyboard/keyboard-shortcuts.c:1456 - msgid "_Assign" -@@ -1752,14 +1851,18 @@ - msgstr "Maus und Tastfeld" - - #: ../panels/mouse/gnome-mouse-panel.desktop.in.in.h:2 --msgid "Change your mouse or touchpad sensitivity and select right or left-handed" --msgstr "Die Empfindlichkeit Ihrer Maus oder Ihres Tastfelds ändern und für Rechts- oder Linkshänder einstellen" -+msgid "" -+"Change your mouse or touchpad sensitivity and select right or left-handed" -+msgstr "" -+"Die Empfindlichkeit Ihrer Maus oder Ihres Tastfelds ändern und für Rechts- " -+"oder Linkshänder einstellen" - - # Ich vermute »tap« meint einen Mausklick in Form einer kurzen Fingerberührung des Touchpad - #. Translators: those are keywords for the mouse and touchpad control-center panel - #: ../panels/mouse/gnome-mouse-panel.desktop.in.in.h:4 - msgid "Trackpad;Pointer;Click;Tap;Double;Button;Trackball;Scroll;" --msgstr "Trackpad;Zeiger;Mauszeiger;Klick;Doppelklick;Maustaste;Trackball;Bildlauf;" -+msgstr "" -+"Trackpad;Zeiger;Mauszeiger;Klick;Doppelklick;Maustaste;Trackball;Bildlauf;" - - #: ../panels/mouse/gnome-mouse-properties.ui.h:1 - msgid "General" -@@ -1847,7 +1950,8 @@ - msgid "_Natural scrolling" - msgstr "_Natürlicher Bildlauf" - --#: ../panels/mouse/gnome-mouse-test.c:130 ../panels/mouse/gnome-mouse-test.ui.h:1 -+#: ../panels/mouse/gnome-mouse-test.c:130 -+#: ../panels/mouse/gnome-mouse-test.ui.h:1 - msgid "Try clicking, double clicking, scrolling" - msgstr "Versuchen Sie zu klicken, doppelklicken oder rollen" - -@@ -1895,8 +1999,9 @@ - #. Translators: this is the title of the connection details - #. * window for vpn connections, it is also used to display - #. * vpn connections in the device list. --#. --#: ../panels/network/cc-network-panel.c:1155 ../panels/network/net-vpn.c:278 ../panels/network/net-vpn.c:431 -+#. -+#: ../panels/network/cc-network-panel.c:1155 ../panels/network/net-vpn.c:278 -+#: ../panels/network/net-vpn.c:431 - #, c-format - msgid "%s VPN" - msgstr "%s VPN" -@@ -1904,14 +2009,16 @@ - #. TRANSLATORS: the user is running a NM that is not API compatible - #: ../panels/network/cc-network-panel.c:1302 - msgid "The system network services are not compatible with this version." --msgstr "Die Netzwerkdienste des Systems sind mit dieser Version nicht kompatibel." -+msgstr "" -+"Die Netzwerkdienste des Systems sind mit dieser Version nicht kompatibel." - - #: ../panels/network/connection-editor/8021x-security-page.ui.h:1 - msgid "802.1x _Security" - msgstr "802.1x-_Sicherheit" - - #: ../panels/network/connection-editor/8021x-security-page.ui.h:2 --#: ../panels/network/connection-editor/security-page.ui.h:2 ../panels/printers/printers.ui.h:14 -+#: ../panels/network/connection-editor/security-page.ui.h:2 -+#: ../panels/printers/printers.ui.h:14 - msgid "page 1" - msgstr "Seite 1" - -@@ -1929,13 +2036,15 @@ - msgstr "Innere _Legitimierung" - - #: ../panels/network/connection-editor/8021x-security-page.ui.h:5 --#: ../panels/network/connection-editor/security-page.ui.h:5 ../panels/printers/printers.ui.h:16 -+#: ../panels/network/connection-editor/security-page.ui.h:5 -+#: ../panels/printers/printers.ui.h:16 - msgid "page 2" - msgstr "Seite 2" - - #: ../panels/network/connection-editor/ce-page-8021x-security.c:108 - #: ../panels/network/connection-editor/ce-page-security.c:455 --#: ../panels/network/connection-editor/details-page.ui.h:3 ../panels/network/network-wifi.ui.h:6 -+#: ../panels/network/connection-editor/details-page.ui.h:3 -+#: ../panels/network/network-wifi.ui.h:6 - msgid "Security" - msgstr "Sicherheit" - -@@ -1944,46 +2053,56 @@ - msgstr "automatisch" - - #. TRANSLATORS: this WEP WiFi security --#: ../panels/network/connection-editor/ce-page-details.c:52 ../panels/network/net-device-wifi.c:218 -+#: ../panels/network/connection-editor/ce-page-details.c:52 -+#: ../panels/network/net-device-wifi.c:218 - #: ../panels/network/net-device-wifi.c:382 - msgid "WEP" - msgstr "WEP" - - #. TRANSLATORS: this WPA WiFi security --#: ../panels/network/connection-editor/ce-page-details.c:56 ../panels/network/net-device-wifi.c:222 --#: ../panels/network/net-device-wifi.c:387 ../panels/network/network-wifi.ui.h:19 -+#: ../panels/network/connection-editor/ce-page-details.c:56 -+#: ../panels/network/net-device-wifi.c:222 -+#: ../panels/network/net-device-wifi.c:387 -+#: ../panels/network/network-wifi.ui.h:19 - msgid "WPA" - msgstr "WPA" - - #. TRANSLATORS: this WPA WiFi security --#: ../panels/network/connection-editor/ce-page-details.c:60 ../panels/network/net-device-wifi.c:226 -+#: ../panels/network/connection-editor/ce-page-details.c:60 -+#: ../panels/network/net-device-wifi.c:226 - msgid "WPA2" - msgstr "WPA2" - - #. TRANSLATORS: this Enterprise WiFi security --#: ../panels/network/connection-editor/ce-page-details.c:65 ../panels/network/net-device-wifi.c:231 -+#: ../panels/network/connection-editor/ce-page-details.c:65 -+#: ../panels/network/net-device-wifi.c:231 - msgid "Enterprise" - msgstr "Enterprise" - --#: ../panels/network/connection-editor/ce-page-details.c:70 ../panels/network/net-device-wifi.c:236 -+#: ../panels/network/connection-editor/ce-page-details.c:70 -+#: ../panels/network/net-device-wifi.c:236 - #: ../panels/network/net-device-wifi.c:372 - msgctxt "Wifi security" - msgid "None" - msgstr "Keine" - --#: ../panels/network/connection-editor/ce-page-details.c:91 ../panels/power/power.ui.h:19 -+#: ../panels/network/connection-editor/ce-page-details.c:91 -+#: ../panels/power/power.ui.h:19 - msgid "Never" - msgstr "Nie" - --#: ../panels/network/connection-editor/ce-page-details.c:102 ../panels/user-accounts/um-utils.c:819 -+#: ../panels/network/connection-editor/ce-page-details.c:102 -+#: ../panels/user-accounts/um-utils.c:819 - msgid "Today" - msgstr "Heute" - --#: ../panels/network/connection-editor/ce-page-details.c:104 ../panels/user-accounts/um-utils.c:822 -+#: ../panels/network/connection-editor/ce-page-details.c:104 -+#: ../panels/user-accounts/um-utils.c:822 - msgid "Yesterday" - msgstr "Gestern" - --#: ../panels/network/connection-editor/ce-page-details.c:106 ../panels/network/net-device-ethernet.c:126 -+#: ../panels/network/connection-editor/ce-page-details.c:106 -+#: ../panels/network/net-device-ethernet.c:126 - #: ../panels/network/net-device-wifi.c:476 - #, c-format - msgid "%i day ago" -@@ -1992,107 +2111,132 @@ - msgstr[1] "Vor %i Tagen" - - #. Translators: network device speed --#: ../panels/network/connection-editor/ce-page-details.c:155 ../panels/network/net-device-ethernet.c:54 -+#: ../panels/network/connection-editor/ce-page-details.c:155 -+#: ../panels/network/net-device-ethernet.c:54 - #: ../panels/network/net-device-wifi.c:533 - #, c-format - msgid "%d Mb/s" - msgstr "%d Mbit/s" - --#: ../panels/network/connection-editor/ce-page-details.c:181 ../panels/network/net-device-wifi.c:562 -+#: ../panels/network/connection-editor/ce-page-details.c:181 -+#: ../panels/network/net-device-wifi.c:562 - msgctxt "Signal strength" - msgid "None" - msgstr "Keines" - --#: ../panels/network/connection-editor/ce-page-details.c:183 ../panels/network/net-device-wifi.c:564 -+#: ../panels/network/connection-editor/ce-page-details.c:183 -+#: ../panels/network/net-device-wifi.c:564 - msgctxt "Signal strength" - msgid "Weak" - msgstr "Schwach" - --#: ../panels/network/connection-editor/ce-page-details.c:185 ../panels/network/net-device-wifi.c:566 -+#: ../panels/network/connection-editor/ce-page-details.c:185 -+#: ../panels/network/net-device-wifi.c:566 - msgctxt "Signal strength" - msgid "Ok" - msgstr "OK" - --#: ../panels/network/connection-editor/ce-page-details.c:187 ../panels/network/net-device-wifi.c:568 -+#: ../panels/network/connection-editor/ce-page-details.c:187 -+#: ../panels/network/net-device-wifi.c:568 - msgctxt "Signal strength" - msgid "Good" - msgstr "Gut" - --#: ../panels/network/connection-editor/ce-page-details.c:189 ../panels/network/net-device-wifi.c:570 -+#: ../panels/network/connection-editor/ce-page-details.c:189 -+#: ../panels/network/net-device-wifi.c:570 - msgctxt "Signal strength" - msgid "Excellent" - msgstr "Ausgezeichnet" - - #: ../panels/network/connection-editor/ce-page-ethernet.c:226 --#: ../panels/network/connection-editor/ce-page-vpn.c:204 ../panels/network/connection-editor/ce-page-wifi.c:270 -+#: ../panels/network/connection-editor/ce-page-vpn.c:204 -+#: ../panels/network/connection-editor/ce-page-wifi.c:270 - #: ../panels/network/network-wifi.ui.h:47 - msgid "Identity" - msgstr "Identität" - --#: ../panels/network/connection-editor/ce-page-ip4.c:177 ../panels/network/connection-editor/ce-page-ip4.c:439 --#: ../panels/network/connection-editor/ce-page-ip6.c:179 ../panels/network/connection-editor/ce-page-ip6.c:443 -+#: ../panels/network/connection-editor/ce-page-ip4.c:177 -+#: ../panels/network/connection-editor/ce-page-ip4.c:439 -+#: ../panels/network/connection-editor/ce-page-ip6.c:179 -+#: ../panels/network/connection-editor/ce-page-ip6.c:443 - msgid "Address" - msgstr "Adresse" - --#: ../panels/network/connection-editor/ce-page-ip4.c:190 ../panels/network/connection-editor/ce-page-ip4.c:452 -+#: ../panels/network/connection-editor/ce-page-ip4.c:190 -+#: ../panels/network/connection-editor/ce-page-ip4.c:452 - msgid "Netmask" - msgstr "Netzmaske" - --#: ../panels/network/connection-editor/ce-page-ip4.c:204 ../panels/network/connection-editor/ce-page-ip4.c:465 --#: ../panels/network/connection-editor/ce-page-ip6.c:205 ../panels/network/connection-editor/ce-page-ip6.c:473 -+#: ../panels/network/connection-editor/ce-page-ip4.c:204 -+#: ../panels/network/connection-editor/ce-page-ip4.c:465 -+#: ../panels/network/connection-editor/ce-page-ip6.c:205 -+#: ../panels/network/connection-editor/ce-page-ip6.c:473 - #: ../panels/network/network-vpn.ui.h:2 - msgid "Gateway" - msgstr "Gateway" - --#: ../panels/network/connection-editor/ce-page-ip4.c:221 ../panels/network/connection-editor/ce-page-ip6.c:222 -+#: ../panels/network/connection-editor/ce-page-ip4.c:221 -+#: ../panels/network/connection-editor/ce-page-ip6.c:222 - msgid "Delete Address" - msgstr "Adresse entfernen" - --#: ../panels/network/connection-editor/ce-page-ip4.c:275 ../panels/network/connection-editor/ce-page-ip6.c:276 -+#: ../panels/network/connection-editor/ce-page-ip4.c:275 -+#: ../panels/network/connection-editor/ce-page-ip6.c:276 - msgid "Add" - msgstr "Hinzufügen" - --#: ../panels/network/connection-editor/ce-page-ip4.c:343 ../panels/network/connection-editor/ce-page-ip6.c:347 -+#: ../panels/network/connection-editor/ce-page-ip4.c:343 -+#: ../panels/network/connection-editor/ce-page-ip6.c:347 - msgid "Server" - msgstr "Server" - --#: ../panels/network/connection-editor/ce-page-ip4.c:360 ../panels/network/connection-editor/ce-page-ip6.c:364 -+#: ../panels/network/connection-editor/ce-page-ip4.c:360 -+#: ../panels/network/connection-editor/ce-page-ip6.c:364 - msgid "Delete DNS Server" - msgstr "DNS-Server entfernen" - - #. Translators: Please see https://en.wikipedia.org/wiki/Metrics_(networking) --#: ../panels/network/connection-editor/ce-page-ip4.c:479 ../panels/network/connection-editor/ce-page-ip6.c:487 -+#: ../panels/network/connection-editor/ce-page-ip4.c:479 -+#: ../panels/network/connection-editor/ce-page-ip6.c:487 - msgctxt "network parameters" - msgid "Metric" - msgstr "Metrik" - --#: ../panels/network/connection-editor/ce-page-ip4.c:500 ../panels/network/connection-editor/ce-page-ip6.c:508 -+#: ../panels/network/connection-editor/ce-page-ip4.c:500 -+#: ../panels/network/connection-editor/ce-page-ip6.c:508 - msgid "Delete Route" - msgstr "Route entfernen" - --#: ../panels/network/connection-editor/ce-page-ip4.c:615 ../panels/network/network-wifi.ui.h:27 -+#: ../panels/network/connection-editor/ce-page-ip4.c:615 -+#: ../panels/network/network-wifi.ui.h:27 - msgid "Automatic (DHCP)" - msgstr "Automatisch (DHCP)" - --#: ../panels/network/connection-editor/ce-page-ip4.c:619 ../panels/network/connection-editor/ce-page-ip6.c:621 -+#: ../panels/network/connection-editor/ce-page-ip4.c:619 -+#: ../panels/network/connection-editor/ce-page-ip6.c:621 - #: ../panels/network/network-wifi.ui.h:26 - msgid "Manual" - msgstr "Manuell" - --#: ../panels/network/connection-editor/ce-page-ip4.c:623 ../panels/network/connection-editor/ce-page-ip6.c:625 -+#: ../panels/network/connection-editor/ce-page-ip4.c:623 -+#: ../panels/network/connection-editor/ce-page-ip6.c:625 - msgid "Link-Local Only" - msgstr "Nur Link-Local" - --#: ../panels/network/connection-editor/ce-page-ip4.c:967 ../panels/network/network-wifi.ui.h:48 -+#: ../panels/network/connection-editor/ce-page-ip4.c:967 -+#: ../panels/network/network-wifi.ui.h:48 - msgid "IPv4" - msgstr "IPv4" - --#: ../panels/network/connection-editor/ce-page-ip6.c:192 ../panels/network/connection-editor/ce-page-ip6.c:456 -+#: ../panels/network/connection-editor/ce-page-ip6.c:192 -+#: ../panels/network/connection-editor/ce-page-ip6.c:456 - msgid "Prefix" - msgstr "Präfix" - --#: ../panels/network/connection-editor/ce-page-ip6.c:613 ../panels/network/connection-editor/ethernet-page.ui.h:1 --#: ../panels/network/connection-editor/ip4-page.ui.h:4 ../panels/network/connection-editor/ip6-page.ui.h:4 -+#: ../panels/network/connection-editor/ce-page-ip6.c:613 -+#: ../panels/network/connection-editor/ethernet-page.ui.h:1 -+#: ../panels/network/connection-editor/ip4-page.ui.h:4 -+#: ../panels/network/connection-editor/ip6-page.ui.h:4 - #: ../panels/network/wireless-security/eap-method-peap.ui.h:2 - msgid "Automatic" - msgstr "Automatisch" -@@ -2101,11 +2245,13 @@ - msgid "Automatic, DHCP only" - msgstr "Automatisch, nur DHCP" - --#: ../panels/network/connection-editor/ce-page-ip6.c:937 ../panels/network/network-wifi.ui.h:49 -+#: ../panels/network/connection-editor/ce-page-ip6.c:937 -+#: ../panels/network/network-wifi.ui.h:49 - msgid "IPv6" - msgstr "IPv6" - --#: ../panels/network/connection-editor/ce-page-reset.c:91 ../panels/network/network-wifi.ui.h:51 -+#: ../panels/network/connection-editor/ce-page-reset.c:91 -+#: ../panels/network/network-wifi.ui.h:51 - msgid "Reset" - msgstr "Zurücksetzen" - -@@ -2139,41 +2285,53 @@ - msgid "WPA & WPA2 Enterprise" - msgstr "WPA und WPA2 Enterprise" - --#: ../panels/network/connection-editor/details-page.ui.h:1 ../panels/network/network-wifi.ui.h:4 -+#: ../panels/network/connection-editor/details-page.ui.h:1 -+#: ../panels/network/network-wifi.ui.h:4 - msgid "Signal Strength" - msgstr "Signalstärke" - --#: ../panels/network/connection-editor/details-page.ui.h:2 ../panels/network/network-wifi.ui.h:5 -+#: ../panels/network/connection-editor/details-page.ui.h:2 -+#: ../panels/network/network-wifi.ui.h:5 - msgid "Link speed" - msgstr "Verbindungsgeschwindigkeit" - --#: ../panels/network/connection-editor/details-page.ui.h:4 ../panels/network/net-device-ethernet.c:159 --#: ../panels/network/network-simple.ui.h:3 ../panels/network/network-wifi.ui.h:7 --#: ../panels/network/panel-common.c:693 -+#: ../panels/network/connection-editor/details-page.ui.h:4 -+#: ../panels/network/net-device-ethernet.c:159 -+#: ../panels/network/network-simple.ui.h:3 -+#: ../panels/network/network-wifi.ui.h:7 ../panels/network/panel-common.c:693 - msgid "IPv4 Address" - msgstr "IPv4-Adresse" - --#: ../panels/network/connection-editor/details-page.ui.h:5 ../panels/network/net-device-ethernet.c:160 --#: ../panels/network/net-device-ethernet.c:164 ../panels/network/network-mobile.ui.h:4 --#: ../panels/network/network-simple.ui.h:4 ../panels/network/network-wifi.ui.h:8 --#: ../panels/network/panel-common.c:694 -+#: ../panels/network/connection-editor/details-page.ui.h:5 -+#: ../panels/network/net-device-ethernet.c:160 -+#: ../panels/network/net-device-ethernet.c:164 -+#: ../panels/network/network-mobile.ui.h:4 -+#: ../panels/network/network-simple.ui.h:4 -+#: ../panels/network/network-wifi.ui.h:8 ../panels/network/panel-common.c:694 - msgid "IPv6 Address" - msgstr "IPv6-Adresse" - --#: ../panels/network/connection-editor/details-page.ui.h:6 ../panels/network/net-device-ethernet.c:167 --#: ../panels/network/network-simple.ui.h:2 ../panels/network/network-wifi.ui.h:9 -+#: ../panels/network/connection-editor/details-page.ui.h:6 -+#: ../panels/network/net-device-ethernet.c:167 -+#: ../panels/network/network-simple.ui.h:2 -+#: ../panels/network/network-wifi.ui.h:9 - msgid "Hardware Address" - msgstr "Hardware-Adresse" - --#: ../panels/network/connection-editor/details-page.ui.h:7 ../panels/network/net-device-ethernet.c:171 --#: ../panels/network/network-mobile.ui.h:5 ../panels/network/network-simple.ui.h:5 -+#: ../panels/network/connection-editor/details-page.ui.h:7 -+#: ../panels/network/net-device-ethernet.c:171 -+#: ../panels/network/network-mobile.ui.h:5 -+#: ../panels/network/network-simple.ui.h:5 - #: ../panels/network/network-wifi.ui.h:10 - msgid "Default Route" - msgstr "Vorgaberoute" - --#: ../panels/network/connection-editor/details-page.ui.h:8 ../panels/network/connection-editor/ip4-page.ui.h:3 --#: ../panels/network/connection-editor/ip6-page.ui.h:3 ../panels/network/net-device-ethernet.c:173 --#: ../panels/network/network-mobile.ui.h:6 ../panels/network/network-simple.ui.h:6 -+#: ../panels/network/connection-editor/details-page.ui.h:8 -+#: ../panels/network/connection-editor/ip4-page.ui.h:3 -+#: ../panels/network/connection-editor/ip6-page.ui.h:3 -+#: ../panels/network/net-device-ethernet.c:173 -+#: ../panels/network/network-mobile.ui.h:6 -+#: ../panels/network/network-simple.ui.h:6 - #: ../panels/network/network-wifi.ui.h:11 - msgid "DNS" - msgstr "DNS" -@@ -2216,11 +2374,13 @@ - msgid "10 Gb/s" - msgstr "10 Gb/s" - --#: ../panels/network/connection-editor/ethernet-page.ui.h:10 ../panels/network/connection-editor/vpn-page.ui.h:1 -+#: ../panels/network/connection-editor/ethernet-page.ui.h:10 -+#: ../panels/network/connection-editor/vpn-page.ui.h:1 - msgid "_Name" - msgstr "_Name" - --#: ../panels/network/connection-editor/ethernet-page.ui.h:11 ../panels/network/connection-editor/wifi-page.ui.h:4 -+#: ../panels/network/connection-editor/ethernet-page.ui.h:11 -+#: ../panels/network/connection-editor/wifi-page.ui.h:4 - #: ../panels/network/network-wifi.ui.h:38 - msgid "_MAC Address" - msgstr "_MAC-Adresse" -@@ -2229,7 +2389,8 @@ - msgid "M_TU" - msgstr "M_TU" - --#: ../panels/network/connection-editor/ethernet-page.ui.h:13 ../panels/network/connection-editor/wifi-page.ui.h:5 -+#: ../panels/network/connection-editor/ethernet-page.ui.h:13 -+#: ../panels/network/connection-editor/wifi-page.ui.h:5 - msgid "_Cloned Address" - msgstr "_Duplizierte Adresse" - -@@ -2237,15 +2398,18 @@ - msgid "bytes" - msgstr "Byte" - --#: ../panels/network/connection-editor/ethernet-page.ui.h:15 ../panels/network/connection-editor/vpn-page.ui.h:3 -+#: ../panels/network/connection-editor/ethernet-page.ui.h:15 -+#: ../panels/network/connection-editor/vpn-page.ui.h:3 - msgid "Make available to other _users" - msgstr "Anderen _Benutzern zur Verfügung stellen" - --#: ../panels/network/connection-editor/ethernet-page.ui.h:16 ../panels/network/connection-editor/wifi-page.ui.h:7 -+#: ../panels/network/connection-editor/ethernet-page.ui.h:16 -+#: ../panels/network/connection-editor/wifi-page.ui.h:7 - msgid "Connect _automatically" - msgstr "Automatisch _verbinden" - --#: ../panels/network/connection-editor/ethernet-page.ui.h:17 ../panels/network/connection-editor/vpn-page.ui.h:2 -+#: ../panels/network/connection-editor/ethernet-page.ui.h:17 -+#: ../panels/network/connection-editor/vpn-page.ui.h:2 - #: ../panels/network/connection-editor/wifi-page.ui.h:8 - msgid "Firewall _Zone" - msgstr "Firewall-_Zone" -@@ -2260,34 +2424,41 @@ - msgid "The zone defines the trust level of the connection" - msgstr "Die Zone definiert die Vertrauensstufe der Verbindung" - --#: ../panels/network/connection-editor/ip4-page.ui.h:1 ../panels/network/network-wifi.ui.h:24 -+#: ../panels/network/connection-editor/ip4-page.ui.h:1 -+#: ../panels/network/network-wifi.ui.h:24 - msgid "IPv_4" - msgstr "IPv_4" - --#: ../panels/network/connection-editor/ip4-page.ui.h:2 ../panels/network/connection-editor/ip6-page.ui.h:2 -+#: ../panels/network/connection-editor/ip4-page.ui.h:2 -+#: ../panels/network/connection-editor/ip6-page.ui.h:2 - #: ../panels/network/network-wifi.ui.h:25 - msgid "_Addresses" - msgstr "_Adressen" - --#: ../panels/network/connection-editor/ip4-page.ui.h:5 ../panels/network/connection-editor/ip6-page.ui.h:5 -+#: ../panels/network/connection-editor/ip4-page.ui.h:5 -+#: ../panels/network/connection-editor/ip6-page.ui.h:5 - msgid "Automatic DNS" - msgstr "Automatisches DNS" - --#: ../panels/network/connection-editor/ip4-page.ui.h:6 ../panels/network/connection-editor/ip6-page.ui.h:6 -+#: ../panels/network/connection-editor/ip4-page.ui.h:6 -+#: ../panels/network/connection-editor/ip6-page.ui.h:6 - #: ../panels/network/network-wifi.ui.h:32 - msgid "Routes" - msgstr "Routen" - --#: ../panels/network/connection-editor/ip4-page.ui.h:7 ../panels/network/connection-editor/ip6-page.ui.h:7 -+#: ../panels/network/connection-editor/ip4-page.ui.h:7 -+#: ../panels/network/connection-editor/ip6-page.ui.h:7 - msgid "Automatic Routes" - msgstr "Automatische Routen" - --#: ../panels/network/connection-editor/ip4-page.ui.h:8 ../panels/network/connection-editor/ip6-page.ui.h:8 -+#: ../panels/network/connection-editor/ip4-page.ui.h:8 -+#: ../panels/network/connection-editor/ip6-page.ui.h:8 - #: ../panels/network/network-wifi.ui.h:34 - msgid "Use this connection _only for resources on its network" - msgstr "Diese Verbindung nur für Ress_ourcen in deren Netzwerk verwenden" - --#: ../panels/network/connection-editor/ip6-page.ui.h:1 ../panels/network/network-wifi.ui.h:36 -+#: ../panels/network/connection-editor/ip6-page.ui.h:1 -+#: ../panels/network/network-wifi.ui.h:36 - msgid "IPv_6" - msgstr "IPv_6" - -@@ -2331,26 +2502,35 @@ - msgid "Add Network Connection" - msgstr "Netzwerk-Verbindung hinzufügen" - --#: ../panels/network/connection-editor/reset-page.ui.h:1 ../panels/network/network-wifi.ui.h:41 -+#: ../panels/network/connection-editor/reset-page.ui.h:1 -+#: ../panels/network/network-wifi.ui.h:41 - msgid "_Reset" - msgstr "_Zurücksetzen" - --#: ../panels/network/connection-editor/reset-page.ui.h:2 ../panels/network/net-device-wifi.c:1441 -+#: ../panels/network/connection-editor/reset-page.ui.h:2 -+#: ../panels/network/net-device-wifi.c:1441 - #: ../panels/network/network-wifi.ui.h:42 - msgid "_Forget" - msgstr "_Vergessen" - - #: ../panels/network/connection-editor/reset-page.ui.h:3 --msgid "Reset the settings for this network, including passwords, but remember it as a preferred network" -+msgid "" -+"Reset the settings for this network, including passwords, but remember it as " -+"a preferred network" - msgstr "" --"Die Einstellungen dieses Netzwerks einschließlich Passwörter zurücksetzen, aber als bevorzugtes Netzwerk " --"behalten" -+"Die Einstellungen dieses Netzwerks einschließlich Passwörter zurücksetzen, " -+"aber als bevorzugtes Netzwerk behalten" - - #: ../panels/network/connection-editor/reset-page.ui.h:4 --msgid "Remove all details relating to this network and do not try to automatically connect" --msgstr "Alle Details dieses Netzwerks löschen und nicht automatisch mit ihm verbinden" -+msgid "" -+"Remove all details relating to this network and do not try to automatically " -+"connect" -+msgstr "" -+"Alle Details dieses Netzwerks löschen und nicht automatisch mit ihm " -+"verbinden" - --#: ../panels/network/connection-editor/security-page.ui.h:1 ../panels/network/network-wifi.ui.h:16 -+#: ../panels/network/connection-editor/security-page.ui.h:1 -+#: ../panels/network/network-wifi.ui.h:16 - msgid "S_ecurity" - msgstr "_Sicherheit" - -@@ -2361,11 +2541,13 @@ - #: ../panels/network/connection-editor/vpn-helpers.c:207 - #, c-format - msgid "" --"The file '%s' could not be read or does not contain recognized VPN connection information\n" -+"The file '%s' could not be read or does not contain recognized VPN " -+"connection information\n" - "\n" - "Error: %s." - msgstr "" --"Die Datei »%s« konnte nicht gelesen werden oder enthält keine gültige VPN-Verbindung\n" -+"Die Datei »%s« konnte nicht gelesen werden oder enthält keine gültige VPN-" -+"Verbindung\n" - "\n" - "Fehler: %s." - -@@ -2373,8 +2555,10 @@ - msgid "Select file to import" - msgstr "Wählren Sie die Datei zum Importieren" - --#: ../panels/network/connection-editor/vpn-helpers.c:246 ../panels/printers/cc-printers-panel.c:1948 --#: ../panels/sharing/cc-sharing-panel.c:492 ../panels/user-accounts/um-photo-dialog.c:223 -+#: ../panels/network/connection-editor/vpn-helpers.c:246 -+#: ../panels/printers/cc-printers-panel.c:1950 -+#: ../panels/sharing/cc-sharing-panel.c:492 -+#: ../panels/user-accounts/um-photo-dialog.c:223 - msgid "_Open" - msgstr "Ö_ffnen" - -@@ -2390,7 +2574,8 @@ - #: ../panels/network/connection-editor/vpn-helpers.c:298 - #, c-format - msgid "Do you want to replace %s with the VPN connection you are saving?" --msgstr "Wollen Sie %s mit der VPN-Verbindung ersetzen, die Sie gerade speichern?" -+msgstr "" -+"Wollen Sie %s mit der VPN-Verbindung ersetzen, die Sie gerade speichern?" - - #: ../panels/network/connection-editor/vpn-helpers.c:334 - msgid "Cannot export VPN connection" -@@ -2398,8 +2583,7 @@ - - #: ../panels/network/connection-editor/vpn-helpers.c:336 - #, c-format --msgid "" --"The VPN connection '%s' could not be exported to %s.\n" -+msgid "The VPN connection '%s' could not be exported to %s.\n" - "\n" - "Error: %s." - msgstr "" -@@ -2415,15 +2599,18 @@ - msgid "(Error: unable to load VPN connection editor)" - msgstr "(Fehler: VPN-Verbindungseditor kann nicht geladen werden)" - --#: ../panels/network/connection-editor/wifi-page.ui.h:1 ../panels/network/network-wifi.ui.h:14 -+#: ../panels/network/connection-editor/wifi-page.ui.h:1 -+#: ../panels/network/network-wifi.ui.h:14 - msgid "_SSID" - msgstr "_SSID" - --#: ../panels/network/connection-editor/wifi-page.ui.h:2 ../panels/network/network-wifi.ui.h:15 -+#: ../panels/network/connection-editor/wifi-page.ui.h:2 -+#: ../panels/network/network-wifi.ui.h:15 - msgid "_BSSID" - msgstr "_BSSID" - --#: ../panels/network/connection-editor/wifi-page.ui.h:3 ../panels/network/network-wifi.ui.h:18 -+#: ../panels/network/connection-editor/wifi-page.ui.h:3 -+#: ../panels/network/network-wifi.ui.h:18 - msgid "My Home Network" - msgstr "Mein eigenes Netzwerk" - -@@ -2431,7 +2618,8 @@ - msgid "Make available to _other users" - msgstr "_Anderen Benutzern zur Verfügung stellen" - --#: ../panels/network/gnome-network-panel.desktop.in.in.h:1 ../panels/network/network-mobile.ui.h:7 -+#: ../panels/network/gnome-network-panel.desktop.in.in.h:1 -+#: ../panels/network/network-mobile.ui.h:7 - msgid "Network" - msgstr "Netzwerk" - -@@ -2441,7 +2629,9 @@ - - #. Translators: those are keywords for the network control-center panel - #: ../panels/network/gnome-network-panel.desktop.in.in.h:4 --msgid "Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;vlan;bridge;bond;DNS;" -+msgid "" -+"Network;Wireless;Wi-" -+"Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;vlan;bridge;bond;DNS;" - msgstr "" - "Netzwerk;Drahtlos;LAN;WLAN;Wifi;IP;LAN;Proxy;WAN;Breitband;DSL;Modem;Bluetooth;VPN;Brücke;VLAN;Bündelung;DNS;" - -@@ -2450,7 +2640,8 @@ - msgid "Bond slaves" - msgstr "Gebündelte Schnittstellen" - --#: ../panels/network/net-device-bond.c:102 ../panels/network/net-device-bridge.c:102 -+#: ../panels/network/net-device-bond.c:102 -+#: ../panels/network/net-device-bridge.c:102 - #: ../panels/network/net-device-team.c:102 - msgid "(none)" - msgstr "(keine)" -@@ -2460,24 +2651,30 @@ - msgid "Bridge slaves" - msgstr "Überbrückte Schnittstellen" - --#: ../panels/network/net-device-ethernet.c:112 ../panels/network/net-device-wifi.c:462 -+#: ../panels/network/net-device-ethernet.c:112 -+#: ../panels/network/net-device-wifi.c:462 - msgid "never" - msgstr "nie" - --#: ../panels/network/net-device-ethernet.c:122 ../panels/network/net-device-wifi.c:472 -+#: ../panels/network/net-device-ethernet.c:122 -+#: ../panels/network/net-device-wifi.c:472 - msgid "today" - msgstr "heute" - --#: ../panels/network/net-device-ethernet.c:124 ../panels/network/net-device-wifi.c:474 -+#: ../panels/network/net-device-ethernet.c:124 -+#: ../panels/network/net-device-wifi.c:474 - msgid "yesterday" - msgstr "gestern" - --#: ../panels/network/net-device-ethernet.c:162 ../panels/network/network-mobile.ui.h:3 --#: ../panels/network/panel-common.c:696 ../panels/network/panel-common.c:698 ../panels/printers/printers.ui.h:13 -+#: ../panels/network/net-device-ethernet.c:162 -+#: ../panels/network/network-mobile.ui.h:3 -+#: ../panels/network/panel-common.c:696 ../panels/network/panel-common.c:698 -+#: ../panels/printers/printers.ui.h:13 - msgid "IP Address" - msgstr "IP-Adresse" - --#: ../panels/network/net-device-ethernet.c:178 ../panels/network/network-wifi.ui.h:12 -+#: ../panels/network/net-device-ethernet.c:178 -+#: ../panels/network/network-wifi.ui.h:12 - msgid "Last used" - msgstr "Zuletzt verwendet" - -@@ -2485,15 +2682,19 @@ - #. * details window for ethernet, if there is only a single - #. * profile. It is also used to display ethernet in the - #. * device list. --#. --#: ../panels/network/net-device-ethernet.c:288 ../panels/network/network-ethernet.ui.h:1 -+#. -+#: ../panels/network/net-device-ethernet.c:288 -+#: ../panels/network/network-ethernet.ui.h:1 - #: ../panels/network/network-simple.ui.h:1 - msgid "Wired" - msgstr "Kabelgebunden" - --#: ../panels/network/net-device-ethernet.c:356 ../panels/network/net-device-wifi.c:1596 --#: ../panels/network/network-ethernet.ui.h:3 ../panels/network/network-mobile.ui.h:8 --#: ../panels/network/network-simple.ui.h:8 ../panels/network/network-vpn.ui.h:7 -+#: ../panels/network/net-device-ethernet.c:356 -+#: ../panels/network/net-device-wifi.c:1596 -+#: ../panels/network/network-ethernet.ui.h:3 -+#: ../panels/network/network-mobile.ui.h:8 -+#: ../panels/network/network-simple.ui.h:8 -+#: ../panels/network/network-vpn.ui.h:7 - msgid "Options…" - msgstr "Optionen …" - -@@ -2513,11 +2714,12 @@ - - #: ../panels/network/net-device-wifi.c:1154 - msgid "" --"If you have a connection to the Internet other than wireless, you can set up a wireless hotspot to share the " --"connection with others." -+"If you have a connection to the Internet other than wireless, you can set up " -+"a wireless hotspot to share the connection with others." - msgstr "" --"Wenn Sie eine andere Verbindung zum Internet außer einem Funknetz haben, so können Sie zur Freigabe Ihrer " --"Internetverbindung einen drahtlosen Hotspot einrichten." -+"Wenn Sie eine andere Verbindung zum Internet außer einem Funknetz haben, so " -+"können Sie zur Freigabe Ihrer Internetverbindung einen drahtlosen Hotspot " -+"einrichten." - - #: ../panels/network/net-device-wifi.c:1158 - #, c-format -@@ -2525,8 +2727,12 @@ - msgstr "Einschalten des Funknetz-Hotspot führt zur Trennung von %s." - - #: ../panels/network/net-device-wifi.c:1162 --msgid "It is not possible to access the Internet through your wireless while the hotspot is active." --msgstr "Es ist nicht möglich, auf das Internet über Ihr Funknetz zuzugreifen, während der HotSpot aktiv ist." -+msgid "" -+"It is not possible to access the Internet through your wireless while the " -+"hotspot is active." -+msgstr "" -+"Es ist nicht möglich, auf das Internet über Ihr Funknetz zuzugreifen, " -+"während der HotSpot aktiv ist." - - #: ../panels/network/net-device-wifi.c:1245 - msgid "Stop hotspot and disconnect any users?" -@@ -2545,17 +2751,21 @@ - msgstr "Das Drahtlos-Gerät unterstützt keinen Hotspot-Modus" - - #: ../panels/network/net-device-wifi.c:1437 --msgid "Network details for the selected networks, including passwords and any custom configuration will be lost." -+msgid "" -+"Network details for the selected networks, including passwords and any " -+"custom configuration will be lost." - msgstr "" --"Netzwerkdetails für die gewählten Netzwerke, einschließlich Passwort und jegliche benutzerdefinierte " --"Konfiguration werden verloren gehen." -+"Netzwerkdetails für die gewählten Netzwerke, einschließlich Passwort und " -+"jegliche benutzerdefinierte Konfiguration werden verloren gehen." - --#: ../panels/network/net-device-wifi.c:1745 ../panels/user-accounts/data/user-accounts-dialog.ui.h:13 -+#: ../panels/network/net-device-wifi.c:1745 -+#: ../panels/user-accounts/data/user-accounts-dialog.ui.h:13 - msgid "History" - msgstr "Chronik" - --#: ../panels/network/net-device-wifi.c:1749 ../panels/region/input-options.ui.h:2 --#: ../panels/wacom/button-mapping.ui.h:2 ../panels/wacom/cc-wacom-page.c:533 -+#: ../panels/network/net-device-wifi.c:1749 -+#: ../panels/region/input-options.ui.h:2 ../panels/wacom/button-mapping.ui.h:2 -+#: ../panels/wacom/cc-wacom-page.c:525 - #: ../panels/wacom/gnome-wacom-properties.ui.h:4 - msgid "_Close" - msgstr "S_chließen" -@@ -2568,8 +2778,11 @@ - - #. TRANSLATORS: this is when the use leaves the PAC textbox blank - #: ../panels/network/net-proxy.c:67 --msgid "Web Proxy Autodiscovery is used when a Configuration URL is not provided." --msgstr "Automatische Internet-Proxyerkennung wird verwendet, wenn keine Konfigurationsadresse angegeben wird." -+msgid "" -+"Web Proxy Autodiscovery is used when a Configuration URL is not provided." -+msgstr "" -+"Automatische Internet-Proxyerkennung wird verwendet, wenn keine " -+"Konfigurationsadresse angegeben wird." - - #. TRANSLATORS: WPAD is bad: if you enable it on an untrusted - #. * network, then anyone else on that network can tell your -@@ -2678,7 +2891,8 @@ - msgid "Group Password" - msgstr "Gruppenpasswort" - --#: ../panels/network/network-vpn.ui.h:5 ../panels/printers/authentication-dialog.ui.h:4 -+#: ../panels/network/network-vpn.ui.h:5 -+#: ../panels/printers/authentication-dialog.ui.h:4 - msgid "Username" - msgstr "Benutzername" - -@@ -2694,10 +2908,13 @@ - msgid "details" - msgstr "Details" - --#: ../panels/network/network-wifi.ui.h:17 ../panels/network/wireless-security/eap-method-leap.ui.h:2 -+#: ../panels/network/network-wifi.ui.h:17 -+#: ../panels/network/wireless-security/eap-method-leap.ui.h:2 - #: ../panels/network/wireless-security/eap-method-simple.ui.h:2 --#: ../panels/network/wireless-security/ws-leap.ui.h:2 ../panels/network/wireless-security/ws-wpa-psk.ui.h:1 --#: ../panels/user-accounts/data/account-dialog.ui.h:9 ../panels/user-accounts/data/user-accounts-dialog.ui.h:7 -+#: ../panels/network/wireless-security/ws-leap.ui.h:2 -+#: ../panels/network/wireless-security/ws-wpa-psk.ui.h:1 -+#: ../panels/user-accounts/data/account-dialog.ui.h:9 -+#: ../panels/user-accounts/data/user-accounts-dialog.ui.h:7 - msgid "_Password" - msgstr "_Passwort" - -@@ -2750,14 +2967,20 @@ - msgstr "Hardware" - - #: ../panels/network/network-wifi.ui.h:43 --msgid "Reset the settings for this connection to their defaults, but remember as a preferred connection." -+msgid "" -+"Reset the settings for this connection to their defaults, but remember as a " -+"preferred connection." - msgstr "" --"Die Einstellungen für diese Verbindung auf Voreinstellung zurücksetzen, aber als bevorzugte Verbindung " --"beibehalten." -+"Die Einstellungen für diese Verbindung auf Voreinstellung zurücksetzen, aber " -+"als bevorzugte Verbindung beibehalten." - - #: ../panels/network/network-wifi.ui.h:44 --msgid "Remove all details relating to this network and do not try to automatically connect to it." --msgstr "Alle Details dieses Netzwerks löschen und nicht automatisch mit ihm verbinden." -+msgid "" -+"Remove all details relating to this network and do not try to automatically " -+"connect to it." -+msgstr "" -+"Alle Details dieses Netzwerks löschen und nicht automatisch mit ihm " -+"verbinden." - - #: ../panels/network/network-wifi.ui.h:45 - msgid "reset" -@@ -2955,7 +3178,8 @@ - #. TRANSLATORS: device status reason - #: ../panels/network/panel-common.c:308 - msgid "Shared connection service failed to start" --msgstr "Dienst für gemeinsam verwendete Verbindung konnte nicht gestartet werden" -+msgstr "" -+"Dienst für gemeinsam verwendete Verbindung konnte nicht gestartet werden" - - #. TRANSLATORS: device status reason - #: ../panels/network/panel-common.c:312 -@@ -3108,11 +3332,13 @@ - - #: ../panels/network/wireless-security/eap-method.c:276 - msgid "" --"Not using a Certificate Authority (CA) certificate can result in connections to insecure, rogue Wi-Fi " --"networks. Would you like to choose a Certificate Authority certificate?" --msgstr "" --"Verzicht auf ein Certificate Authority (CA)-Zertifikat kann zu Verbindungen mit unsicheren und bösartigen WLAN-" --"Netzen führen. Möchten Sie ein CA-Zertifikat wählen?" -+"Not using a Certificate Authority (CA) certificate can result in connections " -+"to insecure, rogue Wi-Fi networks. Would you like to choose a Certificate " -+"Authority certificate?" -+msgstr "" -+"Verzicht auf ein Certificate Authority (CA)-Zertifikat kann zu Verbindungen " -+"mit unsicheren und bösartigen WLAN-Netzen führen. Möchten Sie ein CA-" -+"Zertifikat wählen?" - - #: ../panels/network/wireless-security/eap-method.c:281 - msgid "Ignore" -@@ -3167,7 +3393,8 @@ - #: ../panels/network/wireless-security/eap-method-peap.ui.h:1 - #: ../panels/network/wireless-security/eap-method-ttls.ui.h:1 - #: ../panels/network/wireless-security/ws-dynamic-wep.ui.h:1 --#: ../panels/network/wireless-security/ws-wpa-eap.ui.h:1 ../panels/printers/authentication-dialog.ui.h:1 -+#: ../panels/network/wireless-security/ws-wpa-eap.ui.h:1 -+#: ../panels/printers/authentication-dialog.ui.h:1 - msgid " " - msgstr " " - -@@ -3185,13 +3412,15 @@ - - #: ../panels/network/wireless-security/eap-method-leap.ui.h:1 - #: ../panels/network/wireless-security/eap-method-simple.ui.h:1 --#: ../panels/network/wireless-security/ws-leap.ui.h:1 ../panels/user-accounts/data/account-dialog.ui.h:3 -+#: ../panels/network/wireless-security/ws-leap.ui.h:1 -+#: ../panels/user-accounts/data/account-dialog.ui.h:3 - msgid "_Username" - msgstr "_Benutzername" - - #: ../panels/network/wireless-security/eap-method-leap.ui.h:3 - #: ../panels/network/wireless-security/eap-method-simple.ui.h:4 --#: ../panels/network/wireless-security/eap-method-tls.ui.h:6 ../panels/network/wireless-security/ws-leap.ui.h:3 -+#: ../panels/network/wireless-security/eap-method-tls.ui.h:6 -+#: ../panels/network/wireless-security/ws-leap.ui.h:3 - #: ../panels/network/wireless-security/ws-wpa-psk.ui.h:3 - msgid "Sho_w password" - msgstr "Pass_wort zeigen" -@@ -3235,13 +3464,15 @@ - - #: ../panels/network/wireless-security/eap-method-tls.c:285 - msgid "" --"The selected private key does not appear to be protected by a password. This could allow your security " --"credentials to be compromised. Please select a password-protected private key.\n" -+"The selected private key does not appear to be protected by a password. " -+"This could allow your security credentials to be compromised. Please select " -+"a password-protected private key.\n" - "\n" - "(You can password-protect your private key with openssl)" - msgstr "" --"Der gewählte Schlüssel scheint nicht durch ein Passwort geschützt zu sein. Dies gefährdet Ihre " --"Sicherheitsinformationen. Bitte wählen Sie einen durch ein Passwort geschützten privaten Schlüssel.\n" -+"Der gewählte Schlüssel scheint nicht durch ein Passwort geschützt zu sein. " -+"Dies gefährdet Ihre Sicherheitsinformationen. Bitte wählen Sie einen durch " -+"ein Passwort geschützten privaten Schlüssel.\n" - "\n" - "(Sie können Ihren Schlüssel mit openssl mit einem Passwort schützen)" - -@@ -3310,7 +3541,8 @@ - msgstr "Geschütztes EAP (PEAP)" - - #: ../panels/network/wireless-security/ws-dynamic-wep.ui.h:2 --#: ../panels/network/wireless-security/ws-wep-key.ui.h:9 ../panels/network/wireless-security/ws-wpa-eap.ui.h:2 -+#: ../panels/network/wireless-security/ws-wep-key.ui.h:9 -+#: ../panels/network/wireless-security/ws-wpa-eap.ui.h:2 - msgid "Au_thentication" - msgstr "_Legitimierung" - -@@ -3388,10 +3620,13 @@ - msgid "Show Details in Lock Screen" - msgstr "Details im Sperrbildschirm zeigen" - --#: ../panels/notifications/cc-notifications-panel.c:185 ../panels/power/cc-power-panel.c:1703 --#: ../panels/power/cc-power-panel.c:1710 ../panels/privacy/cc-privacy-panel.c:84 --#: ../panels/privacy/cc-privacy-panel.c:124 ../panels/universal-access/cc-ua-panel.c:257 --#: ../panels/universal-access/cc-ua-panel.c:572 ../panels/universal-access/cc-ua-panel.c:695 -+#: ../panels/notifications/cc-notifications-panel.c:185 -+#: ../panels/power/cc-power-panel.c:1710 ../panels/power/cc-power-panel.c:1717 -+#: ../panels/privacy/cc-privacy-panel.c:84 -+#: ../panels/privacy/cc-privacy-panel.c:124 -+#: ../panels/universal-access/cc-ua-panel.c:257 -+#: ../panels/universal-access/cc-ua-panel.c:572 -+#: ../panels/universal-access/cc-ua-panel.c:695 - msgid "On" - msgstr "An" - -@@ -3401,7 +3636,8 @@ - - #: ../panels/notifications/gnome-notifications-panel.desktop.in.in.h:2 - msgid "Control which notifications are displayed and what they show" --msgstr "Legen Sie fest, wie Nachrichten angezeigt werden und was diese anzeigen" -+msgstr "" -+"Legen Sie fest, wie Nachrichten angezeigt werden und was diese anzeigen" - - #. Translators: those are keywords for the notifications control-center panel - #: ../panels/notifications/gnome-notifications-panel.desktop.in.in.h:4 -@@ -3485,16 +3721,17 @@ - - #: ../panels/online-accounts/gnome-online-accounts-panel.desktop.in.in.h:2 - msgid "Connect to your online accounts and decide what to use them for" --msgstr "Verbinden Sie sich mit Ihren Online-Konten und entscheiden Sie, wofür diese genutzt werden" -+msgstr "" -+"Verbinden Sie sich mit Ihren Online-Konten und entscheiden Sie, wofür diese " -+"genutzt werden" - - #. For ReadItLater and Pocket, see http://en.wikipedia.org/wiki/Pocket_(application) - #: ../panels/online-accounts/gnome-online-accounts-panel.desktop.in.in.h:4 - msgid "" --"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;Kerberos;IMAP;SMTP;Pocket;" --"ReadItLater;" -+"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;Kerberos;IMAP;SMTP;Pocket;ReadItLater;" - msgstr "" --"Google;Facebook;Twitter;Yahoo;Internet;Online;Chat;Kalendar;Mail;E-Mail;Kontakte;ownCloud;Kerberos;IMAP;SMTP;" --"Pocket;ReadItLater;" -+"Google;Facebook;Twitter;Yahoo;Internet;Online;Chat;Kalendar;Mail;E-" -+"Mail;Kontakte;ownCloud;Kerberos;IMAP;SMTP;Pocket;ReadItLater;" - - #: ../panels/online-accounts/online-accounts.ui.h:1 - msgid "No online accounts configured" -@@ -3510,10 +3747,11 @@ - - #: ../panels/online-accounts/online-accounts.ui.h:5 - msgid "" --"Adding an account allows your applications to access it for documents, mail, contacts, calendar, chat and more." -+"Adding an account allows your applications to access it for documents, mail, " -+"contacts, calendar, chat and more." - msgstr "" --"Fügen Sie ein Konto hinzu, damit Ihre Anwendungen Zugang zu Dokumenten, Mails, Kontakten, Kalender, Chat und " --"mehr erhalten" -+"Fügen Sie ein Konto hinzu, damit Ihre Anwendungen Zugang zu Dokumenten, " -+"Mails, Kontakten, Kalender, Chat und mehr erhalten" - - #: ../panels/power/cc-power-panel.c:192 - msgid "Unknown time" -@@ -3642,7 +3880,7 @@ - - #. TRANSLATORS: secondary battery, misc - #: ../panels/power/cc-power-panel.c:503 ../panels/power/cc-power-panel.c:726 --#: ../panels/power/cc-power-panel.c:2032 -+#: ../panels/power/cc-power-panel.c:2046 - msgid "Battery" - msgstr "Akku" - -@@ -3695,67 +3933,67 @@ - msgid "Power Saving" - msgstr "Energie sparen" - --#: ../panels/power/cc-power-panel.c:1482 -+#: ../panels/power/cc-power-panel.c:1489 - msgid "_Screen brightness" - msgstr "_Bildschirmhelligkeit" - --#: ../panels/power/cc-power-panel.c:1488 -+#: ../panels/power/cc-power-panel.c:1495 - msgid "_Keyboard brightness" - msgstr "_Tastaturbeleuchtungshelligkeit" - --#: ../panels/power/cc-power-panel.c:1498 -+#: ../panels/power/cc-power-panel.c:1505 - msgid "_Dim screen when inactive" - msgstr "Bildschirm bei Inaktivität ab_dunkeln" - --#: ../panels/power/cc-power-panel.c:1523 -+#: ../panels/power/cc-power-panel.c:1530 - msgid "_Blank screen" - msgstr "Bildschirm _abschalten" - --#: ../panels/power/cc-power-panel.c:1560 -+#: ../panels/power/cc-power-panel.c:1567 - msgid "_Wi-Fi" - msgstr "_WLAN" - --#: ../panels/power/cc-power-panel.c:1565 -+#: ../panels/power/cc-power-panel.c:1572 - msgid "Turns off wireless devices" - msgstr "Schaltet drahtlose Geräte aus. " - --#: ../panels/power/cc-power-panel.c:1590 -+#: ../panels/power/cc-power-panel.c:1597 - msgid "_Mobile broadband" - msgstr "_Mobiles Breitband" - --#: ../panels/power/cc-power-panel.c:1595 -+#: ../panels/power/cc-power-panel.c:1602 - msgid "Turns off mobile broadband (3G, 4G, WiMax, etc.) devices" - msgstr "Schaltet Geräte für mobiles Breitband (3G, 4G, WiMax etc.) aus." - --#: ../panels/power/cc-power-panel.c:1645 -+#: ../panels/power/cc-power-panel.c:1652 - msgid "_Bluetooth" - msgstr "_Bluetooth" - --#: ../panels/power/cc-power-panel.c:1699 -+#: ../panels/power/cc-power-panel.c:1706 - msgid "When on battery power" - msgstr "Wenn im Akkubetrieb" - --#: ../panels/power/cc-power-panel.c:1701 -+#: ../panels/power/cc-power-panel.c:1708 - msgid "When plugged in" - msgstr "Wenn angeschlossen" - --#: ../panels/power/cc-power-panel.c:1831 -+#: ../panels/power/cc-power-panel.c:1838 - msgid "Suspend & Power Off" - msgstr "Bereitschaft und Ausschalten" - --#: ../panels/power/cc-power-panel.c:1864 -+#: ../panels/power/cc-power-panel.c:1878 - msgid "_Automatic suspend" - msgstr "_Automatisch in Bereitschaft gehen" - --#: ../panels/power/cc-power-panel.c:1888 -+#: ../panels/power/cc-power-panel.c:1902 - msgid "When battery power is _critical" - msgstr "Bei _kritischem Akku-Ladezustand" - --#: ../panels/power/cc-power-panel.c:1943 -+#: ../panels/power/cc-power-panel.c:1957 - msgid "Power Off" - msgstr "Ausschalten" - --#: ../panels/power/cc-power-panel.c:2079 -+#: ../panels/power/cc-power-panel.c:2100 - msgid "Devices" - msgstr "Geräte" - -@@ -3765,13 +4003,16 @@ - - #: ../panels/power/gnome-power-panel.desktop.in.in.h:2 - msgid "View your battery status and change power saving settings" --msgstr "Den Status Ihres Akkus anzeigen und die Energiespareinstellungen ändern" -+msgstr "" -+"Den Status Ihres Akkus anzeigen und die Energiespareinstellungen ändern" - - # Ich glaube hier können (beliebig viele) Schlagworte frei gewählt werden - #. Translators: those are keywords for the power control-center panel - #: ../panels/power/gnome-power-panel.desktop.in.in.h:4 --msgid "Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;" --msgstr "Energie;Schlafmodus;Bereitschaft;Ruhezustand;Akku;Helligkeit;Abdunkeln;Abschalten;Bildschirm;DPMS;" -+msgid "" -+"Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;" -+msgstr "" -+"Energie;Schlafmodus;Bereitschaft;Ruhezustand;Akku;Helligkeit;Abdunkeln;Abschalten;Bildschirm;DPMS;" - - #: ../panels/power/power.ui.h:1 - msgid "Hibernate" -@@ -3857,7 +4098,8 @@ - msgid "Authenticate" - msgstr "Legitimieren" - --#: ../panels/printers/authentication-dialog.ui.h:5 ../panels/sharing/sharing.ui.h:14 -+#: ../panels/printers/authentication-dialog.ui.h:5 -+#: ../panels/sharing/sharing.ui.h:14 - #: ../panels/user-accounts/data/account-dialog.ui.h:6 - msgid "Password" - msgstr "Passwort" -@@ -3926,7 +4168,8 @@ - - #. Translators: Someone has stopped the Printer - #. Translators: Printer's state (no jobs can be processed) --#: ../panels/printers/cc-printers-panel.c:614 ../panels/printers/cc-printers-panel.c:805 -+#: ../panels/printers/cc-printers-panel.c:614 -+#: ../panels/printers/cc-printers-panel.c:805 - msgctxt "printer state" - msgid "Stopped" - msgstr "Angehalten" -@@ -4010,41 +4253,46 @@ - msgstr[1] "%u aktiv" - - #. Translators: Addition of the new printer failed. --#: ../panels/printers/cc-printers-panel.c:1777 -+#: ../panels/printers/cc-printers-panel.c:1779 - msgid "Failed to add new printer." - msgstr "Neuer Drucker konnte nicht hinzugefügt werden." - --#: ../panels/printers/cc-printers-panel.c:1944 -+#: ../panels/printers/cc-printers-panel.c:1946 - msgid "Select PPD File" - msgstr "Wählen Sie die PPD-Datei" - --#: ../panels/printers/cc-printers-panel.c:1953 --msgid "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD.GZ)" --msgstr "PostScript-Druckerbeschreibungsdateien (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD.GZ)" -+#: ../panels/printers/cc-printers-panel.c:1955 -+msgid "" -+"PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." -+"PPD.GZ)" -+msgstr "" -+"PostScript-Druckerbeschreibungsdateien (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." -+"PPD.GZ)" - --#: ../panels/printers/cc-printers-panel.c:2258 -+#: ../panels/printers/cc-printers-panel.c:2260 - msgid "No suitable driver found" - msgstr "Kein passender Treiber gefunden" - --#: ../panels/printers/cc-printers-panel.c:2327 -+#: ../panels/printers/cc-printers-panel.c:2329 - msgid "Searching for preferred drivers…" - msgstr "Suchen nach bevorzugten Treibern …" - --#: ../panels/printers/cc-printers-panel.c:2342 -+#: ../panels/printers/cc-printers-panel.c:2344 - msgid "Select from database…" - msgstr "Aus der Datenbank wählen …" - --#: ../panels/printers/cc-printers-panel.c:2351 -+#: ../panels/printers/cc-printers-panel.c:2353 - msgid "Provide PPD File…" - msgstr "Wählen Sie eine PPD-Datei …" - - #. Translators: Name of job which makes printer to print test page --#: ../panels/printers/cc-printers-panel.c:2502 ../panels/printers/cc-printers-panel.c:2525 -+#: ../panels/printers/cc-printers-panel.c:2504 -+#: ../panels/printers/cc-printers-panel.c:2527 - msgid "Test page" - msgstr "Testseite" - - #. Translators: The XML file containing user interface can not be loaded --#: ../panels/printers/cc-printers-panel.c:2933 -+#: ../panels/printers/cc-printers-panel.c:2935 - #, c-format - msgid "Could not load ui: %s" - msgstr "Die Benutzeroberfläche konnte nicht geladen werden: %s" -@@ -4055,7 +4303,9 @@ - - #: ../panels/printers/gnome-printers-panel.desktop.in.in.h:2 - msgid "Add printers, view printer jobs and decide how you want to print" --msgstr "Drucker hinzufügen, Druckeraufgaben anzeigen und entscheiden, wie Sie drucken möchten" -+msgstr "" -+"Drucker hinzufügen, Druckeraufgaben anzeigen und entscheiden, wie Sie " -+"drucken möchten" - - #. Translators: those are keywords for the printing control-center panel - #: ../panels/printers/gnome-printers-panel.desktop.in.in.h:4 -@@ -4067,7 +4317,8 @@ - msgid "Active Jobs" - msgstr "Aktive Druckaufträge" - --#: ../panels/printers/jobs-dialog.ui.h:3 ../panels/printers/options-dialog.ui.h:2 -+#: ../panels/printers/jobs-dialog.ui.h:3 -+#: ../panels/printers/options-dialog.ui.h:2 - msgid "Close" - msgstr "Schließen" - -@@ -4100,7 +4351,9 @@ - #. Translators: The entered text should contain network address of a printer or a text which will filter found devices (their names and locations) - #: ../panels/printers/new-printer-dialog.ui.h:9 - msgid "Enter address of a printer or a text to filter results" --msgstr "Geben Sie die Adresse eines Druckers oder einen Text ein zum Filtern der Ergebnisse" -+msgstr "" -+"Geben Sie die Adresse eines Druckers oder einen Text ein zum Filtern der " -+"Ergebnisse" - - #: ../panels/printers/options-dialog.ui.h:1 - msgid "Loading options…" -@@ -4125,17 +4378,20 @@ - msgstr "LPD-Drucker" - - #. Translators: this is an option of "Two Sided" --#: ../panels/printers/pp-ipp-option-widget.c:66 ../panels/printers/pp-ppd-option-widget.c:70 -+#: ../panels/printers/pp-ipp-option-widget.c:66 -+#: ../panels/printers/pp-ppd-option-widget.c:70 - msgid "One Sided" - msgstr "Einseitig" - - #. Translators: this is an option of "Two Sided" --#: ../panels/printers/pp-ipp-option-widget.c:68 ../panels/printers/pp-ppd-option-widget.c:72 -+#: ../panels/printers/pp-ipp-option-widget.c:68 -+#: ../panels/printers/pp-ppd-option-widget.c:72 - msgid "Long Edge (Standard)" - msgstr "Langer Rand (Vorgabe)" - - #. Translators: this is an option of "Two Sided" --#: ../panels/printers/pp-ipp-option-widget.c:70 ../panels/printers/pp-ppd-option-widget.c:74 -+#: ../panels/printers/pp-ipp-option-widget.c:70 -+#: ../panels/printers/pp-ppd-option-widget.c:74 - msgid "Short Edge (Flip)" - msgstr "Kurzer Rand (Umdrehen)" - -@@ -4337,15 +4593,18 @@ - msgstr "Erweitert" - - #. Translators: this is an option of "Paper Source" --#: ../panels/printers/pp-ppd-option-widget.c:76 ../panels/printers/pp-ppd-option-widget.c:78 -+#: ../panels/printers/pp-ppd-option-widget.c:76 -+#: ../panels/printers/pp-ppd-option-widget.c:78 - #: ../panels/printers/pp-ppd-option-widget.c:86 - msgid "Auto Select" - msgstr "Automatische Auswahl" - - #. Translators: this is an option of "Paper Source" - #. Translators: this is an option of "Resolution" --#: ../panels/printers/pp-ppd-option-widget.c:80 ../panels/printers/pp-ppd-option-widget.c:82 --#: ../panels/printers/pp-ppd-option-widget.c:84 ../panels/printers/pp-ppd-option-widget.c:88 -+#: ../panels/printers/pp-ppd-option-widget.c:80 -+#: ../panels/printers/pp-ppd-option-widget.c:82 -+#: ../panels/printers/pp-ppd-option-widget.c:84 -+#: ../panels/printers/pp-ppd-option-widget.c:88 - msgid "Printer Default" - msgstr "Drucker-Voreinstellung" - -@@ -4383,7 +4642,9 @@ - #: ../panels/printers/pp-samba.c:248 - #, c-format - msgid "Enter your username and password to view printers available on %s." --msgstr "Geben Sie Ihren Benutzernamen und Ihr Passwort ein, um die verfügbaren Drucker auf %s anzuzeigen" -+msgstr "" -+"Geben Sie Ihren Benutzernamen und Ihr Passwort ein, um die verfügbaren " -+"Drucker auf %s anzuzeigen" - - #: ../panels/printers/printers.ui.h:1 - msgid "Add Printer" -@@ -4412,7 +4673,7 @@ - msgid "Jobs" - msgstr "Aufträge" - --#. Translators: Opens a dialog containing printer -+#. Translators: Opens a dialog containing printer's jobs - #: ../panels/printers/printers.ui.h:11 - msgid "Show _Jobs" - msgstr "_Aufträge anzeigen" -@@ -4438,7 +4699,7 @@ - msgid "Print _Test Page" - msgstr "_Testseite drucken" - --#. Translators: This button opens printer -+#. Translators: This button opens printer's options tab - #: ../panels/printers/printers.ui.h:22 - msgid "_Options" - msgstr "_Optionen" -@@ -4450,11 +4711,9 @@ - - #. Translators: The CUPS server is not running (we can not connect to it). - #: ../panels/printers/printers.ui.h:26 --msgid "" --"Sorry! The system printing service\n" -+msgid "Sorry! The system printing service\n" - "doesn't seem to be available." --msgstr "" --"Es scheint, dass der Systemdruckdienst\n" -+msgstr "Es scheint, dass der Systemdruckdienst\n" - "nicht verfügbar ist." - - #: ../panels/privacy/cc-privacy-panel.c:252 ../panels/privacy/privacy.ui.h:24 -@@ -4503,12 +4762,16 @@ - - #: ../panels/privacy/gnome-privacy-panel.desktop.in.in.h:2 - msgid "Protect your personal information and control what others might see" --msgstr "Schützen Sie Ihre persönlichen Informationen und kontrollieren Sie, was andere sehen können" -+msgstr "" -+"Schützen Sie Ihre persönlichen Informationen und kontrollieren Sie, was " -+"andere sehen können" - - #. Translators: those are keywords for the privacy control-center panel - #: ../panels/privacy/gnome-privacy-panel.desktop.in.in.h:4 --msgid "screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;network;identity;" --msgstr "Bildschirm;Sperre;Diagnose;Absturz;Crash;Privat;temporär;Index;Name;Netzwerk;Identität;" -+msgid "" -+"screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;network;identity;" -+msgstr "" -+"Bildschirm;Sperre;Diagnose;Absturz;Crash;Privat;temporär;Index;Name;Netzwerk;Identität;" - - #: ../panels/privacy/privacy.ui.h:1 - msgid "Screen Turns Off" -@@ -4561,9 +4824,12 @@ - msgstr "Für immer" - - #: ../panels/privacy/privacy.ui.h:20 --msgid "Remembering your history makes things easier to find again. These items are never shared over the network." -+msgid "" -+"Remembering your history makes things easier to find again. These items are " -+"never shared over the network." - msgstr "" --"Das Behalten der Chronik erleichtert zukünftige Suchen. Die Objekte werden niemals im Netzwerk freigegeben." -+"Das Behalten der Chronik erleichtert zukünftige Suchen. Die Objekte werden " -+"niemals im Netzwerk freigegeben." - - #: ../panels/privacy/privacy.ui.h:21 - msgid "_Recently Used" -@@ -4595,11 +4861,11 @@ - - #: ../panels/privacy/privacy.ui.h:30 - msgid "" --"Automatically purge the Trash and temporary files to help keep your computer free of unnecessary sensitive " --"information." -+"Automatically purge the Trash and temporary files to help keep your computer " -+"free of unnecessary sensitive information." - msgstr "" --"Automatisch den Papierkorb und temporäre Dateien löschen, um Ihren Rechner frei von unnötigen sensiblen Daten " --"zu halten." -+"Automatisch den Papierkorb und temporäre Dateien löschen, um Ihren Rechner " -+"frei von unnötigen sensiblen Daten zu halten." - - #: ../panels/privacy/privacy.ui.h:31 - msgid "Automatically empty _Trash" -@@ -4615,15 +4881,19 @@ - - #: ../panels/privacy/privacy.ui.h:37 - msgid "" --"Sending us information about which software you use helps us provide you with more accurate recommendations. It " --"also helps us to improve our software.\n" -+"Sending us information about which software you use helps us provide you " -+"with more accurate recommendations. It also helps us to improve our software." - "\n" --"All the information we collect is made anonymous, and we will never share your data with third parties." -+"\n" -+"All the information we collect is made anonymous, and we will never share " -+"your data with third parties." - msgstr "" --"Durch das Senden Ihrer Softwarenutzungsinformationen helfen Sie Ihnen genauere Empfehlungen anzubieten. " --"Außerdem helfen Sie uns unsere Software zu verbessern.\n" -+"Durch das Senden Ihrer Softwarenutzungsinformationen helfen Sie Ihnen " -+"genauere Empfehlungen anzubieten. Außerdem helfen Sie uns unsere Software zu " -+"verbessern.\n" - "\n" --"Sämtliche gesammelte Informationen werden anonymisiert und wir werden Ihre Daten nicht mit Dritten teilen." -+"Sämtliche gesammelte Informationen werden anonymisiert und wir werden Ihre " -+"Daten nicht mit Dritten teilen." - - #: ../panels/privacy/privacy.ui.h:40 - msgid "_Send software usage statistics" -@@ -4664,27 +4934,29 @@ - msgid "Other" - msgstr "Weitere" - --#: ../panels/region/cc-region-panel.c:243 ../panels/user-accounts/um-user-panel.c:900 -+#: ../panels/region/cc-region-panel.c:243 -+#: ../panels/user-accounts/um-user-panel.c:1113 - msgid "Your session needs to be restarted for changes to take effect" - msgstr "Abmelden, damit die Änderungen wirksam werden" - --#: ../panels/region/cc-region-panel.c:247 ../panels/user-accounts/um-user-panel.c:904 -+#: ../panels/region/cc-region-panel.c:247 -+#: ../panels/user-accounts/um-user-panel.c:1117 - msgid "Restart Now" - msgstr "Jetzt neustarten" - --#: ../panels/region/cc-region-panel.c:866 -+#: ../panels/region/cc-region-panel.c:867 - msgid "No input source selected" - msgstr "Keine Eingabequelle gefunden" - --#: ../panels/region/cc-region-panel.c:1096 -+#: ../panels/region/cc-region-panel.c:1097 - msgid "Sorry" - msgstr "Entschuldigung" - --#: ../panels/region/cc-region-panel.c:1098 -+#: ../panels/region/cc-region-panel.c:1099 - msgid "Input methods can't be used on the login screen" - msgstr "Eingabequellen können nicht auf dem Anmeldebildschirm genutzt werden." - --#: ../panels/region/cc-region-panel.c:1738 -+#: ../panels/region/cc-region-panel.c:1739 - msgid "Login Screen" - msgstr "Anmeldebildschirm" - -@@ -4721,8 +4993,10 @@ - msgstr "Region und Sprache" - - #: ../panels/region/gnome-region-panel.desktop.in.in.h:2 --msgid "Select your display language, formats, keyboard layouts and input sources" --msgstr "Wählen Sie Ihre Sprache, Formate, Tastaturbelegungen und die Eingabequellen" -+msgid "" -+"Select your display language, formats, keyboard layouts and input sources" -+msgstr "" -+"Wählen Sie Ihre Sprache, Formate, Tastaturbelegungen und die Eingabequellen" - - #. Translators: those are keywords for the region control-center panel - #: ../panels/region/gnome-region-panel.desktop.in.in.h:4 -@@ -4791,7 +5065,9 @@ - - #: ../panels/region/region.ui.h:7 - msgid "Login settings are used by all users when logging into the system" --msgstr "Anmeldeeinstellungen werden für alle Benutzer verwendet, wenn sich diese am System anmelden." -+msgstr "" -+"Anmeldeeinstellungen werden für alle Benutzer verwendet, wenn sich diese am " -+"System anmelden." - - #: ../panels/search/cc-search-locations-dialog.c:476 - msgctxt "Search Location" -@@ -4825,8 +5101,11 @@ - msgstr "Suchen" - - #: ../panels/search/gnome-search-panel.desktop.in.in.h:2 --msgid "Control which applications show search results in the Activities Overview" --msgstr "Legen Sie fest, welche Anwendungen Suchergebnisse in der Aktivitätenübersicht anzeigen" -+msgid "" -+"Control which applications show search results in the Activities Overview" -+msgstr "" -+"Legen Sie fest, welche Anwendungen Suchergebnisse in der " -+"Aktivitätenübersicht anzeigen" - - #. Translators: those are keywords for the search control-center panel - #: ../panels/search/gnome-search-panel.desktop.in.in.h:4 -@@ -4854,7 +5133,8 @@ - msgid "On" - msgstr "An" - --#: ../panels/sharing/cc-sharing-panel.c:274 ../panels/sharing/cc-sharing-panel.c:301 -+#: ../panels/sharing/cc-sharing-panel.c:274 -+#: ../panels/sharing/cc-sharing-panel.c:301 - msgctxt "service is disabled" - msgid "Off" - msgstr "Aus" -@@ -4888,11 +5168,9 @@ - #. Translators: those are keywords for the sharing control-center panel - #: ../panels/sharing/gnome-sharing-panel.desktop.in.in.h:4 - msgid "" --"share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;pictures;photos;movies;server;" --"renderer;" -+"share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;pictures;photos;movies;server;renderer;" - msgstr "" --"Freigabe;ssh;Rechner;Name;Entfernt;Arbeitsumgebung;Umgebung;bluetooth;obex;Medien;Audio;Video;Bilder;Fotos;" --"Filme;Server;" -+"Freigabe;ssh;Rechner;Name;Entfernt;Arbeitsumgebung;Umgebung;bluetooth;obex;Medien;Audio;Video;Bilder;Fotos;Filme;Server;" - - #: ../panels/sharing/org.gnome.controlcenter.remote-login-helper.policy.in.in.h:1 - msgid "Enable or disable remote login" -@@ -4900,16 +5178,18 @@ - - #: ../panels/sharing/org.gnome.controlcenter.remote-login-helper.policy.in.in.h:2 - msgid "Authentication is required to enable or disable remote login" --msgstr "Legitimierung ist erforderlich, um die entfernte Anmeldung zu aktivieren oder zu deaktivieren" -+msgstr "" -+"Legitimierung ist erforderlich, um die entfernte Anmeldung zu aktivieren " -+"oder zu deaktivieren" - - #. Label - #: ../panels/sharing/cc-sharing-networks.c:303 - msgid "No networks selected for sharing" - msgstr "Es sind keine Netzwerke zur Freigabe gewählt" - --#. -+#. - #. * vim: sw=2 ts=8 cindent noai bs=2 --#. -+#. - #: ../panels/sharing/networks.ui.h:1 - msgid "Networks" - msgstr "Netzwerke" -@@ -4919,8 +5199,12 @@ - msgstr "Bluetooth-Freigabe" - - #: ../panels/sharing/sharing.ui.h:2 --msgid "Bluetooth Sharing allows you to share files with other Bluetooth enabled devices" --msgstr "Bluetooth-Freigabe ermöglicht die Freigabe von Dateien für andere Bluetooth-fähige Geräte" -+msgid "" -+"Bluetooth Sharing allows you to share files with other Bluetooth enabled " -+"devices" -+msgstr "" -+"Bluetooth-Freigabe ermöglicht die Freigabe von Dateien für andere Bluetooth-" -+"fähige Geräte" - - #: ../panels/sharing/sharing.ui.h:3 - msgid "Only Receive From Trusted Devices" -@@ -4952,16 +5236,17 @@ - - #: ../panels/sharing/sharing.ui.h:10 - msgid "Some services are disabled because of no network access." --msgstr "Einige Dienste sind deaktiviert, weil kein Netzwerk-Zugriff möglich ist." -+msgstr "" -+"Einige Dienste sind deaktiviert, weil kein Netzwerk-Zugriff möglich ist." - - #: ../panels/sharing/sharing.ui.h:12 - #, no-c-format - msgid "" --"Personal File Sharing allows you to share your Public folder with others on your current network using: dav://%s" -+"Personal File Sharing allows you to share your Public folder with others on " -+"your current network using: dav://%s" - msgstr "" --"Persönliche Dateifreigabe ermöglicht es Ihnen, Ihren öffentlichen Ordner für andere in Ihrem Netzwerk " --"freizugeben mit: dav://%s" -+"Persönliche Dateifreigabe ermöglicht es Ihnen, Ihren öffentlichen Ordner für " -+"andere in Ihrem Netzwerk freizugeben mit: dav://%s" - - #: ../panels/sharing/sharing.ui.h:13 - msgid "Require Password" -@@ -4973,15 +5258,18 @@ - "Allow remote users to connect using the Secure Shell command:\n" - "ssh %s" - msgstr "" --"Entfernten Benutzern eine Verbindung mit folgendem Secure-Shell-Befehl erlauben:\n" -+"Entfernten Benutzern eine Verbindung mit folgendem Secure-Shell-Befehl " -+"erlauben:\n" - "ssh %s" - - #: ../panels/sharing/sharing.ui.h:19 - #, no-c-format --msgid "Allow remote users to view or control your screen by connecting to: vnc://%s" -+msgid "" -+"Allow remote users to view or control your screen by connecting to: vnc://%s" - msgstr "" --"Entfernten Benutzern Ansicht und Steuerung Ihres Bildschirms mit folgender Verbindung erlauben: vnc://%s" -+"Entfernten Benutzern Ansicht und Steuerung Ihres Bildschirms mit folgender " -+"Verbindung erlauben: vnc://%s" - - #: ../panels/sharing/sharing.ui.h:20 - msgid "Allow Remote Control" -@@ -5027,7 +5315,8 @@ - #. Translators: those are keywords for the sound control-center panel - #: ../panels/sound/data/gnome-sound-panel.desktop.in.in.h:4 - msgid "Card;Microphone;Volume;Fade;Balance;Bluetooth;Headset;Audio;" --msgstr "Karte;Mikrofon;Lautstärkeregler;Lautstärke;Ausblenden;Balance;Bluetooth;Headset;Audio;" -+msgstr "" -+"Karte;Mikrofon;Lautstärkeregler;Lautstärke;Ausblenden;Balance;Bluetooth;Headset;Audio;" - - # CHECK upto line 505 - #. Translators: This is the name of an audio file that sounds like the bark of a dog. -@@ -5142,7 +5431,8 @@ - msgid "Peak detect" - msgstr "Spitzenpegelerkennung" - --#: ../panels/sound/gvc-mixer-dialog.c:1516 ../panels/sound/gvc-sound-theme-chooser.c:564 -+#: ../panels/sound/gvc-mixer-dialog.c:1516 -+#: ../panels/sound/gvc-sound-theme-chooser.c:564 - msgid "Name" - msgstr "Name" - -@@ -5201,18 +5491,21 @@ - - #: ../panels/sound/gvc-mixer-dialog.c:1820 - msgid "No application is currently playing or recording audio." --msgstr "Derzeit wird von keiner Audio-Anwendung aufgenommen oder wiedergegeben." -+msgstr "" -+"Derzeit wird von keiner Audio-Anwendung aufgenommen oder wiedergegeben." - - #: ../panels/sound/gvc-sound-theme-chooser.c:188 - msgid "Built-in" - msgstr "Eingebaut" - --#: ../panels/sound/gvc-sound-theme-chooser.c:454 ../panels/sound/gvc-sound-theme-chooser.c:466 -+#: ../panels/sound/gvc-sound-theme-chooser.c:454 -+#: ../panels/sound/gvc-sound-theme-chooser.c:466 - #: ../panels/sound/gvc-sound-theme-chooser.c:478 - msgid "Sound Preferences" - msgstr "Klang-Einstellungen" - --#: ../panels/sound/gvc-sound-theme-chooser.c:457 ../panels/sound/gvc-sound-theme-chooser.c:468 -+#: ../panels/sound/gvc-sound-theme-chooser.c:457 -+#: ../panels/sound/gvc-sound-theme-chooser.c:468 - #: ../panels/sound/gvc-sound-theme-chooser.c:480 - msgid "Testing event sound" - msgstr "Ereignisklang wird getestet" -@@ -5233,7 +5526,8 @@ - msgid "Stop" - msgstr "Stop" - --#: ../panels/sound/gvc-speaker-test.c:219 ../panels/sound/gvc-speaker-test.c:331 -+#: ../panels/sound/gvc-speaker-test.c:219 -+#: ../panels/sound/gvc-speaker-test.c:331 - msgid "Test" - msgstr "Test" - -@@ -5252,11 +5546,10 @@ - #. Translators: those are keywords for the universal access control-center panel - #: ../panels/universal-access/gnome-universal-access-panel.desktop.in.in.h:4 - msgid "" --"Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;AccessX;Sticky;Keys;Slow;Bounce;" --"Mouse;" -+"Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;AccessX;Sticky;Keys;Slow;Bounce;Mouse;" - msgstr "" --"Tastatur;Maus;a11y;Barrierefreiheit;Kontrast;Zoom;Vergrößern;Bildschirm;Bildschirmleser;Text;Schrift;Größe;" --"AccessX;Klebrige Tasten;Tasten;Langsam;Springende Tasten;Tastaturmaus;" -+"Tastatur;Maus;a11y;Barrierefreiheit;Kontrast;Zoom;Vergrößern;Bildschirm;Bildschirmleser;Text;Schrift;Größe;AccessX;Klebrige " -+"Tasten;Tasten;Langsam;Springende Tasten;Tastaturmaus;" - - #: ../panels/universal-access/uap.ui.h:1 - msgid "_Always Show Universal Access Menu" -@@ -5320,7 +5613,9 @@ - - #: ../panels/universal-access/uap.ui.h:18 - msgid "The screen reader reads displayed text as you move the focus." --msgstr "Der Bildschirmleser liest den angezeigten Text wenn Sie den Fokus verschieben." -+msgstr "" -+"Der Bildschirmleser liest den angezeigten Text wenn Sie den Fokus " -+"verschieben." - - #: ../panels/universal-access/uap.ui.h:19 - msgid "_Screen Reader" -@@ -5332,7 +5627,9 @@ - - #: ../panels/universal-access/uap.ui.h:21 - msgid "Beep when Num Lock or Caps Lock are turned on." --msgstr "Beim Einschalten des Ziffernblocks oder der Feststelltaste einen Signalton ausgeben." -+msgstr "" -+"Beim Einschalten des Ziffernblocks oder der Feststelltaste einen Signalton " -+"ausgeben." - - #: ../panels/universal-access/uap.ui.h:22 - msgid "Visual Alerts" -@@ -5380,7 +5677,8 @@ - - #: ../panels/universal-access/uap.ui.h:33 - msgid "Puts a delay between when a key is pressed and when it is accepted" --msgstr "Setzt eine Verzögerung zwischen dem Drücken und Akzeptieren einer Taste" -+msgstr "" -+"Setzt eine Verzögerung zwischen dem Drücken und Akzeptieren einer Taste" - - #: ../panels/universal-access/uap.ui.h:34 - msgid "A_cceptance delay:" -@@ -5687,13 +5985,15 @@ - msgid "Color Effects" - msgstr "Farbeffekte" - --#: ../panels/user-accounts/data/account-dialog.ui.h:1 ../panels/user-accounts/data/user-accounts-dialog.ui.h:1 -+#: ../panels/user-accounts/data/account-dialog.ui.h:1 -+#: ../panels/user-accounts/data/user-accounts-dialog.ui.h:1 - #: ../panels/user-accounts/um-account-type.c:34 - msgctxt "Account type" - msgid "Standard" - msgstr "Standard" - --#: ../panels/user-accounts/data/account-dialog.ui.h:2 ../panels/user-accounts/data/user-accounts-dialog.ui.h:2 -+#: ../panels/user-accounts/data/account-dialog.ui.h:2 -+#: ../panels/user-accounts/data/user-accounts-dialog.ui.h:2 - #: ../panels/user-accounts/um-account-type.c:36 - msgctxt "Account type" - msgid "Administrator" -@@ -5703,15 +6003,18 @@ - msgid "_Full Name" - msgstr "_Vollständiger Name" - --#: ../panels/user-accounts/data/account-dialog.ui.h:5 ../panels/user-accounts/data/user-accounts-dialog.ui.h:5 -+#: ../panels/user-accounts/data/account-dialog.ui.h:5 -+#: ../panels/user-accounts/data/user-accounts-dialog.ui.h:5 - msgid "Account _Type" - msgstr "Konten_typ" - --#: ../panels/user-accounts/data/account-dialog.ui.h:7 ../panels/user-accounts/data/password-dialog.ui.h:7 -+#: ../panels/user-accounts/data/account-dialog.ui.h:7 -+#: ../panels/user-accounts/data/password-dialog.ui.h:7 - msgid "Allow user to set a password when they next login" - msgstr "Bei der nächsten Anmeldung Passwort wählen" - --#: ../panels/user-accounts/data/account-dialog.ui.h:8 ../panels/user-accounts/data/password-dialog.ui.h:8 -+#: ../panels/user-accounts/data/account-dialog.ui.h:8 -+#: ../panels/user-accounts/data/password-dialog.ui.h:8 - msgid "Set a password now" - msgstr "Jetzt ein Passwort festlegen" - -@@ -5720,8 +6023,12 @@ - msgstr "Über_prüfen" - - #: ../panels/user-accounts/data/account-dialog.ui.h:11 --msgid "Enterprise login allows an existing centrally managed user account to be used on this device." --msgstr "Unternehmens-Anmeldung erlaubt es einen zentral verwalteten Benutzerkonto auf diesem Gerät zu verwenden." -+msgid "" -+"Enterprise login allows an existing centrally managed user account to be " -+"used on this device." -+msgstr "" -+"Unternehmens-Anmeldung erlaubt es einen zentral verwalteten Benutzerkonto " -+"auf diesem Gerät zu verwenden." - - #: ../panels/user-accounts/data/account-dialog.ui.h:12 - msgid "_Domain" -@@ -5730,8 +6037,7 @@ - # I believe that the text field where this string is inserted needs to render the line breaks, not hard-coded "\n - # characters - #: ../panels/user-accounts/data/account-dialog.ui.h:13 --msgid "" --"Go online to add\n" -+msgid "Go online to add\n" - "enterprise login accounts." - msgstr "Gehen Sie online, um Unternehmens-Benutzerkonten hinzuzufügen" - -@@ -5739,7 +6045,8 @@ - msgid "_Enterprise Login" - msgstr "Anmeldung in _Unternehmensumgebung" - --#: ../panels/user-accounts/data/account-dialog.ui.h:16 ../panels/user-accounts/um-account-dialog.c:1458 -+#: ../panels/user-accounts/data/account-dialog.ui.h:16 -+#: ../panels/user-accounts/um-account-dialog.c:1458 - msgid "Add User" - msgstr "Benutzerkonto hinzufügen" - -@@ -5802,7 +6109,8 @@ - msgid "Right little finger" - msgstr "Rechter kleiner Finger" - --#: ../panels/user-accounts/data/account-fingerprint.ui.h:9 ../panels/user-accounts/um-fingerprint-dialog.c:689 -+#: ../panels/user-accounts/data/account-fingerprint.ui.h:9 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:689 - msgid "Enable Fingerprint Login" - msgstr "Anmeldung mit Fingerabdruck freischalten" - -@@ -5819,10 +6127,12 @@ - msgstr "_Anderer Finger:" - - #: ../panels/user-accounts/data/account-fingerprint.ui.h:13 --msgid "Your fingerprint was successfully saved. You should now be able to log in using your fingerprint reader." -+msgid "" -+"Your fingerprint was successfully saved. You should now be able to log in " -+"using your fingerprint reader." - msgstr "" --"Ihr Fingerabdruck wurde erfolgreich gespeichert. Sie sollten sich jetzt mit Ihrem Fingerlesegerät anmelden " --"können." -+"Ihr Fingerabdruck wurde erfolgreich gespeichert. Sie sollten sich jetzt mit " -+"Ihrem Fingerlesegerät anmelden können." - - #: ../panels/user-accounts/data/gnome-user-accounts-panel.desktop.in.in.h:1 - msgid "Users" -@@ -5835,7 +6145,8 @@ - #. Translators: those are keywords for the user accounts control-center panel - #: ../panels/user-accounts/data/gnome-user-accounts-panel.desktop.in.in.h:4 - msgid "Login;Name;Fingerprint;Avatar;Logo;Face;Password;" --msgstr "Anmeldung;Name;Benutzerkonto;Fingerabdruck;Avatar;Benutzerbild;Logo;Gesicht;Passwort;" -+msgstr "" -+"Anmeldung;Name;Benutzerkonto;Fingerabdruck;Avatar;Benutzerbild;Logo;Gesicht;Passwort;" - - #: ../panels/user-accounts/data/history-dialog.ui.h:1 - msgid "Login History" -@@ -5973,10 +6284,12 @@ - - #: ../panels/user-accounts/pw-utils.c:111 - msgctxt "Password hint" --msgid "Try to avoid repeating the same type of character: you need to mix up letters, numbers and punctuation." -+msgid "" -+"Try to avoid repeating the same type of character: you need to mix up " -+"letters, numbers and punctuation." - msgstr "" --"Versuchen Sie Wiederholungen von Zeichen der selben Gruppe zu vermeiden. Sie sollten Buchstaben, Ziffern und " --"Satzzeichen mischen." -+"Versuchen Sie Wiederholungen von Zeichen der selben Gruppe zu vermeiden. Sie " -+"sollten Buchstaben, Ziffern und Satzzeichen mischen." - - #: ../panels/user-accounts/pw-utils.c:113 - msgctxt "Password hint" -@@ -5991,34 +6304,45 @@ - #: ../panels/user-accounts/pw-utils.c:117 - msgctxt "Password hint" - msgid "Mix uppercase and lowercase and use a number or two." --msgstr "Mischen Sie Großbuchstaben und Kleinbuchstaben und verwenden Sie eine Ziffer oder zwei." -+msgstr "" -+"Mischen Sie Großbuchstaben und Kleinbuchstaben und verwenden Sie eine Ziffer " -+"oder zwei." - - #: ../panels/user-accounts/pw-utils.c:119 - msgctxt "Password hint" --msgid "Good password! Adding more letters, numbers and punctuation will make it stronger." --msgstr "Gutes Passwort! Durch Hinzufügen von Buchstaben, Ziffern und Satzzeichen wird es noch stärker." -+msgid "" -+"Good password! Adding more letters, numbers and punctuation will make it " -+"stronger." -+msgstr "" -+"Gutes Passwort! Durch Hinzufügen von Buchstaben, Ziffern und Satzzeichen " -+"wird es noch stärker." - --#: ../panels/user-accounts/pw-utils.c:141 ../panels/user-accounts/pw-utils.c:171 -+#: ../panels/user-accounts/pw-utils.c:141 -+#: ../panels/user-accounts/pw-utils.c:171 - msgctxt "Password strength" - msgid "Strength: Weak" - msgstr "Stärke: schwach" - --#: ../panels/user-accounts/pw-utils.c:145 ../panels/user-accounts/pw-utils.c:172 -+#: ../panels/user-accounts/pw-utils.c:145 -+#: ../panels/user-accounts/pw-utils.c:172 - msgctxt "Password strength" - msgid "Strength: Low" - msgstr "Stärke: niedrig" - --#: ../panels/user-accounts/pw-utils.c:148 ../panels/user-accounts/pw-utils.c:173 -+#: ../panels/user-accounts/pw-utils.c:148 -+#: ../panels/user-accounts/pw-utils.c:173 - msgctxt "Password strength" - msgid "Strength: Medium" - msgstr "Stärke: mittel" - --#: ../panels/user-accounts/pw-utils.c:151 ../panels/user-accounts/pw-utils.c:174 -+#: ../panels/user-accounts/pw-utils.c:151 -+#: ../panels/user-accounts/pw-utils.c:174 - msgctxt "Password strength" - msgid "Strength: Good" - msgstr "Stärke: gut" - --#: ../panels/user-accounts/pw-utils.c:154 ../panels/user-accounts/pw-utils.c:175 -+#: ../panels/user-accounts/pw-utils.c:154 -+#: ../panels/user-accounts/pw-utils.c:175 - msgctxt "Password strength" - msgid "Strength: High" - msgstr "Stärke: hoch" -@@ -6060,7 +6384,8 @@ - #: ../panels/user-accounts/run-passwd.c:528 - #, c-format - msgid "Your password has been changed since you initially authenticated!" --msgstr "Ihr Passwort wurde geändert, seit Sie sich erstmalig legitimiert haben!" -+msgstr "" -+"Ihr Passwort wurde geändert, seit Sie sich erstmalig legitimiert haben!" - - #: ../panels/user-accounts/run-passwd.c:532 - #, c-format -@@ -6084,32 +6409,31 @@ - msgid "Passwords do not match." - msgstr "Passwörter stimmen nicht überein." - --#: ../panels/user-accounts/um-account-dialog.c:731 ../panels/user-accounts/um-account-dialog.c:777 -+#: ../panels/user-accounts/um-account-dialog.c:731 -+#: ../panels/user-accounts/um-account-dialog.c:777 - msgid "Failed to register account" - msgstr "Anlegen des Kontos schlug fehl" - - #: ../panels/user-accounts/um-account-dialog.c:915 - msgid "No supported way to authenticate with this domain" --msgstr "Es gibt keine unterstützte Möglichkeit für eine Legitimierung mit dieser Domäne" -+msgstr "" -+"Es gibt keine unterstützte Möglichkeit für eine Legitimierung mit dieser " -+"Domäne" - - #: ../panels/user-accounts/um-account-dialog.c:974 - msgid "Failed to join domain" - msgstr "Beitreten zur Domäne schlug fehl" - - #: ../panels/user-accounts/um-account-dialog.c:1035 --msgid "" --"That login name didn't work.\n" -+msgid "That login name didn't work.\n" - "Please try again." --msgstr "" --"Ungültiger Benutzer.\n" -+msgstr "Ungültiger Benutzer.\n" - "Bitte versuchen Sie es erneut." - - #: ../panels/user-accounts/um-account-dialog.c:1042 --msgid "" --"That login password didn't work.\n" -+msgid "That login password didn't work.\n" - "Please try again." --msgstr "" --"Ungültiges Passwort.\n" -+msgstr "Ungültiges Passwort.\n" - "Bitte versuchen Sie es erneut." - - #: ../panels/user-accounts/um-account-dialog.c:1050 -@@ -6118,11 +6442,15 @@ - - #: ../panels/user-accounts/um-account-dialog.c:1108 - msgid "Unable find the domain. Maybe you misspelled it?" --msgstr "Domäne konnte nicht gefunden werden. Haben Sie sich eventuell vertippt?" -+msgstr "" -+"Domäne konnte nicht gefunden werden. Haben Sie sich eventuell vertippt?" - - #: ../panels/user-accounts/um-fingerprint-dialog.c:138 --msgid "You are not allowed to access the device. Contact your system administrator." --msgstr "Sie sind nicht berechtigt, auf das Gerät zuzugreifen. Kontaktieren Sie Ihren Systemadministrator." -+msgid "" -+"You are not allowed to access the device. Contact your system administrator." -+msgstr "" -+"Sie sind nicht berechtigt, auf das Gerät zuzugreifen. Kontaktieren Sie Ihren " -+"Systemadministrator." - - #: ../panels/user-accounts/um-fingerprint-dialog.c:140 - msgid "The device is already in use." -@@ -6145,8 +6473,12 @@ - msgstr "Fingerabdrücke _löschen" - - #: ../panels/user-accounts/um-fingerprint-dialog.c:273 --msgid "Do you want to delete your registered fingerprints so fingerprint login is disabled?" --msgstr "Wollen Sie Ihre registrierten Fingerabdrücke löschen und so eine Anmeldung per Fingerabdruck verhindern?" -+msgid "" -+"Do you want to delete your registered fingerprints so fingerprint login is " -+"disabled?" -+msgstr "" -+"Wollen Sie Ihre registrierten Fingerabdrücke löschen und so eine Anmeldung " -+"per Fingerabdruck verhindern?" - - #: ../panels/user-accounts/um-fingerprint-dialog.c:446 - msgid "Done!" -@@ -6155,7 +6487,8 @@ - #. translators: - #. * The variable is the name of the device, for example: - #. * "Could you not access "Digital Persona U.are.U 4000/4000B" device --#: ../panels/user-accounts/um-fingerprint-dialog.c:507 ../panels/user-accounts/um-fingerprint-dialog.c:549 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:507 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:549 - #, c-format - msgid "Could not access '%s' device" - msgstr "Auf Gerät »%s« konnte nicht zugegriffen werden" -@@ -6180,12 +6513,15 @@ - #. * The variable is the name of the device, for example: - #. * "To enable fingerprint login, you need to save one of your fingerprints, using the - #. * 'Digital Persona U.are.U 4000/4000B' device." --#. -+#. - #: ../panels/user-accounts/um-fingerprint-dialog.c:723 - #, c-format --msgid "To enable fingerprint login, you need to save one of your fingerprints, using the '%s' device." -+msgid "" -+"To enable fingerprint login, you need to save one of your fingerprints, " -+"using the '%s' device." - msgstr "" --"Zur Freischaltung der Anmeldung mit Fingerabdruck müssen Sie einen Fingerabdruck mit dem Gerät »%s« hinterlegen." -+"Zur Freischaltung der Anmeldung mit Fingerabdruck müssen Sie einen " -+"Fingerabdruck mit dem Gerät »%s« hinterlegen." - - #: ../panels/user-accounts/um-fingerprint-dialog.c:730 - msgid "Selecting finger" -@@ -6207,7 +6543,8 @@ - #. shown as the first day of a week on login history dialog. - #. Translators: This is a date format string in the style of "Feb 24", - #. shown as the last day of a week on login history dialog. --#: ../panels/user-accounts/um-history-dialog.c:77 ../panels/user-accounts/um-history-dialog.c:81 -+#: ../panels/user-accounts/um-history-dialog.c:77 -+#: ../panels/user-accounts/um-history-dialog.c:81 - msgctxt "login history week label" - msgid "%b %e" - msgstr "%e. %b" -@@ -6230,14 +6567,16 @@ - # I prefer 07:30 instead of 7:30 - #. 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/um-history-dialog.c:175 ../panels/user-accounts/um-user-panel.c:631 -+#: ../panels/user-accounts/um-history-dialog.c:175 -+#: ../panels/user-accounts/um-user-panel.c:844 - msgctxt "login date-time" - msgid "%k:%M" - msgstr "%H:%M" - - #. Translators: This indicates a login date-time. - #. The first %s is a date, and the second %s a time. --#: ../panels/user-accounts/um-history-dialog.c:178 ../panels/user-accounts/um-user-panel.c:635 -+#: ../panels/user-accounts/um-history-dialog.c:178 -+#: ../panels/user-accounts/um-user-panel.c:848 - #, c-format - msgctxt "login date-time" - msgid "%s, %s" -@@ -6297,7 +6636,8 @@ - msgid "No such domain or realm found" - msgstr "Es wurde keine solche Domäne oder Realm gefunden" - --#: ../panels/user-accounts/um-realm-manager.c:813 ../panels/user-accounts/um-realm-manager.c:827 -+#: ../panels/user-accounts/um-realm-manager.c:813 -+#: ../panels/user-accounts/um-realm-manager.c:827 - #, c-format - msgid "Cannot log in as %s at the %s domain" - msgstr "Anmeldung als %s in der Domäne %s schlug fehl" -@@ -6311,109 +6651,127 @@ - msgid "Couldn't connect to the %s domain: %s" - msgstr "Es konnte keine Verbindung mit %s-Domäne hergestellt werden: %s" - --#: ../panels/user-accounts/um-user-panel.c:198 -+#: ../panels/user-accounts/um-user-panel.c:239 - msgid "Other Accounts" - msgstr "Weitere Konten" - --#: ../panels/user-accounts/um-user-panel.c:417 -+#: ../panels/user-accounts/um-user-panel.c:453 - msgid "Failed to delete user" - msgstr "Benutzer konnte nicht gelöscht werden" - --#: ../panels/user-accounts/um-user-panel.c:482 -+#: ../panels/user-accounts/um-user-panel.c:513 -+#: ../panels/user-accounts/um-user-panel.c:569 -+#: ../panels/user-accounts/um-user-panel.c:621 -+msgid "Failed to revoke remotely managed user" -+msgstr "Entfernt verwalteter Benutzer konnte nicht gesperrt werden" -+ -+#: ../panels/user-accounts/um-user-panel.c:677 - msgid "You cannot delete your own account." - msgstr "Sie können Ihr eigenes Konto nicht löschen." - --#: ../panels/user-accounts/um-user-panel.c:491 -+#: ../panels/user-accounts/um-user-panel.c:686 - #, c-format - msgid "%s is still logged in" - msgstr "%s ist immer noch angemeldet" - --#: ../panels/user-accounts/um-user-panel.c:495 --msgid "Deleting a user while they are logged in can leave the system in an inconsistent state." -+#: ../panels/user-accounts/um-user-panel.c:690 -+msgid "" -+"Deleting a user while they are logged in can leave the system in an " -+"inconsistent state." - msgstr "" --"Das Löschen von Benutzern, während sie angemeldet sind, kann das System in einen inkonsistenten Zustand " --"versetzen." -+"Das Löschen von Benutzern, während sie angemeldet sind, kann das System in " -+"einen inkonsistenten Zustand versetzen." - --#: ../panels/user-accounts/um-user-panel.c:504 -+#: ../panels/user-accounts/um-user-panel.c:699 - #, c-format - msgid "Do you want to keep %s's files?" - msgstr "Wollen Sie die Dateien von %s behalten?" - --#: ../panels/user-accounts/um-user-panel.c:508 -+#: ../panels/user-accounts/um-user-panel.c:703 - msgid "" --"It is possible to keep the home directory, mail spool and temporary files around when deleting a user account." -+"It is possible to keep the home directory, mail spool and temporary files " -+"around when deleting a user account." - msgstr "" --"Es ist möglich, den persönlichen Ordner, die Mail-Warteschlange und die temporären Dateien zu behalten, wenn " --"ein Benutzerkonto gelöscht wird." -+"Es ist möglich, den persönlichen Ordner, die Mail-Warteschlange und die " -+"temporären Dateien zu behalten, wenn ein Benutzerkonto gelöscht wird." - --#: ../panels/user-accounts/um-user-panel.c:511 -+#: ../panels/user-accounts/um-user-panel.c:706 - msgid "_Delete Files" - msgstr "_Dateien löschen" - --#: ../panels/user-accounts/um-user-panel.c:512 -+#: ../panels/user-accounts/um-user-panel.c:707 - msgid "_Keep Files" - msgstr "Dateien _behalten" - --#: ../panels/user-accounts/um-user-panel.c:564 -+#: ../panels/user-accounts/um-user-panel.c:721 -+#, c-format -+msgid "Are you sure you want to permanently delete %s's account?" -+msgstr "" -+"Sind Sie sicher, dass Sie %s's Account unwiderruflich löschen möchten?" -+ -+#: ../panels/user-accounts/um-user-panel.c:725 -+msgid "_Delete" -+msgstr "_Löschen" -+ -+#: ../panels/user-accounts/um-user-panel.c:777 - msgctxt "Password mode" - msgid "Account disabled" - msgstr "Konto ist deaktiviert" - --#: ../panels/user-accounts/um-user-panel.c:572 -+#: ../panels/user-accounts/um-user-panel.c:785 - msgctxt "Password mode" - msgid "To be set at next login" - msgstr "Bei der nächsten Anmeldung festlegen" - --#: ../panels/user-accounts/um-user-panel.c:575 -+#: ../panels/user-accounts/um-user-panel.c:788 - msgctxt "Password mode" - msgid "None" - msgstr "Keines" - --#: ../panels/user-accounts/um-user-panel.c:624 -+#: ../panels/user-accounts/um-user-panel.c:837 - msgid "Logged in" - msgstr "Angemeldet" - --#: ../panels/user-accounts/um-user-panel.c:1084 -+#: ../panels/user-accounts/um-user-panel.c:1297 - msgid "Failed to contact the accounts service" - msgstr "Kontendienst konnte nicht kontaktiert werden" - --#: ../panels/user-accounts/um-user-panel.c:1086 -+#: ../panels/user-accounts/um-user-panel.c:1299 - msgid "Please make sure that the AccountService is installed and enabled." --msgstr "Bitte stellen Sie sicher, dass der Kontendienst korrekt installiert und aktiviert ist." -+msgstr "" -+"Bitte stellen Sie sicher, dass der Kontendienst korrekt installiert und " -+"aktiviert ist." - --#: ../panels/user-accounts/um-user-panel.c:1127 --msgid "" --"To make changes,\n" -+#: ../panels/user-accounts/um-user-panel.c:1340 -+msgid "To make changes,\n" - "click the * icon first" --msgstr "" --"Um Änderungen vorzunehmen,\n" -+msgstr "Um Änderungen vorzunehmen,\n" - "klicken Sie zuerst auf das Symbol *" - --#: ../panels/user-accounts/um-user-panel.c:1165 -+#: ../panels/user-accounts/um-user-panel.c:1378 - msgid "Create a user account" - msgstr "Ein Benutzerkonto erstellen" - --#: ../panels/user-accounts/um-user-panel.c:1176 ../panels/user-accounts/um-user-panel.c:1488 --msgid "" --"To create a user account,\n" -+#: ../panels/user-accounts/um-user-panel.c:1389 -+#: ../panels/user-accounts/um-user-panel.c:1702 -+msgid "To create a user account,\n" - "click the * icon first" --msgstr "" --"Um ein Benutzerkonto anzulegen,\n" -+msgstr "Um ein Benutzerkonto anzulegen,\n" - "klicken Sie zuerst auf das Symbol *" - --#: ../panels/user-accounts/um-user-panel.c:1186 -+#: ../panels/user-accounts/um-user-panel.c:1399 - msgid "Delete the selected user account" - msgstr "Das gewählte Benutzerkonto löschen" - --#: ../panels/user-accounts/um-user-panel.c:1198 ../panels/user-accounts/um-user-panel.c:1493 --msgid "" --"To delete the selected user account,\n" -+#: ../panels/user-accounts/um-user-panel.c:1411 -+#: ../panels/user-accounts/um-user-panel.c:1707 -+msgid "To delete the selected user account,\n" - "click the * icon first" - msgstr "" - "Um das gewählte Benutzerkonto zu löschen,\n" - "klicken Sie zuerst auf das Symbol *" - --#: ../panels/user-accounts/um-user-panel.c:1402 -+#: ../panels/user-accounts/um-user-panel.c:1616 - msgid "My Account" - msgstr "Mein Konto" - -@@ -6433,15 +6791,17 @@ - - #: ../panels/user-accounts/um-utils.c:577 - msgid "" --"The username should only consist of lower and upper case letters from a-z, digits and any of characters '.', " --"'-' and '_'." -+"The username should only consist of lower and upper case letters from a-z, " -+"digits and any of characters '.', '-' and '_'." - msgstr "" --"Der Benutzername darf aus Klein- und Großbuchstaben des englischen Alphabets, Ziffern sowie den Zeichen ».«, " --"»-« und »_« bestehen." -+"Der Benutzername darf aus Klein- und Großbuchstaben des englischen " -+"Alphabets, Ziffern sowie den Zeichen ».«, »-« und »_« bestehen." - - #: ../panels/user-accounts/um-utils.c:581 - msgid "This will be used to name your home folder and can't be changed." --msgstr "Dieser Eintrag wird für Ihren Benutzerordner verwendet und kann nicht geändert werden." -+msgstr "" -+"Dieser Eintrag wird für Ihren Benutzerordner verwendet und kann nicht " -+"geändert werden." - - #. Translators: This is a date format string in the style of "Feb 24". - #: ../panels/user-accounts/um-utils.c:827 -@@ -6464,15 +6824,20 @@ - # extrem gekürzt, wirkt sich auf Fensterbreite aus - #: ../panels/wacom/button-mapping.ui.h:4 - msgid "" --"To edit a shortcut, choose the \"Send Keystroke\" action, press the keyboard shortcut button and hold down the " --"new keys or press Backspace to clear." -+"To edit a shortcut, choose the \"Send Keystroke\" action, press the keyboard " -+"shortcut button and hold down the new keys or press Backspace to clear." - msgstr "" --"Um ein Tastenkürzel zu bearbeiten, wählen Sie die »Tastenkombination senden«-Aktion und drücken Sie die neue " --"Tastenkombination, oder drücken Sie die Rücktaste, um sie zu löschen." -+"Um ein Tastenkürzel zu bearbeiten, wählen Sie die »Tastenkombination senden«-" -+"Aktion und drücken Sie die neue Tastenkombination, oder drücken Sie die " -+"Rücktaste, um sie zu löschen." - - #: ../panels/wacom/calibrator/calibrator-gui.c:83 --msgid "Please tap the target markers as they appear on screen to calibrate the tablet." --msgstr "Bitte berühren Sie die Zielmarkierungen auf dem Bildschirm, um das Grafiktablett zu kalibrieren." -+msgid "" -+"Please tap the target markers as they appear on screen to calibrate the " -+"tablet." -+msgstr "" -+"Bitte berühren Sie die Zielmarkierungen auf dem Bildschirm, um das " -+"Grafiktablett zu kalibrieren." - - #: ../panels/wacom/calibrator/calibrator-gui.c:87 - msgid "Mis-click detected, restarting..." -@@ -6528,7 +6893,7 @@ - msgid "%d of %d" - msgstr "%d von %d" - --#: ../panels/wacom/cc-wacom-page.c:530 -+#: ../panels/wacom/cc-wacom-page.c:522 - msgid "Display Mapping" - msgstr "Zuordnung anzeigen" - -@@ -6536,13 +6901,16 @@ - msgid "Button" - msgstr "Knopf" - --#: ../panels/wacom/gnome-wacom-panel.desktop.in.in.h:1 ../panels/wacom/gnome-wacom-properties.ui.h:8 -+#: ../panels/wacom/gnome-wacom-panel.desktop.in.in.h:1 -+#: ../panels/wacom/gnome-wacom-properties.ui.h:8 - msgid "Wacom Tablet" - msgstr "Wacom-Tabletts" - - #: ../panels/wacom/gnome-wacom-panel.desktop.in.in.h:2 - msgid "Set button mappings and adjust stylus sensitivity for graphics tablets" --msgstr "Knopfzuordnung einstellen und die Empfindlichkeit des Stiftes für Grafiktabletts einstellen" -+msgstr "" -+"Knopfzuordnung einstellen und die Empfindlichkeit des Stiftes für " -+"Grafiktabletts einstellen" - - #. Translators: those are keywords for the wacom tablet control-center panel - #: ../panels/wacom/gnome-wacom-panel.desktop.in.in.h:4 -@@ -6773,7 +7141,8 @@ - msgid "List possible panel names and exit" - msgstr "Mögliche Panel-Namen anzeigen und beenden" - --#: ../shell/cc-application.c:73 ../shell/cc-application.c:74 ../shell/cc-application.c:75 -+#: ../shell/cc-application.c:73 ../shell/cc-application.c:74 -+#: ../shell/cc-application.c:75 - msgid "Show help options" - msgstr "Hilfeoptionen anzeigen" - -@@ -6835,211 +7204,3 @@ - #: ../shell/gnome-control-center.desktop.in.in.h:2 - msgid "Preferences;Settings;" - msgstr "Einstellungen;" -- --#~ msgid "%d × %d" --#~ msgstr "%d × %d" -- --#~ msgid "Share Media On This Network" --#~ msgstr "Medien in diesem Netzwerk freigeben" -- --#~ msgid "Shared Folders" --#~ msgstr "Freigegebene Ordner" -- --#~ msgid "column" --#~ msgstr "Spalte" -- --#~ msgid "Remove Folder" --#~ msgstr "Ordner entfernen" -- --#~ msgid "Share Public Folder On This Network" --#~ msgstr "Öffentlichen Ordner in diesem Netzwerk freigeben" -- --#~ msgid "Immediately" --#~ msgstr "Sofort" -- --#~ msgid "Flickr" --#~ msgstr "Flickr" -- --#~ msgid "Install Updates" --#~ msgstr "Aktualisierungen installieren" -- --#~ msgid "System Up-To-Date" --#~ msgstr "System ist auf dem aktuellen Stand" -- --#~ msgid "Search for network printers or filter result" --#~ msgstr "Nach Netzwerkdruckern oder Filterergebnis suchen" -- --#~ msgid "_Default" --#~ msgstr "_Standard" -- --#~ msgid "Remote View" --#~ msgstr "Entfernte Ansicht" -- --#~ msgid "Approve All Connections" --#~ msgstr "Alle Verbindungen bewilligen" -- --#~ msgid "Set Up New Device" --#~ msgstr "Neues Gerät einrichten" -- --#~ msgid "Connection" --#~ msgstr "Verbindung" -- --#~ msgid "Paired" --#~ msgstr "Gekoppelt" -- --#~ msgid "Type" --#~ msgstr "Typ" -- --#~ msgid "Mouse & Touchpad Settings" --#~ msgstr "Einstellungen für Maus und Touchpad" -- --#~ msgid "Sound Settings" --#~ msgstr "Klangeinstellungen" -- --#~ msgid "Keyboard Settings" --#~ msgstr "Tastatureinstellungen" -- --#~ msgid "Send Files…" --#~ msgstr "Dateien senden …" -- --#~ msgid "Visibility" --#~ msgstr "Sichtbarkeit" -- --#~ msgid "Visibility of “%s”" --#~ msgstr "Sichtbarkeit von »%s«" -- --#~ msgid "Remove '%s' from the list of devices?" --#~ msgstr "»%s« aus der Liste der Geräte entfernen?" -- --#~ msgid "If you remove the device, you will have to set it up again before next use." --#~ msgstr "Falls Sie das Gerät entfernen, müssen Sie es vor der nächsten Benutzung erneut konfigurieren." -- --#~ msgid "Device type:" --#~ msgstr "Gerätetyp:" -- --#~ msgid "Manufacturer:" --#~ msgstr "Hersteller:" -- --#~ msgid "Model:" --#~ msgstr "Modell:" -- --#~ msgid "Image files can be dragged on this window to auto-complete the above fields." --#~ msgstr "" --#~ "Bilddateien können in dieses Fenster gezogen werden, um die obigen Felder automatisch zu vervollständigen." -- --#~ msgid "Show your primary display on this screen also" --#~ msgstr "Ihre primäre Anzeige auch auf diesem Bildschirm anzeigen" -- --#~ msgid "Combine" --#~ msgstr "Verbinden" -- --#~ msgid "Join with the primary display to create an extra space" --#~ msgstr "Mit der primären Anzeige verbinden, um zusätzlich Platz zu gewinnen" -- --#~ msgid "Don't use the display" --#~ msgstr "Anzeige nicht verwenden" -- --#~ msgid "Refresh Rate" --#~ msgstr "Bildwiederholrate" -- --#~ msgid "Mouse Preferences" --#~ msgstr "Mauseinstellungen" -- --#~ msgid "Select the interface to use for the new service" --#~ msgstr "Schnittstelle für das neue Gerät auswählen" -- --#~ msgid "C_reate…" --#~ msgstr "E_rstellen …" -- --#~ msgid "_Interface" --#~ msgstr "_Schnittstelle" -- --#~ msgctxt "Language" --#~ msgid "None" --#~ msgstr "Keine" -- --#~ msgid "Share Public Folder" --#~ msgstr "Öffentlichen Ordner freigeben" -- --#~ msgid "Only share with Trusted Devices" --#~ msgstr "Nur für vertrauenswürdige Geräte freigeben" -- --#~ msgid "Changing photo for:" --#~ msgstr "Foto wird geändert für:" -- --#~ msgid "Choose a picture that will be shown at the login screen for this account." --#~ msgstr "Wählen Sie ein Foto, das im Anmeldefenster für dieses Konto angezeigt wird." -- --#~ msgid "Gallery" --#~ msgstr "Galerie" -- --#~ msgid "Take a photograph" --#~ msgstr "Ein Foto aufnehmen" -- --#~ msgid "Browse" --#~ msgstr "Durchsuchen" -- --#~ msgid "Photograph" --#~ msgstr "Fotografie" -- --#~ msgid "Account Information" --#~ msgstr "Kontoinformationen" -- --#~ msgid "Switch between AM and PM." --#~ msgstr "Zwischen AM und PM umschalten." -- --#~ msgid "Estimated battery capacity: %s" --#~ msgstr "Geschätzte Akku-Kapazität: %s" -- --#~ msgid "_Region:" --#~ msgstr "_Region:" -- --#~ msgid "_City:" --#~ msgstr "S_tadt:" -- --#~ msgid "_Network Time" --#~ msgstr "Netzwerkzeit" -- --#~ msgid ":" --#~ msgstr ":" -- --#~ msgid "Set the time one hour ahead." --#~ msgstr "Die Zeit um eine Minute vor stellen." -- --#~ msgid "Set the time one hour back." --#~ msgstr "Die Zeit um eine Stunde zurück stellen." -- --#~ msgid "Set the time one minute ahead." --#~ msgstr "Die Zeit um eine Stunde vor stellen." -- --#~ msgid "Set the time one minute back." --#~ msgstr "Die Zeit um eine Minute zurück stellen." -- --#~ msgid "AM/PM" --#~ msgstr "12-Stunden-Format" -- --#~ msgctxt "display panel, rotation" --#~ msgid "Normal" --#~ msgstr "Normal" -- --#~ msgctxt "display panel, rotation" --#~ msgid "Counterclockwise" --#~ msgstr "Gegen den Uhrzeigersinn" -- --#~ msgctxt "display panel, rotation" --#~ msgid "Clockwise" --#~ msgstr "Im Uhrzeigersinn" -- --#~ msgctxt "display panel, rotation" --#~ msgid "180 Degrees" --#~ msgstr "180 Grad" -- --#~ msgid "Monitor" --#~ msgstr "Bildschirm" -- --#~ msgid "Drag to change primary display." --#~ msgstr "Ziehen Sie, um den primären Bildschirm zu ändern." -- --#~ msgid "Select a monitor to change its properties; drag it to rearrange its placement." --#~ msgstr "" --#~ "Wählen Sie einen Bildschirm, um dessen Eigenschaften zu ändern. Ziehen Sie ihn, um ihn neu zu platzieren." -diff -urN gnome-control-center-3.14.5/po/es.po gnome-control-center-3.14.5_localized/po/es.po ---- gnome-control-center-3.14.5/po/es.po 2016-03-12 12:07:43.869000000 +0530 -+++ gnome-control-center-3.14.5_localized/po/es.po 2016-03-12 12:08:48.658000000 +0530 -@@ -1,36 +1,36 @@ --# translation of gnome-control-center.master.po to Español --# Copyright © 1999-2002, 2006, 2007, 2008 Free Software Foundation, Inc. --# This file is distributed under the same license as the gnome-control-center package. --# --# Pablo Saratxaga , 1998-2001. --# Carlos Perelló Marín , 2001. --# Héctor García Álvarez , 2001. --# Germán Poo Caamaño , 2002 (Revisor). --# Lucas Di Pentima , 2002. --# Pablo Gonzalo del Campo , 2002,2003. --# Francisco Javier F. Serrador , 2003, 2004, 2005, 2006. --# Claudio Saavedra , 2007. --# --# --# Jorge González , 2007, 2008, 2009, 2010, 2011. --# --# Daniel Mustieles , 2010, 2011. , 2013, 2014. --# --msgid "" --msgstr "" --"Project-Id-Version: gnome-control-center master\n" --"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" --"control-center&keywords=I18N+L10N&component=general\n" --"POT-Creation-Date: 2014-10-15 14:29+0000\n" --"PO-Revision-Date: 2014-10-21 19:46+0200\n" --"Last-Translator: Daniel Mustieles \n" --"Language-Team: Español; Castellano \n" --"Language: de\n" -+# translation of gnome-control-center.master.po to Español -+# Copyright © 1999-2002, 2006, 2007, 2008 Free Software Foundation, Inc. -+# This file is distributed under the same license as the gnome-control-center package. -+# -+# Pablo Saratxaga , 1998-2001. -+# Carlos Perelló Marín , 2001. -+# Héctor García Álvarez , 2001. -+# Germán Poo Caamaño , 2002 (Revisor). -+# Lucas Di Pentima , 2002. -+# Pablo Gonzalo del Campo , 2002,2003. -+# Francisco Javier F. Serrador , 2003, 2004, 2005, 2006. -+# Claudio Saavedra , 2007. -+# -+# -+# Jorge González , 2007, 2008, 2009, 2010, 2011. -+# -+# Daniel Mustieles , 2010, 2011, 2013, 2014. -+# gguerrer , 2016. #zanata -+# pnemade , 2016. #zanata -+msgid "" -+msgstr "" -+"Project-Id-Version: PACKAGE VERSION\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2016-02-10 09:57+0530\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"PO-Revision-Date: 2016-03-08 12:41+0000\n" -+"Last-Translator: gguerrer \n" -+"Language-Team: Español; Castellano \n" -+"Language: es\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Gtranslator 2.91.6\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../panels/background/background.ui.h:1 - #: ../panels/background/gnome-background-panel.desktop.in.in.h:1 -@@ -117,8 +117,8 @@ - #: ../panels/background/cc-background-chooser-dialog.c:583 - #: ../panels/color/cc-color-panel.c:224 ../panels/color/cc-color-panel.c:961 - #: ../panels/color/color.ui.h:29 ../panels/common/language-chooser.ui.h:3 --#: ../panels/display/cc-display-panel.c:1537 --#: ../panels/display/cc-display-panel.c:1976 -+#: ../panels/display/cc-display-panel.c:1540 -+#: ../panels/display/cc-display-panel.c:1985 - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:2 - #: ../panels/network/connection-editor/connection-editor.ui.h:1 - #: ../panels/network/connection-editor/vpn-helpers.c:245 -@@ -126,7 +126,7 @@ - #: ../panels/network/net-device-wifi.c:1247 - #: ../panels/network/net-device-wifi.c:1440 - #: ../panels/network/network-wifi.ui.h:1 --#: ../panels/printers/cc-printers-panel.c:1947 -+#: ../panels/printers/cc-printers-panel.c:1949 - #: ../panels/printers/new-printer-dialog.ui.h:2 - #: ../panels/privacy/cc-privacy-panel.c:468 - #: ../panels/region/format-chooser.ui.h:3 -@@ -138,7 +138,8 @@ - #: ../panels/user-accounts/um-fingerprint-dialog.c:264 - #: ../panels/user-accounts/um-photo-dialog.c:95 - #: ../panels/user-accounts/um-photo-dialog.c:222 --#: ../panels/user-accounts/um-user-panel.c:513 -+#: ../panels/user-accounts/um-user-panel.c:708 -+#: ../panels/user-accounts/um-user-panel.c:726 - msgid "_Cancel" - msgstr "_Cancelar" - -@@ -148,18 +149,18 @@ - msgid "Select" - msgstr "Seleccionar" - --#: ../panels/background/cc-background-item.c:197 -+#: ../panels/background/cc-background-item.c:203 - msgid "multiple sizes" - msgstr "tamaños múltiples" - - #. translators: 100 × 100px - #. * Note that this is not an "x", but U+00D7 MULTIPLICATION SIGN --#: ../panels/background/cc-background-item.c:201 -+#: ../panels/background/cc-background-item.c:207 - #, c-format - msgid "%d × %d" - msgstr "%d × %d" - --#: ../panels/background/cc-background-item.c:327 -+#: ../panels/background/cc-background-item.c:333 - msgid "No Desktop Background" - msgstr "Sin fondo de escritorio" - -@@ -617,7 +618,7 @@ - "Alternatively, you can use the brightness level used with one of the other " - "profiles for this device." - msgstr "" --"Alternativamente, puede usar el nivel de brillo usado con uno de los otros " -+"Alternativamente, puede usar el nivel de brillo ya definido en los otros " - "perfiles para este dispositivo." - - #: ../panels/color/color.ui.h:17 -@@ -662,16 +663,16 @@ - - #: ../panels/color/color.ui.h:26 - msgid "" --"You may find these instructions on how to use the profile on GNU/Linux, Apple OS X and Microsoft Windows systems useful." -+"You may find these instructions on how to use the profile on GNU/Linux, Apple OS X and Microsoft Windows systems useful." - msgstr "" - "Puede encontrar instrucciones útiles sobre cómo usar el perfil en sistemas " - "GNU/Linux, Apple OS X y Microsoft Windows." - - #: ../panels/color/color.ui.h:27 --#: ../panels/user-accounts/um-fingerprint-dialog.c:730 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:732 - msgid "Summary" - msgstr "Resumen" - -@@ -1079,23 +1080,23 @@ - msgstr "" - "Para cambiar la configuración de la fecha o de la hora, debe autenticarse." - --#: ../panels/display/cc-display-panel.c:487 -+#: ../panels/display/cc-display-panel.c:490 - msgid "Lid Closed" - msgstr "Tapa cerrada" - - #. translators: "Mirrored" describes when both displays show the same view --#: ../panels/display/cc-display-panel.c:490 -+#: ../panels/display/cc-display-panel.c:493 - msgid "Mirrored" - msgstr "En espejo" - --#: ../panels/display/cc-display-panel.c:492 --#: ../panels/display/cc-display-panel.c:2145 -+#: ../panels/display/cc-display-panel.c:495 -+#: ../panels/display/cc-display-panel.c:2155 - msgid "Primary" - msgstr "Primaria" - --#: ../panels/display/cc-display-panel.c:494 -+#: ../panels/display/cc-display-panel.c:497 - #: ../panels/notifications/cc-notifications-panel.c:185 --#: ../panels/power/cc-power-panel.c:1686 ../panels/power/cc-power-panel.c:1697 -+#: ../panels/power/cc-power-panel.c:1704 ../panels/power/cc-power-panel.c:1715 - #: ../panels/privacy/cc-privacy-panel.c:84 - #: ../panels/privacy/cc-privacy-panel.c:124 - #: ../panels/universal-access/cc-ua-panel.c:257 -@@ -1105,81 +1106,81 @@ - msgid "Off" - msgstr "Apagado" - --#: ../panels/display/cc-display-panel.c:497 -+#: ../panels/display/cc-display-panel.c:500 - msgid "Secondary" - msgstr "Secundaria" - --#: ../panels/display/cc-display-panel.c:1533 -+#: ../panels/display/cc-display-panel.c:1536 - msgid "Arrange Combined Displays" - msgstr "Ordenar las pantallas combinadas" - --#: ../panels/display/cc-display-panel.c:1539 --#: ../panels/display/cc-display-panel.c:1979 -+#: ../panels/display/cc-display-panel.c:1542 -+#: ../panels/display/cc-display-panel.c:1988 - #: ../panels/network/connection-editor/connection-editor.ui.h:2 - #: ../panels/network/network-wifi.ui.h:2 - msgid "_Apply" - msgstr "_Aplicar" - --#: ../panels/display/cc-display-panel.c:1560 -+#: ../panels/display/cc-display-panel.c:1563 - msgid "Drag displays to rearrange them" - msgstr "Arrastrar las pantallas para reordenarlas" - --#: ../panels/display/cc-display-panel.c:2081 -+#: ../panels/display/cc-display-panel.c:2090 - msgid "Size" - msgstr "Tamaño" - - #. aspect ratio --#: ../panels/display/cc-display-panel.c:2094 -+#: ../panels/display/cc-display-panel.c:2103 - msgid "Aspect Ratio" - msgstr "Proporción de aspecto" - --#: ../panels/display/cc-display-panel.c:2115 -+#: ../panels/display/cc-display-panel.c:2125 - #: ../panels/printers/pp-options-dialog.c:85 - msgid "Resolution" - msgstr "Resolución" - --#: ../panels/display/cc-display-panel.c:2146 -+#: ../panels/display/cc-display-panel.c:2156 - msgid "Show the top bar and Activities Overview on this display" - msgstr "Mostrar la barra superior y la vista de actividades en esta pantalla" - --#: ../panels/display/cc-display-panel.c:2152 -+#: ../panels/display/cc-display-panel.c:2162 - msgid "Secondary Display" - msgstr "Pantalla secundaria" - --#: ../panels/display/cc-display-panel.c:2153 -+#: ../panels/display/cc-display-panel.c:2163 - msgid "Join this display with another to create an extra workspace" - msgstr "Unir esta pantalla a otra para crear un área de trabajo adicional" - --#: ../panels/display/cc-display-panel.c:2160 -+#: ../panels/display/cc-display-panel.c:2170 - msgid "Presentation" - msgstr "Presentación" - --#: ../panels/display/cc-display-panel.c:2161 -+#: ../panels/display/cc-display-panel.c:2171 - msgid "Show slideshows and media only" - msgstr "Mostrar sólo diapositivas y multimedia" - - #. translators: "Mirror" describes when both displays show the same view --#: ../panels/display/cc-display-panel.c:2166 -+#: ../panels/display/cc-display-panel.c:2176 - msgid "Mirror" - msgstr "Espejo" - --#: ../panels/display/cc-display-panel.c:2167 -+#: ../panels/display/cc-display-panel.c:2177 - msgid "Show your existing view on both displays" - msgstr "Mostrar la vista existente en ambas pantallas" - --#: ../panels/display/cc-display-panel.c:2173 -+#: ../panels/display/cc-display-panel.c:2183 - msgid "Turn Off" - msgstr "Apagar" - --#: ../panels/display/cc-display-panel.c:2174 -+#: ../panels/display/cc-display-panel.c:2184 - msgid "Don't use this display" - msgstr "No usar esta pantalla" - --#: ../panels/display/cc-display-panel.c:2383 -+#: ../panels/display/cc-display-panel.c:2388 - msgid "Could not get screen information" - msgstr "No se pudo obtener la información de la pantalla" - --#: ../panels/display/cc-display-panel.c:2414 -+#: ../panels/display/cc-display-panel.c:2419 - msgid "_Arrange Combined Displays" - msgstr "_Ordenar las pantallas combinadas" - -@@ -1205,51 +1206,47 @@ - msgid "Unknown" - msgstr "Desconocido" - --#: ../panels/info/cc-info-panel.c:472 --#, c-format --msgid "%s %d-bit" --msgstr "%s %d-bit" -- --#: ../panels/info/cc-info-panel.c:474 -+#. translators: This is the the type of OS architecture, eg: "64-bit" or "32-bit" -+#: ../panels/info/cc-info-panel.c:513 - #, c-format - msgid "%d-bit" - msgstr "%d-bit" - --#: ../panels/info/cc-info-panel.c:1154 -+#: ../panels/info/cc-info-panel.c:1191 - msgid "Ask what to do" - msgstr "Preguntar qué hacer" - --#: ../panels/info/cc-info-panel.c:1158 -+#: ../panels/info/cc-info-panel.c:1195 - msgid "Do nothing" - msgstr "No hacer nada" - --#: ../panels/info/cc-info-panel.c:1162 -+#: ../panels/info/cc-info-panel.c:1199 - msgid "Open folder" - msgstr "Abrir carpeta" - --#: ../panels/info/cc-info-panel.c:1253 -+#: ../panels/info/cc-info-panel.c:1290 - msgid "Other Media" - msgstr "Otros soportes" - --#: ../panels/info/cc-info-panel.c:1284 -+#: ../panels/info/cc-info-panel.c:1321 - msgid "Select an application for audio CDs" - msgstr "Seleccionar una aplicación para CD de sonido" - --#: ../panels/info/cc-info-panel.c:1285 -+#: ../panels/info/cc-info-panel.c:1322 - msgid "Select an application for video DVDs" - msgstr "Seleccionar una aplicación para DVD de vídeo" - --#: ../panels/info/cc-info-panel.c:1286 -+#: ../panels/info/cc-info-panel.c:1323 - msgid "Select an application to run when a music player is connected" - msgstr "" - "Seleccionar una aplicación que ejecutar cuando se conecta un reproductor de " - "música" - --#: ../panels/info/cc-info-panel.c:1287 -+#: ../panels/info/cc-info-panel.c:1324 - msgid "Select an application to run when a camera is connected" - msgstr "Seleccionar una aplicación que ejecutar cuando se conecta una cámara" - --#: ../panels/info/cc-info-panel.c:1288 -+#: ../panels/info/cc-info-panel.c:1325 - msgid "Select an application for software CDs" - msgstr "Seleccionar una aplicación para CD de software" - -@@ -1257,73 +1254,73 @@ - #. * strings, just here to fix capitalization of the English originals. - #. * If the shared-mime-info translation works for your language, - #. * simply leave these untranslated. --#. --#: ../panels/info/cc-info-panel.c:1300 -+#. -+#: ../panels/info/cc-info-panel.c:1337 - msgid "audio DVD" - msgstr "DVD de sonido" - --#: ../panels/info/cc-info-panel.c:1301 -+#: ../panels/info/cc-info-panel.c:1338 - msgid "blank Blu-ray disc" - msgstr "disco Blu-ray virgen" - --#: ../panels/info/cc-info-panel.c:1302 -+#: ../panels/info/cc-info-panel.c:1339 - msgid "blank CD disc" - msgstr "CD virgen" - --#: ../panels/info/cc-info-panel.c:1303 -+#: ../panels/info/cc-info-panel.c:1340 - msgid "blank DVD disc" - msgstr "DVD virgen" - --#: ../panels/info/cc-info-panel.c:1304 -+#: ../panels/info/cc-info-panel.c:1341 - msgid "blank HD DVD disc" - msgstr "disco HD DVD virgen" - --#: ../panels/info/cc-info-panel.c:1305 -+#: ../panels/info/cc-info-panel.c:1342 - msgid "Blu-ray video disc" - msgstr "Disco Blu-ray de vídeo" - --#: ../panels/info/cc-info-panel.c:1306 -+#: ../panels/info/cc-info-panel.c:1343 - msgid "e-book reader" - msgstr "lector de libros electrónicos" - --#: ../panels/info/cc-info-panel.c:1307 -+#: ../panels/info/cc-info-panel.c:1344 - msgid "HD DVD video disc" - msgstr "Disco HD DVD de vídeo" - --#: ../panels/info/cc-info-panel.c:1308 -+#: ../panels/info/cc-info-panel.c:1345 - msgid "Picture CD" - msgstr "CD de imágenes" - --#: ../panels/info/cc-info-panel.c:1309 -+#: ../panels/info/cc-info-panel.c:1346 - msgid "Super Video CD" - msgstr "Super Video CD" - --#: ../panels/info/cc-info-panel.c:1310 -+#: ../panels/info/cc-info-panel.c:1347 - msgid "Video CD" - msgstr "Video CD" - --#: ../panels/info/cc-info-panel.c:1311 -+#: ../panels/info/cc-info-panel.c:1348 - msgid "Windows software" - msgstr "Software de Windows" - --#: ../panels/info/cc-info-panel.c:1434 -+#: ../panels/info/cc-info-panel.c:1471 - #: ../panels/keyboard/keyboard-shortcuts.c:1932 - msgid "Section" - msgstr "Sección" - --#: ../panels/info/cc-info-panel.c:1443 ../panels/info/info.ui.h:14 -+#: ../panels/info/cc-info-panel.c:1480 ../panels/info/info.ui.h:13 - msgid "Overview" - msgstr "Visión general" - --#: ../panels/info/cc-info-panel.c:1449 ../panels/info/info.ui.h:21 -+#: ../panels/info/cc-info-panel.c:1486 ../panels/info/info.ui.h:20 - msgid "Default Applications" - msgstr "Aplicaciones predeterminadas" - --#: ../panels/info/cc-info-panel.c:1454 ../panels/info/info.ui.h:29 -+#: ../panels/info/cc-info-panel.c:1491 ../panels/info/info.ui.h:28 - msgid "Removable Media" - msgstr "Soportes extraíbles" - --#: ../panels/info/cc-info-panel.c:1479 -+#: ../panels/info/cc-info-panel.c:1516 - #, c-format - msgid "Version %s" - msgstr "Versión %s" -@@ -1341,12 +1338,9 @@ - #. sure that you use the same "translation" for those keywords - #: ../panels/info/gnome-info-panel.desktop.in.in.h:4 - msgid "" --"device;system;information;memory;processor;version;default;application;" --"preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" -+"device;system;information;memory;processor;version;default;application;preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" - msgstr "" --"dispositivo;sistema;información;memoria;procesador;versión;predeterminado;" --"aplicación;alternativo;preferido;cd;dvd;usb;sonido;vídeo;disco;extraíble;" --"medio;autoejecutar;" -+"dispositivo;sistema;información;memoria;procesador;versión;predeterminado;aplicación;alternativo;preferido;cd;dvd;usb;sonido;vídeo;disco;extraíble;medio;autoejecutar;" - - #: ../panels/info/info.ui.h:1 - msgid "Select how other media should be handled" -@@ -1372,80 +1366,79 @@ - msgid "Processor" - msgstr "Procesador" - --#. To translators: this field contains the distro name, version and type --#: ../panels/info/info.ui.h:8 --msgid "Base system" --msgstr "Sistema base" -+#: ../panels/info/info.ui.h:7 -+msgid "OS Type" -+msgstr "Tipo de sistema operativo" - --#: ../panels/info/info.ui.h:9 -+#: ../panels/info/info.ui.h:8 - msgid "Disk" - msgstr "Disco" - --#: ../panels/info/info.ui.h:10 -+#: ../panels/info/info.ui.h:9 - msgid "Calculating…" - msgstr "Calculando…" - --#: ../panels/info/info.ui.h:11 -+#: ../panels/info/info.ui.h:10 - msgid "Graphics" - msgstr "Gráficos" - --#: ../panels/info/info.ui.h:12 -+#: ../panels/info/info.ui.h:11 - msgid "Virtualization" - msgstr "Virtualización" - --#: ../panels/info/info.ui.h:13 -+#: ../panels/info/info.ui.h:12 - msgid "Check for updates" - msgstr "Comprobar si hay actualizaciones" - --#: ../panels/info/info.ui.h:15 -+#: ../panels/info/info.ui.h:14 - msgid "_Web" - msgstr "_Web" - --#: ../panels/info/info.ui.h:16 -+#: ../panels/info/info.ui.h:15 - msgid "_Mail" - msgstr "Co_rreo" - --#: ../panels/info/info.ui.h:17 -+#: ../panels/info/info.ui.h:16 - msgid "_Calendar" - msgstr "_Calendario" - --#: ../panels/info/info.ui.h:18 -+#: ../panels/info/info.ui.h:17 - msgid "M_usic" - msgstr "_Música" - --#: ../panels/info/info.ui.h:19 -+#: ../panels/info/info.ui.h:18 - msgid "_Video" - msgstr "_Vídeo" - --#: ../panels/info/info.ui.h:20 -+#: ../panels/info/info.ui.h:19 - msgid "_Photos" - msgstr "_Fotos" - --#: ../panels/info/info.ui.h:22 -+#: ../panels/info/info.ui.h:21 - msgid "Select how media should be handled" - msgstr "Seleccionar cómo se deben manejar los soportes" - --#: ../panels/info/info.ui.h:23 -+#: ../panels/info/info.ui.h:22 - msgid "CD _audio" - msgstr "CD de _sonido" - --#: ../panels/info/info.ui.h:24 -+#: ../panels/info/info.ui.h:23 - msgid "_DVD video" - msgstr "_DVD de vídeo" - --#: ../panels/info/info.ui.h:25 -+#: ../panels/info/info.ui.h:24 - msgid "_Music player" - msgstr "Reproductor de _música" - --#: ../panels/info/info.ui.h:26 -+#: ../panels/info/info.ui.h:25 - msgid "_Software" - msgstr "Soft_ware" - --#: ../panels/info/info.ui.h:27 -+#: ../panels/info/info.ui.h:26 - msgid "_Other Media…" - msgstr "_Otros soportes…" - --#: ../panels/info/info.ui.h:28 -+#: ../panels/info/info.ui.h:27 - msgid "_Never prompt or start programs on media insertion" - msgstr "_Nunca preguntar ni iniciar programas al introducir soportes" - -@@ -1515,7 +1508,7 @@ - msgid "Launch help browser" - msgstr "Lanzar el visor de ayuda" - --#: ../panels/keyboard/01-launchers.xml.in.h:3 ../shell/cc-window.c:1601 -+#: ../panels/keyboard/01-launchers.xml.in.h:3 ../shell/cc-window.c:1604 - #: ../shell/gnome-control-center.desktop.in.in.h:1 - msgid "Settings" - msgstr "Configuración" -@@ -1639,7 +1632,7 @@ - #. Translators: This key is also known as 'third level - #. * chooser'. AltGr is often used for this purpose. See - #. * https://live.gnome.org/Design/SystemSettings/RegionAndLanguage --#. -+#. - #: ../panels/keyboard/cc-keyboard-option.c:354 - msgid "Alternative Characters Key" - msgstr "Tecla de caracteres alternativos" -@@ -1647,7 +1640,7 @@ - #. Translators: The Compose key is used to initiate key - #. * sequences that are combined to form a single character. - #. * See http://en.wikipedia.org/wiki/Compose_key --#. -+#. - #: ../panels/keyboard/cc-keyboard-option.c:363 - msgid "Compose Key" - msgstr "Tecla de composición" -@@ -1788,17 +1781,16 @@ - - #: ../panels/keyboard/keyboard-shortcuts.c:1387 - #, c-format --msgid "" --"The shortcut \"%s\" is already used for\n" -+msgid "The shortcut \"%s\" is already used for\n" - "\"%s\"" --msgstr "" --"La combinación «%s» ya se está usando para\n" -+msgstr "La combinación «%s» ya se está usando para\n" - "«%s»" - - #: ../panels/keyboard/keyboard-shortcuts.c:1392 - #, c-format - msgid "" - "If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be disabled." -+"" - msgstr "Si reasigna la combinación a «%s» se desactivará la combinación «%s»." - - #: ../panels/keyboard/keyboard-shortcuts.c:1398 -@@ -1977,22 +1969,22 @@ - msgid "Air_plane Mode" - msgstr "Modo a_vión" - --#: ../panels/network/cc-network-panel.c:977 -+#: ../panels/network/cc-network-panel.c:978 - msgid "Network proxy" - msgstr "Proxy de la red" - - #. Translators: this is the title of the connection details - #. * window for vpn connections, it is also used to display - #. * vpn connections in the device list. --#. --#: ../panels/network/cc-network-panel.c:1156 ../panels/network/net-vpn.c:278 -+#. -+#: ../panels/network/cc-network-panel.c:1155 ../panels/network/net-vpn.c:278 - #: ../panels/network/net-vpn.c:431 - #, c-format - msgid "%s VPN" - msgstr "VPN «%s»" - - #. TRANSLATORS: the user is running a NM that is not API compatible --#: ../panels/network/cc-network-panel.c:1301 -+#: ../panels/network/cc-network-panel.c:1302 - msgid "The system network services are not compatible with this version." - msgstr "Los servicios de red del sistema no son compatibles con esta versión." - -@@ -2155,7 +2147,7 @@ - #: ../panels/network/connection-editor/ce-page-ip4.c:465 - #: ../panels/network/connection-editor/ce-page-ip6.c:205 - #: ../panels/network/connection-editor/ce-page-ip6.c:473 --#: ../panels/network/network-vpn.ui.h:3 -+#: ../panels/network/network-vpn.ui.h:2 - msgid "Gateway" - msgstr "Puerta de enlace" - -@@ -2207,7 +2199,7 @@ - msgid "Link-Local Only" - msgstr "Sólo enlace local" - --#: ../panels/network/connection-editor/ce-page-ip4.c:953 -+#: ../panels/network/connection-editor/ce-page-ip4.c:967 - #: ../panels/network/network-wifi.ui.h:48 - msgid "IPv4" - msgstr "IPv4" -@@ -2229,7 +2221,7 @@ - msgid "Automatic, DHCP only" - msgstr "Automático, DHCP únicamente" - --#: ../panels/network/connection-editor/ce-page-ip6.c:919 -+#: ../panels/network/connection-editor/ce-page-ip6.c:937 - #: ../panels/network/network-wifi.ui.h:49 - msgid "IPv6" - msgstr "IPv6" -@@ -2397,7 +2389,7 @@ - msgstr "_Zona del cortafuegos" - - #: ../panels/network/connection-editor/firewall-helpers.c:48 --#: ../panels/network/connection-editor/firewall-helpers.c:112 -+#: ../panels/network/connection-editor/firewall-helpers.c:113 - msgctxt "Firewall zone" - msgid "Default" - msgstr "Predeterminada" -@@ -2453,7 +2445,6 @@ - msgstr "Perfil nuevo" - - #: ../panels/network/connection-editor/net-connection-editor.c:577 --#: ../panels/network/network.ui.h:1 ../panels/network/network-vpn.ui.h:1 - msgid "VPN" - msgstr "VPN" - -@@ -2539,7 +2530,7 @@ - msgstr "Seleccione el archivo que importar" - - #: ../panels/network/connection-editor/vpn-helpers.c:246 --#: ../panels/printers/cc-printers-panel.c:1948 -+#: ../panels/printers/cc-printers-panel.c:1950 - #: ../panels/sharing/cc-sharing-panel.c:492 - #: ../panels/user-accounts/um-photo-dialog.c:223 - msgid "_Open" -@@ -2565,12 +2556,10 @@ - - #: ../panels/network/connection-editor/vpn-helpers.c:336 - #, c-format --msgid "" --"The VPN connection '%s' could not be exported to %s.\n" -+msgid "The VPN connection '%s' could not be exported to %s.\n" - "\n" - "Error: %s." --msgstr "" --"No se pudo exportar la conexión VPN «%s» a %s.\n" -+msgstr "No se pudo exportar la conexión VPN «%s» a %s.\n" - "\n" - "Error: %s." - -@@ -2613,11 +2602,11 @@ - #. Translators: those are keywords for the network control-center panel - #: ../panels/network/gnome-network-panel.desktop.in.in.h:4 - msgid "" --"Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;" --"vlan;bridge;bond;DNS;" -+"Network;Wireless;Wi-" -+"Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;vlan;bridge;bond;DNS;" - msgstr "" --"Red;Inalámbrica;Wireless;Wi-Fi;Wifi;IP;Proxy;WAN;LAN;Banda;ancha;Módem;" --"Bluetooth;vpn;vlan;puente;bond;DNS;" -+"Red;Inalámbrica;Wireless;Wi-" -+"Fi;Wifi;IP;Proxy;WAN;LAN;Banda;ancha;Módem;Bluetooth;vpn;vlan;puente;bond;DNS;" - - #: ../panels/network/net-device-bond.c:77 - msgid "Bond slaves" -@@ -2664,7 +2653,7 @@ - #. * details window for ethernet, if there is only a single - #. * profile. It is also used to display ethernet in the - #. * device list. --#. -+#. - #: ../panels/network/net-device-ethernet.c:288 - #: ../panels/network/network-ethernet.ui.h:1 - #: ../panels/network/network-simple.ui.h:1 -@@ -2676,7 +2665,7 @@ - #: ../panels/network/network-ethernet.ui.h:3 - #: ../panels/network/network-mobile.ui.h:8 - #: ../panels/network/network-simple.ui.h:8 --#: ../panels/network/network-vpn.ui.h:8 -+#: ../panels/network/network-vpn.ui.h:7 - msgid "Options…" - msgstr "Opciones…" - -@@ -2698,8 +2687,9 @@ - "If you have a connection to the Internet other than wireless, you can set up " - "a wireless hotspot to share the connection with others." - msgstr "" --"Si tiene otra conexión a Internet aparte de la inalámbrica, puede configurar " --"un «hotspot» inalámbrico para compartir su conexión a Internet con otros." -+"Si tiene otra conexión a Internet aparte de la inalámbrica, puede " -+"configurar un «hotspot» inalámbrico para compartir su conexión a Internet " -+"con otros." - - #: ../panels/network/net-device-wifi.c:1158 - #, c-format -@@ -2711,8 +2701,8 @@ - "It is not possible to access the Internet through your wireless while the " - "hotspot is active." - msgstr "" --"No es posible acceder a Internet usando la conexión inalámbrica mientras el " --"«hotspot» está activado." -+"No es posible acceder a Internet usando la conexión inalámbrica mientras " -+"el «hotspot» está activado." - - #: ../panels/network/net-device-wifi.c:1245 - msgid "Stop hotspot and disconnect any users?" -@@ -2745,7 +2735,7 @@ - - #: ../panels/network/net-device-wifi.c:1749 - #: ../panels/region/input-options.ui.h:2 ../panels/wacom/button-mapping.ui.h:2 --#: ../panels/wacom/cc-wacom-page.c:533 -+#: ../panels/wacom/cc-wacom-page.c:525 - #: ../panels/wacom/gnome-wacom-properties.ui.h:4 - msgid "_Close" - msgstr "_Cerrar" -@@ -2788,17 +2778,17 @@ - msgid "Provider" - msgstr "Proveedor" - --#: ../panels/network/network-proxy.ui.h:1 ../panels/network/network.ui.h:2 -+#: ../panels/network/network-proxy.ui.h:1 - msgctxt "proxy method" - msgid "None" - msgstr "Ninguno" - --#: ../panels/network/network-proxy.ui.h:2 ../panels/network/network.ui.h:3 -+#: ../panels/network/network-proxy.ui.h:2 - msgctxt "proxy method" - msgid "Manual" - msgstr "Manual" - --#: ../panels/network/network-proxy.ui.h:3 ../panels/network/network.ui.h:4 -+#: ../panels/network/network-proxy.ui.h:3 - msgctxt "proxy method" - msgid "Automatic" - msgstr "Automático" -@@ -2851,32 +2841,32 @@ - msgid "Turn device off" - msgstr "Apagar dispositivo" - --#: ../panels/network/network.ui.h:5 -+#: ../panels/network/network.ui.h:1 - msgid "Add Device" - msgstr "Añadir dispositivo" - --#: ../panels/network/network.ui.h:6 -+#: ../panels/network/network.ui.h:2 - msgid "Remove Device" - msgstr "Quitar dispositivo" - --#: ../panels/network/network-vpn.ui.h:2 -+#: ../panels/network/network-vpn.ui.h:1 - msgid "VPN Type" - msgstr "Tipo de VPN" - --#: ../panels/network/network-vpn.ui.h:4 -+#: ../panels/network/network-vpn.ui.h:3 - msgid "Group Name" - msgstr "Nombre del grupo" - --#: ../panels/network/network-vpn.ui.h:5 -+#: ../panels/network/network-vpn.ui.h:4 - msgid "Group Password" - msgstr "Contraseña del grupo" - --#: ../panels/network/network-vpn.ui.h:6 -+#: ../panels/network/network-vpn.ui.h:5 - #: ../panels/printers/authentication-dialog.ui.h:4 - msgid "Username" - msgstr "Nombre de usuario" - --#: ../panels/network/network-vpn.ui.h:7 -+#: ../panels/network/network-vpn.ui.h:6 - msgid "Turn VPN connection off" - msgstr "Cerrar la conexión VPN" - -@@ -3598,7 +3588,7 @@ - msgstr "Mostrar detalles en la pantalla de bloqueo" - - #: ../panels/notifications/cc-notifications-panel.c:185 --#: ../panels/power/cc-power-panel.c:1692 ../panels/power/cc-power-panel.c:1699 -+#: ../panels/power/cc-power-panel.c:1710 ../panels/power/cc-power-panel.c:1717 - #: ../panels/privacy/cc-privacy-panel.c:84 - #: ../panels/privacy/cc-privacy-panel.c:124 - #: ../panels/universal-access/cc-ua-panel.c:257 -@@ -3702,11 +3692,10 @@ - #. For ReadItLater and Pocket, see http://en.wikipedia.org/wiki/Pocket_(application) - #: ../panels/online-accounts/gnome-online-accounts-panel.desktop.in.in.h:4 - msgid "" --"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;" --"Kerberos;IMAP;SMTP;Pocket;ReadItLater;" -+"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;Kerberos;IMAP;SMTP;Pocket;ReadItLater;" - msgstr "" --"Google;Facebook;Twitter;Yahoo;Web;en línea;Chat;Calendario;Correo-e;Contacto;" --"ownCloud;Kerberos;IMAP;SMTP;Pocket;ReadItLater;" -+"Google;Facebook;Twitter;Yahoo;Web;en línea;Chat;Calendario;Correo-" -+"e;Contacto;ownCloud;Kerberos;IMAP;SMTP;Pocket;ReadItLater;" - - #: ../panels/online-accounts/online-accounts.ui.h:1 - msgid "No online accounts configured" -@@ -3728,18 +3717,18 @@ - "añadir una cuenta permite que sus aplicaciones accedan a documentos, correo-" - "e, contactos, calendario, chat y más." - --#: ../panels/power/cc-power-panel.c:183 -+#: ../panels/power/cc-power-panel.c:192 - msgid "Unknown time" - msgstr "Tiempo desconocido" - --#: ../panels/power/cc-power-panel.c:189 -+#: ../panels/power/cc-power-panel.c:198 - #, c-format - msgid "%i minute" - msgid_plural "%i minutes" - msgstr[0] "%i minuto" - msgstr[1] "%i minutos" - --#: ../panels/power/cc-power-panel.c:201 -+#: ../panels/power/cc-power-panel.c:210 - #, c-format - msgid "%i hour" - msgid_plural "%i hours" -@@ -3748,226 +3737,226 @@ - - #. TRANSLATOR: "%i %s %i %s" are "%i hours %i minutes" - #. * Swap order with "%2$s %2$i %1$s %1$i if needed --#: ../panels/power/cc-power-panel.c:209 -+#: ../panels/power/cc-power-panel.c:218 - #, c-format - msgid "%i %s %i %s" - msgstr "%i %s %i %s" - --#: ../panels/power/cc-power-panel.c:210 -+#: ../panels/power/cc-power-panel.c:219 - msgid "hour" - msgid_plural "hours" - msgstr[0] "hora" - msgstr[1] "horas" - --#: ../panels/power/cc-power-panel.c:211 -+#: ../panels/power/cc-power-panel.c:220 - msgid "minute" - msgid_plural "minutes" - msgstr[0] "minuto" - msgstr[1] "minutos" - - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" --#: ../panels/power/cc-power-panel.c:230 -+#: ../panels/power/cc-power-panel.c:239 - #, c-format - msgid "%s until fully charged" - msgstr "%s hasta que se cargue del todo" - - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" --#: ../panels/power/cc-power-panel.c:237 -+#: ../panels/power/cc-power-panel.c:246 - #, c-format - msgid "Caution: %s remaining" - msgstr "Advertencia: quedan %s" - - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" --#: ../panels/power/cc-power-panel.c:242 -+#: ../panels/power/cc-power-panel.c:251 - #, c-format - msgid "%s remaining" - msgstr "%s restante" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:247 ../panels/power/cc-power-panel.c:275 -+#: ../panels/power/cc-power-panel.c:256 ../panels/power/cc-power-panel.c:284 - msgid "Fully charged" - msgstr "Cargada completamente" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:251 ../panels/power/cc-power-panel.c:279 -+#: ../panels/power/cc-power-panel.c:260 ../panels/power/cc-power-panel.c:288 - msgid "Empty" - msgstr "Vacía" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:266 -+#: ../panels/power/cc-power-panel.c:275 - msgid "Charging" - msgstr "Cargando" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:271 -+#: ../panels/power/cc-power-panel.c:280 - msgid "Discharging" - msgstr "Descargando" - --#: ../panels/power/cc-power-panel.c:396 -+#: ../panels/power/cc-power-panel.c:405 - msgctxt "Battery name" - msgid "Main" - msgstr "Principal" - --#: ../panels/power/cc-power-panel.c:398 -+#: ../panels/power/cc-power-panel.c:407 - msgctxt "Battery name" - msgid "Extra" - msgstr "Adicional" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:470 -+#: ../panels/power/cc-power-panel.c:479 - msgid "Wireless mouse" - msgstr "Ratón inalámbrico" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:473 -+#: ../panels/power/cc-power-panel.c:482 - msgid "Wireless keyboard" - msgstr "Teclado inalámbrico" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:476 -+#: ../panels/power/cc-power-panel.c:485 - msgid "Uninterruptible power supply" - msgstr "Fuente de alimentación no interrumplible" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:479 -+#: ../panels/power/cc-power-panel.c:488 - msgid "Personal digital assistant" - msgstr "Asistente digital personal" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:482 -+#: ../panels/power/cc-power-panel.c:491 - msgid "Cellphone" - msgstr "Teléfono móvil" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:485 -+#: ../panels/power/cc-power-panel.c:494 - msgid "Media player" - msgstr "Reproductor multimedia" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:488 -+#: ../panels/power/cc-power-panel.c:497 - msgid "Tablet" - msgstr "Tableta" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:491 -+#: ../panels/power/cc-power-panel.c:500 - msgid "Computer" - msgstr "Equipo" - - #. TRANSLATORS: secondary battery, misc --#: ../panels/power/cc-power-panel.c:494 ../panels/power/cc-power-panel.c:717 --#: ../panels/power/cc-power-panel.c:2021 -+#: ../panels/power/cc-power-panel.c:503 ../panels/power/cc-power-panel.c:726 -+#: ../panels/power/cc-power-panel.c:2046 - msgid "Battery" - msgstr "Batería" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:540 -+#: ../panels/power/cc-power-panel.c:549 - msgctxt "Battery power" - msgid "Charging" - msgstr "Cargando" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:547 -+#: ../panels/power/cc-power-panel.c:556 - msgctxt "Battery power" - msgid "Caution" - msgstr "Precaución" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:552 -+#: ../panels/power/cc-power-panel.c:561 - msgctxt "Battery power" - msgid "Low" - msgstr "Baja" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:557 -+#: ../panels/power/cc-power-panel.c:566 - msgctxt "Battery power" - msgid "Good" - msgstr "Bien" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:562 -+#: ../panels/power/cc-power-panel.c:571 - msgctxt "Battery power" - msgid "Fully charged" - msgstr "Cargada completamente" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:566 -+#: ../panels/power/cc-power-panel.c:575 - msgctxt "Battery power" - msgid "Empty" - msgstr "Vacía" - --#: ../panels/power/cc-power-panel.c:715 -+#: ../panels/power/cc-power-panel.c:724 - msgid "Batteries" - msgstr "Baterías" - --#: ../panels/power/cc-power-panel.c:1117 -+#: ../panels/power/cc-power-panel.c:1126 - msgid "When _idle" - msgstr "Cuando esté _inactivo" - --#: ../panels/power/cc-power-panel.c:1445 -+#: ../panels/power/cc-power-panel.c:1454 - msgid "Power Saving" - msgstr "Ahorro de energía" - --#: ../panels/power/cc-power-panel.c:1473 -+#: ../panels/power/cc-power-panel.c:1489 - msgid "_Screen brightness" - msgstr "_Brillo de la pantalla" - --#: ../panels/power/cc-power-panel.c:1479 -+#: ../panels/power/cc-power-panel.c:1495 - msgid "_Keyboard brightness" - msgstr "_Brillo del teclado" - --#: ../panels/power/cc-power-panel.c:1489 -+#: ../panels/power/cc-power-panel.c:1505 - msgid "_Dim screen when inactive" - msgstr "_Oscurecer la pantalla cuando esté inactiva" - --#: ../panels/power/cc-power-panel.c:1514 -+#: ../panels/power/cc-power-panel.c:1530 - msgid "_Blank screen" - msgstr "_Apagar la pantalla" - --#: ../panels/power/cc-power-panel.c:1551 -+#: ../panels/power/cc-power-panel.c:1567 - msgid "_Wi-Fi" - msgstr "_Wi-Fi" - --#: ../panels/power/cc-power-panel.c:1556 -+#: ../panels/power/cc-power-panel.c:1572 - msgid "Turns off wireless devices" - msgstr "Apaga los dispositivos inalámbricos" - --#: ../panels/power/cc-power-panel.c:1581 -+#: ../panels/power/cc-power-panel.c:1597 - msgid "_Mobile broadband" - msgstr "Banda ancha _móvil" - --#: ../panels/power/cc-power-panel.c:1586 -+#: ../panels/power/cc-power-panel.c:1602 - msgid "Turns off mobile broadband (3G, 4G, WiMax, etc.) devices" - msgstr "Apaga los dispositivos de banda ancha móvil (3G, 4G, WiMax, etc.)" - --#: ../panels/power/cc-power-panel.c:1636 -+#: ../panels/power/cc-power-panel.c:1652 - msgid "_Bluetooth" - msgstr "_Bluetooth" - --#: ../panels/power/cc-power-panel.c:1688 -+#: ../panels/power/cc-power-panel.c:1706 - msgid "When on battery power" - msgstr "En modo batería" - --#: ../panels/power/cc-power-panel.c:1690 -+#: ../panels/power/cc-power-panel.c:1708 - msgid "When plugged in" - msgstr "Cuando está conectado a la red" - --#: ../panels/power/cc-power-panel.c:1820 -+#: ../panels/power/cc-power-panel.c:1838 - msgid "Suspend & Power Off" - msgstr "Suspender y apagar" - --#: ../panels/power/cc-power-panel.c:1853 -+#: ../panels/power/cc-power-panel.c:1878 - msgid "_Automatic suspend" - msgstr "Suspender _automáticamente" - --#: ../panels/power/cc-power-panel.c:1877 -+#: ../panels/power/cc-power-panel.c:1902 - msgid "When battery power is _critical" - msgstr "_Cuando la carga está críticamente baja" - --#: ../panels/power/cc-power-panel.c:1932 -+#: ../panels/power/cc-power-panel.c:1957 - msgid "Power Off" - msgstr "Apagar" - --#: ../panels/power/cc-power-panel.c:2068 -+#: ../panels/power/cc-power-panel.c:2100 - msgid "Devices" - msgstr "Dispositivos" - -@@ -3985,8 +3974,7 @@ - msgid "" - "Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;" - msgstr "" --"Energía;Dormir;Suspender;Hibernar;Batería;Brillo;Apagar;Monitor;DPMS;" --"inactivo;" -+"Energía;Dormir;Suspender;Hibernar;Batería;Brillo;Apagar;Monitor;DPMS;inactivo;" - - #: ../panels/power/power.ui.h:1 - msgid "Hibernate" -@@ -4227,15 +4215,15 @@ - msgstr[1] "%u activos" - - #. Translators: Addition of the new printer failed. --#: ../panels/printers/cc-printers-panel.c:1777 -+#: ../panels/printers/cc-printers-panel.c:1779 - msgid "Failed to add new printer." - msgstr "Falló al añadir una impresora nueva." - --#: ../panels/printers/cc-printers-panel.c:1944 -+#: ../panels/printers/cc-printers-panel.c:1946 - msgid "Select PPD File" - msgstr "Seleccionar archivo PPD" - --#: ../panels/printers/cc-printers-panel.c:1953 -+#: ../panels/printers/cc-printers-panel.c:1955 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" -@@ -4243,30 +4231,30 @@ - "Archivos de descripción de impresora PostScript (*.ppd, *.PPD, *.ppd.gz, *." - "PPD.gz, *.PPD.GZ)" - --#: ../panels/printers/cc-printers-panel.c:2258 -+#: ../panels/printers/cc-printers-panel.c:2260 - msgid "No suitable driver found" - msgstr "No se ha encontrado ningún controlador adecuado" - --#: ../panels/printers/cc-printers-panel.c:2327 -+#: ../panels/printers/cc-printers-panel.c:2329 - msgid "Searching for preferred drivers…" - msgstr "Buscando controladores preferidos…" - --#: ../panels/printers/cc-printers-panel.c:2342 -+#: ../panels/printers/cc-printers-panel.c:2344 - msgid "Select from database…" - msgstr "Seleccionar de la base de datos…" - --#: ../panels/printers/cc-printers-panel.c:2351 -+#: ../panels/printers/cc-printers-panel.c:2353 - msgid "Provide PPD File…" - msgstr "Proporcionar archivo PPD…" - - #. Translators: Name of job which makes printer to print test page --#: ../panels/printers/cc-printers-panel.c:2502 --#: ../panels/printers/cc-printers-panel.c:2525 -+#: ../panels/printers/cc-printers-panel.c:2504 -+#: ../panels/printers/cc-printers-panel.c:2527 - msgid "Test page" - msgstr "Página de prueba" - - #. Translators: The XML file containing user interface can not be loaded --#: ../panels/printers/cc-printers-panel.c:2933 -+#: ../panels/printers/cc-printers-panel.c:2935 - #, c-format - msgid "Could not load ui: %s" - msgstr "No se pudo cargar la IU: %s" -@@ -4326,7 +4314,8 @@ - #: ../panels/printers/new-printer-dialog.ui.h:9 - msgid "Enter address of a printer or a text to filter results" - msgstr "" --"Introducir la dirección de una impresa o un texto para filtrar los resultados" -+"Introducir la dirección de una impresa o un texto para filtrar los " -+"resultados" - - #: ../panels/printers/options-dialog.ui.h:1 - msgid "Loading options…" -@@ -4684,11 +4673,9 @@ - - #. Translators: The CUPS server is not running (we can not connect to it). - #: ../panels/printers/printers.ui.h:26 --msgid "" --"Sorry! The system printing service\n" -+msgid "Sorry! The system printing service\n" - "doesn't seem to be available." --msgstr "" --"El servicio del sistema de impresión\n" -+msgstr "El servicio del sistema de impresión\n" - "parece no estar disponible." - - #: ../panels/privacy/cc-privacy-panel.c:252 ../panels/privacy/privacy.ui.h:24 -@@ -4705,7 +4692,8 @@ - - #: ../panels/privacy/cc-privacy-panel.c:488 - msgid "All items in the Trash will be permanently deleted." --msgstr "Todos los elementos de la papelera se eliminarán de manera permanente." -+msgstr "" -+"Todos los elementos de la papelera se eliminarán de manera permanente." - - #: ../panels/privacy/cc-privacy-panel.c:489 ../panels/privacy/privacy.ui.h:34 - msgid "_Empty Trash" -@@ -4742,11 +4730,9 @@ - #. Translators: those are keywords for the privacy control-center panel - #: ../panels/privacy/gnome-privacy-panel.desktop.in.in.h:4 - msgid "" --"screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;" --"network;identity;" -+"screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;network;identity;" - msgstr "" --"pantalla;bloqueo;diagnóstico;error;privado;reciente;temporal;tmp;índice;" --"nombre;red;identidad;" -+"pantalla;bloqueo;diagnóstico;error;privado;reciente;temporal;tmp;índice;nombre;red;identidad;" - - #: ../panels/privacy/privacy.ui.h:1 - msgid "Screen Turns Off" -@@ -4855,8 +4841,8 @@ - #: ../panels/privacy/privacy.ui.h:37 - msgid "" - "Sending us information about which software you use helps us provide you " --"with more accurate recommendations. It also helps us to improve our " --"software.\n" -+"with more accurate recommendations. It also helps us to improve our software." -+"\n" - "\n" - "All the information we collect is made anonymous, and we will never share " - "your data with third parties." -@@ -4901,35 +4887,35 @@ - msgid "No input sources found" - msgstr "No se han encontrado fuentes de entrada" - --#: ../panels/region/cc-input-chooser.c:1076 -+#: ../panels/region/cc-input-chooser.c:1084 - msgctxt "Input Source" - msgid "Other" - msgstr "Otra" - --#: ../panels/region/cc-region-panel.c:239 --#: ../panels/user-accounts/um-user-panel.c:900 -+#: ../panels/region/cc-region-panel.c:243 -+#: ../panels/user-accounts/um-user-panel.c:1113 - msgid "Your session needs to be restarted for changes to take effect" - msgstr "Debe reiniciar la sesión para que se apliquen los cambios" - --#: ../panels/region/cc-region-panel.c:243 --#: ../panels/user-accounts/um-user-panel.c:904 -+#: ../panels/region/cc-region-panel.c:247 -+#: ../panels/user-accounts/um-user-panel.c:1117 - msgid "Restart Now" - msgstr "Reiniciar ahora" - --#: ../panels/region/cc-region-panel.c:862 -+#: ../panels/region/cc-region-panel.c:867 - msgid "No input source selected" - msgstr "No se ha seleccionado ninguna fuente de entrada" - --#: ../panels/region/cc-region-panel.c:1092 -+#: ../panels/region/cc-region-panel.c:1097 - msgid "Sorry" - msgstr "Disculpe" - --#: ../panels/region/cc-region-panel.c:1094 -+#: ../panels/region/cc-region-panel.c:1099 - msgid "Input methods can't be used on the login screen" - msgstr "" - "Los métodos de entrada no se pueden usar en la pantalla de inicio de sesión" - --#: ../panels/region/cc-region-panel.c:1731 -+#: ../panels/region/cc-region-panel.c:1739 - msgid "Login Screen" - msgstr "Pantalla de inicio de sesión" - -@@ -5066,7 +5052,7 @@ - msgid "_OK" - msgstr "_Aceptar" - --#: ../panels/search/cc-search-panel.c:176 -+#: ../panels/search/cc-search-panel.c:177 - msgid "No applications found" - msgstr "No se han encontrado aplicaciones" - -@@ -5127,7 +5113,7 @@ - msgid "Choose a Folder" - msgstr "Elija una carpeta" - --#: ../panels/sharing/cc-sharing-panel.c:916 -+#: ../panels/sharing/cc-sharing-panel.c:917 - msgid "Copy" - msgstr "Copiar" - -@@ -5142,11 +5128,11 @@ - #. Translators: those are keywords for the sharing control-center panel - #: ../panels/sharing/gnome-sharing-panel.desktop.in.in.h:4 - msgid "" --"share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;" --"pictures;photos;movies;server;renderer;" -+"share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;pictures;photos;movies;server;renderer;" - msgstr "" --"compartir;compartición;ssh;equipo;remoto;escritorio:bluetooth;obex;" --"multimedia;sonido:vídeo;imágenes;fotos;películas;servidor;renderizado;" -+"compartir;compartición;ssh;equipo;remoto;escritorio:" -+"bluetooth;obex;multimedia;sonido:" -+"vídeo;imágenes;fotos;películas;servidor;renderizado;" - - #: ../panels/sharing/org.gnome.controlcenter.remote-login-helper.policy.in.in.h:1 - msgid "Enable or disable remote login" -@@ -5159,13 +5145,13 @@ - "remota" - - #. Label --#: ../panels/sharing/cc-sharing-networks.c:299 -+#: ../panels/sharing/cc-sharing-networks.c:303 - msgid "No networks selected for sharing" - msgstr "No se han seleccionado redes para compartir" - --#. -+#. - #. * vim: sw=2 ts=8 cindent noai bs=2 --#. -+#. - #: ../panels/sharing/networks.ui.h:1 - msgid "Networks" - msgstr "Redes" -@@ -5284,14 +5270,14 @@ - - #: ../panels/sound/data/gnome-sound-panel.desktop.in.in.h:2 - msgid "Change sound levels, inputs, outputs, and alert sounds" --msgstr "Cambiar el volumen de entrada y salida de sonido y las alertas sonoras" -+msgstr "" -+"Cambiar el volumen de entrada y salida de sonido y las alertas sonoras" - - #. Translators: those are keywords for the sound control-center panel - #: ../panels/sound/data/gnome-sound-panel.desktop.in.in.h:4 - msgid "Card;Microphone;Volume;Fade;Balance;Bluetooth;Headset;Audio;" - msgstr "" --"tarjeta;micrófono;volumen;desvanecer;balance;bluetooth;cascos;auriculares;" --"sonido;" -+"tarjeta;micrófono;volumen;desvanecer;balance;bluetooth;cascos;auriculares;sonido;" - - #. Translators: This is the name of an audio file that sounds like the bark of a dog. - #. You might want to translate it into the equivalent words of your language. -@@ -5404,67 +5390,68 @@ - msgid "Peak detect" - msgstr "Detección de picos" - --#: ../panels/sound/gvc-mixer-dialog.c:1509 --#: ../panels/sound/gvc-sound-theme-chooser.c:594 -+#: ../panels/sound/gvc-mixer-dialog.c:1516 -+#: ../panels/sound/gvc-sound-theme-chooser.c:564 - msgid "Name" - msgstr "Nombre" - --#: ../panels/sound/gvc-mixer-dialog.c:1528 -+#: ../panels/sound/gvc-mixer-dialog.c:1535 - msgid "Device" - msgstr "Dispositivo" - --#: ../panels/sound/gvc-mixer-dialog.c:1591 -+#: ../panels/sound/gvc-mixer-dialog.c:1598 - #, c-format - msgid "Speaker Testing for %s" - msgstr "Prueba de altavoces para %s" - --#: ../panels/sound/gvc-mixer-dialog.c:1649 -+#: ../panels/sound/gvc-mixer-dialog.c:1656 - msgid "_Output volume:" - msgstr "Volumen de sali_da:" - --#: ../panels/sound/gvc-mixer-dialog.c:1663 -+#: ../panels/sound/gvc-mixer-dialog.c:1670 - msgid "Output" - msgstr "Salida" - --#: ../panels/sound/gvc-mixer-dialog.c:1668 -+#: ../panels/sound/gvc-mixer-dialog.c:1675 - msgid "C_hoose a device for sound output:" - msgstr "_Elegir un dispositivo para la salida de sonido:" - --#: ../panels/sound/gvc-mixer-dialog.c:1693 -+#: ../panels/sound/gvc-mixer-dialog.c:1700 - msgid "Settings for the selected device:" - msgstr "Configuración para el dispositivo seleccionado:" - --#: ../panels/sound/gvc-mixer-dialog.c:1704 -+#: ../panels/sound/gvc-mixer-dialog.c:1711 - msgid "Input" - msgstr "Entrada" - --#: ../panels/sound/gvc-mixer-dialog.c:1711 -+#: ../panels/sound/gvc-mixer-dialog.c:1718 - msgid "_Input volume:" - msgstr "Volumen de _entrada:" - --#: ../panels/sound/gvc-mixer-dialog.c:1734 -+#: ../panels/sound/gvc-mixer-dialog.c:1741 - msgid "Input level:" - msgstr "Nivel de entrada:" - --#: ../panels/sound/gvc-mixer-dialog.c:1762 -+#: ../panels/sound/gvc-mixer-dialog.c:1769 - msgid "C_hoose a device for sound input:" - msgstr "_Elegir un dispositivo para la entrada de sonido:" - --#: ../panels/sound/gvc-mixer-dialog.c:1789 -+#: ../panels/sound/gvc-mixer-dialog.c:1796 - msgid "Sound Effects" - msgstr "Efectos de sonido" - --#: ../panels/sound/gvc-mixer-dialog.c:1796 -+#: ../panels/sound/gvc-mixer-dialog.c:1803 - msgid "_Alert volume:" - msgstr "Volumen de _alerta:" - --#: ../panels/sound/gvc-mixer-dialog.c:1809 -+#: ../panels/sound/gvc-mixer-dialog.c:1816 - msgid "Applications" - msgstr "Aplicaciones" - --#: ../panels/sound/gvc-mixer-dialog.c:1813 -+#: ../panels/sound/gvc-mixer-dialog.c:1820 - msgid "No application is currently playing or recording audio." --msgstr "Actualmente ninguna aplicación está reproduciendo o grabando sonido." -+msgstr "" -+"Actualmente ninguna aplicación está reproduciendo o grabando sonido." - - #: ../panels/sound/gvc-sound-theme-chooser.c:188 - msgid "Built-in" -@@ -5482,15 +5469,15 @@ - msgid "Testing event sound" - msgstr "Comprobando el sonido de evento" - --#: ../panels/sound/gvc-sound-theme-chooser.c:584 -+#: ../panels/sound/gvc-sound-theme-chooser.c:554 - msgid "Default" - msgstr "Predeterminado" - --#: ../panels/sound/gvc-sound-theme-chooser.c:585 -+#: ../panels/sound/gvc-sound-theme-chooser.c:555 - msgid "From theme" - msgstr "Del tema" - --#: ../panels/sound/gvc-sound-theme-chooser.c:769 -+#: ../panels/sound/gvc-sound-theme-chooser.c:739 - msgid "C_hoose an alert sound:" - msgstr "_Elegir un sonido de alerta:" - -@@ -5518,11 +5505,10 @@ - #. Translators: those are keywords for the universal access control-center panel - #: ../panels/universal-access/gnome-universal-access-panel.desktop.in.in.h:4 - msgid "" --"Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;" --"AccessX;Sticky;Keys;Slow;Bounce;Mouse;" -+"Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;AccessX;Sticky;Keys;Slow;Bounce;Mouse;" - msgstr "" --"Teclado;Ratón;a11y;Accesibilidad;Contraste;Ampliación;Lector;Pantalla;texto;" --"tipografía;tamaño;AccessX;Teclas; Persistentes;Lentas;Rechazo;" -+"Teclado;Ratón;a11y;Accesibilidad;Contraste;Ampliación;Lector;Pantalla;texto;tipografía;tamaño;AccessX;Teclas; " -+"Persistentes;Lentas;Rechazo;" - - #: ../panels/universal-access/uap.ui.h:1 - msgid "_Always Show Universal Access Menu" -@@ -5639,8 +5625,8 @@ - msgstr "_Desactivar si se pulsan dos teclas a la vez" - - #: ../panels/universal-access/uap.ui.h:31 --msgid "Beep when a _modifer key is pressed" --msgstr "Pitar al pulsar una tecla _modificadora" -+msgid "Beep when a _modifier key is pressed" -+msgstr "Emitir un sonido bip al pulsar una tecla _modificadora" - - #: ../panels/universal-access/uap.ui.h:32 - msgid "S_low Keys" -@@ -6005,11 +5991,9 @@ - msgstr "_Dominio" - - #: ../panels/user-accounts/data/account-dialog.ui.h:13 --msgid "" --"Go online to add\n" -+msgid "Go online to add\n" - "enterprise login accounts." --msgstr "" --"Conéctese para añadir\n" -+msgstr "Conéctese para añadir\n" - "cuentas de inicio de sesión corporativo." - - #: ../panels/user-accounts/data/account-dialog.ui.h:15 -@@ -6081,7 +6065,7 @@ - msgstr "Dedo meñique derecho" - - #: ../panels/user-accounts/data/account-fingerprint.ui.h:9 --#: ../panels/user-accounts/um-fingerprint-dialog.c:687 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:689 - msgid "Enable Fingerprint Login" - msgstr "Activar el inicio de sesión con huella" - -@@ -6390,16 +6374,13 @@ - msgstr "Falló al unirse al dominio" - - #: ../panels/user-accounts/um-account-dialog.c:1035 --msgid "" --"That login name didn't work.\n" -+msgid "That login name didn't work.\n" - "Please try again." --msgstr "" --"El nombre de inicio de sesión no ha funcionado.\n" -+msgstr "El nombre de inicio de sesión no ha funcionado.\n" - "Inténtelo de nuevo." - - #: ../panels/user-accounts/um-account-dialog.c:1042 --msgid "" --"That login password didn't work.\n" -+msgid "That login password didn't work.\n" - "Please try again." - msgstr "" - "La contraseña de inicio de sesión no ha funcionado.\n" -@@ -6448,15 +6429,15 @@ - "¿Quiere eliminar sus huellas registradas y así desactivar el inicio de " - "sesión con huella?" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:444 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:446 - msgid "Done!" - msgstr "Hecho" - - #. translators: - #. * The variable is the name of the device, for example: - #. * "Could you not access "Digital Persona U.are.U 4000/4000B" device --#: ../panels/user-accounts/um-fingerprint-dialog.c:505 --#: ../panels/user-accounts/um-fingerprint-dialog.c:547 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:507 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:549 - #, c-format - msgid "Could not access '%s' device" - msgstr "No se pudo acceder al dispositivo «%s»" -@@ -6464,16 +6445,16 @@ - #. translators: - #. * The variable is the name of the device, for example: - #. * "Could you not access "Digital Persona U.are.U 4000/4000B" device --#: ../panels/user-accounts/um-fingerprint-dialog.c:588 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:590 - #, c-format - msgid "Could not start finger capture on '%s' device" - msgstr "No se pudo iniciar la captura de dedo en el dispositivo «%s»" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:638 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:640 - msgid "Could not access any fingerprint readers" - msgstr "No se pudo acceder a ninguna lectura de huellas" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:639 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:641 - msgid "Please contact your system administrator for help." - msgstr "Contacte con el administrador de su sistema para obtener ayuda." - -@@ -6481,8 +6462,8 @@ - #. * The variable is the name of the device, for example: - #. * "To enable fingerprint login, you need to save one of your fingerprints, using the - #. * 'Digital Persona U.are.U 4000/4000B' device." --#. --#: ../panels/user-accounts/um-fingerprint-dialog.c:721 -+#. -+#: ../panels/user-accounts/um-fingerprint-dialog.c:723 - #, c-format - msgid "" - "To enable fingerprint login, you need to save one of your fingerprints, " -@@ -6491,11 +6472,11 @@ - "Para activar el inicio de sesión con huella debe guardar una de sus huellas " - "usando el dispositivo «%s»." - --#: ../panels/user-accounts/um-fingerprint-dialog.c:728 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:730 - msgid "Selecting finger" - msgstr "Seleccionando dedo" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:729 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:731 - msgid "Enrolling fingerprints" - msgstr "Registrando huellas digitales" - -@@ -6535,7 +6516,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/um-history-dialog.c:175 --#: ../panels/user-accounts/um-user-panel.c:631 -+#: ../panels/user-accounts/um-user-panel.c:844 - msgctxt "login date-time" - msgid "%k:%M" - msgstr "%k:%M" -@@ -6543,7 +6524,7 @@ - #. Translators: This indicates a login date-time. - #. The first %s is a date, and the second %s a time. - #: ../panels/user-accounts/um-history-dialog.c:178 --#: ../panels/user-accounts/um-user-panel.c:635 -+#: ../panels/user-accounts/um-user-panel.c:848 - #, c-format - msgctxt "login date-time" - msgid "%s, %s" -@@ -6618,24 +6599,30 @@ - msgid "Couldn't connect to the %s domain: %s" - msgstr "No se pudo conectar al dominio %s: %s" - --#: ../panels/user-accounts/um-user-panel.c:198 -+#: ../panels/user-accounts/um-user-panel.c:239 - msgid "Other Accounts" - msgstr "Otras cuentas" - --#: ../panels/user-accounts/um-user-panel.c:417 -+#: ../panels/user-accounts/um-user-panel.c:453 - msgid "Failed to delete user" - msgstr "Falló al eliminar el usuario" - --#: ../panels/user-accounts/um-user-panel.c:482 -+#: ../panels/user-accounts/um-user-panel.c:513 -+#: ../panels/user-accounts/um-user-panel.c:569 -+#: ../panels/user-accounts/um-user-panel.c:621 -+msgid "Failed to revoke remotely managed user" -+msgstr "No se pudo revocar de forma remota el usuario " -+ -+#: ../panels/user-accounts/um-user-panel.c:677 - msgid "You cannot delete your own account." - msgstr "No puede eliminar su propia cuenta." - --#: ../panels/user-accounts/um-user-panel.c:491 -+#: ../panels/user-accounts/um-user-panel.c:686 - #, c-format - msgid "%s is still logged in" - msgstr "%s aún está registrado en el sistema" - --#: ../panels/user-accounts/um-user-panel.c:495 -+#: ../panels/user-accounts/um-user-panel.c:690 - msgid "" - "Deleting a user while they are logged in can leave the system in an " - "inconsistent state." -@@ -6643,12 +6630,12 @@ - "Eliminar un usuario mientras está registrado en el sistema puede dejar el " - "sistema en un estado inconsistente." - --#: ../panels/user-accounts/um-user-panel.c:504 -+#: ../panels/user-accounts/um-user-panel.c:699 - #, c-format - msgid "Do you want to keep %s's files?" - msgstr "¿Quiere mantener los archivos de %s?" - --#: ../panels/user-accounts/um-user-panel.c:508 -+#: ../panels/user-accounts/um-user-panel.c:703 - msgid "" - "It is possible to keep the home directory, mail spool and temporary files " - "around when deleting a user account." -@@ -6656,76 +6643,80 @@ - "Es posible mantener la carpeta personal, el «spool» del correo y los " - "archivos temporales al eliminar una cuenta de usuario." - --#: ../panels/user-accounts/um-user-panel.c:511 -+#: ../panels/user-accounts/um-user-panel.c:706 - msgid "_Delete Files" - msgstr "_Eliminar archivos" - --#: ../panels/user-accounts/um-user-panel.c:512 -+#: ../panels/user-accounts/um-user-panel.c:707 - msgid "_Keep Files" - msgstr "_Mantener archivos" - --#: ../panels/user-accounts/um-user-panel.c:564 -+#: ../panels/user-accounts/um-user-panel.c:721 -+#, c-format -+msgid "Are you sure you want to permanently delete %s's account?" -+msgstr "¿Está seguro de querer borrar la cuenta de %s permanentemente?" -+ -+#: ../panels/user-accounts/um-user-panel.c:725 -+msgid "_Delete" -+msgstr "_Borrar" -+ -+#: ../panels/user-accounts/um-user-panel.c:777 - msgctxt "Password mode" - msgid "Account disabled" - msgstr "Cuenta desactivada" - --#: ../panels/user-accounts/um-user-panel.c:572 -+#: ../panels/user-accounts/um-user-panel.c:785 - msgctxt "Password mode" - msgid "To be set at next login" - msgstr "Para configurar en el siguiente inicio de sesión" - --#: ../panels/user-accounts/um-user-panel.c:575 -+#: ../panels/user-accounts/um-user-panel.c:788 - msgctxt "Password mode" - msgid "None" - msgstr "Ninguno" - --#: ../panels/user-accounts/um-user-panel.c:624 -+#: ../panels/user-accounts/um-user-panel.c:837 - msgid "Logged in" - msgstr "Sesión iniciada" - --#: ../panels/user-accounts/um-user-panel.c:1084 -+#: ../panels/user-accounts/um-user-panel.c:1297 - msgid "Failed to contact the accounts service" --msgstr "Falló al contactar con el servicio de cuentas" -+msgstr "No se pudo contactar el servicio de cuentas" - --#: ../panels/user-accounts/um-user-panel.c:1086 -+#: ../panels/user-accounts/um-user-panel.c:1299 - msgid "Please make sure that the AccountService is installed and enabled." --msgstr "Asegúrese de que el servicio de cuentas está instalado y activado." -+msgstr "Asegúrese de que el servicio de cuentas esté instalado y activado." - --#: ../panels/user-accounts/um-user-panel.c:1127 --msgid "" --"To make changes,\n" -+#: ../panels/user-accounts/um-user-panel.c:1340 -+msgid "To make changes,\n" - "click the * icon first" --msgstr "" --"Para realizar los cambios\n" -+msgstr "Para realizar los cambios\n" - "pulse primero el icono *" - --#: ../panels/user-accounts/um-user-panel.c:1165 -+#: ../panels/user-accounts/um-user-panel.c:1378 - msgid "Create a user account" - msgstr "Crear una cuenta de usuario" - --#: ../panels/user-accounts/um-user-panel.c:1176 --#: ../panels/user-accounts/um-user-panel.c:1488 --msgid "" --"To create a user account,\n" -+#: ../panels/user-accounts/um-user-panel.c:1389 -+#: ../panels/user-accounts/um-user-panel.c:1702 -+msgid "To create a user account,\n" - "click the * icon first" --msgstr "" --"Para crear un usuario\n" -+msgstr "Para crear un usuario\n" - "pulse primero el icono *" - --#: ../panels/user-accounts/um-user-panel.c:1186 -+#: ../panels/user-accounts/um-user-panel.c:1399 - msgid "Delete the selected user account" - msgstr "Quitar la cuenta de usuario seleccionada" - --#: ../panels/user-accounts/um-user-panel.c:1198 --#: ../panels/user-accounts/um-user-panel.c:1493 --msgid "" --"To delete the selected user account,\n" -+#: ../panels/user-accounts/um-user-panel.c:1411 -+#: ../panels/user-accounts/um-user-panel.c:1707 -+msgid "To delete the selected user account,\n" - "click the * icon first" - msgstr "" - "Para eliminar la cuenta de usuario seleccionada\n" - "pulse primero el icono *" - --#: ../panels/user-accounts/um-user-panel.c:1402 -+#: ../panels/user-accounts/um-user-panel.c:1616 - msgid "My Account" - msgstr "Mi cuenta" - -@@ -6843,11 +6834,11 @@ - msgid "%d of %d" - msgstr "%d de %d" - --#: ../panels/wacom/cc-wacom-page.c:530 -+#: ../panels/wacom/cc-wacom-page.c:522 - msgid "Display Mapping" - msgstr "Mostrar mapeo" - --#: ../panels/wacom/cc-wacom-stylus-page.c:372 -+#: ../panels/wacom/cc-wacom-stylus-page.c:376 - msgid "Button" - msgstr "Botón" - -@@ -7127,22 +7118,22 @@ - msgid "Quit" - msgstr "Salir" - --#: ../shell/cc-window.c:61 ../shell/cc-window.c:1490 -+#: ../shell/cc-window.c:61 ../shell/cc-window.c:1493 - msgid "All Settings" - msgstr "Todas las configuraciones" - - #. Add categories --#: ../shell/cc-window.c:876 -+#: ../shell/cc-window.c:879 - msgctxt "category" - msgid "Personal" - msgstr "Personal" - --#: ../shell/cc-window.c:877 -+#: ../shell/cc-window.c:880 - msgctxt "category" - msgid "Hardware" - msgstr "Hardware" - --#: ../shell/cc-window.c:878 -+#: ../shell/cc-window.c:881 - msgctxt "category" - msgid "System" - msgstr "Sistema" -@@ -7150,4173 +7141,3 @@ - #: ../shell/gnome-control-center.desktop.in.in.h:2 - msgid "Preferences;Settings;" - msgstr "Preferencias;Configuración;" -- --#~ msgid "Share Media On This Network" --#~ msgstr "Compartir multimedia en esta red" -- --#~ msgid "Shared Folders" --#~ msgstr "Carpetas compartidas" -- --#~ msgid "column" --#~ msgstr "columna" -- --#~ msgid "Remove Folder" --#~ msgstr "Quitar carpeta" -- --#~ msgid "Share Public Folder On This Network" --#~ msgstr "Compartir la carpeta pública en esta red" -- --#~ msgid "Immediately" --#~ msgstr "Inmediatamente" -- --#~ msgid "Remote View" --#~ msgstr "Vista remota" -- --#~ msgid "Approve All Connections" --#~ msgstr "Aprobar todas las conexiones" -- --#~ msgid "Flickr" --#~ msgstr "Flickr" -- --#~ msgid "Install Updates" --#~ msgstr "Instalar actualizaciones" -- --#~ msgid "System Up-To-Date" --#~ msgstr "Sistema al día" -- --#~ msgid "Search for network printers or filter result" --#~ msgstr "Buscar impresoras de red o filtrar resultados" -- --#~ msgid "_Default" --#~ msgstr "_Predeterminada" -- --#~ msgid "Set Up New Device" --#~ msgstr "Configurar un dispositivo nuevo" -- --#~ msgid "Connection" --#~ msgstr "Conexión" -- --#~ msgid "Paired" --#~ msgstr "Emparejado" -- --#~ msgid "Type" --#~ msgstr "Tipo" -- --#~ msgid "Mouse & Touchpad Settings" --#~ msgstr "Configuración del ratón y del «touchpad»" -- --#~ msgid "Sound Settings" --#~ msgstr "Configuración del sonido" -- --#~ msgid "Keyboard Settings" --#~ msgstr "Configuración del teclado" -- --#~ msgid "Send Files…" --#~ msgstr "Enviar archivos…" -- --#~ msgid "Visibility" --#~ msgstr "Visibilidad" -- --#~ msgid "Visibility of “%s”" --#~ msgstr "Visibilidad de «%s»" -- --#~ msgid "Remove '%s' from the list of devices?" --#~ msgstr "¿Quitar «%s» de la lista de dispositivos?" -- --#~ msgid "" --#~ "If you remove the device, you will have to set it up again before next " --#~ "use." --#~ msgstr "" --#~ "Si quita el dispositivo, deberá configurarlo otra vez antes de usarlo " --#~ "nuevamente." -- --#~ msgid "Share Public Folder" --#~ msgstr "Compartir carpeta pública" -- --#~ msgid "Only share with Trusted Devices" --#~ msgstr "Compartir sólo con dispositivos de confianza" -- --#~ msgid "Device type:" --#~ msgstr "Tipo de dispositivo:" -- --#~ msgid "Manufacturer:" --#~ msgstr "Fabricante:" -- --#~ msgid "Model:" --#~ msgstr "Modelo:" -- --#~ msgid "" --#~ "Image files can be dragged on this window to auto-complete the above " --#~ "fields." --#~ msgstr "" --#~ "Se pueden arrastrar archivos de imagen en esta ventana para autocompletar " --#~ "los campos superiores." -- --#~ msgid "Show your primary display on this screen also" --#~ msgstr "Mostrar su pantalla primaria también en este monitor" -- --#~ msgid "Combine" --#~ msgstr "Combinar" -- --#~ msgid "Join with the primary display to create an extra space" --#~ msgstr "Unir a la pantalla primaria para crear un espacio adicional" -- --#~ msgid "Don't use the display" --#~ msgstr "No usar la pantalla" -- --#~ msgid "Refresh Rate" --#~ msgstr "Tasa de refresco" -- --#~ msgid "Mouse Preferences" --#~ msgstr "Preferencias del ratón" -- --#~ msgid "Select the interface to use for the new service" --#~ msgstr "Seleccionar la interfaz que usar para el servicio nuevo" -- --#~ msgid "C_reate…" --#~ msgstr "C_rear…" -- --#~ msgid "_Interface" --#~ msgstr "_Interfaz" -- --#~ msgctxt "Language" --#~ msgid "None" --#~ msgstr "Ninguno" -- --#~ msgid "Changing photo for:" --#~ msgstr "Cambiando la foto para:" -- --#~ msgid "" --#~ "Choose a picture that will be shown at the login screen for this account." --#~ msgstr "" --#~ "Elegir una imagen que se mostrará en la pantalla de inicio de sesión para " --#~ "esta cuenta." -- --#~ msgid "Gallery" --#~ msgstr "Colección" -- --#~ msgid "Take a photograph" --#~ msgstr "Tomar una fotografía" -- --#~ msgid "Browse" --#~ msgstr "Examinar" -- --#~ msgid "Photograph" --#~ msgstr "Fotografía" -- --#~ msgid "Account Information" --#~ msgstr "Información de la cuenta" -- --#~ msgid "Switch between AM and PM." --#~ msgstr "Alternar entre AM y PM" -- --#~ msgid "Estimated battery capacity: %s" --#~ msgstr "Capacidad estimada de la batería: %s" -- --#~ msgctxt "display panel, rotation" --#~ msgid "Normal" --#~ msgstr "Normal" -- --#~ msgctxt "display panel, rotation" --#~ msgid "Counterclockwise" --#~ msgstr "Antihorario" -- --#~ msgctxt "display panel, rotation" --#~ msgid "Clockwise" --#~ msgstr "Horario" -- --#~ msgctxt "display panel, rotation" --#~ msgid "180 Degrees" --#~ msgstr "180 grados" -- --#~ msgid "Mirrored Displays" --#~ msgstr "Pantallas en espejo" -- --#~ msgid "Drag to change primary display." --#~ msgstr "Arrastrar para cambiar la pantalla principal." -- --#~ msgid "" --#~ "Select a monitor to change its properties; drag it to rearrange its " --#~ "placement." --#~ msgstr "" --#~ "Seleccionar un monitor para cambiar sus propiedades; arrastrarlo lo " --#~ "reubica." -- --#~ msgid "%a %R" --#~ msgstr "%a %R" -- --#~ msgid "%a %l:%M %p" --#~ msgstr "%a %H:%M" -- --#~ msgid "Failed to apply configuration" --#~ msgstr "Falló al aplicar la configuración" -- --#~ msgid "Could not detect displays" --#~ msgstr "No se pudieron detectar las pantallas" -- --#~ msgid "" --#~ "Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;" --#~ "ownCloud;" --#~ msgstr "" --#~ "Google;Facebook;Twitter;Yahoo;Web;En línea;Chat;Calendario;Correo-e;" --#~ "Contacto;ownCloud;" -- --#~ msgid "Monitor" --#~ msgstr "Monitor" -- --#~ msgid "_Resolution" --#~ msgstr "_Resolución" -- --#~ msgid "R_otation" --#~ msgstr "R_otación" -- --#~ msgid "_Mirror displays" --#~ msgstr "_Espejar pantallas" -- --#~ msgid "Note: may limit resolution options" --#~ msgstr "Nota: puede limitar las opciones de resolución" -- --#~ msgid "_Detect Displays" --#~ msgstr "_Detectar pantallas" -- --#~ msgid "_Region:" --#~ msgstr "_Región:" -- --#~ msgid "_City:" --#~ msgstr "_Ciudad:" -- --#~ msgid "_Network Time" --#~ msgstr "_Hora de red" -- --#~ msgid ":" --#~ msgstr ":" -- --#~ msgid "Set the time one hour ahead." --#~ msgstr "Ajustar la hora una hora hacia adelante." -- --#~ msgid "Set the time one hour back." --#~ msgstr "Ajustar la hora una hora hacia atrás." -- --#~ msgid "Set the time one minute ahead." --#~ msgstr "Ajustar la hora un minuto hacia adelante." -- --#~ msgid "Set the time one minute back." --#~ msgstr "Ajustar la hora un minuto hacia atrás." -- --#~ msgid "AM/PM" --#~ msgstr "AM/PM" -- --#~ msgid "Hidden" --#~ msgstr "Oculto" -- --#~ msgid "Visible" --#~ msgstr "Visible" -- --#~ msgid "Name & Visibility" --#~ msgstr "Nombre y visibilidad" -- --#~ msgid "Control how you appear on the screen and the network." --#~ msgstr "Controla cómo aparece en la pantalla y en la red." -- --#~ msgid "Display _full name in top bar" --#~ msgstr "Mostrar el nombre _completo en la barra superior" -- --#~ msgid "Display full name in _lock screen" --#~ msgstr "Mostrar el nombre completo en la pantalla de b_loqueo" -- --#~ msgid "_Stealth Mode" --#~ msgstr "Modo _silencioso" -- --#~ msgid "Show Status When _Inactive" --#~ msgstr "Mostrar el estado cuando esté _inactivo" -- --#~ msgid "Could not save the monitor configuration" --#~ msgstr "No se pudo guardar la configuración del monitor" -- --#~ msgid "_Confirm Password" --#~ msgstr "_Confirmar contraseña" -- --#~ msgid "_Login Name" --#~ msgstr "Nombre de _inicio de sesión" -- --#~ msgid "Login _Password" --#~ msgstr "_Contraseña de inicio de sesión" -- --#~ msgid "C_onfirm New Password" --#~ msgstr "_Confirmar la contraseña nueva" -- --#~ msgid "Passwords do not match" --#~ msgstr "Las contraseñas no coinciden" -- --#~ msgid "" --#~ "Login not recognized.\n" --#~ "Please try again." --#~ msgstr "" --#~ "Inicio de sesión no reconocido.\n" --#~ "Inténtelo de nuevo." -- --#~ msgid "Domain not found." --#~ msgstr "Dominio no encontrado." -- --#~ msgid "Wrong password" --#~ msgstr "Contraseña errónea" -- --#~ msgctxt "Password hint" --#~ msgid "Try to add more characters." --#~ msgstr "Pruebe añadiendo más caracteres." -- --#~ msgid "Switch Modes" --#~ msgstr "Cambiar modos" -- --#~ msgid "Action" --#~ msgstr "Acción" -- --#~ msgid "No shortcut set" --#~ msgstr "No existe ningún atajo configurado" -- --#~ msgctxt "universal access, contrast" --#~ msgid "Normal" --#~ msgstr "Normal" -- --#~ msgctxt "universal access, contrast" --#~ msgid "High/Inverse" --#~ msgstr "Alto/invertido" -- --#~ msgid "On screen keyboard" --#~ msgstr "Teclado en pantalla" -- --#~ msgid "OnBoard" --#~ msgstr "EnPantalla" -- --#~ msgid "75%" --#~ msgstr "75%" -- --#~ msgid "100%" --#~ msgstr "100%" -- --#~ msgctxt "universal access, text size" --#~ msgid "Normal" --#~ msgstr "Normal" -- --#~ msgid "125%" --#~ msgstr "125%" -- --#~ msgid "150%" --#~ msgstr "150%" -- --#~ msgctxt "universal access, text size" --#~ msgid "Larger" --#~ msgstr "Más grande" -- --#~ msgid "Beep on Caps and Num Lock" --#~ msgstr "Pitar al usar Bloq. Num. y Bloq. Mayús." -- --#~ msgid "Turn on or off:" --#~ msgstr "Activar o desactivar:" -- --#~ msgctxt "universal access, zoom" --#~ msgid "Zoom" --#~ msgstr "Ampliación" -- --#~ msgid "Zoom in:" --#~ msgstr "Ampliar:" -- --#~ msgid "Zoom out:" --#~ msgstr "Reducir:" -- --#~ msgid "Closed Captioning" --#~ msgstr "GOP cerrado" -- --#~ msgid "Display a textual description of speech and sounds" --#~ msgstr "Mostrar una descripción textual de la voz y los sonidos" -- --#~ msgid "On Screen Keyboard" --#~ msgstr "Teclado en pantalla" -- --#~ msgctxt "universal access, delay" --#~ msgid "Short" --#~ msgstr "Corto" -- --#~ msgctxt "universal access, delay" --#~ msgid "Long" --#~ msgstr "Largo" -- --#~ msgid "Beep when a key is" --#~ msgstr "Pitar cuando la tecla es" -- --#~ msgid "pressed" --#~ msgstr "pulsada" -- --#~ msgid "accepted" --#~ msgstr "aceptada" -- --#~ msgid "rejected" --#~ msgstr "rechazada" -- --#~ msgid "Acc_eptance delay:" --#~ msgstr "R_etardo de aceptación:" -- --#~ msgid "Control the pointer using the keypad" --#~ msgstr "Controlar el puntero usando el teclado numérico" -- --#~ msgid "Video Mouse" --#~ msgstr "Ratón de vídeo" -- --#~ msgid "Control the pointer using the video camera." --#~ msgstr "Controlar el puntero usando la cámara de vídeo." -- --#~ msgctxt "universal access, threshold" --#~ msgid "Small" --#~ msgstr "Pequeño" -- --#~ msgctxt "universal access, threshold" --#~ msgid "Large" --#~ msgstr "Grande" -- --#~ msgid "Mouse Settings" --#~ msgstr "Configuración del ratón" -- --#~ msgid "Previous Week" --#~ msgstr "Semana anterior" -- --#~ msgid "Next Week" --#~ msgstr "Siguiente semana" -- --#~ msgid "Next week" --#~ msgstr "La semana que viene" -- --#~ msgid "C_ontent sticks to fingers" --#~ msgstr "El c_ontenido se adhiere a los dedos" -- --#~ msgid "Choose password at next login" --#~ msgstr "Elegir una contraseña en el siguiente inicio de sesión" -- --#~ msgid "Log in without a password" --#~ msgstr "Iniciar sesión sin contraseña" -- --#~ msgid "Disable this account" --#~ msgstr "Desactivar esta cuenta" -- --#~ msgid "Enable this account" --#~ msgstr "Activar esta cuenta" -- --#~ msgid "C_onfirm password" --#~ msgstr "C_onfirmar contraseña" -- --#~ msgid "Generate a password" --#~ msgstr "Generar una contraseña" -- --#~ msgid "_Action" --#~ msgstr "_Acción" -- --#~ msgid "Changing password for" --#~ msgstr "Cambiando la contraseña para" -- --#~ msgid "_Show password" --#~ msgstr "_Mostrar contraseña" -- --#~ msgid "How to choose a strong password" --#~ msgstr "Cómo elegir una contraseña fuerte" -- --#~ msgid "_Generate a password" --#~ msgstr "_Generar una contraseña" -- --#~ msgid "You need to enter a new password" --#~ msgstr "Debe introducir una contraseña" -- --#~ msgid "The new password is not strong enough" --#~ msgstr "La contraseña nueva no es suficientemente segura" -- --#~ msgid "You need to confirm the password" --#~ msgstr "Debe confirmar la contraseña" -- --#~ msgid "You need to enter your current password" --#~ msgstr "Debe introducir su contraseña actual" -- --#~ msgid "The current password is not correct" --#~ msgstr "La contraseña actual no es correcta" -- --#~ msgctxt "Password strength" --#~ msgid "Too short" --#~ msgstr "Demasiado corta" -- --#~ msgctxt "Password strength" --#~ msgid "Weak" --#~ msgstr "Débil" -- --#~ msgctxt "Password strength" --#~ msgid "Fair" --#~ msgstr "Regular" -- --#~ msgctxt "Password strength" --#~ msgid "Good" --#~ msgstr "Buena" -- --#~ msgctxt "Password strength" --#~ msgid "Strong" --#~ msgstr "Fuerte" -- --#~ msgid "Add account" --#~ msgstr "Añadir cuenta" -- --#~ msgid "_Local Account" --#~ msgstr "Cuenta _local" -- --#~ msgid "Tip: Enterprise domain or realm name" --#~ msgstr "Consejo: dominio de la empresa o nombre real" -- --#~ msgid "C_ontinue" --#~ msgstr "C_ontinuar" -- --#~ msgctxt "Password strength" --#~ msgid "Not good enough" --#~ msgstr "No es suficientemente buena" -- --#~ msgid "Left Shift" --#~ msgstr "Mayús izquierda" -- --#~ msgid "Left Alt" --#~ msgstr "Alt izquierda" -- --#~ msgid "Left Ctrl" --#~ msgstr "Ctrl derecho" -- --#~ msgid "Right Shift" --#~ msgstr "Mayús derecha" -- --#~ msgid "Right Alt" --#~ msgstr "Alt derecha" -- --#~ msgid "Right Ctrl" --#~ msgstr "Ctrl derecha" -- --#~ msgid "Left Alt+Shift" --#~ msgstr "Alt izquierda+Mayús" -- --#~ msgid "Right Alt+Shift" --#~ msgstr "Alt derecha+Mayús" -- --#~ msgid "Left Ctrl+Shift" --#~ msgstr "Ctrl izquierdo +Mayús" -- --#~ msgid "Right Ctrl+Shift" --#~ msgstr "Ctrl derecha+Mayús" -- --#~ msgid "Left+Right Shift" --#~ msgstr "Izquierda+Mayús derecha" -- --#~ msgid "Left+Right Ctrl" --#~ msgstr "Izquierda+Ctrl derecho" -- --#~ msgid "Alt+Shift" --#~ msgstr "Alt+Mayús" -- --#~ msgid "Ctrl+Shift" --#~ msgstr "Ctrl+Mayús" -- --#~ msgid "Alt+Ctrl" --#~ msgstr "Alt+Ctrl" -- --#~ msgid "Caps" --#~ msgstr "Bloq. Mayús." -- --#~ msgid "Shift+Caps" --#~ msgstr "Mayús+Bloq. Mayús." -- --#~ msgid "Alt+Caps" --#~ msgstr "Alt+Bloq. Mayús." -- --#~ msgid "Ctrl+Caps" --#~ msgstr "Ctrl+Bloq. Mayús." -- --#~ msgid "_Mobile Broadband" --#~ msgstr "Banda ancha _móvil" -- --#~ msgid "Export" --#~ msgstr "Exportar" -- --#~ msgctxt "mouse, speed" --#~ msgid "Slow" --#~ msgstr "Lenta" -- --#~ msgctxt "mouse, speed" --#~ msgid "Fast" --#~ msgstr "Rápida" -- --#~ msgid "_Options…" --#~ msgstr "_Opciones…" -- --#~ msgid "00:24:16:31:8G:7A" --#~ msgstr "00:24:16:31:8G:7A" -- --#~ msgid "Expired credentials. Please log in again." --#~ msgstr "Las credenciales han expirado. Inicie sesión de nuevo." -- --#~ msgid "_Log In" --#~ msgstr "_Iniciar sesión" -- --#~ msgctxt "Input source" --#~ msgid "None" --#~ msgstr "Ninguna" -- --#~ msgid "Change the background" --#~ msgstr "Cambiar el fondo" -- --#~ msgid "Configure Bluetooth settings" --#~ msgstr "Configuración de Bluetooth" -- --#~ msgctxt "Power" --#~ msgid "Bluetooth" --#~ msgstr "Bluetooth" -- --#~ msgid "Color management settings" --#~ msgstr "Configuración de gestión de color" -- --#~ msgid "British English" --#~ msgstr "Inglés británico" -- --#~ msgid "Spanish" --#~ msgstr "Español" -- --#~ msgid "Chinese (simplified)" --#~ msgstr "Chino (simplificado)" -- --#~ msgid "Select a region" --#~ msgstr "Seleccionar una región" -- --#~ msgid "Select a language" --#~ msgstr "Seleccionar un idioma" -- --#~ msgid "_Select" --#~ msgstr "_Seleccionar" -- --#~ msgid "Date and Time preferences panel" --#~ msgstr "Panel de preferencias de la fecha y hora" -- --#~ msgid "System Information" --#~ msgstr "Información del sistema" -- --#~ msgid "Change keyboard settings" --#~ msgstr "Cambiar la configuración del teclado" -- --#~ msgid "Layout Settings" --#~ msgstr "Configuración de la distribución" -- --#~ msgid "Set your mouse and touchpad preferences" --#~ msgstr "Establecer sus preferencias del ratón y del «touchpad»" -- --#~ msgid "Network settings" --#~ msgstr "Configuración de red" -- --#~ msgid "Manage notifications" --#~ msgstr "Gestionar notificaciones" -- --#~ msgid "Manage online accounts" --#~ msgstr "Gestionar cuentas en línea" -- --#~ msgid "Power management settings" --#~ msgstr "Gestión de energía" -- --#~ msgid "Change printer settings" --#~ msgstr "Cambiar la configuración de la impresora" -- --#~ msgid "Manufacturers" --#~ msgstr "Fabricantes" -- --#~ msgid "Drivers" --#~ msgstr "Controladores" -- --#~ msgid "Privacy settings" --#~ msgstr "Configuración de privacidad" -- --#~ msgid "Change your region and language settings" --#~ msgstr "Cambiar su configuración de región e idioma" -- --#~ msgid "Select an input source" --#~ msgstr "Seleccionar una fuente de entrada" -- --#~ msgid "" --#~ "The login screen, system accounts and new user accounts use the system-" --#~ "wide Region and Language settings." --#~ msgstr "" --#~ "La pantalla de inicio de sesión, las cuentas del sistema y las cuentas de " --#~ "los usuarios nuevos usan la configuración de «Región e idioma» del sistema" -- --#~ msgid "" --#~ "The login screen, system accounts and new user accounts use the system-" --#~ "wide Region and Language settings. You may change the system settings to " --#~ "match yours." --#~ msgstr "" --#~ "La pantalla de inicio de sesión, las cuentas del sistema y las cuentas de " --#~ "los usuarios nuevos usan la configuración de «Región e idioma» del " --#~ "sistema. Puede cambiar la configuración del sistema para que coincida con " --#~ "la suya." -- --#~ msgid "Copy Settings" --#~ msgstr "Copiar configuración" -- --#~ msgid "Copy Settings…" --#~ msgstr "Copiar configuración…" -- --#~ msgid "Region and Language" --#~ msgstr "Región e idioma" -- --#~ msgid "Select a display language" --#~ msgstr "Seleccionar un idioma que mostrar" -- --#~ msgid "Add Language" --#~ msgstr "Añadir idioma" -- --#~ msgid "Select a region (change will be applied the next time you log in)" --#~ msgstr "" --#~ "Seleccionar una región (el cambio se aplicará la próxima vez que inicie " --#~ "sesión)" -- --#~ msgid "Add Region" --#~ msgstr "Añadir región" -- --#~ msgid "Remove Region" --#~ msgstr "Quitar región" -- --#~ msgid "Currency" --#~ msgstr "Divisa" -- --#~ msgid "Examples" --#~ msgstr "Ejemplos" -- --#~ msgid "Select keyboards or other input sources" --#~ msgstr "Seleccionar teclados u otras fuentes de entrada" -- --#~ msgid "Remove Input Source" --#~ msgstr "Quitar fuente de entrada" -- --#~ msgid "Move Input Source Up" --#~ msgstr "Subir la fuente de entrada" -- --#~ msgid "Show Keyboard Layout" --#~ msgstr "Mostrar la distribución del teclado" -- --#~ msgid "Ctrl+Alt+Space" --#~ msgstr "Ctrl+Alt+Espacio" -- --#~ msgid "Shortcut Settings" --#~ msgstr "Configuración de atajos" -- --#~ msgid "Display language:" --#~ msgstr "Mostrar idioma:" -- --#~ msgid "Input source:" --#~ msgstr "Fuente de entrada:" -- --#~ msgid "Format:" --#~ msgstr "Formato:" -- --#~ msgid "Your settings" --#~ msgstr "Su configuración" -- --#~ msgid "System settings" --#~ msgstr "Configuración del sistema" -- --#~ msgid "Search settings" --#~ msgstr "Configuración de la búsqueda" -- --#~ msgid "Universal Access Preferences" --#~ msgstr "Preferencias del acceso universal" -- --#~ msgid "_Hint" --#~ msgstr "C_onsejo" -- --#~ msgid "" --#~ "This hint may be displayed at the login screen. It will be visible to " --#~ "all users of this system. Do not include the password here." --#~ msgstr "" --#~ "Este consejo se puede mostrar en la pantalla de inicio. Será visible a " --#~ "todos los usuarios de este sistema. No incluya aquí la contraseña." -- --#~ msgid "Fair" --#~ msgstr "Regular" -- --#~ msgid "Set your Wacom tablet preferences" --#~ msgstr "Establezca las preferencias de su tableta Wacom" -- --#~ msgid "Control Center" --#~ msgstr "Centro de control" -- --#~ msgid "Mesh" --#~ msgstr "Malla" -- --#~ msgid "Carrier/link changed" --#~ msgstr "Ha cambiado el portador/enlace" -- --#~ msgid "_Mark As Inactive After" --#~ msgstr "_Marcar como inactivo después de" -- --#~ msgid "Don't retain history" --#~ msgstr "No recordar el histórico" -- --#~ msgid "Out of range" --#~ msgstr "Fuera de rango" -- --#~ msgid "_Configure…" --#~ msgstr "_Configurar…" -- --#~ msgid "_Disconnect" --#~ msgstr "_Desconectar" -- --#~ msgid "_Connect" --#~ msgstr "_Conectar" -- --#~ msgid "_Settings…" --#~ msgstr "_Configuración…" -- --#~ msgid "Disconnected" --#~ msgstr "Desconectada" -- --#~ msgid "Unspecified" --#~ msgstr "Sin especificar" -- --#, fuzzy --#~ msgid "Remote Login" --#~ msgstr "Localizar el puntero" -- --#~ msgid "Browse Files..." --#~ msgstr "Examinar archivos…" -- --#~ msgid "Create virtual device" --#~ msgstr "Crear un dispositivo virtual" -- --#~ msgid "Available Profiles for Displays" --#~ msgstr "Perfiles disponibles para pantallas" -- --#~ msgid "Available Profiles for Scanners" --#~ msgstr "Perfiles disponibles para escáneres" -- --#~ msgid "Available Profiles for Printers" --#~ msgstr "Perfiles disponibles para impresoras" -- --#~ msgid "Available Profiles for Cameras" --#~ msgstr "Perfiles disponibles para cámaras" -- --#~ msgid "Available Profiles for Webcams" --#~ msgstr "Perfiles disponibles para cámaras web" -- --#~ msgid "%i year" --#~ msgid_plural "%i years" --#~ msgstr[0] "%i año" --#~ msgstr[1] "%i años" -- --#~ msgid "%i month" --#~ msgid_plural "%i months" --#~ msgstr[0] "%i mes" --#~ msgstr[1] "%i meses" -- --#~ msgid "%i week" --#~ msgid_plural "%i weeks" --#~ msgstr[0] "%i semana" --#~ msgstr[1] "%i semanas" -- --#~ msgid "Less than 1 week" --#~ msgstr "Menos de una semana" -- --#~ msgid "This device is not color managed." --#~ msgstr "Este dispositivo no tiene gestión de color." -- --#~ msgid "This device is using manufacturing calibrated data." --#~ msgstr "" --#~ "Este dispositivo está usando los datos de calibración de fabricación." -- --#~ msgid "" --#~ "This device does not have a profile suitable for whole-screen color " --#~ "correction." --#~ msgstr "" --#~ "Este dispositivo no tiene un perfil apto para corrección de color en toda " --#~ "la pantalla." -- --#~ msgid "Not specified" --#~ msgstr "Sin especificar" -- --#~ msgid "No devices supporting color management detected" --#~ msgstr "No se ha detectado ningún dispositivo que tenga gestión de color" -- --#~ msgid "Add device" --#~ msgstr "Añadir dispositivo" -- --#~ msgid "Add a virtual device" --#~ msgstr "Añadir un dispositivo virtual" -- --#~ msgid "Remove a device" --#~ msgstr "Quitar un dispositivo" -- --#~ msgid "English" --#~ msgstr "Inglés" -- --#~ msgid "German" --#~ msgstr "Alemán" -- --#~ msgid "French" --#~ msgstr "Francés" -- --#~ msgid "Russian" --#~ msgstr "Ruso" -- --#~ msgid "Arabic" --#~ msgstr "Árabe" -- --#~ msgid "%d x %d" --#~ msgstr "%d x %d" -- --#~ msgid "VESA: %s" --#~ msgstr "VESA: %s" -- --#~ msgid "Unknown model" --#~ msgstr "Modelo desconocido" -- --#~ msgid "The next login will attempt to use the standard experience." --#~ msgstr "" --#~ "El siguiente inicio de sesión intentará usar la decoración estándar." -- --#~ msgid "" --#~ "The next login will use the fallback mode intended for unsupported " --#~ "graphics hardware." --#~ msgstr "" --#~ "El siguiente inicio de sesión usará el modo alternativo, pensado para " --#~ "hardware de gráficos no soportado." -- --#~ msgctxt "Experience" --#~ msgid "Fallback" --#~ msgstr "Alternativo" -- --#~ msgid "OS type" --#~ msgstr "Tipo de SO" -- --#~ msgid "_Other Media..." --#~ msgstr "_Otros soportes…" -- --#~ msgid "Experience" --#~ msgstr "Decoración" -- --#~ msgid "Forced _Fallback Mode" --#~ msgstr "_Forzar modo alternativo" -- --#~ msgid "_Options..." --#~ msgstr "_Opciones…" -- --#~ msgid "C_reate..." --#~ msgstr "C_rear…" -- --#~ msgid "_Settings..." --#~ msgstr "C_onfiguración…" -- --#~ msgid "Caution low battery, %s remaining" --#~ msgstr "Batería baja, quedan %s" -- --#~ msgid "Using battery power - %s remaining" --#~ msgstr "Usando la batería: quedan %s" -- --#~ msgid "Using battery power" --#~ msgstr "Usando la batería" -- --#~ msgid "Charging - fully charged" --#~ msgstr "Cargando: carga completada" -- --#~ msgid "Using UPS power - %s remaining" --#~ msgstr "Usando el SAI: quedan %s" -- --#~ msgid "Caution low UPS" --#~ msgstr "SAI bajo" -- --#~ msgid "Using UPS power" --#~ msgstr "Usando el SAI" -- --#~ msgid "Your secondary battery is fully charged" --#~ msgstr "La batería está cargada completamente" -- --#~ msgid "Your secondary battery is empty" --#~ msgstr "La batería secundaria está vacía" -- --#~ msgctxt "Battery power" --#~ msgid "Charging - fully charged" --#~ msgstr "Cargando: cargada completamente" -- --#~ msgid "" --#~ "Tip: screen brightness affects how much power is " --#~ "used" --#~ msgstr "" --#~ "Consejo: el brillo de la pantalla influye en la " --#~ "cantidad de energía que se usa" -- --#~ msgid "Don't suspend" --#~ msgstr "No suspender" -- --#~ msgctxt "printer state" --#~ msgid "Paused" --#~ msgstr "Pausada" -- --#~ msgid "_Show" --#~ msgstr "Mo_strar" -- --#~ msgid "Choose an input source" --#~ msgstr "Seleccionar una fuente de entrada" -- --#~ msgid "Copy Settings..." --#~ msgstr "Copiar configuración…" -- --#~ msgid "" --#~ "Select a display language (change will be applied next time you log in)" --#~ msgstr "" --#~ "Seleccionar un idioma para mostrar (el cambio se aplicará la próxima vez " --#~ "que inicie sesión)" -- --#~ msgid "Install languages..." --#~ msgstr "Instalar idiomas…" -- --#~ msgid "Brightness & Lock" --#~ msgstr "Brillo y bloqueo" -- --#~ msgid "Screen brightness and lock settings" --#~ msgstr "Brillo y ajustes de bloqueo de la pantalla" -- --#~ msgid "Brightness;Lock;Dim;Blank;Monitor;" --#~ msgstr "Brillo;Bloquear;Oscurecer;Iluminar;Pantalla;" -- --#~ msgid "_Dim screen to save power" --#~ msgstr "_Oscurecer la pantalla para ahorrar energía" -- --#~ msgid "_Turn screen off when inactive for:" --#~ msgstr "_Apagar la pantalla tras una inactividad de:" -- --#~ msgid "Don't lock when at home" --#~ msgstr "No bloquear cuando esté en casa" -- --#~ msgid "Locations..." --#~ msgstr "Ubicaciones…" -- --#~ msgid "Lock" --#~ msgstr "Bloquear" -- --#~ msgid "Enable debugging code" --#~ msgstr "Activar el código de depuración" -- --#~ msgid "Version of this application" --#~ msgstr "Versión de esta aplicación" -- --#~ msgid " — GNOME Volume Control Applet" --#~ msgstr " : Miniaplicación Control de volumen de GNOME" -- --#~ msgid "Volume Control" --#~ msgstr "Control de volumen" -- --#~ msgid "Show desktop volume control" --#~ msgstr "Mostrar el control de volumen del escritorio" -- --#~ msgid "Sound Output Volume" --#~ msgstr "Volumen de salida del sonido" -- --#~ msgid "Microphone Volume" --#~ msgstr "Volumen del micrófono" -- --#~ msgid "Failed to start Sound Preferences: %s" --#~ msgstr "Falló al iniciar las Preferencias de sonido: %s" -- --#~ msgid "_Mute" --#~ msgstr "_Silenciar" -- --#~ msgid "_Sound Preferences" --#~ msgstr "Prefere_ncias de sonido" -- --#~ msgid "Muted" --#~ msgstr "Silenciado" -- --#~ msgid "Options..." --#~ msgstr "Opciones…" -- --#~ msgid "User Accounts" --#~ msgstr "Cuentas de usuario" -- --#~ msgid "Browse for more pictures..." --#~ msgstr "Examinar para buscar más imágenes…" -- --#~ msgid "No user with the name '%s' exists." --#~ msgstr "No existe ningún usuario con el nombre «%s»" -- --#~ msgid "This user does not exist." --#~ msgstr "Este usuario no existe." -- --#~ msgid "Map Buttons..." --#~ msgstr "Mapear botones…" -- --#~ msgid "Calibrate..." --#~ msgstr "Calibrar…" -- --#~ msgid "- System Settings" --#~ msgstr ": Configuración del sistema" -- --#~ msgid "System Settings" --#~ msgstr "Configuración del sistema" -- --#~ msgid "Network;Wireless;IP;LAN;Proxy;" --#~ msgstr "Red;Inalámbrica;IP;LAN;Proxy;" -- --#~ msgid "Wireless Hotspot" --#~ msgstr "Punto de acceso inalámbrico" -- --#~ msgid "Wireless" --#~ msgstr "Inalámbrica" -- --#~ msgid "Remove Language" --#~ msgstr "Quitar idioma" -- --#~ msgctxt "Zoom Grayscale" --#~ msgid "Color" --#~ msgstr "Color" -- --#~ msgctxt "Zoom Grayscale" --#~ msgid "None" --#~ msgstr "Ninguna" -- --#~ msgid "Security Key" --#~ msgstr "Clave de seguridad" -- --#~ msgid "Subnet Mask" --#~ msgstr "Máscara de subred" -- --#~ msgid "_Search by Address" --#~ msgstr "Bu_scar por dirección" -- --#~ msgid "Getting devices..." --#~ msgstr "Obteniendo dispositivos…" -- --#~ msgid "" --#~ "FirewallD is not running. Network printer detection needs services mdns, " --#~ "ipp, ipp-client and samba-client enabled on firewall." --#~ msgstr "" --#~ "FirewallD no está en ejecución. La detección de impresoras de red " --#~ "necesita que los servicios mdns, ipp, ipp-client y samba-client estén " --#~ "activados en el cortafuegos." -- --#~ msgctxt "printer type" --#~ msgid "Local" --#~ msgstr "Local" -- --#~ msgctxt "printer type" --#~ msgid "Network" --#~ msgstr "De red" -- --#~ msgid "Device types" --#~ msgstr "Tipos de dispositivos" -- --#~ msgid "Automatic configuration" --#~ msgstr "Configuración automática" -- --#~ msgid "Opening firewall for mDNS connections" --#~ msgstr "Abrir el cortafuegos para conexiones mDNS" -- --#~ msgid "Opening firewall for Samba connections" --#~ msgstr "Abrir el cortafuegos para conexiones Samba" -- --#~ msgid "Opening firewall for IPP connections" --#~ msgstr "Abrir el cortafuegos para conexiones IPP" -- --#~ msgid "To test your settings, try to double-click on the face." --#~ msgstr "" --#~ "Para probar su configuración pruebe a pulsar dos veces sobre la cara." -- --#~ msgid "Dasher" --#~ msgstr "Dasher" -- --#~ msgid "Nomon" --#~ msgstr "Nomon" -- --#~ msgid "Caribou" --#~ msgstr "Caribou" -- --#~ msgid "C_hoose a device to configure:" --#~ msgstr "_Elegir un dispositivo para configurar:" -- --#~ msgid "_Right-handed" --#~ msgstr "_Diestro" -- --#~ msgid "_Left-handed" --#~ msgstr "_Zurdo" -- --#~ msgid "Sh_ow position of pointer when the Control key is pressed" --#~ msgstr "M_ostrar la posición del puntero al pulsar la tecla Control" -- --#~ msgid "A_cceleration:" --#~ msgstr "A_celeración:" -- --#~ msgid "_Sensitivity:" --#~ msgstr "_Sensibilidad:" -- --#~ msgctxt "Mouse sensitivity" --#~ msgid "Low" --#~ msgstr "Baja" -- --#~ msgctxt "Mouse sensitivity" --#~ msgid "High" --#~ msgstr "Alta" -- --#~ msgid "Drag and Drop" --#~ msgstr "Arrastrar y soltar" -- --#~ msgid "Thr_eshold:" --#~ msgstr "U_mbral:" -- --#~ msgid "Drag Threshold" --#~ msgstr "Umbral de arrastre" -- --#~ msgid "Double-Click Timeout" --#~ msgstr "Tiempo de espera de la pulsación doble" -- --#~ msgid "_Timeout:" --#~ msgstr "_Tiempo de espera:" -- --#~ msgid "Enable _mouse clicks with touchpad" --#~ msgstr "Activar pul_saciones del ratón con el touchpad" -- --#~ msgid "Scrolling" --#~ msgstr "Desplazamiento" -- --#~ msgid "_Disabled" --#~ msgstr "_Desactivado" -- --#~ msgid "Add wallpaper" --#~ msgstr "Añadir fondo" -- --#~ msgid "Remove wallpaper" --#~ msgstr "Quitar fondo" -- --#~ msgid "Swap colors" --#~ msgstr "Intercambiar colores" -- --#~ msgid "Horizontal Gradient" --#~ msgstr "Gradiente horizontal" -- --#~ msgid "Vertical Gradient" --#~ msgstr "Gradiente vertical" -- --#~ msgid "Solid Color" --#~ msgstr "Color sólido" -- --#~ msgid "Colors & Gradients" --#~ msgstr "Colores y gradientes" -- --#~ msgid "Take a screenshot" --#~ msgstr "Capturar la pantalla" -- --#~ msgid "Shortcut" --#~ msgstr "Combinación" -- --#~ msgid "Account _type" --#~ msgstr "_Tipo de cuenta" -- --#~ msgid "_Back" --#~ msgstr "_Atrás" -- --#~ msgid "Printer Options" --#~ msgstr "Opciones de la impresora" -- --#~ msgid "Allowed users" --#~ msgstr "Usuarios permitidos" -- --#~ msgid "Acti_on:" --#~ msgstr "_Acción:" -- --#~ msgid "Create the hotspot anyway?" --#~ msgstr "¿Crear el «hotspot» de todas formas?" -- --#~ msgid "Disconnect from %s and create a new hotspot?" --#~ msgstr "¿Desconectarse de %s y crear un «hotspot» nuevo?" -- --#~ msgid "This is your only connection to the internet." --#~ msgstr "Esta es su única conexión a Internet." -- --#~ msgid "Create _Hotspot" --#~ msgstr "Crear «_hotspot»" -- --#~ msgctxt "Wireless access point" --#~ msgid "Other..." --#~ msgstr "Otra…" -- --#~ msgid "_Stop Hotspot..." --#~ msgstr "_Detener «hotspot»…" -- --#~ msgid "_Network Name" --#~ msgstr "_Nombre de red" -- --#~ msgid "Disable VPN" --#~ msgstr "Desactivar VPN" -- --#~ msgid "HTTP Port" --#~ msgstr "Puerto HTTP" -- --#~ msgid "HTTPS Port" --#~ msgstr "Puerto HTTPS" -- --#~ msgid "FTP Port" --#~ msgstr "Puerto FTP" -- --#~ msgid "Select an account" --#~ msgstr "Seleccionar una cuenta" -- --#~ msgid "Tip:" --#~ msgstr "Consejo:" -- --#~ msgid "Brightness Settings" --#~ msgstr "Configuración del brillo" -- --#~ msgid "affect how much power is used" --#~ msgstr "afecta a cuánta energía se usa" -- --#~ msgid "Create new account" --#~ msgstr "Crear una cuenta nueva" -- --#~ msgid "Cr_eate" --#~ msgstr "Cr_ear" -- --#~ msgid "To add a new account, first select the account type" --#~ msgstr "Para añadir una cuenta nueva, seleccione primero el tipo de cuenta" -- --#~ msgid "Account Type:" --#~ msgstr "Tipo de cuenta:" -- --#~ msgid "_Add..." --#~ msgstr "_Añadir…" -- --#~ msgid "Add Layout" --#~ msgstr "Añadir distribución" -- --#~ msgid "Remove Layout" --#~ msgstr "Quitar distribución" -- --#~ msgid "Preview Layout" --#~ msgstr "Vista previa de la distribución" -- --#~ msgid "New windows use the default layout" --#~ msgstr "Las ventanas nuevas usan la distribución predeterminada" -- --#~ msgid "New windows use the previous window's layout" --#~ msgstr "Las ventanas nuevas usan la distribución de la ventana activa" -- --#~ msgid "View and edit keyboard layout options" --#~ msgstr "Ver y editar las opciones de distribución de teclado" -- --#~ msgid "Reset to De_faults" --#~ msgstr "Restablecer valores _predeterminados" -- --#~ msgid "" --#~ "Replace the current keyboard layout settings with the\n" --#~ "default settings" --#~ msgstr "" --#~ "Reemplazar la configuración de distribución de teclado actual\n" --#~ "con la configuración predeterminada" -- --#~ msgid "Layouts" --#~ msgstr "Distribuciones" -- --#~ msgid "Layout" --#~ msgstr "Distribución" -- --#~ msgid "1/4 Screen" --#~ msgstr "1/4 de pantalla" -- --#~ msgid "1/2 Screen" --#~ msgstr "1/2 de pantalla" -- --#~ msgid "3/4 Screen" --#~ msgstr "3/4 de pantalla" -- --#~ msgid "Choose a generated password" --#~ msgstr "Elegir una contraseña generada" -- --#~ msgid "More choices..." --#~ msgstr "Más opciones…" -- --#~ msgid "Change contrast:" --#~ msgstr "Cambiar contraste:" -- --#~ msgid "_Text size:" --#~ msgstr "_Tamaño del texto:" -- --#~ msgid "Increase size:" --#~ msgstr "Aumentar tamaño:" -- --#~ msgid "Decrease size:" --#~ msgstr "Reducir tamaño:" -- --#~ msgctxt "universal access, seeing" --#~ msgid "Display" --#~ msgstr "Pantalla" -- --#~ msgctxt "universal access, seeing" --#~ msgid "Zoom" --#~ msgstr "Ampliación" -- --#~ msgid "Type here to test settings" --#~ msgstr "Teclear aquí para probar la configuración" -- --#~ msgid "Wacom Graphics Tablet" --#~ msgstr "Tableta gráfica Wacom" -- --#~ msgid "Display Mapping..." --#~ msgstr "Mostrar mapeo…" -- --#~ msgid "Battery charging" --#~ msgstr "La batería se está cargando" -- --#~ msgid "Battery discharging" --#~ msgstr "La batería se está descargando" -- --#~ msgid "%s until charged (%.0lf%%)" --#~ msgstr "%s hasta cargarse (%.0lf%%)" -- --#~ msgid "%s until empty (%.0lf%%)" --#~ msgstr "%s hasta descargarse (%.0lf%%)" -- --#~ msgid "%.0lf%% charged" --#~ msgstr "%.0lf%% cargado" -- --#~ msgid "Unlock" --#~ msgstr "Desbloquear" -- --#~ msgid "Always" --#~ msgstr "Siempre" -- --#~ msgid "Centered" --#~ msgstr "Centrado" -- --#~ msgid "Color and Opacity" --#~ msgstr "Color y opacidad" -- --#~ msgid "Image moves with the mouse pointer" --#~ msgstr "La imagen se mueve con el puntero del ratón" -- --#~ msgid "Image scrolls at screen edges" --#~ msgstr "La imagen se desliza en los bordes de la pantalla" -- --#~ msgid "Moveable lens - magnified view follows mouse movements" --#~ msgstr "" --#~ "Lentes movibles: la vista magnificada sigue los movimientos del ratón" -- --#~ msgid "Position of magnified view on screen" --#~ msgstr "Posición de la vista magnificada en la pantalla" -- --#~ msgid "Proportional" --#~ msgstr "Proporcional" -- --#~ msgid "Push" --#~ msgstr "Empujar" -- --#~ msgid "Show" --#~ msgstr "Mostrar" -- --#~ msgid "Show crosshairs intersection" --#~ msgstr "Mostrar la intersección de las cruces" -- --#~ msgid "To keep the pointer centered" --#~ msgstr "Mantener el puntero centrado" -- --#~ msgid "To keep the pointer visible" --#~ msgstr "Mantener el puntero visible" -- --#~ msgid "Could not get session bus while applying display configuration" --#~ msgstr "" --#~ "No se pudo obtener la sesión del bus al aplicar la configuración de la " --#~ "pantalla" -- --#~ msgid "Speed" --#~ msgstr "Velocidad" -- --#~ msgid "System Info" --#~ msgstr "Información del sistema" -- --#~ msgid "_Photos:" --#~ msgstr "_Fotos:" -- --#~ msgid "Error saving the new shortcut" --#~ msgstr "Error al guardar la combinación nueva" -- --#~ msgid "Too many custom shortcuts" --#~ msgstr "Demasiadas combinaciones personalizadas" -- --#~ msgid "Key" --#~ msgstr "Clave" -- --#~ msgid "GConf key to which this property editor is attached" --#~ msgstr "Clave de gconf a la que está asociado este editor de propiedades" -- --#~ msgid "Callback" --#~ msgstr "Retorno de llamada" -- --#~ msgid "Issue this callback when the value associated with key gets changed" --#~ msgstr "" --#~ "Emitir este retorno de llamada cuando cambie el valor asociado con la " --#~ "clave" -- --#~ msgid "Change set" --#~ msgstr "Conjunto de cambios" -- --#~ msgid "" --#~ "GConf change set containing data to be forwarded to the gconf client on " --#~ "apply" --#~ msgstr "" --#~ "Conjunto de cambios de gconf que contiene datos que deben remitirse al " --#~ "cliente de gconf cuando se apliquen" -- --#~ msgid "Conversion to widget callback" --#~ msgstr "Conversión a retorno de llamada del widget" -- --#~ msgid "" --#~ "Callback to be issued when data are to be converted from GConf to the " --#~ "widget" --#~ msgstr "" --#~ "Retorno de llamada que se debe emitir cuando se vayan a convertir datos " --#~ "de gconf al widget" -- --#~ msgid "Conversion from widget callback" --#~ msgstr "Conversión desde el retorno de llamada del widget" -- --#~ msgid "" --#~ "Callback to be issued when data are to be converted to GConf from the " --#~ "widget" --#~ msgstr "" --#~ "Retorno de llamada que se debe emitir cuando se vayan a convertir datos " --#~ "del widget a gconf" -- --#~ msgid "UI Control" --#~ msgstr "Control de IU" -- --#~ msgid "Object that controls the property (normally a widget)" --#~ msgstr "Objeto que controla la propiedad (generalmente, un widget)" -- --#~ msgid "Property editor object data" --#~ msgstr "Datos de objeto del editor de propiedades" -- --#~ msgid "Custom data required by the specific property editor" --#~ msgstr "" --#~ "Datos personalizados requeridos por el editor de propiedades específico" -- --#~ msgid "Property editor data freeing callback" --#~ msgstr "Retorno de llamada de liberación de datos del editor de propiedades" -- --#~ msgid "" --#~ "Callback to be issued when property editor object data is to be freed" --#~ msgstr "" --#~ "Retorno de llamada que se debe emitir cuando se vayan a liberar datos de " --#~ "objeto del editor de propiedades" -- --#~ msgid "" --#~ "Couldn't find the file '%s'.\n" --#~ "\n" --#~ "Please make sure it exists and try again, or choose a different " --#~ "background picture." --#~ msgstr "" --#~ "No se ha podido encontrar el archivo «%s».\n" --#~ "\n" --#~ "Compruebe si existe y vuelva a intentarlo o elija una imagen de fondo " --#~ "distinta." -- --#~ msgid "" --#~ "I don't know how to open the file '%s'.\n" --#~ "Perhaps it's a kind of picture that is not yet supported.\n" --#~ "\n" --#~ "Please select a different picture instead." --#~ msgstr "" --#~ "No es posible abrir el archivo «%s».\n" --#~ "Puede que se trate de un tipo de imagen que aún no se admite.\n" --#~ "\n" --#~ "Seleccione una imagen distinta." -- --#~ msgid "Please select an image." --#~ msgstr "Seleccione una imagen." -- --#~ msgid "Toggle contrast" --#~ msgstr "Cambiar contraste" -- --#~ msgid "Toggle magnifier" --#~ msgstr "Conmutar el magnificador" -- --#~ msgid "Toggle screen reader" --#~ msgstr "Conmutar el lector de pantalla" -- --#~ msgid "Accelerator key" --#~ msgstr "Tecla de la combinación" -- --#~ msgid "Accelerator modifiers" --#~ msgstr "Modificadores de la combinación" -- --#~ msgid "Accelerator keycode" --#~ msgstr "Código de tecla de la combinación" -- --#~ msgid "Accel Mode" --#~ msgstr "Modo de la combinación" -- --#~ msgid "The type of accelerator." --#~ msgstr "El tipo de combinación." -- --#~ msgid "Create a user" --#~ msgstr "Crear un usuario" -- --#~ msgid "Ask me" --#~ msgstr "Preguntarme" -- --#~ msgid "Shutdown" --#~ msgstr "Apagar" -- --#~ msgid "Suspend" --#~ msgstr "Suspender" -- --#~ msgid "" --#~ "Only profiles that are compatible with the device will be listed above." --#~ msgstr "Debajo sólo se listarán perfiles compatibles con el dispositivo." -- --#~ msgid "Upside-down" --#~ msgstr "Hacia abajo" -- --#~ msgid "Media and Autorun" --#~ msgstr "Soportes y autoejecución" -- --#~ msgid "Configure media and autorun preferences" --#~ msgstr "Configurar los soportes y preferencias de autoejecución" -- --#~ msgid "cd;dvd;usb;audio;video;disc;" --#~ msgstr "cd;dvd;usb;sonido;vídeo;disco;" -- --#~ msgid "On AC _power:" --#~ msgstr "_Con adaptador de corriente:" -- --#~ msgid "Put the computer to sleep when inactive:" --#~ msgstr "Poner el equipo a dormir si está inactivo durante:" -- --#~ msgid "_Turn off after:" --#~ msgstr "_Apagar después de:" -- --#~ msgid "Mute" --#~ msgstr "Silenciar" -- --#~ msgid "Wacom" --#~ msgstr "Wacom" -- --#~ msgid "When the _sleep button is pressed:" --#~ msgstr "Al pulsar el botón de _suspensión:" -- --#~ msgid "When the p_ower button is pressed:" --#~ msgstr "Al pulsar el b_otón de encendido:" -- --#~ msgid "24-_Hour Time" --#~ msgstr "Formato 24 _horas" -- --#~ msgid "Updates Available" --#~ msgstr "Actualizaciones disponibles" -- --#~ msgid "Keyboard;Mouse;a11y;Accessibility;" --#~ msgstr "teclado;ratón;accesibilidad;a11y;" -- --#~ msgid "%.1f KB" --#~ msgstr "%.1f KiB" -- --#~ msgid "%.1f MB" --#~ msgstr "%.1f MiB" -- --#~ msgid "%.1f GB" --#~ msgstr "%.1f GiB" -- --#~ msgid "%.1f TB" --#~ msgstr "%.1f TiB" -- --#~ msgid "%.1f PB" --#~ msgstr "%.1f PiB" -- --#~ msgid "%.1f EB" --#~ msgstr "%.1f EiB" -- --#~ msgid "Example" --#~ msgstr "Ejemplo" -- --#~ msgid "System settings" --#~ msgstr "Configuración del sistema" -- --#~ msgctxt "universal access, contrast" --#~ msgid "High/Inverse" --#~ msgstr "Alto/invertido" -- --#~ msgctxt "universal access, contrast" --#~ msgid "High" --#~ msgstr "Alto" -- --#~ msgctxt "universal access, contrast" --#~ msgid "Low" --#~ msgstr "Bajo" -- --#~ msgctxt "universal access, contrast" --#~ msgid "Normal" --#~ msgstr "Normal" -- --#~ msgid "Use default layout in new windows" --#~ msgstr "Usar la distribución predeterminada en las ventanas nuevas" -- --#~ msgid "Use previous window's layout in new windows" --#~ msgstr "Usar la distribución de la ventana anterior en las ventanas nuevas" -- --#~ msgid "---" --#~ msgstr "---" -- --#~ msgid "Current network location" --#~ msgstr "Ubicación de red actual" -- --#~ msgid "More backgrounds URL" --#~ msgstr "URL para más fondos" -- --#~ msgid "More themes URL" --#~ msgstr "URL para más temas" -- --#~ msgid "" --#~ "Set this to your current location name. This is used to determine the " --#~ "appropriate network proxy configuration." --#~ msgstr "" --#~ "Establézcalo al nombre de su ubicación actual. Se usa para determinar la " --#~ "configuración apropiada del proxy de red." -- --#~ msgid "" --#~ "URL for where to get more desktop backgrounds. If set to an empty string " --#~ "the link will not appear." --#~ msgstr "" --#~ "URL donde obtener más fondos para el escritorio. Si se establece a una " --#~ "cadena vacía el enlace no aparecerá." -- --#~ msgid "" --#~ "URL for where to get more desktop themes. If set to an empty string the " --#~ "link will not appear." --#~ msgstr "" --#~ "URL donde obtener más temas para el escritorio. Si se establece a una " --#~ "cadena vacía el enlace no aparecerá." -- --#~ msgid "Locked" --#~ msgstr "Bloqueado" -- --#~ msgid "" --#~ "Dialog is unlocked.\n" --#~ "Click to prevent further changes" --#~ msgstr "" --#~ "El diálogo está desbloqueado.\n" --#~ "Pulse para prevenir cambios en él." -- --#~ msgid "" --#~ "Dialog is locked.\n" --#~ "Click to make changes" --#~ msgstr "" --#~ "El diálogo está bloqueado.\n" --#~ "Pulse para realizar cambios." -- --#~ msgid "" --#~ "System policy prevents changes.\n" --#~ "Contact your system administrator" --#~ msgstr "" --#~ "La política del sistema impide los cambios.\n" --#~ "Contacte con su administrador de sistemas." -- --#~ msgid "Photos" --#~ msgstr "Fotos" -- --#~ msgid "_Acceleration:" --#~ msgstr "_Aceleración:" -- --#~ msgid "Beep when a modifer key is pressed" --#~ msgstr "Pitar al pulsar una tecla modificadora" -- --#~ msgid "Clean print heads" --#~ msgstr "Limpiar cabezales de la impresora" -- --#~ msgid "An error has occured during a maintenance command." --#~ msgstr "Ocurrió un error durante un comando de mantenimiento." -- --#~ msgid "DSL" --#~ msgstr "DSL" -- --#~ msgid "Locate Pointer" --#~ msgstr "Localizar puntero" -- --#~ msgid "Info" --#~ msgstr "Información" -- --#~ msgid "16" --#~ msgstr "16" -- --#~ msgid "2010" --#~ msgstr "2010" -- --#~ msgid "AM" --#~ msgstr "AM" -- --#~ msgid "Set the system proxy settings" --#~ msgstr "Configurar los ajustes del proxy del sistema" -- --#~ msgid "Virtual private network" --#~ msgstr "Red privada virtual" -- --#~ msgid "The running NetworkManager version is not compatible (too new)." --#~ msgstr "" --#~ "La versión de NetworkManager en ejecución no es compatible (muy reciente)" -- --#~ msgid "The running NetworkManager version is not compatible (too old)." --#~ msgstr "" --#~ "La versión de NetworkManager en ejecución no es compatible (muy antigua)" -- --#~ msgid "IP Address:" --#~ msgstr "Dirección IP:" -- --#~ msgid "Preparing connection" --#~ msgstr "Preparando la conexión" -- --#~ msgid "Getting network address" --#~ msgstr "Obteniendo dirección de red" -- --#~ msgid "Preparing" --#~ msgstr "Preparando" -- --#~ msgid "Failed" --#~ msgstr "Falló" -- --#~ msgctxt "Account type" --#~ msgid "Supervised" --#~ msgstr "Supervisado" -- --#~ msgid "Secure HTTP Proxy:" --#~ msgstr "Proxy para HTTP seguro:" -- --#~ msgid "LowContrast" --#~ msgstr "ContrasteBajo" -- --#~ msgid "Ctrl+Alt+0" --#~ msgstr "Ctrl+Alt+0" -- --#~ msgid "Ctrl+Alt+4" --#~ msgstr "Ctrl+Alt+4" -- --#~ msgid "Ctrl+Alt+8" --#~ msgstr "Ctrl+Alt+8" -- --#~ msgid "Ctrl+Alt+=" --#~ msgstr "Ctrl+Alt+=" -- --#~ msgid "Shift+Ctrl+Alt+-" --#~ msgstr "Shift+Ctrl+Alt+-" -- --#~ msgid "Shift+Ctrl+Alt+=" --#~ msgstr "Shift+Ctrl+Alt+=" -- --#~ msgid "Use an alternative form of text input" --#~ msgstr "Usar una forma alternativa de entrada de texto" -- --#~ msgid "Language:" --#~ msgstr "Idioma:" -- --#~ msgid "%i kb/s" --#~ msgstr "%i kb/s" -- --#~ msgid "Graphics:" --#~ msgstr "Gráficos:" -- --#, fuzzy --#~ msgid "Always use fallback:" --#~ msgstr "Usar siempre reserva:" -- --#~ msgid "Error unsetting accelerator in configuration database: %s" --#~ msgstr "" --#~ "Error al borrar una combinación de teclas en la base de datos de " --#~ "configuración: %s" -- --#~ msgid "More Info" --#~ msgstr "Más información" -- --#~ msgid "Idle" --#~ msgstr "Inactiva" -- --#~ msgid "By _country" --#~ msgstr "Por _país" -- --#~ msgid "By _language" --#~ msgstr "Por _idioma" -- --#~ msgid "Preview:" --#~ msgstr "Vista previa:" -- --#~ msgid "_Country:" --#~ msgstr "_País:" -- --#~ msgid "_Variants:" --#~ msgstr "_Variantes:" -- --#~ msgid "Upside Down" --#~ msgstr "Hacia abajo" -- --#~ msgid "\t" --#~ msgstr "\t" -- --#~ msgid "Clean Print Heads" --#~ msgstr "Limpiar cabezales de impresión" -- --#~ msgid "Description:" --#~ msgstr "Descripción:" -- --#~ msgid "Queue" --#~ msgstr "Cola" -- --#~ msgid "Show / hide printer's jobs" --#~ msgstr "Mostrar / ocultar trabajos de la impresora" -- --#~ msgid "Battery power and inactive for:" --#~ msgstr "Alimentación con batería e inactividad para:" -- --#~ msgid "Put the computer to sleep when on:" --#~ msgstr "Poner el equipo en reposo cuando:" -- --#~ msgid "Open" --#~ msgstr "Abierta" -- --#~ msgid "Restrictions:" --#~ msgstr "Restricciones:" -- --#~ msgid "pause-toolbutton" --#~ msgstr "pause-toolbutton" -- --#~ msgid "resume-toolbutton" --#~ msgstr "resume-toolbutton" -- --#~ msgid "stop-toolbutton" --#~ msgstr "stop-toolbutton" -- --#~ msgid "toolbutton1" --#~ msgstr "toolbutton1" -- --#~ msgid "toolbutton2" --#~ msgstr "toolbutton2" -- --#~ msgid "Keyboard _model:" --#~ msgstr "_Modelo del teclado:" -- --#~ msgid "Choose a Keyboard Model" --#~ msgstr "Elija un modelo de teclado" -- --#~ msgid "_Models:" --#~ msgstr "_Modelos:" -- --#~ msgid "_Vendors:" --#~ msgstr "_Fabricantes:" -- --#~ msgid "Vendors" --#~ msgstr "Fabricantes" -- --#~ msgid "Move the selected keyboard layout down in the list" --#~ msgstr "Mover abajo, en la lista, la distribución de teclado seleccionada" -- --#~ msgid "Move the selected keyboard layout up in the list" --#~ msgstr "Mover arriba, en la lista, la distribución de teclado seleccionada" -- --#~ msgid "Print a diagram of the selected keyboard layout" --#~ msgstr "Imprimir un diagrama de las distribuciones de teclado seleccionadas" -- --#~ msgid "Remove the selected keyboard layout from the list" --#~ msgstr "Quitar de la lista la distribución de teclado seleccionada" -- --#~ msgid "Select a keyboard layout to be added to the list" --#~ msgstr "Seleccionar una distribución de teclado para añadir a la lista" -- --#~ msgid "Hold" --#~ msgstr "Mantener" -- --#~ msgid "Release" --#~ msgstr "Publicación" -- --#~ msgid "" --#~ "A guest account will allow anyone to temporarily log in to this computer " --#~ "without a password. For security, remote logins to this account are not " --#~ "allowed.\n" --#~ "\n" --#~ " When the guest user logs out, all files and data " --#~ "associated with the account will be deleted." --#~ msgstr "" --#~ "Una cuenta de invitado permitirá que cualquiera inicie sesión " --#~ "temporalmente en este equipo sin contraseña. Por razones de seguridad no " --#~ "se permiten inicios de sesión remotos con esta cuenta.\n" --#~ "\n" --#~ " Cuando el usuario invitado sale de la sesión, " --#~ "todos los archivos y datos asociados con la cuenta se eliminan." -- --#~ msgid "Accounts" --#~ msgstr "Cuentas" -- --#~ msgid "Address Book Card:" --#~ msgstr "Tarjeta de la libreta de direcciones:" -- --#~ msgid "Allow guests to log in to this computer" --#~ msgstr "Permitir a invitados que inicien sesión en este equipo" -- --#~ msgid "E-mail address:" --#~ msgstr "Dirección de correo-e:" -- --#~ msgid "Show Shutdown, Suspend and Restart actions" --#~ msgstr "Acciones de Apagar, Suspender y Reiniciar" -- --#~ msgid "Show list of users" --#~ msgstr "Mostrar la lista de usuarios" -- --#~ msgid "Show password hints" --#~ msgstr "Mostrar los consejos sobre la contraseña" -- --#~ msgid "Do Nothing" --#~ msgstr "No hacer nada" -- --#~ msgid "_Pointer can be controlled using the keypad" --#~ msgstr "Permitir controlar el _puntero usando el teclado numérico" -- --#~ msgid "_Type to test settings:" --#~ msgstr "_Teclee para probar la configuración:" -- --#~ msgid "Desktop" --#~ msgstr "Escritorio" -- --#~ msgid "Choose type of click _beforehand" --#~ msgstr "Elegir el tipo de pulsación de an_temano" -- --#~ msgid "Choose type of click with mo_use gestures" --#~ msgstr "Elegir el tipo de pulsación con gestos del rató_n" -- --#~ msgid "D_rag click:" --#~ msgstr "Pulsación de _arrastre:" -- --#~ msgid "Dwell Click" --#~ msgstr "Pulsación al posarse" -- --#~ msgid "Show click type _window" --#~ msgstr "Mostrar la _ventana del tipo de pulsación" -- --#~ msgid "" --#~ "You can also use the Dwell Click panel applet to choose the click type." --#~ msgstr "" --#~ "También puede usar el panel de la miniaplicación Pulsación al posarse " --#~ "para elegir el tipo de pulsación." -- --#~ msgid "_Initiate click when stopping pointer movement" --#~ msgstr "_Iniciar la pulsación cuando se pare el movimiento del puntero" -- --#~ msgid "_Single click:" --#~ msgstr "Pulsación _simple:" -- --#~ msgid "_Trigger secondary click by holding down the primary button" --#~ msgstr "" --#~ "_Disparar la pulsación secundaria al mantener pulsado el botón primario" -- --#~ msgid "Example preferences panel" --#~ msgstr "Preferencias del panel de ejemplo" -- --#~ msgid "Foo;Bar;Baz;" --#~ msgstr "foo;bar:baz;" -- --#~ msgid "Preferred Applications" --#~ msgstr "Aplicaciones preferidas" -- --#~ msgid "Select your default applications" --#~ msgstr "Seleccione sus aplicaciones predeterminadas" -- --#~ msgid "Start the preferred visual assistive technology" --#~ msgstr "Iniciar la tecnología de asistencia visual preferida" -- --#~ msgid "Visual Assistance" --#~ msgstr "Asistencia visual" -- --#~ msgid "Error setting default browser: %s" --#~ msgstr "Error al establecer el navegador predeterminado: %s" -- --#~ msgid "Error setting default mailer: %s" --#~ msgstr "Error al establecer el programa de correo-e predeterminado: %s" -- --#~ msgid "Could not load the main interface" --#~ msgstr "No es posible cargar el interfaz principal" -- --#~ msgid "Please make sure that the applet is properly installed" --#~ msgstr "Asegúrese de que la miniaplicación está instalada correctamente" -- --#~ msgid "All %s occurrences will be replaced with actual link" --#~ msgstr "Todas las apariciones de %s se reemplazarán por el enlace actual" -- --#~ msgid "Co_mmand:" --#~ msgstr "Co_mando:" -- --#~ msgid "E_xecute flag:" --#~ msgstr "Opción de e_jecución:" -- --#~ msgid "Instant Messenger" --#~ msgstr "Mensajería instantánea" -- --#~ msgid "Mail Reader" --#~ msgstr "Lector de correo" -- --#~ msgid "Mobility" --#~ msgstr "Movilidad" -- --#~ msgid "Run at st_art" --#~ msgstr "Ejecutar al _inicio" -- --#~ msgid "Run in t_erminal" --#~ msgstr "Ejecutar en un t_erminal" -- --#~ msgid "Terminal Emulator" --#~ msgstr "Emulador de terminal" -- --#~ msgid "Text Editor" --#~ msgstr "Editor de textos" -- --#~ msgid "Visual" --#~ msgstr "Visual" -- --#~ msgid "Web Browser" --#~ msgstr "Navegador web" -- --#~ msgid "_Run at start" --#~ msgstr "Ejecutar al _inicio" -- --#~ msgid "Banshee Music Player" --#~ msgstr "Reproductor de música Banshee" -- --#~ msgid "Debian Terminal Emulator" --#~ msgstr "Emulador de terminal de Debian" -- --#~ msgid "ETerm" --#~ msgstr "ETerm" -- --#~ msgid "GNOME Magnifier without Screen Reader" --#~ msgstr "Magnificador de GNOME sin lector de pantalla" -- --#~ msgid "GNOME OnScreen Keyboard" --#~ msgstr "Teclado en pantalla de GNOME" -- --#~ msgid "GNOME Terminal" --#~ msgstr "Terminal de GNOME" -- --#~ msgid "Gnopernicus" --#~ msgstr "Gnopernicus" -- --#~ msgid "Gnopernicus with Magnifier" --#~ msgstr "Gnopernicus con magnificador" -- --#~ msgid "KDE Magnifier without Screen Reader" --#~ msgstr "Magnificador de KDE sin lector de pantalla" -- --#~ msgid "Konsole" --#~ msgstr "Konsole" -- --#~ msgid "Linux Screen Reader" --#~ msgstr "Lector de pantalla de Linux" -- --#~ msgid "Linux Screen Reader with Magnifier" --#~ msgstr "Lector de pantalla de Linux con magnificador" -- --#~ msgid "Listen" --#~ msgstr "Listen" -- --#~ msgid "Muine Music Player" --#~ msgstr "Reproductor de música Muine" -- --#~ msgid "NXterm" --#~ msgstr "NXterm" -- --#~ msgid "Orca" --#~ msgstr "Orca" -- --#~ msgid "Orca with Magnifier" --#~ msgstr "Orca con magnificador" -- --#~ msgid "RXVT" --#~ msgstr "RXVT" -- --#~ msgid "Rhythmbox Music Player" --#~ msgstr "Reproductor de música Rhythmbox" -- --#~ msgid "Standard XTerminal" --#~ msgstr "Terminal X estándar" -- --#~ msgid "Terminator" --#~ msgstr "Terminator" -- --#~ msgid "Totem Movie Player" --#~ msgstr "Reproductor de películas Totem" -- --#~ msgid "12 hour format" --#~ msgstr "Formato 12 horas" -- --#~ msgid "24 hour format" --#~ msgstr "Formato 24 horas" -- --#~ msgid "Orange" --#~ msgstr "Naranja" -- --#~ msgid "Chameleon" --#~ msgstr "Camaleón" -- --#~ msgid "Plum" --#~ msgstr "Ciruela" -- --#~ msgid "Aluminium" --#~ msgstr "Aluminio" -- --#~ msgid "Slide Show" --#~ msgstr "Mostrar diapositivas" -- --#~ msgid "Image" --#~ msgstr "Imagen" -- --#~ msgid "%d %s by %d %s" --#~ msgstr "%d %s por %d %s" -- --#~ msgid "pixel" --#~ msgid_plural "pixels" --#~ msgstr[0] "píxel" --#~ msgstr[1] "píxeles" -- --#~ msgid "" --#~ "%s\n" --#~ "%s, %s\n" --#~ "Folder: %s" --#~ msgstr "" --#~ "%s\n" --#~ "%s, %s\n" --#~ "Carpeta: %s" -- --#~ msgid "" --#~ "%s\n" --#~ "%s\n" --#~ "Folder: %s" --#~ msgstr "" --#~ "%s\n" --#~ "%s\n" --#~ "Carpeta: %s" -- --#~ msgid "Image missing" --#~ msgstr "Falta una imagen" -- --#~ msgid "_Detect monitors" --#~ msgstr "_Detectar monitores" -- --#~ msgid "_Mirror Screens" --#~ msgstr "_Espejar pantallas" -- --#~ msgid "Mirror Screens" --#~ msgstr "Espejar pantallas" -- --#~ msgid "Open %s" --#~ msgstr "Abrir %s" -- --#~ msgid "Open with other Application..." --#~ msgstr "Abrir con otra aplicación…" -- --#~ msgid "Could not run application" --#~ msgstr "No se pudo ejecutar la aplicación" -- --#~ msgid "Could not find '%s'" --#~ msgstr "No se pudo encontrar «%s»" -- --#~ msgid "Could not find application" --#~ msgstr "No se pudo encontrar la aplicación" -- --#~ msgid "Could not add application to the application database: %s" --#~ msgstr "" --#~ "No se pudo añadir la aplicación a la base de datos de aplicaciones: %s" -- --#~ msgid "Could not add application" --#~ msgstr "No se pudo añadir la aplicación" -- --#, fuzzy --#~ msgid "Could not set application as the default: %s" --#~ msgstr "No se pudo obtener la información para %s: %s\n" -- --#, fuzzy --#~ msgid "Could not set as default application" --#~ msgstr "Seleccione sus aplicaciones predeterminadas" -- --#, fuzzy --#~ msgid "Open With" --#~ msgstr "Abrir con «%s»" -- --#, fuzzy --#~ msgid "Open %s with:" --#~ msgstr "Abrir con «%s»" -- --#, fuzzy --#~ msgid "Add Application" --#~ msgstr "Aplicaciones" -- --#~ msgid "Location already exists" --#~ msgstr "El lugar ya existe" -- --#~ msgid "Set your network proxy preferences" --#~ msgstr "Establezca sus preferencias del proxy de la red" -- --#, fuzzy --#~ msgid "Web;Location;" --#~ msgstr "Lugar:" -- --#~ msgid "_Manual proxy configuration" --#~ msgstr "Configuración _manual del proxy" -- --#~ msgid "Create New Location" --#~ msgstr "Crear una ubicación nueva" -- --#~ msgid "HTTP Proxy Details" --#~ msgstr "Detalles del proxy HTTP" -- --#~ msgid "Ignore Host List" --#~ msgstr "Lista de anfitriones ignorados" -- --#~ msgid "Network Proxy Preferences" --#~ msgstr "Preferencias del proxy de la red" -- --#~ msgid "The location already exists." --#~ msgstr "El lugar ya existe." -- --#~ msgid "_Use the same proxy for all protocols" --#~ msgstr "_Usar el mismo proxy para todos los protocolos" -- --#~ msgid "Balsa" --#~ msgstr "Balsa" -- --#~ msgid "Claws Mail" --#~ msgstr "Claws Mail" -- --#~ msgid "Debian Sensible Browser" --#~ msgstr "Navegador sensible de Debian" -- --#~ msgid "Encompass" --#~ msgstr "Encompass" -- --#~ msgid "Epiphany Web Browser" --#~ msgstr "Navegador web Epiphany" -- --#~ msgid "Evolution Mail Reader" --#~ msgstr "Lector de correo Evolution" -- --#~ msgid "Firefox" --#~ msgstr "Firefox" -- --#~ msgid "Galeon" --#~ msgstr "Galeon" -- --#~ msgid "Iceape" --#~ msgstr "Iceape" -- --#~ msgid "Iceape Mail" --#~ msgstr "Correo Iceape" -- --#~ msgid "Icedove" --#~ msgstr "Icedove" -- --#~ msgid "Konqueror" --#~ msgstr "Konqueror" -- --#~ msgid "Midori" --#~ msgstr "Midori" -- --#~ msgid "Mozilla" --#~ msgstr "Mozilla" -- --#~ msgid "Mozilla 1.6" --#~ msgstr "Mozilla 1.6" -- --#~ msgid "Mozilla Mail" --#~ msgstr "Mozilla Mail" -- --#~ msgid "Mozilla Thunderbird" --#~ msgstr "Mozilla Thunderbird" -- --#~ msgid "Mutt" --#~ msgstr "Mutt" -- --#~ msgid "Netscape Communicator" --#~ msgstr "Netscape Communicator" -- --#~ msgid "SeaMonkey" --#~ msgstr "SeaMonkey" -- --#~ msgid "SeaMonkey Mail" --#~ msgstr "Correo SeaMonkey" -- --#~ msgid "Sylpheed" --#~ msgstr "Sylpheed" -- --#~ msgid "Sylpheed-Claws" --#~ msgstr "Sylpheed-Claws" -- --#~ msgid "Thunderbird" --#~ msgstr "Thunderbird" -- --#~ msgid "_Include Top Menu Bar" --#~ msgstr "_Incluir barra de menú superior" -- --#~ msgid "%d Hz" --#~ msgstr "%d Hz" -- --#~ msgid "Monitor: %s" --#~ msgstr "Monitor: %s" -- --#~ msgid "Unable to load stock icon '%s'\n" --#~ msgstr "No se puede cargar el icono de fábrica «%s»\n" -- --#~ msgid "gesture|Move left" --#~ msgstr "Mover a la izquierda" -- --#~ msgid "gesture|Move right" --#~ msgstr "Mover a la derecha" -- --#~ msgid "gesture|Move up" --#~ msgstr "Mover arriba" -- --#~ msgid "gesture|Move down" --#~ msgstr "Mover abajo" -- --#~ msgid "gesture|Disabled" --#~ msgstr "Desactivado" -- --#~ msgid "Waiting for sound system to respond" --#~ msgstr "Esperando a que el sistema de sonido responda" -- --#~ msgid "Sound _theme:" --#~ msgstr "_Tema de sonido:" -- --#~ msgid "Enable _window and button sounds" --#~ msgstr "Activar sonidos de _ventanas y botones" -- --#~ msgctxt "Sound event" --#~ msgid "Alert sound" --#~ msgstr "Sonido de alarma" -- --#~ msgctxt "Sound event" --#~ msgid "Windows and Buttons" --#~ msgstr "Ventanas y botones" -- --#~ msgctxt "Sound event" --#~ msgid "Button clicked" --#~ msgstr "Botón pulsado" -- --#~ msgctxt "Sound event" --#~ msgid "Toggle button clicked" --#~ msgstr "Botón conmutador pulsado" -- --#~ msgctxt "Sound event" --#~ msgid "Window maximized" --#~ msgstr "Ventana maximizada" -- --#~ msgctxt "Sound event" --#~ msgid "Window unmaximized" --#~ msgstr "Ventana desmaximizada" -- --#~ msgctxt "Sound event" --#~ msgid "Window minimised" --#~ msgstr "Ventana minimizada" -- --#~ msgctxt "Sound event" --#~ msgid "Desktop" --#~ msgstr "Escritorio" -- --#~ msgctxt "Sound event" --#~ msgid "Logout" --#~ msgstr "Salida" -- --#~ msgctxt "Sound event" --#~ msgid "Long action completed (download, CD burning, etc.)" --#~ msgstr "Acción larga completada (descarga, grabación de CD, etc.)" -- --#~ msgctxt "Sound event" --#~ msgid "Alerts" --#~ msgstr "Alarmas" -- --#~ msgctxt "Sound event" --#~ msgid "Information or question" --#~ msgstr "Información o pregunta" -- --#~ msgctxt "Sound event" --#~ msgid "Warning" --#~ msgstr "Advertencia" -- --#~ msgid "Custom…" --#~ msgstr "Personalizado…" -- --#~ msgid "Sound Theme:" --#~ msgstr "Tema de sonido:" -- --#~ msgid "Enable window and button sounds" --#~ msgstr "Activar sonidos de ventanas y botones" -- --#~ msgid "I need assistance with:" --#~ msgstr "Necesito asistencia con:" -- --#~ msgid "Monitors" --#~ msgstr "Monitores" -- --#~ msgid "Assign shortcut keys to commands" --#~ msgstr "Asigne una combinación de teclas a comandos" -- --#~ msgid "Beep when _accessibility features are turned on or off" --#~ msgstr "" --#~ "Pitar cuando se activen o desactiven las características de _accesibilidad" -- --#~ msgid "Beep when a _toggle key is pressed" --#~ msgstr "Pitar al pulsar una _tecla conmutable" -- --#~ msgid "Beep when a key is reje_cted" --#~ msgstr "Pitar si se recha_za la tecla" -- --#~ msgid "Beep when key is _rejected" --#~ msgstr "Pitar si se _rechaza la tecla" -- --#~ msgid "Flash _window titlebar" --#~ msgstr "Destello de la barra de título de la _ventana" -- --#~ msgid "Flash entire _screen" --#~ msgstr "Destello de la pantalla _completa" -- --#~ msgid "Keyboard Accessibility Audio Feedback" --#~ msgstr "Comentarios sobre los sonidos de accesibilidad del teclado" -- --#~ msgid "Show _visual feedback for the alert sound" --#~ msgstr "Mostrar respuesta _visual para las alertas de sonido" -- --#~ msgid "Visual cues for sounds" --#~ msgstr "Entradas visuales para sonidos" -- --#~ msgid "Audio _Feedback..." --#~ msgstr "Co_mentarios sobre el sonido..." -- --#~ msgid "Disa_ble sticky keys if two keys are pressed together" --#~ msgstr "" --#~ "_Desactivar las teclas persistentes si se pulsan dos teclas a la vez" -- --#~ msgid "Keyboard Preferences" --#~ msgstr "Preferencias del teclado" -- --#~ msgid "_Accessibility features can be toggled with keyboard shortcuts" --#~ msgstr "" --#~ "Permitir conmutar las características de _accesibilidad desde " --#~ "combinaciones de teclas" -- --#~ msgid "_Ignore fast duplicate keypresses" --#~ msgstr "_Ignorar pulsaciones duplicadas rápidas" -- --#~ msgid "_Only accept long keypresses" --#~ msgstr "S_ólo aceptar teclas pulsadas durante cierto tiempo" -- --#~ msgid "_Simulate simultaneous keypresses" --#~ msgstr "_Simular pulsaciones de múltiples teclas" -- --#~ msgid "" --#~ "Accessibility features can be turned on or off with keyboard shortcuts" --#~ msgstr "" --#~ "Las características de accesibilidad se pueden activar y desactivar con " --#~ "combinaciones de teclas" -- --#~ msgid "Test:" --#~ msgstr "Probar:" -- --#~ msgid "Image Viewer" --#~ msgstr "Visor de imágenes" -- --#~ msgid "Multimedia" --#~ msgstr "Multimedia" -- --#~ msgid "Open link in new _tab" --#~ msgstr "Abrir enlace en una pesta_ña nueva" -- --#~ msgid "Open link in new _window" --#~ msgstr "Abrir enlace en una _ventana nueva" -- --#~ msgid "Open link with web browser _default" --#~ msgstr "Abrir enlace con el navegador web _predeterminado" -- --#~ msgid "Video Player" --#~ msgstr "Reproductor de vídeo" -- --#~ msgid "Include _panel" --#~ msgstr "Incluir pa_nel" -- --#~ msgid "" --#~ "Usage: %s SOURCE_FILE DEST_NAME\n" --#~ "\n" --#~ "This program installs a RANDR profile for multi-monitor setups into\n" --#~ "a systemwide location. The resulting profile will get used when\n" --#~ "the RANDR plug-in gets run in gnome-settings-daemon.\n" --#~ "\n" --#~ "SOURCE_FILE - a full pathname, typically /home/username/.config/monitors." --#~ "xml\n" --#~ "\n" --#~ "DEST_NAME - relative name for the installed file. This will get put in\n" --#~ " the systemwide directory for RANDR configurations,\n" --#~ " so the result will typically be %s/DEST_NAME\n" --#~ msgstr "" --#~ "Uso: %s ARCHIVO_ORIGEN NOMBRE_DESTINO\n" --#~ "\n" --#~ "Este programa instala un perfil RANDR para configuraciones multimonitor\n" --#~ "en todo el sistema. El perfil resultante se usará cuando el complemento\n" --#~ "RANRD se ejecute en gnome-settings.daemon.\n" --#~ "\n" --#~ "ARCHIVO_ORIGEN: una ruta completa, generalmente /home/username/.config/" --#~ "monitors.xml\n" --#~ "\n" --#~ "NOMBRE_DESTINO: nombre relativo para el archivo instalado. Esto\n" --#~ " pondrá las configuraciones RANDR en el directorio del " --#~ "sistema\n" --#~ " de tal forma que el resultado generalmente será %s/" --#~ "NOMBRE_DESTINO\n" -- --#~ msgid "This program can only be used by the root user" --#~ msgstr "Sólo el usuario «root» puede usar este programa" -- --#~ msgid "The source filename must be absolute" --#~ msgstr "El origen del nombre del archivo debe ser absoluto" -- --#~ msgid "%s must be a regular file\n" --#~ msgstr "%s debe ser un archivo regular\n" -- --#~ msgid "This program must only be run through pkexec(1)" --#~ msgstr "Este programa sólo se debe ejecutar a través de pkexec(1)" -- --#~ msgid "PKEXEC_UID must be set to an integer value" --#~ msgstr "Se debe establecer PKEXEC_UID a un valor entero" -- --#~ msgid "%s must be owned by you\n" --#~ msgstr "Debe ser el propietario de %s\n" -- --#~ msgid "%s must not have any directory components\n" --#~ msgstr "%s no debe tener ningún componente de directorio\n" -- --#~ msgid "%s must be a directory\n" --#~ msgstr "%s debe ser un directorio\n" -- --#~ msgid "Could not open %s/%s: %s\n" --#~ msgstr "No se pudo abrir %s/%s: %s\n" -- --#~ msgid "" --#~ "Authentication is required to install multi-monitor settings for all users" --#~ msgstr "" --#~ "Se requiere autenticación para instalar la configuración multimonitor " --#~ "para todos los usuarios" -- --#~ msgid "Install multi-monitor settings for the whole system" --#~ msgstr "Instalar la configuración multimonitor para todo el sistema" -- --#~ msgid "All_ow postponing of breaks" --#~ msgstr "Permitir p_osponer los descansos" -- --#~ msgid "Check if breaks are allowed to be postponed" --#~ msgstr "Comprobar si se permite posponer los descansos" -- --#~ msgid "Duration of the break when typing is disallowed" --#~ msgstr "Duración del descanso cuando la escritura no está permitida" -- --#~ msgid "Duration of work before forcing a break" --#~ msgstr "Duración del trabajo antes de forzar un descanso" -- --#~ msgid "" --#~ "Lock screen after a certain duration to help prevent repetitive keyboard " --#~ "use injuries" --#~ msgstr "" --#~ "Bloquea la pantalla después de un cierto intervalo para ayudar a prevenir " --#~ "las lesiones por el uso repetitivo del teclado" -- --#~ msgid "Typing Break" --#~ msgstr "Descanso de escritura" -- --#~ msgid "_Break interval lasts:" --#~ msgstr "D_uración del intervalo de descanso:" -- --#~ msgid "_Lock screen to enforce typing break" --#~ msgstr "B_loquear la pantalla para forzar un descanso de escritura" -- --#~ msgid "_Work interval lasts:" --#~ msgstr "D_uración del intervalo de trabajo:" -- --#~ msgid "_Postpone Break" --#~ msgstr "_Posponer el descanso" -- --#~ msgid "_Take a Break" --#~ msgstr "_Tomar un descanso" -- --#~ msgid "Take a break now (next in %dm)" --#~ msgstr "Descansar ahora (el siguiente en %dm)" -- --#~ msgid "%d minute until the next break" --#~ msgid_plural "%d minutes until the next break" --#~ msgstr[0] "%d minuto hasta su siguiente descanso" --#~ msgstr[1] "%d minutos hasta su siguiente descanso" -- --#~ msgid "Take a break now (next in less than one minute)" --#~ msgstr "Descansar ahora (el siguiente en menos de un minuto)" -- --#~ msgid "Less than one minute until the next break" --#~ msgstr "Menos de un minuto hasta su siguiente descanso" -- --#~ msgid "" --#~ "Unable to bring up the typing break properties dialog with the following " --#~ "error: %s" --#~ msgstr "" --#~ "No se puede mostrar el diálogo de las propiedades del descanso de " --#~ "escritura por el siguiente error: %s" -- --#~ msgid "Written by Richard Hult " --#~ msgstr "Escrito por Richard Hult " -- --#~ msgid "Eye candy added by Anders Carlsson" --#~ msgstr "Vistosidad agregada por Anders Carlsson" -- --#~ msgid "A computer break reminder." --#~ msgstr "Un recordatorio para los descansos frente a la computadora." -- --#~ msgid "translator-credits" --#~ msgstr "" --#~ "Jorge González , 2007, 2010\n" --#~ "Traductores anteriores:\n" --#~ "Claudio Saavedra , 2007\n" --#~ "Francisco Javier F. Serrador , 2003, 2004, 2005, " --#~ "2006\n" --#~ "Pablo Saratxaga , 1998-2001\n" --#~ "Carlos Perelló Marín , 2001\n" --#~ "Héctor García Álvarez , 2001\n" --#~ "QA: Germán Poo Caamaño , 2002\n" --#~ "Lucas Di Pentima , 2002\n" --#~ "Pablo Gonzalo del Campo , 2002, 2003" -- --#~ msgid "Don't check whether the notification area exists" --#~ msgstr "No comprobar si existe el área de notificación" -- --#~ msgid "Typing Monitor" --#~ msgstr "Monitor de tecleo" -- --#~ msgid "" --#~ "The typing monitor uses the notification area to display information. You " --#~ "don't seem to have a notification area on your panel. You can add it by " --#~ "right-clicking on your panel and choosing 'Add to panel', selecting " --#~ "'Notification area' and clicking 'Add'." --#~ msgstr "" --#~ "El monitor de tecleo utiliza el área de notificación para mostrar " --#~ "información. Parece que usted no tiene el área de notificación en su " --#~ "panel. Puede añadirla pulsando con el botón derecho sobre el panel y " --#~ "seleccionando «Añadir al panel», seleccionando «Área de notificación» y " --#~ "pulsando en «Añadir»." -- --#~ msgid "Opera" --#~ msgstr "Opera" -- --#~ msgid "Panel icon" --#~ msgstr "Icono del panel" -- --#~ msgid "Sa_me image in all monitors" --#~ msgstr "La _misma imagen en todos los monitores" -- --#~ msgid "The monitor configuration has been saved" --#~ msgstr "Se guardó la configuración del monitor" -- --#~ msgid "This configuration will be used the next time someone logs in." --#~ msgstr "" --#~ "La próxima vez que alguien inicie sesión se usará esta configuración" -- --#~ msgid "Could not set the default configuration for monitors" --#~ msgstr "" --#~ "No se pudo establecer la configuración predeterminada para los monitores" -- --#~ msgid "Close the control-center when a task is activated" --#~ msgstr "Cierra el centro de control cuando se activa una tarea" -- --#~ msgid "Exit shell on add or remove action performed" --#~ msgstr "" --#~ "Abandona la consola cuando se ha realizado una acción de añadido o " --#~ "eliminación" -- --#~ msgid "Exit shell on help action performed" --#~ msgstr "Abandona la consola cuando se ha realizado una acción de ayuda" -- --#~ msgid "Exit shell on start action performed" --#~ msgstr "Abandona la consola cuando se ha realizado una acción de inicio" -- --#~ msgid "Exit shell on upgrade or uninstall action performed" --#~ msgstr "" --#~ "Abandona la consola cuando se ha realizado una acción de actualización o " --#~ "desinstalación" -- --#~ msgid "" --#~ "Indicates whether to close the shell when a help action is performed." --#~ msgstr "" --#~ "Indica si debe cerrarse la consola cuando se ha ejecutado una acción de " --#~ "ayuda." -- --#~ msgid "" --#~ "Indicates whether to close the shell when a start action is performed." --#~ msgstr "" --#~ "Indica si debe cerrarse la consola cuando se ha ejecutado una acción de " --#~ "inicio." -- --#~ msgid "" --#~ "Indicates whether to close the shell when an add or remove action is " --#~ "performed." --#~ msgstr "" --#~ "Indica si debe cerrarse la consola cuando se ha ejecutado una acción de " --#~ "añadido o eliminación." -- --#~ msgid "" --#~ "Indicates whether to close the shell when an upgrade or uninstall action " --#~ "is performed." --#~ msgstr "" --#~ "Indica si debe cerrarse la consola cuando se ha ejecutado una acción de " --#~ "actualización o desinstalación." -- --#~ msgid "Task names and associated .desktop files" --#~ msgstr "Nombres de tareas y archivos .desktop asociados" -- --#~ msgid "" --#~ "The task name to be displayed in the control-center followed by a \";\" " --#~ "separator then the filename of an associated .desktop file to launch for " --#~ "that task." --#~ msgstr "" --#~ "El nombre de la tarea que desplegar en el centro de control seguido por " --#~ "un separador «;» y luego el nombre de un archivo .desktop asociado que " --#~ "lanzar para esa tarea." -- --#~ msgid "" --#~ "[Change Theme;gtk-theme-selector.desktop,Set Preferred Applications;" --#~ "default-applications.desktop,Add Printer;gnome-cups-manager.desktop]" --#~ msgstr "" --#~ "[Cambiar el tema;gtk-theme-selector.desktop,Establecer las aplicaciones " --#~ "preferidas;default-applications.desktop,Añadir impresora;gnome-cups-" --#~ "manager.desktop]" -- --#~ msgid "" --#~ "if true, the control-center will close when a \"Common Task\" is " --#~ "activated." --#~ msgstr "" --#~ "Si es verdadero, el centro de control se cerrará cuando se active una " --#~ "«Tarea común»." -- --#~ msgid "The GNOME configuration tool" --#~ msgstr "La herramienta de configuración de GNOME" -- --#~ msgid "If set to true, then OpenType fonts will be thumbnailed." --#~ msgstr "" --#~ "Si está establecido a «true», entonces las tipografías OpenType se " --#~ "miniaturizarán." -- --#~ msgid "If set to true, then PCF fonts will be thumbnailed." --#~ msgstr "" --#~ "Si está establecido a «true», entonces las tipografías PFC se " --#~ "miniaturizarán." -- --#~ msgid "If set to true, then TrueType fonts will be thumbnailed." --#~ msgstr "" --#~ "Si está establecido a «true», entonces las tipografías TrueType se " --#~ "miniaturizarán." -- --#~ msgid "If set to true, then Type1 fonts will be thumbnailed." --#~ msgstr "" --#~ "Si está establecido a «true», entonces las tipografías Type1 se " --#~ "miniaturizarán." -- --#~ msgid "" --#~ "Set this key to the command used to create thumbnails for OpenType fonts." --#~ msgstr "" --#~ "Establezca en esta clave el comando que se debe usar para crear " --#~ "miniaturas de las tipografías OpenType." -- --#~ msgid "Set this key to the command used to create thumbnails for PCF fonts." --#~ msgstr "" --#~ "Establezca en esta clave el comando que se debe usar para crear " --#~ "miniaturas de las tipografías PCF." -- --#~ msgid "" --#~ "Set this key to the command used to create thumbnails for TrueType fonts." --#~ msgstr "" --#~ "Establezca en esta clave el comando que se debe usar para crear " --#~ "miniaturas de las tipografías TrueType." -- --#~ msgid "" --#~ "Set this key to the command used to create thumbnails for Type1 fonts." --#~ msgstr "" --#~ "Establezca en esta clave el comando que se debe usar para crear " --#~ "miniaturas de las tipografías Type1." -- --#~ msgid "Thumbnail command for OpenType fonts" --#~ msgstr "Comando para miniaturizar las tipografías OpenType" -- --#~ msgid "Thumbnail command for PCF fonts" --#~ msgstr "Comando para miniaturizar las tipografías PCF" -- --#~ msgid "Thumbnail command for TrueType fonts" --#~ msgstr "Comando para miniaturizar las tipografías TrueType" -- --#~ msgid "Thumbnail command for Type1 fonts" --#~ msgstr "Comando para miniaturizar las tipografías Type1" -- --#~ msgid "Whether to thumbnail OpenType fonts" --#~ msgstr "Indica si debe miniaturizar las tipografías OpenType" -- --#~ msgid "Whether to thumbnail PCF fonts" --#~ msgstr "Indica si debe miniaturizar las tipografías PCF" -- --#~ msgid "Whether to thumbnail TrueType fonts" --#~ msgstr "Indica si debe miniaturizar las tipografías TrueType" -- --#~ msgid "Whether to thumbnail Type1 fonts" --#~ msgstr "Indica si debe miniaturizar las tipografías Type1" -- --#~ msgid "Copyright:" --#~ msgstr "Copyright:" -- --#~ msgid "Installed" --#~ msgstr "Instalado" -- --#~ msgid "usage: %s fontfile\n" --#~ msgstr "uso: %s archivo de tipografías\n" -- --#~ msgid "I_nstall Font" --#~ msgstr "I_nstalar tipografía" -- --#~ msgid "Font Viewer" --#~ msgstr "Visor de tipografías" -- --#~ msgid "Text to thumbnail (default: Aa)" --#~ msgstr "Texto a miniaturizar (predeterminado: Aa)" -- --#~ msgid "TEXT" --#~ msgstr "TEXTO" -- --#~ msgid "Font size (default: 64)" --#~ msgstr "Tamaño de la tipografía (predeterminado: 64)" -- --#~ msgid "SIZE" --#~ msgstr "TAMAÑO" -- --#~ msgid "FONT-FILE OUTPUT-FILE" --#~ msgstr "ARCHIVO-DE-TIPOGRAFÍA ARCHIVO-DE-SALIDA" -- --#~ msgid "Image/label border" --#~ msgstr "Imagen/borde de la etiqueta" -- --#~ msgid "Width of border around the label and image in the alert dialog" --#~ msgstr "" --#~ "Anchura del borde alrededor de la etiqueta y la imagen en el diálogo de " --#~ "alerta" -- --#~ msgid "The type of alert" --#~ msgstr "El tipo de alerta" -- --#~ msgid "The buttons shown in the alert dialog" --#~ msgstr "Los botones mostrados en el diálogo de alerta" -- --#~ msgid "Show more _details" --#~ msgstr "Mostrar más _detalles" -- --#~ msgid "Place your left thumb on %s" --#~ msgstr "Ponga su pulgar izquierdo en %s" -- --#~ msgid "Swipe your left thumb on %s" --#~ msgstr "Pase su pulgar izquierdo sobre %s" -- --#~ msgid "Place your left index finger on %s" --#~ msgstr "Ponga su dedo índice izquierdo en %s" -- --#~ msgid "Swipe your left index finger on %s" --#~ msgstr "Pase su dedo índice izquierdo sobre %s" -- --#~ msgid "Place your left middle finger on %s" --#~ msgstr "Ponga su dedo corazón izquierdo en %s" -- --#~ msgid "Swipe your left middle finger on %s" --#~ msgstr "Pase su dedo corazón izquierdo sobre %s" -- --#~ msgid "Place your left ring finger on %s" --#~ msgstr "Ponga su dedo anular izquierdo en %s" -- --#~ msgid "Swipe your left ring finger on %s" --#~ msgstr "Pase su dedo anular izquierdo sobre %s" -- --#~ msgid "Place your left little finger on %s" --#~ msgstr "Ponga su dedo meñique izquierdo en %s" -- --#~ msgid "Swipe your left little finger on %s" --#~ msgstr "Pase su dedo meñique izquierdo sobre %s" -- --#~ msgid "Place your right thumb on %s" --#~ msgstr "Ponga su pulgar derecho en %s" -- --#~ msgid "Swipe your right thumb on %s" --#~ msgstr "Pase su pulgar derecho sobre %s" -- --#~ msgid "Place your right index finger on %s" --#~ msgstr "Ponga su dedo índice derecho en %s" -- --#~ msgid "Swipe your right index finger on %s" --#~ msgstr "Pase su dedo índice derecho sobre %s" -- --#~ msgid "Place your right middle finger on %s" --#~ msgstr "Ponga su dedo corazón derecho en %s" -- --#~ msgid "Swipe your right middle finger on %s" --#~ msgstr "Pase su dedo corazón derecho sobre %s" -- --#~ msgid "Place your right ring finger on %s" --#~ msgstr "Ponga su dedo anular derecho en %s" -- --#~ msgid "Swipe your right ring finger on %s" --#~ msgstr "Pase su dedo anular derecho sobre %s" -- --#~ msgid "Place your right little finger on %s" --#~ msgstr "Ponga su dedo meñique derecho en %s" -- --#~ msgid "Swipe your right little finger on %s" --#~ msgstr "Pase su dedo meñique derecho sobre %s" -- --#~ msgid "Place your finger on the reader again" --#~ msgstr "Ponga de nuevo su dedo en el lector" -- --#~ msgid "Swipe your finger again" --#~ msgstr "Pase su dedo de nuevo" -- --#~ msgid "Swipe was too short, try again" --#~ msgstr "La pasada fue demasiado corta, inténtelo de nuevo" -- --#~ msgid "Your finger was not centered, try swiping your finger again" --#~ msgstr "Su dedo no estaba centrado, intente pasar su dedo de nuevo" -- --#~ msgid "Remove your finger, and try swiping your finger again" --#~ msgstr "Quite su dedo e intente pasar su dedo de nuevo" -- --#~ msgid "No Image" --#~ msgstr "Sin imagen" -- --#~ msgid "Images" --#~ msgstr "Imágenes" -- --#~ msgid "All Files" --#~ msgstr "Todos los archivos" -- --#~ msgid "" --#~ "There was an error while trying to get the addressbook information\n" --#~ "Evolution Data Server can't handle the protocol" --#~ msgstr "" --#~ "Hubo un error al intentar obtener la información de la libreta de " --#~ "direcciones\n" --#~ "Evolution Data Server no puede manipular el protocolo" -- --#~ msgid "Unable to open address book" --#~ msgstr "Imposible abrir la libreta de direcciones" -- --#~ msgid "A_IM/iChat:" --#~ msgstr "A_IM/iChat:" -- --#~ msgid "A_ssistant:" --#~ msgstr "_Secretario/a:" -- --#~ msgid "C_ompany:" --#~ msgstr "C_ompañía:" -- --#~ msgid "Change Passwo_rd..." --#~ msgstr "Cambiar _contraseña…" -- --#~ msgid "Ci_ty:" --#~ msgstr "_Ciudad:" -- --#~ msgid "Cou_ntry:" --#~ msgstr "_País:" -- --#~ msgid "Disable _Fingerprint Login..." --#~ msgstr "Desactivar el inicio de sesión con _huella..." -- --#~ msgid "Email" --#~ msgstr "Correo-e" -- --#~ msgid "Enable _Fingerprint Login..." --#~ msgstr "Activar el inicio de sesión con _huella..." -- --#~ msgid "Hom_e:" --#~ msgstr "_Domicilio:" -- --#~ msgid "IC_Q:" --#~ msgstr "IC_Q:" -- --#~ msgid "Instant Messaging" --#~ msgstr "Mensajería instantánea" -- --#~ msgid "M_SN:" --#~ msgstr "M_SN:" -- --#~ msgid "P.O. _box:" --#~ msgstr "A_pdo. de correos:" -- --#~ msgid "P._O. box:" --#~ msgstr "_Apdo. de correos:" -- --#~ msgid "State/Pro_vince:" --#~ msgstr "Estado/Pro_vincia:" -- --#~ msgid "User name:" --#~ msgstr "Usuario:" -- --#~ msgid "Web _log:" --#~ msgstr "_Diario web:" -- --#~ msgid "Wor_k:" --#~ msgstr "_Trabajo:" -- --#~ msgid "Work" --#~ msgstr "Trabajo" -- --#~ msgid "Work _fax:" --#~ msgstr "_Fax del trabajo:" -- --#~ msgid "ZIP/_Postal code:" --#~ msgstr "ZIP/_Código postal:" -- --#~ msgid "_Home page:" --#~ msgstr "Página _personal:" -- --#~ msgid "_Home:" --#~ msgstr "_Domicilio:" -- --#~ msgid "_State/Province:" --#~ msgstr "E_stado/Provincia:" -- --#~ msgid "_Work:" --#~ msgstr "_Trabajo:" -- --#~ msgid "_XMPP:" --#~ msgstr "_XMPP:" -- --#~ msgid "_ZIP/Postal code:" --#~ msgstr "_ZIP/Código postal:" -- --#~ msgid "Swipe finger on reader" --#~ msgstr "Pase el dedo sobre el lector" -- --#~ msgid "Place finger on reader" --#~ msgstr "Ponga el dedo en el lector" -- --#~ msgid "Child exited unexpectedly" --#~ msgstr "El hijo salió inesperadamente" -- --#~ msgid "Could not shutdown backend_stdin IO channel: %s" --#~ msgstr "No es posible apagar el canal de E/S backend_stdin: %s" -- --#~ msgid "Could not shutdown backend_stdout IO channel: %s" --#~ msgstr "No es posible apagar el canal de E/S backend_stdout: %s" -- --#~ msgid "System error: %s." --#~ msgstr "Error del sistema: %s." -- --#~ msgid "Unable to launch %s: %s" --#~ msgstr "No se puede lanzar %s: %s" -- --#~ msgid "Unable to launch backend" --#~ msgstr "Imposible lanzar el backend" -- --#~ msgid "A system error has occurred" --#~ msgstr "Ha ocurrido un error del sistema" -- --#~ msgid "Checking password..." --#~ msgstr "Comprobando contraseña…" -- --#~ msgid "Click Change password to change your password." --#~ msgstr "Pulse en Cambiar contraseña para cambiar su contraseña." -- --#~ msgid "" --#~ "Please type your password again in the Retype new password field." --#~ msgstr "" --#~ "Por favor, teclee la contraseña de nuevo en el campo Teclee la " --#~ "contraseña nueva otra vez." -- --#~ msgid "The two passwords are not equal." --#~ msgstr "Las dos contraseñas no son iguales." -- --#~ msgid "Change your password" --#~ msgstr "Cambiar su contraseña" -- --#~ msgid "" --#~ "To change your password, enter your current password in the field below " --#~ "and click Authenticate.\n" --#~ "After you have authenticated, enter your new password, retype it for " --#~ "verification and click Change password." --#~ msgstr "" --#~ "Para cambiar su contraseña, introduzca su contraseña actual en el campo " --#~ "de abajo y pulse Autenticar.\n" --#~ "Después de haberse autenticado, introduzca su contraseña nueva, " --#~ "reescríbala para verificación y pulse Cambiar contraseña." -- --#~ msgid "Font may be too large" --#~ msgstr "La tipografía quizá sea demasiado grande" -- --#~ msgid "" --#~ "The font selected is %d point large, and may make it difficult to " --#~ "effectively use the computer. It is recommended that you select a size " --#~ "smaller than %d." --#~ msgid_plural "" --#~ "The font selected is %d points large, and may make it difficult to " --#~ "effectively use the computer. It is recommended that you select a size " --#~ "smaller than %d." --#~ msgstr[0] "" --#~ "La tipografía seleccionada es %d punto de grande, y puede hacer difícil " --#~ "usar el equipo. Se recomienda que seleccione un tamaño menor de %d." --#~ msgstr[1] "" --#~ "La tipografía seleccionada es %d puntos de grande, y puede hacer difícil " --#~ "usar el equipo. Se recomienda que seleccione un tamaño menor de %d." -- --#~ msgid "" --#~ "The font selected is %d point large, and may make it difficult to " --#~ "effectively use the computer. It is recommended that you select a " --#~ "smaller sized font." --#~ msgid_plural "" --#~ "The font selected is %d points large, and may make it difficult to " --#~ "effectively use the computer. It is recommended that you select a smaller " --#~ "sized font." --#~ msgstr[0] "" --#~ "La tipografía seleccionada es %d punto de grande, y puede hacer difícil " --#~ "usar el equipo. Se recomienda que seleccione una tipografía de tamaño " --#~ "menor." --#~ msgstr[1] "" --#~ "La tipografía seleccionada es %d puntos de grande, y puede hacer difícil " --#~ "usar el equipo. Se recomienda que seleccione una tipografía de tamaño " --#~ "menor." -- --#~ msgid "Use previous font" --#~ msgstr "Usar la tipografía anterior" -- --#~ msgid "Use selected font" --#~ msgstr "Usar la tipografía seleccionada" -- --#~ msgid "Specify the filename of a theme to install" --#~ msgstr "Especifique el nombre de archivo del tema a instalar" -- --#~ msgid "" --#~ "Specify the name of the page to show (theme|background|fonts|interface)" --#~ msgstr "" --#~ "Especifique el nombre de la página para mostrar (theme|background|fonts|" --#~ "interface)" -- --#~ msgid "[WALLPAPER...]" --#~ msgstr "[Fondo…]" -- --#~ msgid "" --#~ "This theme will not look as intended because the required GTK+ theme " --#~ "engine '%s' is not installed." --#~ msgstr "" --#~ "Este tema no se mostrará como se pretende porque el motor de temas GTK+ " --#~ "necesario «%s» no está instalado." -- --#~ msgid "Apply Background" --#~ msgstr "Aplicar fondo" -- --#~ msgid "Apply Font" --#~ msgstr "Aplicar tipografía" -- --#~ msgid "Revert Font" --#~ msgstr "Revertir la tipografía" -- --#~ msgid "" --#~ "The current theme suggests a background and a font. Also, the last " --#~ "applied font suggestion can be reverted." --#~ msgstr "" --#~ "El tema actual sugiere un fondo y una tipografía. Además, se puede " --#~ "revertir la última sugerencia de tipografía aplicada." -- --#~ msgid "" --#~ "The current theme suggests a background. Also, the last applied font " --#~ "suggestion can be reverted." --#~ msgstr "" --#~ "El tema actual sugiere un fondo. Además, se puede revertir la última " --#~ "sugerencia de tipografía aplicada." -- --#~ msgid "The current theme suggests a background and a font." --#~ msgstr "El tema actual sugiere un fondo y una tipografía." -- --#~ msgid "" --#~ "The current theme suggests a font. Also, the last applied font suggestion " --#~ "can be reverted." --#~ msgstr "" --#~ "El tema actual sugiere una tipografía. Además, se puede revertir la " --#~ "última sugerencia de tipografía aplicada." -- --#~ msgid "The current theme suggests a background." --#~ msgstr "El tema actual sugiere un fondo." -- --#~ msgid "The last applied font suggestion can be reverted." --#~ msgstr "Se puede revertir la última sugerencia de tipografía aplicada." -- --#~ msgid "The current theme suggests a font." --#~ msgstr "El tema actual sugiere una tipografía." -- --#~ msgid "Appearance Preferences" --#~ msgstr "Preferencias de la apariencia" -- --#~ msgid "Best _shapes" --#~ msgstr "Mejores _formas" -- --#~ msgid "Best co_ntrast" --#~ msgstr "Mejor co_ntraste" -- --#~ msgid "C_ustomize..." --#~ msgstr "_Personalizar…" -- --#~ msgid "Changing your cursor theme takes effect the next time you log in." --#~ msgstr "" --#~ "El cambio del tema de cursor no tendrá efecto hasta que salga e inicie " --#~ "sesión nuevamente." -- --#~ msgid "Controls" --#~ msgstr "Controles" -- --#~ msgid "Customize Theme" --#~ msgstr "Personalizar tema" -- --#~ msgid "D_etails..." --#~ msgstr "_Detalles…" -- --#~ msgid "Des_ktop font:" --#~ msgstr "Tipografía para el _escritorio:" -- --#~ msgid "Font Rendering Details" --#~ msgstr "Detalles del renderizado de la tipografía" -- --#~ msgid "Get more backgrounds online" --#~ msgstr "Obtener más fondos en línea" -- --#~ msgid "Get more themes online" --#~ msgstr "Obtener más temas en línea" -- --#~ msgid "Gra_yscale" --#~ msgstr "Escala de g_rises" -- --#~ msgid "Icons" --#~ msgstr "Iconos" -- --#~ msgid "Icons only" --#~ msgstr "Sólo iconos" -- --#~ msgid "N_one" --#~ msgstr "Ningun_o" -- --#~ msgid "Open a dialog to specify the color" --#~ msgstr "Abre un diálogo para especificar el color" -- --#~ msgid "R_esolution:" --#~ msgstr "R_esolución:" -- --#~ msgid "Save Theme As..." --#~ msgstr "Guardar tema como…" -- --#~ msgid "Save _As..." --#~ msgstr "Guardar _como…" -- --#~ msgid "Sub_pixel (LCDs)" --#~ msgstr "Sub_píxel (LCD)" -- --#~ msgid "Sub_pixel smoothing (LCDs)" --#~ msgstr "Suavizado de sub_píxel (LCD)" -- --#~ msgid "Subpixel Order" --#~ msgstr "Orden del subpíxel" -- --#~ msgid "Text" --#~ msgstr "Texto" -- --#~ msgid "Text below items" --#~ msgstr "Texto debajo de los iconos" -- --#~ msgid "Text beside items" --#~ msgstr "Texto junto a los iconos" -- --#~ msgid "Text only" --#~ msgstr "Sólo texto" -- --#~ msgid "The current controls theme does not support color schemes." --#~ msgstr "El tema actual de controles no soporta esquemas de colores." -- --#~ msgid "Theme" --#~ msgstr "Tema" -- --#~ msgid "VB_GR" --#~ msgstr "VB_GR" -- --#~ msgid "_BGR" --#~ msgstr "_BGR" -- --#~ msgid "_Document font:" --#~ msgstr "Tipografía para los _documentos:" -- --#~ msgid "_Fixed width font:" --#~ msgstr "Tipografía de ancho _fijo:" -- --#~ msgid "_Monochrome" --#~ msgstr "_Monocromo" -- --#~ msgid "_None" --#~ msgstr "_Ninguno" -- --#~ msgid "_RGB" --#~ msgstr "_RGB" -- --#~ msgid "_Reset to Defaults" --#~ msgstr "_Restablecer valores predeterminados" -- --#~ msgid "_Selected items:" --#~ msgstr "Elementos _seleccionados:" -- --#~ msgid "_Size:" --#~ msgstr "_Tamaño:" -- --#~ msgid "_Slight" --#~ msgstr "Le_ve" -- --#~ msgid "_Style:" --#~ msgstr "E_stilo:" -- --#~ msgid "_Tooltips:" --#~ msgstr "_Consejos:" -- --#~ msgid "_VRGB" --#~ msgstr "_VRGB" -- --#~ msgid "_Window title font:" --#~ msgstr "Tipografía del título de la _ventana:" -- --#~ msgid "_Windows:" --#~ msgstr "_Ventanas:" -- --#~ msgid "dots per inch" --#~ msgstr "puntos por pulgada" -- --#~ msgid "Appearance" --#~ msgstr "Apariencia" -- --#~ msgid "Customize the look of the desktop" --#~ msgstr "Personalice la apariencia del escritorio" -- --#~ msgid "Installs themes packages for various parts of the desktop" --#~ msgstr "Instala paquetes de temas para varias partes del escritorio" -- --#~ msgid "Theme Installer" --#~ msgstr "Instalador de temas" -- --#~ msgid "Gnome Theme Package" --#~ msgstr "Paquete de tema GNOME" -- --#~ msgid "Cannot install theme" --#~ msgstr "No se puede instalar el tema" -- --#~ msgid "The %s utility is not installed." --#~ msgstr "La utilidad %s no está instalada." -- --#~ msgid "There was a problem while extracting the theme." --#~ msgstr "Hubo un problema al extraer el tema." -- --#~ msgid "There was an error installing the selected file" --#~ msgstr "Hubo un error al instalar el archivo seleccionado" -- --#~ msgid "\"%s\" does not appear to be a valid theme." --#~ msgstr "«%s» no parece ser un tema válido." -- --#~ msgid "" --#~ "\"%s\" does not appear to be a valid theme. It may be a theme engine " --#~ "which you need to compile." --#~ msgstr "" --#~ "«%s» no parece ser un tema válido. Puede ser un motor de temas que debe " --#~ "compilar." -- --#~ msgid "Installation for theme \"%s\" failed." --#~ msgstr "La instalación del tema «%s» falló." -- --#~ msgid "The theme \"%s\" has been installed." --#~ msgstr "Se ha instalado el tema «%s»." -- --#~ msgid "Would you like to apply it now, or keep your current theme?" --#~ msgstr "¿Desea aplicarlo ahora, o mantener su tema actual?" -- --#~ msgid "Keep Current Theme" --#~ msgstr "Mantener el tema actual" -- --#~ msgid "Apply New Theme" --#~ msgstr "Aplicar el nuevo tema" -- --#~ msgid "GNOME Theme %s correctly installed" --#~ msgstr "El tema de GNOME %s se instaló correctamente" -- --#~ msgid "New themes have been successfully installed." --#~ msgstr "Los nuevos temas se han instalado con éxito." -- --#~ msgid "No theme file location specified to install" --#~ msgstr "" --#~ "No se ha especificado ninguna ubicación del archivo del tema para instalar" -- --#~ msgid "" --#~ "Insufficient permissions to install the theme in:\n" --#~ "%s" --#~ msgstr "" --#~ "Permisos insuficientes para instalar el tema en:\n" --#~ "%s" -- --#~ msgid "Select Theme" --#~ msgstr "Seleccionar un tema" -- --#~ msgid "Theme Packages" --#~ msgstr "Paquetes de temas" -- --#~ msgid "Theme name must be present" --#~ msgstr "El nombre del tema debe estar presente" -- --#~ msgid "The theme already exists. Would you like to replace it?" --#~ msgstr "El tema ya existe. ¿Quiere reemplazarlo?" -- --#~ msgid "_Overwrite" --#~ msgstr "_Sobrescribir" -- --#~ msgid "Would you like to delete this theme?" --#~ msgstr "¿Quiere eliminar este tema?" -- --#~ msgid "Could not install theme engine" --#~ msgstr "No se pudo instalar el motor del tema" -- --#~ msgid "" --#~ "Unable to start the settings manager 'gnome-settings-daemon'.\n" --#~ "Without the GNOME settings manager running, some preferences may not take " --#~ "effect. This could indicate a problem with DBus, or a non-GNOME (e.g. " --#~ "KDE) settings manager may already be active and conflicting with the " --#~ "GNOME settings manager." --#~ msgstr "" --#~ "No se puede iniciar el gestor de configuración «gnome-settings-daemon».\n" --#~ "Si el gestor de configuración de GNOME no se está ejecutando, es posible " --#~ "que algunas de las preferencias no surtan efecto. Esto puede ser el " --#~ "síntoma de un problema con DBus o que un gestor de configuración que no " --#~ "es de GNOME (por ejemplo KDE) ya esté activo y en conflicto con el gestor " --#~ "de configuración de GNOME." -- --#~ msgid "There was an error displaying help: %s" --#~ msgstr "Hubo un error al mostrar la ayuda: %s" -- --#~ msgid "Copying file: %u of %u" --#~ msgstr "Copiando archivo: %u de %u" -- --#~ msgid "Copying '%s'" --#~ msgstr "Copiando «%s»" -- --#~ msgid "Copying files" --#~ msgstr "Copiando archivos" -- --#~ msgid "Parent Window" --#~ msgstr "Ventana raíz" -- --#~ msgid "Parent window of the dialog" --#~ msgstr "Ventana raíz del diálogo" -- --#~ msgid "From URI" --#~ msgstr "Desde la URI" -- --#~ msgid "URI currently transferring from" --#~ msgstr "Transfiriendo desde la URI" -- --#~ msgid "To URI" --#~ msgstr "A la URI" -- --#~ msgid "URI currently transferring to" --#~ msgstr "Transfiriendo a la URI" -- --#~ msgid "Fraction completed" --#~ msgstr "Fracción completada" -- --#~ msgid "Fraction of transfer currently completed" --#~ msgstr "Fracción de la transferencia actualmente completada" -- --#~ msgid "Current URI index" --#~ msgstr "Índice URI actual" -- --#~ msgid "Current URI index - starts from 1" --#~ msgstr "Índice URI actual - comienza desde 1" -- --#~ msgid "Total URIs" --#~ msgstr "Total de URI" -- --#~ msgid "Total number of URIs" --#~ msgstr "Número total de URI" -- --#~ msgid "File '%s' already exists. Do you want to overwrite it?" --#~ msgstr "El archivo «%s» ya existe. ¿Quiere sobrescribirlo?" -- --#~ msgid "_Skip" --#~ msgstr "_Saltar" -- --#~ msgid "Overwrite _All" --#~ msgstr "Sobrescribir _todo" -- --#~ msgid "Default Pointer - Current" --#~ msgstr "Puntero predeterminado - Actual" -- --#~ msgid "White Pointer" --#~ msgstr "Puntero blanco" -- --#~ msgid "White Pointer - Current" --#~ msgstr "Puntero blanco - Actual" -- --#~ msgid "Large Pointer" --#~ msgstr "Puntero grande" -- --#~ msgid "Large Pointer - Current" --#~ msgstr "Puntero grande - Actual" -- --#~ msgid "Large White Pointer - Current" --#~ msgstr "Puntero blanco grande - Actual" -- --#~ msgid "" --#~ "This theme will not look as intended because the required GTK+ theme '%s' " --#~ "is not installed." --#~ msgstr "" --#~ "Este tema no se mostrará como se pretende porque el el tema GTK+ " --#~ "necesario «%s» no está instalado." -- --#~ msgid "" --#~ "This theme will not look as intended because the required window manager " --#~ "theme '%s' is not installed." --#~ msgstr "" --#~ "Este tema no se mostrará como se pretende porque el tema del gestor de " --#~ "ventanas necesario «%s» no está instalado." -- --#~ msgid "" --#~ "This theme will not look as intended because the required icon theme '%s' " --#~ "is not installed." --#~ msgstr "" --#~ "Este tema no se mostrará como se pretende porque el tema de iconos " --#~ "necesario «%s» no está instalado." -- --#~ msgid "Window manager \"%s\" has not registered a configuration tool\n" --#~ msgstr "" --#~ "El gestor de ventanas «%s» no ha registrado una herramienta de " --#~ "configuración\n" -- --#~ msgid "Maximize Vertically" --#~ msgstr "Maximizar verticalmente" -- --#~ msgid "Maximize Horizontally" --#~ msgstr "Maximizar horizontalmente" -- --#~ msgid "Accessible Lo_gin" --#~ msgstr "_Inicio de sesión accesible" -- --#~ msgid "Assistive Technologies" --#~ msgstr "Tecnologías de asistencia" -- --#~ msgid "Assistive Technologies Preferences" --#~ msgstr "Preferencias de las tecnologías de asistencia" -- --#~ msgid "" --#~ "Changes to enable assistive technologies will not take effect until your " --#~ "next log in." --#~ msgstr "" --#~ "Los cambios para activar las tecnologías de asistencia no tendrán efecto " --#~ "hasta que salga e inicie sesión nuevamente." -- --#~ msgid "Close and _Log Out" --#~ msgstr "Cerrar y de_sconectarse" -- --#~ msgid "Jump to Preferred Applications dialog" --#~ msgstr "Saltar al diálogo de Aplicaciones preferidas" -- --#~ msgid "Jump to the Accessible Login dialog" --#~ msgstr "Saltar al diálogo de Inicio de sesión accesible" -- --#~ msgid "Jump to the Keyboard Accessibility dialog" --#~ msgstr "Saltar al diálogo de Accesibilidad del teclado" -- --#~ msgid "Jump to the Mouse Accessibility dialog" --#~ msgstr "Saltar al diálogo de Accesibilidad del ratón" -- --#~ msgid "_Enable assistive technologies" --#~ msgstr "_Activar las tecnologías de asistencia" -- --#~ msgid "_Mouse Accessibility" --#~ msgstr "Accesibilidad del _ratón" -- --#~ msgid "_Preferred Applications" --#~ msgstr "Aplicaciones _preferidas" -- --#~ msgid "Choose which accessibility features to enable when you log in" --#~ msgstr "" --#~ "Elija qué características de accesibilidad activar al iniciar sesión" -- --#~ msgid "Monitor Preferences" --#~ msgstr "Preferencias del monitor" -- --#~ msgid "" --#~ "Specify the name of the page to show (internet|multimedia|system|a11y)" --#~ msgstr "" --#~ "Especifique el nombre de la página para mostrar (internet|multimedia|" --#~ "system|a11y)" -- --#~ msgid "" --#~ "Just apply settings and quit (compatibility only; now handled by daemon)" --#~ msgstr "" --#~ "Tan sólo aplicar la configuración y salir (sólo por compatibilidad; " --#~ "manipulado ahora por un demonio)" -- --#~ msgid "Start the page with the typing break settings showing" --#~ msgstr "" --#~ "Iniciar la página mostrando la configuración del descanso de escritura" -- --#~ msgid "Start the page with the accessibility settings showing" --#~ msgstr "Iniciar la página mostrando la configuración de accesibilidad" -- --#~ msgid "- GNOME Keyboard Preferences" --#~ msgstr "- Preferencias del teclado de GNOME" -- --#~ msgid "Specify the name of the page to show (general|accessibility)" --#~ msgstr "" --#~ "Especifique el nombre de la página para mostrar (general|accessibility)" -- --#~ msgid "- GNOME Mouse Preferences" --#~ msgstr "- Preferencias del ratón de GNOME" -- --#~ msgid "Cannot start the preferences application for your window manager" --#~ msgstr "" --#~ "No se puede iniciar la aplicación de preferencias para su gestor de " --#~ "ventanas" -- --#~ msgid "_Alt" --#~ msgstr "_Alt" -- --#~ msgid "H_yper" --#~ msgstr "_Hiper" -- --#~ msgid "S_uper (or \"Windows logo\")" --#~ msgstr "_Super (o «Logo de Windows»)" -- --#~ msgid "_Meta" --#~ msgstr "_Meta" -- --#~ msgid "Movement Key" --#~ msgstr "Tecla de movimiento" -- --#~ msgid "Titlebar Action" --#~ msgstr "Acción de la barra de título" -- --#~ msgid "To move a window, press-and-hold this key then grab the window:" --#~ msgstr "" --#~ "Para mover una ventana, mantenga pulsada esta tecla y luego arrastre la " --#~ "ventana:" -- --#~ msgid "Window Preferences" --#~ msgstr "Preferencias de ventanas" -- --#~ msgid "Window Selection" --#~ msgstr "Selección de ventana" -- --#~ msgid "_Double-click titlebar to perform this action:" --#~ msgstr "" --#~ "Pulse _dos veces sobre la barra del título de la ventana para realizar " --#~ "esta acción:" -- --#~ msgid "_Interval before raising:" --#~ msgstr "_Intervalo antes de elevar:" -- --#~ msgid "_Raise selected windows after an interval" --#~ msgstr "_Elevar las ventanas seleccionadas tras un intervalo" -- --#~ msgid "_Select windows when the mouse moves over them" --#~ msgstr "_Seleccionar las ventanas cuando el ratón se mueve sobre ellas" -- --#~ msgid "Set your window properties" --#~ msgstr "Establezca sus propiedades de ventana" -- --#~ msgid "Windows" --#~ msgstr "Ventanas" -- --#~ msgid "Hide on start (useful to preload the shell)" --#~ msgstr "Ocultar al inicio (útil para precargar la consola)" -- --#~ msgid "Filter" --#~ msgstr "Filtro" -- --#~ msgid "Groups" --#~ msgstr "Grupos" -- --#~ msgid "Common Tasks" --#~ msgstr "Tareas comunes" -- --#~ msgid "Your filter \"%s\" does not match any items." --#~ msgstr "Su filtro «%s» no coincide con ningún elemento." -- --#~ msgid "Upgrade" --#~ msgstr "Actualizar" -- --#~ msgid "Uninstall" --#~ msgstr "Desinstalar" -- --#~ msgid "Add to Favorites" --#~ msgstr "Añadir a favoritos" -- --#~ msgid "Remove from Startup Programs" --#~ msgstr "Quitar de los programas de inicio" -- --#~ msgid "Add to Startup Programs" --#~ msgstr "Añadir a los programas de inicio" -- --#~ msgid "New Spreadsheet" --#~ msgstr "Hoja de cálculo nueva" -- --#~ msgid "New Document" --#~ msgstr "Documento nuevo" -- --#~ msgid "Documents" --#~ msgstr "Documentos" -- --#~ msgid "Open" --#~ msgstr "Abrir" -- --#~ msgid "Rename..." --#~ msgstr "Renombrar…" -- --#~ msgid "Move to Trash" --#~ msgstr "Mover a la papelera" -- --#~ msgid "Delete" --#~ msgstr "Borrar" -- --#~ msgid "If you delete an item, it is permanently lost." --#~ msgstr "Si borra un elemento se pierde para siempre." -- --#~ msgid "Open in File Manager" --#~ msgstr "Abrir en el gestor de archivos" -- --#~ msgid "?" --#~ msgstr "?" -- --#~ msgid "Today %l:%M %p" --#~ msgstr "Hoy %H:%M" -- --#~ msgid "Yesterday %l:%M %p" --#~ msgstr "Ayer %H:%M" -- --#~ msgid "Find Now" --#~ msgstr "Buscar ahora" -- --#~ msgid "Open %s" --#~ msgstr "Abrir %s" -- --#~ msgid "Remove from System Items" --#~ msgstr "Quitar de los elementos del sistema" -- --#~ msgid "_Jabber:" --#~ msgstr "_Jabber:" -- --#~ msgid "Change screen resolution" --#~ msgstr "Cambie la resolución de la pantalla" -- --#~ msgid "Display Preferences" --#~ msgstr "Preferencias de la pantalla" -- --#~ msgid "Drag the monitors to set their place" --#~ msgstr "Arrastre los monitores para ajustar su ubicación" -- --#~ msgid "C_ontrol" --#~ msgstr "_Ctrl" -- --#~ msgid "The quick brown fox jumps over the lazy dog. 0123456789" --#~ msgstr "" --#~ "El veloz murciélago hindú comía feliz cardillo y kiwi. La cigüeña tocaba " --#~ "el saxofón detrás del palenque de paja. 0123456789" -- --#~ msgid "Menus and Toolbars" --#~ msgstr "Menús y barras de herramientas" -- --#~ msgid "Show _icons in menus" --#~ msgstr "Mostrar _iconos en los menús" -- --#~ msgid "Toolbar _button labels:" --#~ msgstr "Etiquetas de los _botones de la barra de herramientas:" -- --#~ msgid "_Editable menu shortcut keys" --#~ msgstr "Aceleradores de menú _editables" -- --#~ msgid "New windows get layout \"foobar\"" --#~ msgstr "Las nuevas ventanas obtienen la distribución «foobar»" -- --#~ msgid "Selected _layouts:" --#~ msgstr "Distribuciones _seleccionadas:" -- --#~ msgid "_Desktop Background" --#~ msgstr "_Fondo del escritorio" -- --#~ msgid "" --#~ "No matches found. \n" --#~ "\n" --#~ " Your filter \"%s\" does not match any items." --#~ msgstr "" --#~ "No se encontraron coincidencias.\n" --#~ "\n" --#~ " Su filtro «%s» no coincide con ningún elemento." -- --#~ msgid "Unknown login ID, the user database might be corrupted" --#~ msgstr "" --#~ "ID de inicio desconocido, la base de datos de usuarios quizá esté corrupta" -- --#~ msgid "Job" --#~ msgstr "Cargo" -- --#~ msgid "Web" --#~ msgstr "Web" -- --#~ msgid "Work" --#~ msgstr "Trabajo" -- --#~ msgid "Change your password" --#~ msgstr "Cambie su contraseña" -- --#~ msgid "Assistive Technologies" --#~ msgstr "Tecnologías de asistencia" -- --#~ msgid "Preferences" --#~ msgstr "Preferencias" -- --#~ msgid "_Desktop Background" --#~ msgstr "_Fondo del escritorio" -- --#~ msgid "Visual" --#~ msgstr "Visual" -- --#~ msgid "Bounce Keys" --#~ msgstr "Rechazo de teclas" -- --#~ msgid "General" --#~ msgstr "General" -- --#~ msgid "Fast" --#~ msgstr "Rápida" -- --#~ msgid "Long" --#~ msgstr "Largo" -- --#~ msgid "Short" --#~ msgstr "Corto" -- --#~ msgid "Slow" --#~ msgstr "Lenta" -- --#~ msgid "High" --#~ msgstr "Alta" -- --#~ msgid "Large" --#~ msgstr "Grande" -- --#~ msgid "Low" --#~ msgstr "Baja" -- --#~ msgid "Small" --#~ msgstr "Pequeño" -- --#~ msgid "Ignore Host List" --#~ msgstr "Lista de anfitriones ignorados" -- --#~ msgid "" --#~ "Left thumb\n" --#~ "Left middle finger\n" --#~ "Left ring finger\n" --#~ "Left little finger\n" --#~ "Right thumb\n" --#~ "Right middle finger\n" --#~ "Right ring finger\n" --#~ "Right little finger" --#~ msgstr "" --#~ "Pulgar izquierdo\n" --#~ "Dedo corazón izquierdo\n" --#~ "Dedo anular izquierdo\n" --#~ "Dedo meñique izquierdo\n" --#~ "Pulgar derecho\n" --#~ "Dedo corazón derecho\n" --#~ "Dedo anular derecho\n" --#~ "Dedo meñique derecho" -- --#~ msgid "C_ut" --#~ msgstr "Co_rtar" -- --#~ msgid "" --#~ "Solid color\n" --#~ "Horizontal gradient\n" --#~ "Vertical gradient" --#~ msgstr "" --#~ "Color sólido\n" --#~ "Degradado horizontal\n" --#~ "Degradado vertical" -- --#~ msgid "" --#~ "Text below items\n" --#~ "Text beside items\n" --#~ "Icons only\n" --#~ "Text only" --#~ msgstr "" --#~ "Texto debajo de los iconos\n" --#~ "Texto junto a los iconos\n" --#~ "Sólo iconos\n" --#~ "Sólo texto" -- --#~ msgid "" --#~ "Tiled\n" --#~ "Zoom\n" --#~ "Centered\n" --#~ "Scaled\n" --#~ "Fill screen" --#~ msgstr "" --#~ "Mosaico\n" --#~ "Ampliación\n" --#~ "Centrado\n" --#~ "Escalado\n" --#~ "Rellenar la pantalla" -- --#~ msgid "_New" --#~ msgstr "_Nuevo" -- --#~ msgid "" --#~ "Normal\n" --#~ "Left\n" --#~ "Right\n" --#~ "Upside-down\n" --#~ msgstr "" --#~ "Normal\n" --#~ "Izquierda\n" --#~ "Derecha\n" --#~ "Hacia abajo\n" -- --#~ msgid "Could not apply the selected configuration" --#~ msgstr "No se pudo aplicar la configuración seleccionada" -- --#~ msgid "/_About" --#~ msgstr "/Acerca _de" -- --#~ msgid "Could not get org.gnome.SettingsDaemon.XRANDR" --#~ msgstr "No se pudo obtener org.gnome.SettingsDaemin.XRANDR" -- --#~ msgid "_Command:" --#~ msgstr "_Comando:" -- --#~ msgid "Screen Resolution" --#~ msgstr "Resolución de la pantalla" -- --#~ msgid "_Wallpaper" --#~ msgstr "_Tapiz" -- --#~ msgid "ALSA - Advanced Linux Sound Architecture" --#~ msgstr "ALSA - Advanced Linux Sound Architecture" -- --#~ msgid "Artsd - ART Sound Daemon" --#~ msgstr "Artsd - ART Sound Daemon" -- --#~ msgid "ESD - Enlightened Sound Daemon" --#~ msgstr "ESD - Enlightened Sound Daemon" -- --#~ msgid "OSS - Open Sound System" --#~ msgstr "OSS - Open Sound System" -- --#~ msgid "PulseAudio Sound Server" --#~ msgstr "PulseAudio Sound Server" -- --#~ msgid "Silence" --#~ msgstr "Silencio" -- --#~ msgid "- GNOME Sound Preferences" --#~ msgstr "- Preferencias de sonido de GNOME" -- --#~ msgid "Alerts and Sound Effects" --#~ msgstr "Alertas y efectos de sonido" -- --#~ msgid "Audio Conferencing" --#~ msgstr "Conferencia de sonido" -- --#~ msgid "Default Mixer Tracks" --#~ msgstr "Pistas predeterminadas del mezclador" -- --#~ msgid "Music and Movies" --#~ msgstr "Música y películas" -- --#~ msgid "Click OK to finish." --#~ msgstr "Pulse «Aceptar» para terminar." -- --#~ msgid "Play _sound effects when buttons are clicked" --#~ msgstr "Reproducir efectos de _sonido al pulsar botones" -- --#~ msgid "" --#~ "Select the device and tracks to control with the keyboard. Use the Shift " --#~ "and Control keys to select multiple tracks if required." --#~ msgstr "" --#~ "Seleccione el dispositivo y las pistas a controlar con el teclado. Use " --#~ "las teclas Mayús. y Control para seleccionar múltiples pistas si es " --#~ "necesario." -- --#~ msgid "So_und playback:" --#~ msgstr "Reprod_ucción de sonido:" -- --#~ msgid "Sou_nd capture:" --#~ msgstr "Captura de so_nido:" -- --#~ msgid "Testing Pipeline" --#~ msgstr "Probar pipeline" -- --#~ msgid "_Play alerts and sound effects" --#~ msgstr "_Reproducir alertas y efectos de sonido" -- --#~ msgid "_Sound playback:" --#~ msgstr "Reproducción de _sonido:" -- --#~ msgid "Custom..." --#~ msgstr "Personalizado…" -- --#~ msgid "Monitor Resolution Settings" --#~ msgstr "Ajustes de resolución del monitor" -- --#~ msgid "" --#~ "The X server does not support the XRANDR extension. Runtime resolution " --#~ "changes to the display size are not available." --#~ msgstr "" --#~ "El servidor X no soporta la extensión XRANDR. Los cambios inmediatos " --#~ "sobre el tamaño de la pantalla no están disponibles." -- --#~ msgid "Retrieve and store legacy settings" --#~ msgstr "Obtener y almacenar configuración heredada" -- --#~ msgid "Enable support for GNOME assistive technologies at login" --#~ msgstr "" --#~ "Active el soporte para las tecnologías de asistencia de GNOME durante el " --#~ "inicio" -- --#~ msgid "New accelerator..." --#~ msgstr "Combinación nueva…" -- --#~ msgid "Unexpected attribute '%s' for element '%s'" --#~ msgstr "Atributo «%s» inesperado para el elemento «%s»" -- --#~ msgid "Attribute '%s' of element '%s' not found" --#~ msgstr "No se encontró el atributo «%s» del elemento «%s»" -- --#~ msgid "Unexpected tag '%s', tag '%s' expected" --#~ msgstr "Etiqueta «%s» inesperada, se esperaba la etiqueta «%s»" -- --#~ msgid "Unexpected tag '%s' inside '%s'" --#~ msgstr "Etiqueta «%s» inesperada dentro de «%s»" -- --#~ msgid "No valid bookmark file found in data dirs" --#~ msgstr "" --#~ "No se encontró un archivo de marcadores válido en los directorios de datos" -- --#~ msgid "No bookmark found for URI '%s'" --#~ msgstr "No se encontró un marcador para la URI «%s»" -- --#~ msgid "No MIME type defined in the bookmark for URI '%s'" --#~ msgstr "No hay un tipo MIME definido en el marcador para la URI «%s»" -- --#~ msgid "No private flag has been defined in bookmark for URI '%s'" --#~ msgstr "" --#~ "No se ha definido una bandera privada en el marcador para la URI «%s»" -- --#~ msgid "No groups set in bookmark for URI '%s'" --#~ msgstr "No hay establecido ningún grupo para el URI «%s»" -- --#~ msgid "No application with name '%s' registered a bookmark for '%s'" --#~ msgstr "" --#~ "Ninguna aplicación con el nombre «%s» registró un marcador para «%s»" -diff -urN gnome-control-center-3.14.5/po/fr.po gnome-control-center-3.14.5_localized/po/fr.po ---- gnome-control-center-3.14.5/po/fr.po 2015-04-30 17:35:48.000000000 +0530 -+++ gnome-control-center-3.14.5_localized/po/fr.po 2016-03-12 12:08:45.044000000 +0530 -@@ -1,7 +1,7 @@ - # French translation of gnome-control-center. - # Copyright (C) 1998-2012 Free Software Foundation, Inc. - # This file is under the same license as the gnome-control-center package. --# -+# - # Vincent Renardias , 1998-1999. - # Fabrice Bellet , 1999. - # Thibaut Cousin , 1999. -@@ -28,22 +28,22 @@ - # Alain Lojewski , 2011-2014. - # Julien Hardelin , 2013. - # Alexandre Franke , 2013. --# -+# Sam Friedmann , 2016. #zanata -+# pnemade , 2016. #zanata - msgid "" - msgstr "" --"Project-Id-Version: gnome-control-center HEAD\n" --"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" --"control-center&keywords=I18N+L10N&component=general\n" --"POT-Creation-Date: 2014-09-22 06:31+0000\n" --"PO-Revision-Date: 2014-08-24 23:30+0200\n" --"Last-Translator: Alain Lojewski \n" --"Language-Team: français \n" --"Language: FR\n" -+"Project-Id-Version: PACKAGE VERSION\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2016-02-10 09:57+0530\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"PO-Revision-Date: 2016-03-03 12:51+0000\n" -+"Last-Translator: Sam Friedmann \n" -+"Language-Team: français \n" -+"Language: fr\n" - "Plural-Forms: nplurals=2; plural=n>1;\n" --"X-Generator: Poedit 1.5.4\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../panels/background/background.ui.h:1 - #: ../panels/background/gnome-background-panel.desktop.in.in.h:1 -@@ -131,8 +131,8 @@ - #: ../panels/background/cc-background-chooser-dialog.c:583 - #: ../panels/color/cc-color-panel.c:224 ../panels/color/cc-color-panel.c:961 - #: ../panels/color/color.ui.h:29 ../panels/common/language-chooser.ui.h:3 --#: ../panels/display/cc-display-panel.c:1537 --#: ../panels/display/cc-display-panel.c:1976 -+#: ../panels/display/cc-display-panel.c:1540 -+#: ../panels/display/cc-display-panel.c:1985 - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:2 - #: ../panels/network/connection-editor/connection-editor.ui.h:1 - #: ../panels/network/connection-editor/vpn-helpers.c:245 -@@ -140,7 +140,7 @@ - #: ../panels/network/net-device-wifi.c:1247 - #: ../panels/network/net-device-wifi.c:1440 - #: ../panels/network/network-wifi.ui.h:1 --#: ../panels/printers/cc-printers-panel.c:1947 -+#: ../panels/printers/cc-printers-panel.c:1949 - #: ../panels/printers/new-printer-dialog.ui.h:2 - #: ../panels/privacy/cc-privacy-panel.c:468 - #: ../panels/region/format-chooser.ui.h:3 -@@ -152,7 +152,8 @@ - #: ../panels/user-accounts/um-fingerprint-dialog.c:264 - #: ../panels/user-accounts/um-photo-dialog.c:95 - #: ../panels/user-accounts/um-photo-dialog.c:222 --#: ../panels/user-accounts/um-user-panel.c:513 -+#: ../panels/user-accounts/um-user-panel.c:708 -+#: ../panels/user-accounts/um-user-panel.c:726 - msgid "_Cancel" - msgstr "_Annuler" - -@@ -162,18 +163,18 @@ - msgid "Select" - msgstr "Sélectionner" - --#: ../panels/background/cc-background-item.c:197 -+#: ../panels/background/cc-background-item.c:203 - msgid "multiple sizes" - msgstr "plusieurs tailles" - - #. translators: 100 × 100px - #. * Note that this is not an "x", but U+00D7 MULTIPLICATION SIGN --#: ../panels/background/cc-background-item.c:201 -+#: ../panels/background/cc-background-item.c:207 - #, c-format - msgid "%d × %d" - msgstr "%d × %d" - --#: ../panels/background/cc-background-item.c:327 -+#: ../panels/background/cc-background-item.c:333 - msgid "No Desktop Background" - msgstr "Aucun arrière-plan de bureau" - -@@ -678,16 +679,16 @@ - - #: ../panels/color/color.ui.h:26 - msgid "" --"You may find these instructions on how to use the profile on GNU/Linux, Apple OS X and Microsoft Windows systems useful." -+"You may find these instructions on how to use the profile on GNU/Linux, Apple OS X and Microsoft Windows systems useful." - msgstr "" - "Ici, vous pouvez consulter d'utiles conseils sur l'utilisation d'un profil " - "GNU/Linux, Apple OS X et Microsoft Windows." - - #: ../panels/color/color.ui.h:27 --#: ../panels/user-accounts/um-fingerprint-dialog.c:730 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:732 - msgid "Summary" - msgstr "Résumé" - -@@ -1095,23 +1096,23 @@ - msgid "To change time or date settings, you need to authenticate." - msgstr "Vous devez vous authentifier pour modifier la date ou l'heure." - --#: ../panels/display/cc-display-panel.c:487 -+#: ../panels/display/cc-display-panel.c:490 - msgid "Lid Closed" - msgstr "Écran rabattu" - - #. translators: "Mirrored" describes when both displays show the same view --#: ../panels/display/cc-display-panel.c:490 -+#: ../panels/display/cc-display-panel.c:493 - msgid "Mirrored" - msgstr "Clonés" - --#: ../panels/display/cc-display-panel.c:492 --#: ../panels/display/cc-display-panel.c:2145 -+#: ../panels/display/cc-display-panel.c:495 -+#: ../panels/display/cc-display-panel.c:2155 - msgid "Primary" - msgstr "Principal" - --#: ../panels/display/cc-display-panel.c:494 -+#: ../panels/display/cc-display-panel.c:497 - #: ../panels/notifications/cc-notifications-panel.c:185 --#: ../panels/power/cc-power-panel.c:1684 ../panels/power/cc-power-panel.c:1695 -+#: ../panels/power/cc-power-panel.c:1704 ../panels/power/cc-power-panel.c:1715 - #: ../panels/privacy/cc-privacy-panel.c:84 - #: ../panels/privacy/cc-privacy-panel.c:124 - #: ../panels/universal-access/cc-ua-panel.c:257 -@@ -1121,82 +1122,83 @@ - msgid "Off" - msgstr "Désactivé" - --#: ../panels/display/cc-display-panel.c:497 -+#: ../panels/display/cc-display-panel.c:500 - msgid "Secondary" - msgstr "Secondaire" - --#: ../panels/display/cc-display-panel.c:1533 -+#: ../panels/display/cc-display-panel.c:1536 - msgid "Arrange Combined Displays" - msgstr "Organiser les écrans associés" - --#: ../panels/display/cc-display-panel.c:1539 --#: ../panels/display/cc-display-panel.c:1979 -+#: ../panels/display/cc-display-panel.c:1542 -+#: ../panels/display/cc-display-panel.c:1988 - #: ../panels/network/connection-editor/connection-editor.ui.h:2 - #: ../panels/network/network-wifi.ui.h:2 - msgid "_Apply" - msgstr "_Appliquer" - --#: ../panels/display/cc-display-panel.c:1560 -+#: ../panels/display/cc-display-panel.c:1563 - msgid "Drag displays to rearrange them" - msgstr "Faites glisser les écrans pour les réorganiser" - --#: ../panels/display/cc-display-panel.c:2081 -+#: ../panels/display/cc-display-panel.c:2090 - msgid "Size" - msgstr "Taille" - - #. aspect ratio --#: ../panels/display/cc-display-panel.c:2094 -+#: ../panels/display/cc-display-panel.c:2103 - msgid "Aspect Ratio" - msgstr "Proportion" - --#: ../panels/display/cc-display-panel.c:2115 -+#: ../panels/display/cc-display-panel.c:2125 - #: ../panels/printers/pp-options-dialog.c:85 - msgid "Resolution" - msgstr "Résolution" - --#: ../panels/display/cc-display-panel.c:2146 -+#: ../panels/display/cc-display-panel.c:2156 - msgid "Show the top bar and Activities Overview on this display" - msgstr "" --"Afficher la barre supérieure et la vue d'ensemble des activités sur cet écran" -+"Afficher la barre supérieure et la vue d'ensemble des activités sur cet " -+"écran" - --#: ../panels/display/cc-display-panel.c:2152 -+#: ../panels/display/cc-display-panel.c:2162 - msgid "Secondary Display" - msgstr "Écran secondaire" - --#: ../panels/display/cc-display-panel.c:2153 -+#: ../panels/display/cc-display-panel.c:2163 - msgid "Join this display with another to create an extra workspace" - msgstr "Accoller cet écran à un autre pour élargir l'espace de travail" - --#: ../panels/display/cc-display-panel.c:2160 -+#: ../panels/display/cc-display-panel.c:2170 - msgid "Presentation" - msgstr "Présentation" - --#: ../panels/display/cc-display-panel.c:2161 -+#: ../panels/display/cc-display-panel.c:2171 - msgid "Show slideshows and media only" - msgstr "N'afficher que les diaporamas et les médias" - - #. translators: "Mirror" describes when both displays show the same view --#: ../panels/display/cc-display-panel.c:2166 -+#: ../panels/display/cc-display-panel.c:2176 - msgid "Mirror" - msgstr "Cloner" - --#: ../panels/display/cc-display-panel.c:2167 -+#: ../panels/display/cc-display-panel.c:2177 - msgid "Show your existing view on both displays" - msgstr "Afficher votre vue actuelle sur les deux écrans" - --#: ../panels/display/cc-display-panel.c:2173 -+#: ../panels/display/cc-display-panel.c:2183 - msgid "Turn Off" - msgstr "Éteindre" - --#: ../panels/display/cc-display-panel.c:2174 -+#: ../panels/display/cc-display-panel.c:2184 - msgid "Don't use this display" - msgstr "Ne pas utiliser cet écran" - --#: ../panels/display/cc-display-panel.c:2383 -+#: ../panels/display/cc-display-panel.c:2388 - msgid "Could not get screen information" - msgstr "Impossible d'obtenir les informations concernant l'écran" - --#: ../panels/display/cc-display-panel.c:2414 -+#: ../panels/display/cc-display-panel.c:2419 - msgid "_Arrange Combined Displays" - msgstr "_Organiser les écrans associés" - -@@ -1223,50 +1225,46 @@ - msgid "Unknown" - msgstr "Inconnu" - --#: ../panels/info/cc-info-panel.c:472 --#, c-format --msgid "%s %d-bit" --msgstr "%s %d bits" -- --#: ../panels/info/cc-info-panel.c:474 -+#. translators: This is the the type of OS architecture, eg: "64-bit" or "32-bit" -+#: ../panels/info/cc-info-panel.c:513 - #, c-format - msgid "%d-bit" - msgstr "%d bits" - --#: ../panels/info/cc-info-panel.c:1154 -+#: ../panels/info/cc-info-panel.c:1191 - msgid "Ask what to do" - msgstr "Demander que faire" - --#: ../panels/info/cc-info-panel.c:1158 -+#: ../panels/info/cc-info-panel.c:1195 - msgid "Do nothing" - msgstr "Ne rien faire" - --#: ../panels/info/cc-info-panel.c:1162 -+#: ../panels/info/cc-info-panel.c:1199 - msgid "Open folder" - msgstr "Ouvrir le dossier" - --#: ../panels/info/cc-info-panel.c:1253 -+#: ../panels/info/cc-info-panel.c:1290 - msgid "Other Media" - msgstr "Autres médias" - --#: ../panels/info/cc-info-panel.c:1284 -+#: ../panels/info/cc-info-panel.c:1321 - msgid "Select an application for audio CDs" - msgstr "Sélectionnez une application pour vos CD audio" - --#: ../panels/info/cc-info-panel.c:1285 -+#: ../panels/info/cc-info-panel.c:1322 - msgid "Select an application for video DVDs" - msgstr "Sélectionnez une application pour vos DVD audio" - --#: ../panels/info/cc-info-panel.c:1286 -+#: ../panels/info/cc-info-panel.c:1323 - msgid "Select an application to run when a music player is connected" - msgstr "Sélectionnez une application à lancer lorsqu'un baladeur est connecté" - --#: ../panels/info/cc-info-panel.c:1287 -+#: ../panels/info/cc-info-panel.c:1324 - msgid "Select an application to run when a camera is connected" - msgstr "" - "Sélectionnez une application à lancer lorsqu'un appareil photo est connecté" - --#: ../panels/info/cc-info-panel.c:1288 -+#: ../panels/info/cc-info-panel.c:1325 - msgid "Select an application for software CDs" - msgstr "Sélectionnez une application pour les CD contenant des logiciels" - -@@ -1274,73 +1272,73 @@ - #. * strings, just here to fix capitalization of the English originals. - #. * If the shared-mime-info translation works for your language, - #. * simply leave these untranslated. --#. --#: ../panels/info/cc-info-panel.c:1300 -+#. -+#: ../panels/info/cc-info-panel.c:1337 - msgid "audio DVD" - msgstr "DVD audio" - --#: ../panels/info/cc-info-panel.c:1301 -+#: ../panels/info/cc-info-panel.c:1338 - msgid "blank Blu-ray disc" - msgstr "disque Blu-ray vierge" - --#: ../panels/info/cc-info-panel.c:1302 -+#: ../panels/info/cc-info-panel.c:1339 - msgid "blank CD disc" - msgstr "disque CD vierge" - --#: ../panels/info/cc-info-panel.c:1303 -+#: ../panels/info/cc-info-panel.c:1340 - msgid "blank DVD disc" - msgstr "disque DVD vierge" - --#: ../panels/info/cc-info-panel.c:1304 -+#: ../panels/info/cc-info-panel.c:1341 - msgid "blank HD DVD disc" - msgstr "disque HD DVD vierge" - --#: ../panels/info/cc-info-panel.c:1305 -+#: ../panels/info/cc-info-panel.c:1342 - msgid "Blu-ray video disc" - msgstr "disque vidéo Blu-ray" - --#: ../panels/info/cc-info-panel.c:1306 -+#: ../panels/info/cc-info-panel.c:1343 - msgid "e-book reader" - msgstr "lecteur e-book" - --#: ../panels/info/cc-info-panel.c:1307 -+#: ../panels/info/cc-info-panel.c:1344 - msgid "HD DVD video disc" - msgstr "disque vidéo HD DVD" - --#: ../panels/info/cc-info-panel.c:1308 -+#: ../panels/info/cc-info-panel.c:1345 - msgid "Picture CD" - msgstr "Picture CD" - --#: ../panels/info/cc-info-panel.c:1309 -+#: ../panels/info/cc-info-panel.c:1346 - msgid "Super Video CD" - msgstr "Super Vidéo CD" - --#: ../panels/info/cc-info-panel.c:1310 -+#: ../panels/info/cc-info-panel.c:1347 - msgid "Video CD" - msgstr "CD vidéo" - --#: ../panels/info/cc-info-panel.c:1311 -+#: ../panels/info/cc-info-panel.c:1348 - msgid "Windows software" - msgstr "Logiciels Windows" - --#: ../panels/info/cc-info-panel.c:1434 -+#: ../panels/info/cc-info-panel.c:1471 - #: ../panels/keyboard/keyboard-shortcuts.c:1932 - msgid "Section" - msgstr "Section" - --#: ../panels/info/cc-info-panel.c:1443 ../panels/info/info.ui.h:14 -+#: ../panels/info/cc-info-panel.c:1480 ../panels/info/info.ui.h:13 - msgid "Overview" - msgstr "Vue d'ensemble" - --#: ../panels/info/cc-info-panel.c:1449 ../panels/info/info.ui.h:21 -+#: ../panels/info/cc-info-panel.c:1486 ../panels/info/info.ui.h:20 - msgid "Default Applications" - msgstr "Applications par défaut" - --#: ../panels/info/cc-info-panel.c:1454 ../panels/info/info.ui.h:29 -+#: ../panels/info/cc-info-panel.c:1491 ../panels/info/info.ui.h:28 - msgid "Removable Media" - msgstr "Médias amovibles" - --#: ../panels/info/cc-info-panel.c:1479 -+#: ../panels/info/cc-info-panel.c:1516 - #, c-format - msgid "Version %s" - msgstr "Version %s" -@@ -1358,11 +1356,9 @@ - #. sure that you use the same "translation" for those keywords - #: ../panels/info/gnome-info-panel.desktop.in.in.h:4 - msgid "" --"device;system;information;memory;processor;version;default;application;" --"preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" -+"device;system;information;memory;processor;version;default;application;preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" - msgstr "" --"périphérique;système;information;mémoire;processeur;version;défaut;" --"application;préféré;cd;dvd;usb;audio;vidéo;disque;amovible;média;exécution " -+"périphérique;système;information;mémoire;processeur;version;défaut;application;préféré;cd;dvd;usb;audio;vidéo;disque;amovible;média;exécution " - "automatique;" - - #: ../panels/info/info.ui.h:1 -@@ -1389,80 +1385,79 @@ - msgid "Processor" - msgstr "Processeur" - --#. To translators: this field contains the distro name, version and type --#: ../panels/info/info.ui.h:8 --msgid "Base system" --msgstr "Distribution" -+#: ../panels/info/info.ui.h:7 -+msgid "OS Type" -+msgstr "Type de système d'exploitation" - --#: ../panels/info/info.ui.h:9 -+#: ../panels/info/info.ui.h:8 - msgid "Disk" - msgstr "Disque" - --#: ../panels/info/info.ui.h:10 -+#: ../panels/info/info.ui.h:9 - msgid "Calculating…" - msgstr "Calcul en cours…" - --#: ../panels/info/info.ui.h:11 -+#: ../panels/info/info.ui.h:10 - msgid "Graphics" - msgstr "Carte graphique" - --#: ../panels/info/info.ui.h:12 -+#: ../panels/info/info.ui.h:11 - msgid "Virtualization" - msgstr "Virtualisation" - --#: ../panels/info/info.ui.h:13 -+#: ../panels/info/info.ui.h:12 - msgid "Check for updates" - msgstr "Recherche de mises à jour" - --#: ../panels/info/info.ui.h:15 -+#: ../panels/info/info.ui.h:14 - msgid "_Web" - msgstr "Sites _Web" - --#: ../panels/info/info.ui.h:16 -+#: ../panels/info/info.ui.h:15 - msgid "_Mail" - msgstr "_Courriels" - --#: ../panels/info/info.ui.h:17 -+#: ../panels/info/info.ui.h:16 - msgid "_Calendar" - msgstr "_Calendrier" - --#: ../panels/info/info.ui.h:18 -+#: ../panels/info/info.ui.h:17 - msgid "M_usic" - msgstr "M_usique" - --#: ../panels/info/info.ui.h:19 -+#: ../panels/info/info.ui.h:18 - msgid "_Video" - msgstr "_Vidéos" - --#: ../panels/info/info.ui.h:20 -+#: ../panels/info/info.ui.h:19 - msgid "_Photos" - msgstr "_Photos" - --#: ../panels/info/info.ui.h:22 -+#: ../panels/info/info.ui.h:21 - msgid "Select how media should be handled" - msgstr "Choisissez comment les médias doivent être gérés" - --#: ../panels/info/info.ui.h:23 -+#: ../panels/info/info.ui.h:22 - msgid "CD _audio" - msgstr "_CD audio" - --#: ../panels/info/info.ui.h:24 -+#: ../panels/info/info.ui.h:23 - msgid "_DVD video" - msgstr "_DVD vidéo" - --#: ../panels/info/info.ui.h:25 -+#: ../panels/info/info.ui.h:24 - msgid "_Music player" - msgstr "_Baladeur" - --#: ../panels/info/info.ui.h:26 -+#: ../panels/info/info.ui.h:25 - msgid "_Software" - msgstr "_Logiciels" - --#: ../panels/info/info.ui.h:27 -+#: ../panels/info/info.ui.h:26 - msgid "_Other Media…" - msgstr "_Autres médias…" - --#: ../panels/info/info.ui.h:28 -+#: ../panels/info/info.ui.h:27 - msgid "_Never prompt or start programs on media insertion" - msgstr "_Ne jamais demander ou lancer de programme à l'insertion de médias" - -@@ -1532,7 +1527,7 @@ - msgid "Launch help browser" - msgstr "Démarrer le navigateur d'aide" - --#: ../panels/keyboard/01-launchers.xml.in.h:3 ../shell/cc-window.c:1601 -+#: ../panels/keyboard/01-launchers.xml.in.h:3 ../shell/cc-window.c:1604 - #: ../shell/gnome-control-center.desktop.in.in.h:1 - msgid "Settings" - msgstr "Paramètres" -@@ -1656,7 +1651,7 @@ - #. Translators: This key is also known as 'third level - #. * chooser'. AltGr is often used for this purpose. See - #. * https://live.gnome.org/Design/SystemSettings/RegionAndLanguage --#. -+#. - #: ../panels/keyboard/cc-keyboard-option.c:354 - msgid "Alternative Characters Key" - msgstr "Touche de caractères alternatifs" -@@ -1664,7 +1659,7 @@ - #. Translators: The Compose key is used to initiate key - #. * sequences that are combined to form a single character. - #. * See http://en.wikipedia.org/wiki/Compose_key --#. -+#. - #: ../panels/keyboard/cc-keyboard-option.c:363 - msgid "Compose Key" - msgstr "Touche de composition" -@@ -1804,19 +1799,19 @@ - - #: ../panels/keyboard/keyboard-shortcuts.c:1387 - #, c-format --msgid "" --"The shortcut \"%s\" is already used for\n" -+msgid "The shortcut \"%s\" is already used for\n" - "\"%s\"" --msgstr "" --"Le raccourci clavier « %s » est déjà utilisé pour \n" -+msgstr "Le raccourci clavier « %s » est déjà utilisé pour \n" - "« %s »" - - #: ../panels/keyboard/keyboard-shortcuts.c:1392 - #, c-format - msgid "" - "If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be disabled." -+"" - msgstr "" - "Si vous réassignez le raccourci à « %s », le raccourci « %s » sera désactivé." -+"" - - #: ../panels/keyboard/keyboard-shortcuts.c:1398 - msgid "_Reassign" -@@ -1987,26 +1982,26 @@ - - #. TRANSLATORS: this is to disable the radio hardware in the - #. * network panel --#: ../panels/network/cc-network-panel.c:366 -+#: ../panels/network/cc-network-panel.c:369 - msgid "Air_plane Mode" - msgstr "Mode a_vion" - --#: ../panels/network/cc-network-panel.c:974 -+#: ../panels/network/cc-network-panel.c:978 - msgid "Network proxy" - msgstr "Serveur mandataire" - - #. Translators: this is the title of the connection details - #. * window for vpn connections, it is also used to display - #. * vpn connections in the device list. --#. --#: ../panels/network/cc-network-panel.c:1153 ../panels/network/net-vpn.c:278 -+#. -+#: ../panels/network/cc-network-panel.c:1155 ../panels/network/net-vpn.c:278 - #: ../panels/network/net-vpn.c:431 - #, c-format - msgid "%s VPN" - msgstr "VPN %s" - - #. TRANSLATORS: the user is running a NM that is not API compatible --#: ../panels/network/cc-network-panel.c:1298 -+#: ../panels/network/cc-network-panel.c:1302 - msgid "The system network services are not compatible with this version." - msgstr "" - "Les services réseau du système ne sont pas compatibles avec cette version." -@@ -2170,7 +2165,7 @@ - #: ../panels/network/connection-editor/ce-page-ip4.c:465 - #: ../panels/network/connection-editor/ce-page-ip6.c:205 - #: ../panels/network/connection-editor/ce-page-ip6.c:473 --#: ../panels/network/network-vpn.ui.h:3 -+#: ../panels/network/network-vpn.ui.h:2 - msgid "Gateway" - msgstr "Passerelle" - -@@ -2222,7 +2217,7 @@ - msgid "Link-Local Only" - msgstr "Réseau local seulement" - --#: ../panels/network/connection-editor/ce-page-ip4.c:953 -+#: ../panels/network/connection-editor/ce-page-ip4.c:967 - #: ../panels/network/network-wifi.ui.h:48 - msgid "IPv4" - msgstr "IPv4" -@@ -2244,7 +2239,7 @@ - msgid "Automatic, DHCP only" - msgstr "Automatique, DHCP seulement" - --#: ../panels/network/connection-editor/ce-page-ip6.c:919 -+#: ../panels/network/connection-editor/ce-page-ip6.c:937 - #: ../panels/network/network-wifi.ui.h:49 - msgid "IPv6" - msgstr "IPv6" -@@ -2412,7 +2407,7 @@ - msgstr "_Zone du pare-feu" - - #: ../panels/network/connection-editor/firewall-helpers.c:48 --#: ../panels/network/connection-editor/firewall-helpers.c:112 -+#: ../panels/network/connection-editor/firewall-helpers.c:113 - msgctxt "Firewall zone" - msgid "Default" - msgstr "Par défaut" -@@ -2468,7 +2463,6 @@ - msgstr "Nouveau profil" - - #: ../panels/network/connection-editor/net-connection-editor.c:577 --#: ../panels/network/network.ui.h:1 ../panels/network/network-vpn.ui.h:1 - msgid "VPN" - msgstr "VPN" - -@@ -2554,7 +2548,7 @@ - msgstr "Sélectionner le fichier à importer" - - #: ../panels/network/connection-editor/vpn-helpers.c:246 --#: ../panels/printers/cc-printers-panel.c:1948 -+#: ../panels/printers/cc-printers-panel.c:1950 - #: ../panels/sharing/cc-sharing-panel.c:492 - #: ../panels/user-accounts/um-photo-dialog.c:223 - msgid "_Open" -@@ -2581,8 +2575,7 @@ - - #: ../panels/network/connection-editor/vpn-helpers.c:336 - #, c-format --msgid "" --"The VPN connection '%s' could not be exported to %s.\n" -+msgid "The VPN connection '%s' could not be exported to %s.\n" - "\n" - "Error: %s." - msgstr "" -@@ -2629,11 +2622,11 @@ - #. Translators: those are keywords for the network control-center panel - #: ../panels/network/gnome-network-panel.desktop.in.in.h:4 - msgid "" --"Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;" --"vlan;bridge;bond;DNS;" -+"Network;Wireless;Wi-" -+"Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;vlan;bridge;bond;DNS;" - msgstr "" --"Réseau;Sans fil;Wi-Fi;Wifi;IP;LAN;Mandataire;WAN;Large bande;Modem;Bluetooth;" --"vpn;vlan;pont;lien;liée;DNS;" -+"Réseau;Sans fil;Wi-Fi;Wifi;IP;LAN;Mandataire;WAN;Large " -+"bande;Modem;Bluetooth;vpn;vlan;pont;lien;liée;DNS;" - - #: ../panels/network/net-device-bond.c:77 - msgid "Bond slaves" -@@ -2680,7 +2673,7 @@ - #. * details window for ethernet, if there is only a single - #. * profile. It is also used to display ethernet in the - #. * device list. --#. -+#. - #: ../panels/network/net-device-ethernet.c:288 - #: ../panels/network/network-ethernet.ui.h:1 - #: ../panels/network/network-simple.ui.h:1 -@@ -2692,7 +2685,7 @@ - #: ../panels/network/network-ethernet.ui.h:3 - #: ../panels/network/network-mobile.ui.h:8 - #: ../panels/network/network-simple.ui.h:8 --#: ../panels/network/network-vpn.ui.h:8 -+#: ../panels/network/network-vpn.ui.h:7 - msgid "Options…" - msgstr "Options…" - -@@ -2763,7 +2756,7 @@ - - #: ../panels/network/net-device-wifi.c:1749 - #: ../panels/region/input-options.ui.h:2 ../panels/wacom/button-mapping.ui.h:2 --#: ../panels/wacom/cc-wacom-page.c:533 -+#: ../panels/wacom/cc-wacom-page.c:525 - #: ../panels/wacom/gnome-wacom-properties.ui.h:4 - msgid "_Close" - msgstr "_Fermer" -@@ -2806,17 +2799,17 @@ - msgid "Provider" - msgstr "Fournisseur" - --#: ../panels/network/network-proxy.ui.h:1 ../panels/network/network.ui.h:2 -+#: ../panels/network/network-proxy.ui.h:1 - msgctxt "proxy method" - msgid "None" - msgstr "Aucune" - --#: ../panels/network/network-proxy.ui.h:2 ../panels/network/network.ui.h:3 -+#: ../panels/network/network-proxy.ui.h:2 - msgctxt "proxy method" - msgid "Manual" - msgstr "Manuelle" - --#: ../panels/network/network-proxy.ui.h:3 ../panels/network/network.ui.h:4 -+#: ../panels/network/network-proxy.ui.h:3 - msgctxt "proxy method" - msgid "Automatic" - msgstr "Automatique" -@@ -2869,32 +2862,32 @@ - msgid "Turn device off" - msgstr "Éteindre le périphérique" - --#: ../panels/network/network.ui.h:5 -+#: ../panels/network/network.ui.h:1 - msgid "Add Device" - msgstr "Ajouter le périphérique" - --#: ../panels/network/network.ui.h:6 -+#: ../panels/network/network.ui.h:2 - msgid "Remove Device" - msgstr "Retirer le périphérique" - --#: ../panels/network/network-vpn.ui.h:2 -+#: ../panels/network/network-vpn.ui.h:1 - msgid "VPN Type" - msgstr "Type de VPN" - --#: ../panels/network/network-vpn.ui.h:4 -+#: ../panels/network/network-vpn.ui.h:3 - msgid "Group Name" - msgstr "Nom du groupe" - --#: ../panels/network/network-vpn.ui.h:5 -+#: ../panels/network/network-vpn.ui.h:4 - msgid "Group Password" - msgstr "Mot de passe du groupe" - --#: ../panels/network/network-vpn.ui.h:6 -+#: ../panels/network/network-vpn.ui.h:5 - #: ../panels/printers/authentication-dialog.ui.h:4 - msgid "Username" - msgstr "Nom d'utilisateur" - --#: ../panels/network/network-vpn.ui.h:7 -+#: ../panels/network/network-vpn.ui.h:6 - msgid "Turn VPN connection off" - msgstr "Fermer la connexion VPN" - -@@ -3616,7 +3609,7 @@ - msgstr "Afficher les informations si l'écran est verrouillé" - - #: ../panels/notifications/cc-notifications-panel.c:185 --#: ../panels/power/cc-power-panel.c:1690 ../panels/power/cc-power-panel.c:1697 -+#: ../panels/power/cc-power-panel.c:1710 ../panels/power/cc-power-panel.c:1717 - #: ../panels/privacy/cc-privacy-panel.c:84 - #: ../panels/privacy/cc-privacy-panel.c:124 - #: ../panels/universal-access/cc-ua-panel.c:257 -@@ -3720,11 +3713,10 @@ - #. For ReadItLater and Pocket, see http://en.wikipedia.org/wiki/Pocket_(application) - #: ../panels/online-accounts/gnome-online-accounts-panel.desktop.in.in.h:4 - msgid "" --"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;" --"Kerberos;IMAP;SMTP;Pocket;ReadItLater;" -+"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;Kerberos;IMAP;SMTP;Pocket;ReadItLater;" - msgstr "" --"Google;Facebook;Twitter;Yahoo;Web;En ligne;Discussion;Agenda;Courriel;Email;" --"Contact;ownCloud;Kerberos;IMAP;SMTP;Pocket;ReadItLater;" -+"Google;Facebook;Twitter;Yahoo;Web;En " -+"ligne;Discussion;Agenda;Courriel;Email;Contact;ownCloud;Kerberos;IMAP;SMTP;Pocket;ReadItLater;" - - #: ../panels/online-accounts/online-accounts.ui.h:1 - msgid "No online accounts configured" -@@ -3746,18 +3738,18 @@ - "L'ajout d'un compte permet à vos applications de s'y connecter pour accéder " - "à Documents, Courriel, Contacts, Agenda, Discussion et davantage." - --#: ../panels/power/cc-power-panel.c:183 -+#: ../panels/power/cc-power-panel.c:192 - msgid "Unknown time" - msgstr "Durée inconnue" - --#: ../panels/power/cc-power-panel.c:189 -+#: ../panels/power/cc-power-panel.c:198 - #, c-format - msgid "%i minute" - msgid_plural "%i minutes" - msgstr[0] "%i minute" - msgstr[1] "%i minutes" - --#: ../panels/power/cc-power-panel.c:201 -+#: ../panels/power/cc-power-panel.c:210 - #, c-format - msgid "%i hour" - msgid_plural "%i hours" -@@ -3766,226 +3758,226 @@ - - #. TRANSLATOR: "%i %s %i %s" are "%i hours %i minutes" - #. * Swap order with "%2$s %2$i %1$s %1$i if needed --#: ../panels/power/cc-power-panel.c:209 -+#: ../panels/power/cc-power-panel.c:218 - #, c-format - msgid "%i %s %i %s" - msgstr "%i %s %i %s" - --#: ../panels/power/cc-power-panel.c:210 -+#: ../panels/power/cc-power-panel.c:219 - msgid "hour" - msgid_plural "hours" - msgstr[0] "heure" - msgstr[1] "heures" - --#: ../panels/power/cc-power-panel.c:211 -+#: ../panels/power/cc-power-panel.c:220 - msgid "minute" - msgid_plural "minutes" - msgstr[0] "minute" - msgstr[1] "minutes" - - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" --#: ../panels/power/cc-power-panel.c:230 -+#: ../panels/power/cc-power-panel.c:239 - #, c-format - msgid "%s until fully charged" - msgstr "%s avant chargement complet" - - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" --#: ../panels/power/cc-power-panel.c:237 -+#: ../panels/power/cc-power-panel.c:246 - #, c-format - msgid "Caution: %s remaining" - msgstr "Attention : il reste %s" - - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" --#: ../panels/power/cc-power-panel.c:242 -+#: ../panels/power/cc-power-panel.c:251 - #, c-format - msgid "%s remaining" - msgstr "%s restant" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:247 ../panels/power/cc-power-panel.c:275 -+#: ../panels/power/cc-power-panel.c:256 ../panels/power/cc-power-panel.c:284 - msgid "Fully charged" - msgstr "Batterie pleine" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:251 ../panels/power/cc-power-panel.c:279 -+#: ../panels/power/cc-power-panel.c:260 ../panels/power/cc-power-panel.c:288 - msgid "Empty" - msgstr "Déchargée" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:266 -+#: ../panels/power/cc-power-panel.c:275 - msgid "Charging" - msgstr "En charge" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:271 -+#: ../panels/power/cc-power-panel.c:280 - msgid "Discharging" - msgstr "En décharge" - --#: ../panels/power/cc-power-panel.c:396 -+#: ../panels/power/cc-power-panel.c:405 - msgctxt "Battery name" - msgid "Main" - msgstr "Principale" - --#: ../panels/power/cc-power-panel.c:398 -+#: ../panels/power/cc-power-panel.c:407 - msgctxt "Battery name" - msgid "Extra" - msgstr "Secondaire" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:470 -+#: ../panels/power/cc-power-panel.c:479 - msgid "Wireless mouse" - msgstr "Souris sans fil" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:473 -+#: ../panels/power/cc-power-panel.c:482 - msgid "Wireless keyboard" - msgstr "Clavier sans fil" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:476 -+#: ../panels/power/cc-power-panel.c:485 - msgid "Uninterruptible power supply" - msgstr "Onduleur" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:479 -+#: ../panels/power/cc-power-panel.c:488 - msgid "Personal digital assistant" - msgstr "Assistant personnel" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:482 -+#: ../panels/power/cc-power-panel.c:491 - msgid "Cellphone" - msgstr "Téléphone portable" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:485 -+#: ../panels/power/cc-power-panel.c:494 - msgid "Media player" - msgstr "Lecteur multimédia" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:488 -+#: ../panels/power/cc-power-panel.c:497 - msgid "Tablet" - msgstr "Tablette" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:491 -+#: ../panels/power/cc-power-panel.c:500 - msgid "Computer" - msgstr "Ordinateur" - - #. TRANSLATORS: secondary battery, misc --#: ../panels/power/cc-power-panel.c:494 ../panels/power/cc-power-panel.c:717 --#: ../panels/power/cc-power-panel.c:2019 -+#: ../panels/power/cc-power-panel.c:503 ../panels/power/cc-power-panel.c:726 -+#: ../panels/power/cc-power-panel.c:2046 - msgid "Battery" - msgstr "Batterie" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:540 -+#: ../panels/power/cc-power-panel.c:549 - msgctxt "Battery power" - msgid "Charging" - msgstr "En charge" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:547 -+#: ../panels/power/cc-power-panel.c:556 - msgctxt "Battery power" - msgid "Caution" - msgstr "Attention" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:552 -+#: ../panels/power/cc-power-panel.c:561 - msgctxt "Battery power" - msgid "Low" - msgstr "Faible" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:557 -+#: ../panels/power/cc-power-panel.c:566 - msgctxt "Battery power" - msgid "Good" - msgstr "Bonne" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:562 -+#: ../panels/power/cc-power-panel.c:571 - msgctxt "Battery power" - msgid "Fully charged" - msgstr "Pleine charge" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:566 -+#: ../panels/power/cc-power-panel.c:575 - msgctxt "Battery power" - msgid "Empty" - msgstr "Déchargée" - --#: ../panels/power/cc-power-panel.c:715 -+#: ../panels/power/cc-power-panel.c:724 - msgid "Batteries" - msgstr "Batteries" - --#: ../panels/power/cc-power-panel.c:1117 -+#: ../panels/power/cc-power-panel.c:1126 - msgid "When _idle" - msgstr "Quand _inactif" - --#: ../panels/power/cc-power-panel.c:1445 -+#: ../panels/power/cc-power-panel.c:1454 - msgid "Power Saving" - msgstr "Économie d'énergie" - --#: ../panels/power/cc-power-panel.c:1473 -+#: ../panels/power/cc-power-panel.c:1489 - msgid "_Screen brightness" - msgstr "Luminosité de l'é_cran" - --#: ../panels/power/cc-power-panel.c:1479 -+#: ../panels/power/cc-power-panel.c:1495 - msgid "_Keyboard brightness" - msgstr "Luminosité du _clavier" - --#: ../panels/power/cc-power-panel.c:1489 -+#: ../panels/power/cc-power-panel.c:1505 - msgid "_Dim screen when inactive" - msgstr "A_ssombrir l'écran si inactif" - --#: ../panels/power/cc-power-panel.c:1514 -+#: ../panels/power/cc-power-panel.c:1530 - msgid "_Blank screen" - msgstr "Écran _noir" - --#: ../panels/power/cc-power-panel.c:1551 -+#: ../panels/power/cc-power-panel.c:1567 - msgid "_Wi-Fi" - msgstr "_Wi-Fi" - --#: ../panels/power/cc-power-panel.c:1556 -+#: ../panels/power/cc-power-panel.c:1572 - msgid "Turns off wireless devices" - msgstr "Éteint les périphériques sans fil" - --#: ../panels/power/cc-power-panel.c:1581 -+#: ../panels/power/cc-power-panel.c:1597 - msgid "_Mobile broadband" - msgstr "_Mobile à large bande" - --#: ../panels/power/cc-power-panel.c:1586 -+#: ../panels/power/cc-power-panel.c:1602 - msgid "Turns off mobile broadband (3G, 4G, WiMax, etc.) devices" - msgstr "Éteint les périphériques mobiles à large bande (3G, 4G, WiMax, etc.)" - --#: ../panels/power/cc-power-panel.c:1635 -+#: ../panels/power/cc-power-panel.c:1652 - msgid "_Bluetooth" - msgstr "_Bluetooth" - --#: ../panels/power/cc-power-panel.c:1686 -+#: ../panels/power/cc-power-panel.c:1706 - msgid "When on battery power" - msgstr "Quand sur batterie" - --#: ../panels/power/cc-power-panel.c:1688 -+#: ../panels/power/cc-power-panel.c:1708 - msgid "When plugged in" - msgstr "Quand le câble est branché" - --#: ../panels/power/cc-power-panel.c:1818 -+#: ../panels/power/cc-power-panel.c:1838 - msgid "Suspend & Power Off" - msgstr "Mettre en veille et éteindre " - --#: ../panels/power/cc-power-panel.c:1851 -+#: ../panels/power/cc-power-panel.c:1878 - msgid "_Automatic suspend" - msgstr "Mise en veille _automatique" - --#: ../panels/power/cc-power-panel.c:1875 -+#: ../panels/power/cc-power-panel.c:1902 - msgid "When battery power is _critical" - msgstr "Quand la réserve d'énergie est à un niveau _critique" - --#: ../panels/power/cc-power-panel.c:1930 -+#: ../panels/power/cc-power-panel.c:1957 - msgid "Power Off" - msgstr "Éteindre" - --#: ../panels/power/cc-power-panel.c:2066 -+#: ../panels/power/cc-power-panel.c:2100 - msgid "Devices" - msgstr "Périphériques" - -@@ -4004,8 +3996,7 @@ - msgid "" - "Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;" - msgstr "" --"Énergie;Alimentation;Veille;Suspension;Hibernation;Batterie;Luminosité;" --"Assombrir;Noir;Écran;DPMS;Inactif;" -+"Énergie;Alimentation;Veille;Suspension;Hibernation;Batterie;Luminosité;Assombrir;Noir;Écran;DPMS;Inactif;" - - #: ../panels/power/power.ui.h:1 - msgid "Hibernate" -@@ -4246,15 +4237,15 @@ - msgstr[1] "%u actives" - - #. Translators: Addition of the new printer failed. --#: ../panels/printers/cc-printers-panel.c:1777 -+#: ../panels/printers/cc-printers-panel.c:1779 - msgid "Failed to add new printer." - msgstr "L'ajout de la nouvelle imprimante a échoué." - --#: ../panels/printers/cc-printers-panel.c:1944 -+#: ../panels/printers/cc-printers-panel.c:1946 - msgid "Select PPD File" - msgstr "Sélectionnez un fichier PPD" - --#: ../panels/printers/cc-printers-panel.c:1953 -+#: ../panels/printers/cc-printers-panel.c:1955 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" -@@ -4262,30 +4253,30 @@ - "Fichiers de description PostScript de l'imprimante (*.ppd, *.PPD, *.ppd.gz, " - "*.PPD.gz, *.PPD.GZ)" - --#: ../panels/printers/cc-printers-panel.c:2258 -+#: ../panels/printers/cc-printers-panel.c:2260 - msgid "No suitable driver found" - msgstr "Aucun pilote adéquat trouvé" - --#: ../panels/printers/cc-printers-panel.c:2327 -+#: ../panels/printers/cc-printers-panel.c:2329 - msgid "Searching for preferred drivers…" - msgstr "Recherche de pilotes préférés…" - --#: ../panels/printers/cc-printers-panel.c:2342 -+#: ../panels/printers/cc-printers-panel.c:2344 - msgid "Select from database…" - msgstr "Sélectionner à partir de la base de données…" - --#: ../panels/printers/cc-printers-panel.c:2351 -+#: ../panels/printers/cc-printers-panel.c:2353 - msgid "Provide PPD File…" - msgstr "Fournir le fichier PPD…" - - #. Translators: Name of job which makes printer to print test page --#: ../panels/printers/cc-printers-panel.c:2502 --#: ../panels/printers/cc-printers-panel.c:2525 -+#: ../panels/printers/cc-printers-panel.c:2504 -+#: ../panels/printers/cc-printers-panel.c:2527 - msgid "Test page" - msgstr "Page de test" - - #. Translators: The XML file containing user interface can not be loaded --#: ../panels/printers/cc-printers-panel.c:2933 -+#: ../panels/printers/cc-printers-panel.c:2935 - #, c-format - msgid "Could not load ui: %s" - msgstr "Impossible de charger l'interface utilisateur : %s" -@@ -4703,8 +4694,7 @@ - - #. Translators: The CUPS server is not running (we can not connect to it). - #: ../panels/printers/printers.ui.h:26 --msgid "" --"Sorry! The system printing service\n" -+msgid "Sorry! The system printing service\n" - "doesn't seem to be available." - msgstr "" - "Désolé ! Le service d'impression du système\n" -@@ -4763,11 +4753,9 @@ - #. Translators: those are keywords for the privacy control-center panel - #: ../panels/privacy/gnome-privacy-panel.desktop.in.in.h:4 - msgid "" --"screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;" --"network;identity;" -+"screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;network;identity;" - msgstr "" --"écran;verrouiller;verrouillage;diagnostique;plantage;privé;confidentiel;" --"récent;temporaire;tmp;index;nom;réseaux;identité;" -+"écran;verrouiller;verrouillage;diagnostique;plantage;privé;confidentiel;récent;temporaire;tmp;index;nom;réseaux;identité;" - - #: ../panels/privacy/privacy.ui.h:1 - msgid "Screen Turns Off" -@@ -4878,8 +4866,8 @@ - #: ../panels/privacy/privacy.ui.h:37 - msgid "" - "Sending us information about which software you use helps us provide you " --"with more accurate recommendations. It also helps us to improve our " --"software.\n" -+"with more accurate recommendations. It also helps us to improve our software." -+"\n" - "\n" - "All the information we collect is made anonymous, and we will never share " - "your data with third parties." -@@ -4924,36 +4912,36 @@ - msgid "No input sources found" - msgstr "Aucune source d'entrée trouvée" - --#: ../panels/region/cc-input-chooser.c:1076 -+#: ../panels/region/cc-input-chooser.c:1084 - msgctxt "Input Source" - msgid "Other" - msgstr "Autre" - --#: ../panels/region/cc-region-panel.c:239 --#: ../panels/user-accounts/um-user-panel.c:892 -+#: ../panels/region/cc-region-panel.c:243 -+#: ../panels/user-accounts/um-user-panel.c:1113 - msgid "Your session needs to be restarted for changes to take effect" - msgstr "" - "Vous devez redémarrer la session pour que les changements soient effectifs" - --#: ../panels/region/cc-region-panel.c:243 --#: ../panels/user-accounts/um-user-panel.c:896 -+#: ../panels/region/cc-region-panel.c:247 -+#: ../panels/user-accounts/um-user-panel.c:1117 - msgid "Restart Now" - msgstr "Redémarrer maintenant" - --#: ../panels/region/cc-region-panel.c:862 -+#: ../panels/region/cc-region-panel.c:867 - msgid "No input source selected" - msgstr "Aucune source d'entrée sélectionnée" - --#: ../panels/region/cc-region-panel.c:1092 -+#: ../panels/region/cc-region-panel.c:1097 - msgid "Sorry" - msgstr "Désolé" - --#: ../panels/region/cc-region-panel.c:1094 -+#: ../panels/region/cc-region-panel.c:1099 - msgid "Input methods can't be used on the login screen" - msgstr "" - "Les méthodes d'entrée ne peuvent pas être utilisées sur l'écran de connexion" - --#: ../panels/region/cc-region-panel.c:1731 -+#: ../panels/region/cc-region-panel.c:1739 - msgid "Login Screen" - msgstr "Écran de connexion" - -@@ -5090,7 +5078,7 @@ - msgid "_OK" - msgstr "_OK" - --#: ../panels/search/cc-search-panel.c:176 -+#: ../panels/search/cc-search-panel.c:177 - msgid "No applications found" - msgstr "Aucune application trouvée" - -@@ -5151,7 +5139,7 @@ - msgid "Choose a Folder" - msgstr "Choisir un dossier" - --#: ../panels/sharing/cc-sharing-panel.c:916 -+#: ../panels/sharing/cc-sharing-panel.c:917 - msgid "Copy" - msgstr "Copier" - -@@ -5166,11 +5154,10 @@ - #. Translators: those are keywords for the sharing control-center panel - #: ../panels/sharing/gnome-sharing-panel.desktop.in.in.h:4 - msgid "" --"share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;" --"pictures;photos;movies;server;renderer;" -+"share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;pictures;photos;movies;server;renderer;" - msgstr "" --"partage;partager;ssh;hôte;nom;distant;bureau;bluetooth;obex;media;audio;" --"vidéo;images;photos;films;serveur;renderer;moteur de rendu;" -+"partage;partager;ssh;hôte;nom;distant;bureau;bluetooth;obex;media;audio;vidéo;images;photos;films;serveur;renderer;moteur " -+"de rendu;" - - #: ../panels/sharing/org.gnome.controlcenter.remote-login-helper.policy.in.in.h:1 - msgid "Enable or disable remote login" -@@ -5182,13 +5169,13 @@ - "Authentification requise pour activer ou désactiver une connexion distante" - - #. Label --#: ../panels/sharing/cc-sharing-networks.c:299 -+#: ../panels/sharing/cc-sharing-networks.c:303 - msgid "No networks selected for sharing" - msgstr "Aucun réseau de partage n'est sélectionné" - --#. -+#. - #. * vim: sw=2 ts=8 cindent noai bs=2 --#. -+#. - #: ../panels/sharing/networks.ui.h:1 - msgid "Networks" - msgstr "Réseaux" -@@ -5244,8 +5231,8 @@ - "your current network using: dav://%s" - msgstr "" - "Le partage de fichiers personnels vous permet de partager votre Dossier " --"public avec les autres sur le réseau actuel en utilisant : dav://%s" -+"public avec les autres sur le réseau actuel en utilisant : dav://%s" - - #: ../panels/sharing/sharing.ui.h:13 - msgid "Require Password" -@@ -5309,7 +5296,8 @@ - #: ../panels/sound/data/gnome-sound-panel.desktop.in.in.h:2 - msgid "Change sound levels, inputs, outputs, and alert sounds" - msgstr "" --"Modifier les volumes sonores, les entrées, les sorties et les alertes sonores" -+"Modifier les volumes sonores, les entrées, les sorties et les alertes " -+"sonores" - - #. Translators: those are keywords for the sound control-center panel - #: ../panels/sound/data/gnome-sound-panel.desktop.in.in.h:4 -@@ -5427,65 +5415,65 @@ - msgid "Peak detect" - msgstr "Détecteur de pics" - --#: ../panels/sound/gvc-mixer-dialog.c:1509 --#: ../panels/sound/gvc-sound-theme-chooser.c:594 -+#: ../panels/sound/gvc-mixer-dialog.c:1516 -+#: ../panels/sound/gvc-sound-theme-chooser.c:564 - msgid "Name" - msgstr "Nom" - --#: ../panels/sound/gvc-mixer-dialog.c:1528 -+#: ../panels/sound/gvc-mixer-dialog.c:1535 - msgid "Device" - msgstr "Périphérique" - --#: ../panels/sound/gvc-mixer-dialog.c:1591 -+#: ../panels/sound/gvc-mixer-dialog.c:1598 - #, c-format - msgid "Speaker Testing for %s" - msgstr "Test de haut-parleur pour %s" - --#: ../panels/sound/gvc-mixer-dialog.c:1649 -+#: ../panels/sound/gvc-mixer-dialog.c:1656 - msgid "_Output volume:" - msgstr "V_olume de sortie :" - --#: ../panels/sound/gvc-mixer-dialog.c:1663 -+#: ../panels/sound/gvc-mixer-dialog.c:1670 - msgid "Output" - msgstr "Sortie" - --#: ../panels/sound/gvc-mixer-dialog.c:1668 -+#: ../panels/sound/gvc-mixer-dialog.c:1675 - msgid "C_hoose a device for sound output:" - msgstr "_Sélectionner un périphérique pour la sortie son :" - --#: ../panels/sound/gvc-mixer-dialog.c:1693 -+#: ../panels/sound/gvc-mixer-dialog.c:1700 - msgid "Settings for the selected device:" - msgstr "Paramètres du périphérique sélectionné :" - --#: ../panels/sound/gvc-mixer-dialog.c:1704 -+#: ../panels/sound/gvc-mixer-dialog.c:1711 - msgid "Input" - msgstr "Entrée" - --#: ../panels/sound/gvc-mixer-dialog.c:1711 -+#: ../panels/sound/gvc-mixer-dialog.c:1718 - msgid "_Input volume:" - msgstr "_Volume d'entrée :" - --#: ../panels/sound/gvc-mixer-dialog.c:1734 -+#: ../panels/sound/gvc-mixer-dialog.c:1741 - msgid "Input level:" - msgstr "Niveau d'entrée :" - --#: ../panels/sound/gvc-mixer-dialog.c:1762 -+#: ../panels/sound/gvc-mixer-dialog.c:1769 - msgid "C_hoose a device for sound input:" - msgstr "_Sélectionner un périphérique pour l'entrée son :" - --#: ../panels/sound/gvc-mixer-dialog.c:1789 -+#: ../panels/sound/gvc-mixer-dialog.c:1796 - msgid "Sound Effects" - msgstr "Effets sonores" - --#: ../panels/sound/gvc-mixer-dialog.c:1796 -+#: ../panels/sound/gvc-mixer-dialog.c:1803 - msgid "_Alert volume:" - msgstr "Volume des _alertes :" - --#: ../panels/sound/gvc-mixer-dialog.c:1809 -+#: ../panels/sound/gvc-mixer-dialog.c:1816 - msgid "Applications" - msgstr "Applications" - --#: ../panels/sound/gvc-mixer-dialog.c:1813 -+#: ../panels/sound/gvc-mixer-dialog.c:1820 - msgid "No application is currently playing or recording audio." - msgstr "Aucune application n'émet ou n'enregistre de son actuellement." - -@@ -5505,15 +5493,15 @@ - msgid "Testing event sound" - msgstr "Test d'un événement sonore" - --#: ../panels/sound/gvc-sound-theme-chooser.c:584 -+#: ../panels/sound/gvc-sound-theme-chooser.c:554 - msgid "Default" - msgstr "Par défaut" - --#: ../panels/sound/gvc-sound-theme-chooser.c:585 -+#: ../panels/sound/gvc-sound-theme-chooser.c:555 - msgid "From theme" - msgstr "Du thème" - --#: ../panels/sound/gvc-sound-theme-chooser.c:769 -+#: ../panels/sound/gvc-sound-theme-chooser.c:739 - msgid "C_hoose an alert sound:" - msgstr "C_hoisir une alerte sonore :" - -@@ -5541,12 +5529,11 @@ - #. Translators: those are keywords for the universal access control-center panel - #: ../panels/universal-access/gnome-universal-access-panel.desktop.in.in.h:4 - msgid "" --"Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;" --"AccessX;Sticky;Keys;Slow;Bounce;Mouse;" -+"Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;AccessX;Sticky;Keys;Slow;Bounce;Mouse;" - msgstr "" --"Clavier;Souris;lien;Accessibilité;Contraste;Zoom;Lecteur d'écran;texte;" --"police;taille;Touches rémanentes;Touches lentes;Rebonds de touches;Touches " --"de la souris;" -+"Clavier;Souris;lien;Accessibilité;Contraste;Zoom;Lecteur " -+"d'écran;texte;police;taille;Touches rémanentes;Touches lentes;Rebonds de " -+"touches;Touches de la souris;" - - #: ../panels/universal-access/uap.ui.h:1 - msgid "_Always Show Universal Access Menu" -@@ -5665,7 +5652,7 @@ - msgstr "_Désactiver si deux touches sont enfoncées simultanément" - - #: ../panels/universal-access/uap.ui.h:31 --msgid "Beep when a _modifer key is pressed" -+msgid "Beep when a _modifier key is pressed" - msgstr "Émettre un bip lorsqu'une touche _modificatrice est enfoncée" - - #: ../panels/universal-access/uap.ui.h:32 -@@ -5735,7 +5722,8 @@ - #: ../panels/universal-access/uap.ui.h:47 - msgid "Turn accessibility features on and off using the keyboard" - msgstr "" --"Activer et désactiver les fonctionnalités d'accessibilité à partir du clavier" -+"Activer et désactiver les fonctionnalités d'accessibilité à partir du " -+"clavier" - - #: ../panels/universal-access/uap.ui.h:48 - msgid "Click Assist" -@@ -6031,11 +6019,9 @@ - msgstr "_Domaine" - - #: ../panels/user-accounts/data/account-dialog.ui.h:13 --msgid "" --"Go online to add\n" -+msgid "Go online to add\n" - "enterprise login accounts." --msgstr "" --"Aller en ligne pour ajouter\n" -+msgstr "Aller en ligne pour ajouter\n" - "des comptes identifiants d'entreprise." - - #: ../panels/user-accounts/data/account-dialog.ui.h:15 -@@ -6107,7 +6093,7 @@ - msgstr "Auriculaire droit" - - #: ../panels/user-accounts/data/account-fingerprint.ui.h:9 --#: ../panels/user-accounts/um-fingerprint-dialog.c:687 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:689 - msgid "Enable Fingerprint Login" - msgstr "Activer l'identification de connexion par empreinte digitale" - -@@ -6268,7 +6254,8 @@ - #: ../panels/user-accounts/pw-utils.c:105 - msgctxt "Password hint" - msgid "Try to use more special characters, like punctuation." --msgstr "Essayez d'utiliser plus de caractères spéciaux, comme les pontuations." -+msgstr "" -+"Essayez d'utiliser plus de caractères spéciaux, comme les pontuations." - - #: ../panels/user-accounts/pw-utils.c:107 - msgctxt "Password hint" -@@ -6389,7 +6376,8 @@ - #, c-format - msgid "The new password does not contain enough different characters" - msgstr "" --"Le nouveau mot de passe ne comporte pas suffisamment de caractères différents" -+"Le nouveau mot de passe ne comporte pas suffisamment de caractères " -+"différents" - - #: ../panels/user-accounts/run-passwd.c:536 - #, c-format -@@ -6422,19 +6410,15 @@ - msgstr "Impossible de joindre ce domaine" - - #: ../panels/user-accounts/um-account-dialog.c:1035 --msgid "" --"That login name didn't work.\n" -+msgid "That login name didn't work.\n" - "Please try again." --msgstr "" --"Cet identifiant de connexion ne fonctionne pas.\n" -+msgstr "Cet identifiant de connexion ne fonctionne pas.\n" - "Veuillez réessayer." - - #: ../panels/user-accounts/um-account-dialog.c:1042 --msgid "" --"That login password didn't work.\n" -+msgid "That login password didn't work.\n" - "Please try again." --msgstr "" --"Ce mot de passe de connexion ne fonctionne pas.\n" -+msgstr "Ce mot de passe de connexion ne fonctionne pas.\n" - "Veuillez réessayer." - - #: ../panels/user-accounts/um-account-dialog.c:1050 -@@ -6480,15 +6464,15 @@ - "Souhaitez-vous supprimer les empreintes digitales enregistrées et désactiver " - "ainsi ce type de connexion ?" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:444 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:446 - msgid "Done!" - msgstr "Terminé !" - - #. translators: - #. * The variable is the name of the device, for example: - #. * "Could you not access "Digital Persona U.are.U 4000/4000B" device --#: ../panels/user-accounts/um-fingerprint-dialog.c:505 --#: ../panels/user-accounts/um-fingerprint-dialog.c:547 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:507 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:549 - #, c-format - msgid "Could not access '%s' device" - msgstr "Impossible d'accéder au périphérique « %s »" -@@ -6496,17 +6480,17 @@ - #. translators: - #. * The variable is the name of the device, for example: - #. * "Could you not access "Digital Persona U.are.U 4000/4000B" device --#: ../panels/user-accounts/um-fingerprint-dialog.c:588 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:590 - #, c-format - msgid "Could not start finger capture on '%s' device" - msgstr "" - "Impossible de démarrer la capture d'empreintes avec le périphérique « %s »" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:638 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:640 - msgid "Could not access any fingerprint readers" - msgstr "Aucun lecteur d'empreintes digitales n'est accessible" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:639 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:641 - msgid "Please contact your system administrator for help." - msgstr "Contactez votre administrateur système pour assistance." - -@@ -6514,8 +6498,8 @@ - #. * The variable is the name of the device, for example: - #. * "To enable fingerprint login, you need to save one of your fingerprints, using the - #. * 'Digital Persona U.are.U 4000/4000B' device." --#. --#: ../panels/user-accounts/um-fingerprint-dialog.c:721 -+#. -+#: ../panels/user-accounts/um-fingerprint-dialog.c:723 - #, c-format - msgid "" - "To enable fingerprint login, you need to save one of your fingerprints, " -@@ -6524,11 +6508,11 @@ - "Pour activer l'authentification par empreintes digitales, vous devez " - "enregistrer une de vos empreintes à l'aide du périphérique « %s »." - --#: ../panels/user-accounts/um-fingerprint-dialog.c:728 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:730 - msgid "Selecting finger" - msgstr "Sélection du doigt" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:729 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:731 - msgid "Enrolling fingerprints" - msgstr "Enregistrement des empreintes digitales" - -@@ -6568,7 +6552,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/um-history-dialog.c:175 --#: ../panels/user-accounts/um-user-panel.c:631 -+#: ../panels/user-accounts/um-user-panel.c:844 - msgctxt "login date-time" - msgid "%k:%M" - msgstr "%k:%M" -@@ -6576,7 +6560,7 @@ - #. Translators: This indicates a login date-time. - #. The first %s is a date, and the second %s a time. - #: ../panels/user-accounts/um-history-dialog.c:178 --#: ../panels/user-accounts/um-user-panel.c:635 -+#: ../panels/user-accounts/um-user-panel.c:848 - #, c-format - msgctxt "login date-time" - msgid "%s, %s" -@@ -6651,24 +6635,30 @@ - msgid "Couldn't connect to the %s domain: %s" - msgstr "Connexion au domaine %s impossible : %s" - --#: ../panels/user-accounts/um-user-panel.c:198 -+#: ../panels/user-accounts/um-user-panel.c:239 - msgid "Other Accounts" - msgstr "Autres comptes" - --#: ../panels/user-accounts/um-user-panel.c:417 -+#: ../panels/user-accounts/um-user-panel.c:453 - msgid "Failed to delete user" - msgstr "La suppression de l'utilisateur a échoué" - --#: ../panels/user-accounts/um-user-panel.c:482 -+#: ../panels/user-accounts/um-user-panel.c:513 -+#: ../panels/user-accounts/um-user-panel.c:569 -+#: ../panels/user-accounts/um-user-panel.c:621 -+msgid "Failed to revoke remotely managed user" -+msgstr "La révocation de l'utilisateur géré à distance a échoué" -+ -+#: ../panels/user-accounts/um-user-panel.c:677 - msgid "You cannot delete your own account." - msgstr "Vous ne pouvez pas supprimer votre propre compte." - --#: ../panels/user-accounts/um-user-panel.c:491 -+#: ../panels/user-accounts/um-user-panel.c:686 - #, c-format - msgid "%s is still logged in" - msgstr "%s est encore connecté" - --#: ../panels/user-accounts/um-user-panel.c:495 -+#: ../panels/user-accounts/um-user-panel.c:690 - msgid "" - "Deleting a user while they are logged in can leave the system in an " - "inconsistent state." -@@ -6676,12 +6666,12 @@ - "Supprimer un utilisateur alors qu'il est connecté peut laisser le système " - "dans un état instable." - --#: ../panels/user-accounts/um-user-panel.c:504 -+#: ../panels/user-accounts/um-user-panel.c:699 - #, c-format - msgid "Do you want to keep %s's files?" - msgstr "Voulez-vous conserver les fichiers de %s ?" - --#: ../panels/user-accounts/um-user-panel.c:508 -+#: ../panels/user-accounts/um-user-panel.c:703 - msgid "" - "It is possible to keep the home directory, mail spool and temporary files " - "around when deleting a user account." -@@ -6690,76 +6680,81 @@ - "électroniques en attente (le « spool ») et les fichiers temporaires d'un " - "compte utilisateur lors de sa suppression." - --#: ../panels/user-accounts/um-user-panel.c:511 -+#: ../panels/user-accounts/um-user-panel.c:706 - msgid "_Delete Files" - msgstr "_Supprimer les fichiers" - --#: ../panels/user-accounts/um-user-panel.c:512 -+#: ../panels/user-accounts/um-user-panel.c:707 - msgid "_Keep Files" - msgstr "_Conserver les fichiers" - --#: ../panels/user-accounts/um-user-panel.c:564 -+#: ../panels/user-accounts/um-user-panel.c:721 -+#, c-format -+msgid "Are you sure you want to permanently delete %s's account?" -+msgstr "" -+"Êtes-vous sûr de vouloir supprimer le compte de %s de manière permanente ?" -+ -+#: ../panels/user-accounts/um-user-panel.c:725 -+msgid "_Delete" -+msgstr "_Supprimer" -+ -+#: ../panels/user-accounts/um-user-panel.c:777 - msgctxt "Password mode" - msgid "Account disabled" - msgstr "Compte désactivé" - --#: ../panels/user-accounts/um-user-panel.c:572 -+#: ../panels/user-accounts/um-user-panel.c:785 - msgctxt "Password mode" - msgid "To be set at next login" - msgstr "À définir lors de la prochaine connexion" - --#: ../panels/user-accounts/um-user-panel.c:575 -+#: ../panels/user-accounts/um-user-panel.c:788 - msgctxt "Password mode" - msgid "None" - msgstr "Aucun" - --#: ../panels/user-accounts/um-user-panel.c:624 -+#: ../panels/user-accounts/um-user-panel.c:837 - msgid "Logged in" - msgstr "Connecté" - --#: ../panels/user-accounts/um-user-panel.c:1071 -+#: ../panels/user-accounts/um-user-panel.c:1297 - msgid "Failed to contact the accounts service" - msgstr "La connexion au service des comptes a échoué" - --#: ../panels/user-accounts/um-user-panel.c:1073 -+#: ../panels/user-accounts/um-user-panel.c:1299 - msgid "Please make sure that the AccountService is installed and enabled." - msgstr "Veuillez vérifier que AccountService est installé et activé." - --#: ../panels/user-accounts/um-user-panel.c:1114 --msgid "" --"To make changes,\n" -+#: ../panels/user-accounts/um-user-panel.c:1340 -+msgid "To make changes,\n" - "click the * icon first" --msgstr "" --"Pour effectuer les modifications,\n" -+msgstr "Pour effectuer les modifications,\n" - "cliquez d'abord sur l'icône *" - --#: ../panels/user-accounts/um-user-panel.c:1152 -+#: ../panels/user-accounts/um-user-panel.c:1378 - msgid "Create a user account" - msgstr "Créer un compte utilisateur" - --#: ../panels/user-accounts/um-user-panel.c:1163 --#: ../panels/user-accounts/um-user-panel.c:1475 --msgid "" --"To create a user account,\n" -+#: ../panels/user-accounts/um-user-panel.c:1389 -+#: ../panels/user-accounts/um-user-panel.c:1702 -+msgid "To create a user account,\n" - "click the * icon first" --msgstr "" --"Pour créer un compte utilisateur,\n" -+msgstr "Pour créer un compte utilisateur,\n" - "cliquez d'abord sur l'icône *" - --#: ../panels/user-accounts/um-user-panel.c:1173 -+#: ../panels/user-accounts/um-user-panel.c:1399 - msgid "Delete the selected user account" - msgstr "Supprimer le compte utilisateur sélectionné" - --#: ../panels/user-accounts/um-user-panel.c:1185 --#: ../panels/user-accounts/um-user-panel.c:1480 --msgid "" --"To delete the selected user account,\n" -+#: ../panels/user-accounts/um-user-panel.c:1411 -+#: ../panels/user-accounts/um-user-panel.c:1707 -+msgid "To delete the selected user account,\n" - "click the * icon first" - msgstr "" - "Pour supprimer le compte utilisateur sélectionné,\n" - "cliquez d'abord sur l'icône *" - --#: ../panels/user-accounts/um-user-panel.c:1389 -+#: ../panels/user-accounts/um-user-panel.c:1616 - msgid "My Account" - msgstr "Mon compte" - -@@ -6790,6 +6785,7 @@ - msgid "This will be used to name your home folder and can't be changed." - msgstr "" - "Ceci est utilisé pour nommer votre dossier personnel et ne peut être modifié." -+"" - - #. Translators: This is a date format string in the style of "Feb 24". - #: ../panels/user-accounts/um-utils.c:827 -@@ -6879,11 +6875,11 @@ - msgid "%d of %d" - msgstr "%d sur %d" - --#: ../panels/wacom/cc-wacom-page.c:530 -+#: ../panels/wacom/cc-wacom-page.c:522 - msgid "Display Mapping" - msgstr "Afficher la correspondance" - --#: ../panels/wacom/cc-wacom-stylus-page.c:372 -+#: ../panels/wacom/cc-wacom-stylus-page.c:376 - msgid "Button" - msgstr "Bouton" - -@@ -7163,22 +7159,22 @@ - msgid "Quit" - msgstr "Quitter" - --#: ../shell/cc-window.c:61 ../shell/cc-window.c:1490 -+#: ../shell/cc-window.c:61 ../shell/cc-window.c:1493 - msgid "All Settings" - msgstr "Tous les paramètres" - - #. Add categories --#: ../shell/cc-window.c:876 -+#: ../shell/cc-window.c:879 - msgctxt "category" - msgid "Personal" - msgstr "Personnel" - --#: ../shell/cc-window.c:877 -+#: ../shell/cc-window.c:880 - msgctxt "category" - msgid "Hardware" - msgstr "Matériel" - --#: ../shell/cc-window.c:878 -+#: ../shell/cc-window.c:881 - msgctxt "category" - msgid "System" - msgstr "Système" -diff -urN gnome-control-center-3.14.5/po/it.po gnome-control-center-3.14.5_localized/po/it.po ---- gnome-control-center-3.14.5/po/it.po 2015-04-30 17:35:48.000000000 +0530 -+++ gnome-control-center-3.14.5_localized/po/it.po 2016-03-12 12:08:41.364000000 +0530 -@@ -6,22 +6,21 @@ - # Alessio Dessì , 2003, 2004, 2005, 2006, 2007. - # Milo Casagrande , 2009, 2012, 2013, 2014. - # Luca Ferretti , 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014. --# -+# pnemade , 2016. #zanata - msgid "" - msgstr "" --"Project-Id-Version: gnome-control-center\n" --"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" --"control-center&keywords=I18N+L10N&component=general\n" --"POT-Creation-Date: 2014-09-05 12:16+0000\n" --"PO-Revision-Date: 2014-09-08 10:20+0200\n" --"Last-Translator: Luca Ferretti \n" --"Language-Team: Italiano \n" --"Language: it\n" -+"Project-Id-Version: PACKAGE VERSION\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2016-02-10 09:57+0530\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"PO-Revision-Date: 2014-09-08 08:20+0000\n" -+"Last-Translator: Luca Ferretti \n" -+"Language-Team: Italiano \n" -+"Language: it\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Gtranslator 2.91.6\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../panels/background/background.ui.h:1 - #: ../panels/background/gnome-background-panel.desktop.in.in.h:1 -@@ -68,50 +67,50 @@ - msgid "Span" - msgstr "Estendi" - -+#: ../panels/background/cc-background-chooser-dialog.c:438 -+msgid "Wallpapers" -+msgstr "Rivestimenti" -+ -+#: ../panels/background/cc-background-chooser-dialog.c:447 -+msgid "Colors" -+msgstr "Colori" -+ - #. translators: This is the title of the wallpaper chooser dialog. --#: ../panels/background/cc-background-chooser-dialog.c:442 -+#: ../panels/background/cc-background-chooser-dialog.c:485 - msgid "Select Background" - msgstr "Seleziona sfondo" - --#: ../panels/background/cc-background-chooser-dialog.c:463 --msgid "Wallpapers" --msgstr "Rivestimenti" -- --#: ../panels/background/cc-background-chooser-dialog.c:472 -+#: ../panels/background/cc-background-chooser-dialog.c:514 - msgid "Pictures" - msgstr "Immagini" - --#: ../panels/background/cc-background-chooser-dialog.c:481 --msgid "Colors" --msgstr "Colori" -- - #. translators: No pictures were found --#: ../panels/background/cc-background-chooser-dialog.c:540 -+#: ../panels/background/cc-background-chooser-dialog.c:546 - msgid "No Pictures Found" - msgstr "Nessuna immagine trovata" - - #. translators: "Home" is used in place of the Pictures - #. * directory in the string below when XDG_PICTURES_DIR is - #. * undefined --#: ../panels/background/cc-background-chooser-dialog.c:558 -+#: ../panels/background/cc-background-chooser-dialog.c:564 - #: ../panels/search/cc-search-locations-dialog.c:274 - msgid "Home" - msgstr "Home" - - #. translators: %s here is the name of the Pictures directory, the string should be translated in - #. * the context "You can add images to your Pictures folder and they will show up here" --#: ../panels/background/cc-background-chooser-dialog.c:570 -+#: ../panels/background/cc-background-chooser-dialog.c:576 - #, c-format - msgid "You can add images to your %s folder and they will show up here" - msgstr "" - "È possibile aggiungere immagini alla propria cartella %s, verranno mostrate " - "qui" - --#: ../panels/background/cc-background-chooser-dialog.c:592 -+#: ../panels/background/cc-background-chooser-dialog.c:583 - #: ../panels/color/cc-color-panel.c:224 ../panels/color/cc-color-panel.c:961 - #: ../panels/color/color.ui.h:29 ../panels/common/language-chooser.ui.h:3 --#: ../panels/display/cc-display-panel.c:1537 --#: ../panels/display/cc-display-panel.c:1976 -+#: ../panels/display/cc-display-panel.c:1540 -+#: ../panels/display/cc-display-panel.c:1985 - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:2 - #: ../panels/network/connection-editor/connection-editor.ui.h:1 - #: ../panels/network/connection-editor/vpn-helpers.c:245 -@@ -119,7 +118,7 @@ - #: ../panels/network/net-device-wifi.c:1247 - #: ../panels/network/net-device-wifi.c:1440 - #: ../panels/network/network-wifi.ui.h:1 --#: ../panels/printers/cc-printers-panel.c:1947 -+#: ../panels/printers/cc-printers-panel.c:1949 - #: ../panels/printers/new-printer-dialog.ui.h:2 - #: ../panels/privacy/cc-privacy-panel.c:468 - #: ../panels/region/format-chooser.ui.h:3 -@@ -131,28 +130,29 @@ - #: ../panels/user-accounts/um-fingerprint-dialog.c:264 - #: ../panels/user-accounts/um-photo-dialog.c:95 - #: ../panels/user-accounts/um-photo-dialog.c:222 --#: ../panels/user-accounts/um-user-panel.c:513 -+#: ../panels/user-accounts/um-user-panel.c:708 -+#: ../panels/user-accounts/um-user-panel.c:726 - msgid "_Cancel" - msgstr "A_nnulla" - --#: ../panels/background/cc-background-chooser-dialog.c:593 -+#: ../panels/background/cc-background-chooser-dialog.c:584 - #: ../panels/printers/ppd-selection-dialog.ui.h:3 - #: ../panels/user-accounts/um-photo-dialog.c:97 - msgid "Select" - msgstr "Seleziona" - --#: ../panels/background/cc-background-item.c:197 -+#: ../panels/background/cc-background-item.c:203 - msgid "multiple sizes" - msgstr "dimensioni multiple" - - #. translators: 100 × 100px - #. * Note that this is not an "x", but U+00D7 MULTIPLICATION SIGN --#: ../panels/background/cc-background-item.c:201 -+#: ../panels/background/cc-background-item.c:207 - #, c-format - msgid "%d × %d" - msgstr "%d × %d" - --#: ../panels/background/cc-background-item.c:327 -+#: ../panels/background/cc-background-item.c:333 - msgid "No Desktop Background" - msgstr "Nessuno sfondo per la scrivania" - -@@ -608,9 +608,8 @@ - "Please set the display to a brightness that is typical for you. Color " - "management will be most accurate at this brightness level." - msgstr "" --"Regolare la luminosità del monitor in modo che sia quella usata " --"abitualmente. La gestione del colore sarà più accurata a tale livello di " --"luminosità." -+"Regolare la luminosità del monitor in modo che sia quella usata abitualmente." -+" La gestione del colore sarà più accurata a tale livello di luminosità." - - #: ../panels/color/color.ui.h:16 - msgid "" -@@ -662,16 +661,16 @@ - - #: ../panels/color/color.ui.h:26 - msgid "" --"You may find these instructions on how to use the profile on GNU/Linux, Apple OS X and Microsoft Windows systems useful." -+"You may find these instructions on how to use the profile on GNU/Linux, Apple OS X and Microsoft Windows systems useful." - msgstr "" - "Potrebbero risultare utili le istruzioni su come usare il profilo su GNU/Linux, Apple OS XMicrosoft Windows." -+"\"linux\">GNU/Linux, Apple OS XMicrosoft Windows." - - #: ../panels/color/color.ui.h:27 --#: ../panels/user-accounts/um-fingerprint-dialog.c:730 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:732 - msgid "Summary" - msgstr "Riepilogo" - -@@ -909,8 +908,6 @@ - #. Translators: "city, country" - #: ../panels/datetime/cc-datetime-panel.c:523 - #, c-format --#| msgctxt "login date-time" --#| msgid "%s, %s" - msgctxt "timezone loc" - msgid "%s, %s" - msgstr "%s, %s" -@@ -1082,24 +1079,25 @@ - msgid "To change time or date settings, you need to authenticate." - msgstr "" - "Per cambiare le impostazioni dell'ora e della data è necessario autenticarsi." -+"" - --#: ../panels/display/cc-display-panel.c:487 -+#: ../panels/display/cc-display-panel.c:490 - msgid "Lid Closed" - msgstr "Coperchio chiuso" - - #. translators: "Mirrored" describes when both displays show the same view --#: ../panels/display/cc-display-panel.c:490 -+#: ../panels/display/cc-display-panel.c:493 - msgid "Mirrored" - msgstr "Duplicati" - --#: ../panels/display/cc-display-panel.c:492 --#: ../panels/display/cc-display-panel.c:2145 -+#: ../panels/display/cc-display-panel.c:495 -+#: ../panels/display/cc-display-panel.c:2155 - msgid "Primary" - msgstr "Primario" - --#: ../panels/display/cc-display-panel.c:494 -+#: ../panels/display/cc-display-panel.c:497 - #: ../panels/notifications/cc-notifications-panel.c:185 --#: ../panels/power/cc-power-panel.c:1684 ../panels/power/cc-power-panel.c:1695 -+#: ../panels/power/cc-power-panel.c:1704 ../panels/power/cc-power-panel.c:1715 - #: ../panels/privacy/cc-privacy-panel.c:84 - #: ../panels/privacy/cc-privacy-panel.c:124 - #: ../panels/universal-access/cc-ua-panel.c:257 -@@ -1109,82 +1107,82 @@ - msgid "Off" - msgstr "Off" - --#: ../panels/display/cc-display-panel.c:497 -+#: ../panels/display/cc-display-panel.c:500 - msgid "Secondary" - msgstr "Secondario" - --#: ../panels/display/cc-display-panel.c:1533 -+#: ../panels/display/cc-display-panel.c:1536 - msgid "Arrange Combined Displays" - msgstr "Disponi monitor combinati" - --#: ../panels/display/cc-display-panel.c:1539 --#: ../panels/display/cc-display-panel.c:1979 -+#: ../panels/display/cc-display-panel.c:1542 -+#: ../panels/display/cc-display-panel.c:1988 - #: ../panels/network/connection-editor/connection-editor.ui.h:2 - #: ../panels/network/network-wifi.ui.h:2 - msgid "_Apply" - msgstr "_Applica" - --#: ../panels/display/cc-display-panel.c:1560 -+#: ../panels/display/cc-display-panel.c:1563 - msgid "Drag displays to rearrange them" - msgstr "Trascina i monitor per ridisporli" - --#: ../panels/display/cc-display-panel.c:2081 -+#: ../panels/display/cc-display-panel.c:2090 - msgid "Size" - msgstr "Dimensione" - - #. aspect ratio --#: ../panels/display/cc-display-panel.c:2094 -+#: ../panels/display/cc-display-panel.c:2103 - msgid "Aspect Ratio" - msgstr "Rapporto" - --#: ../panels/display/cc-display-panel.c:2115 -+#: ../panels/display/cc-display-panel.c:2125 - #: ../panels/printers/pp-options-dialog.c:85 - msgid "Resolution" - msgstr "Risoluzione" - --#: ../panels/display/cc-display-panel.c:2146 -+#: ../panels/display/cc-display-panel.c:2156 - msgid "Show the top bar and Activities Overview on this display" - msgstr "Mostra su questo monitor la barra superiore e la panoramica attività" - --#: ../panels/display/cc-display-panel.c:2152 -+#: ../panels/display/cc-display-panel.c:2162 - msgid "Secondary Display" - msgstr "Monitor secondario" - --#: ../panels/display/cc-display-panel.c:2153 -+#: ../panels/display/cc-display-panel.c:2163 - msgid "Join this display with another to create an extra workspace" - msgstr "" - "Unisce questo monitor con l'altro per creare uno spazio di lavoro aggiuntivo" - --#: ../panels/display/cc-display-panel.c:2160 -+#: ../panels/display/cc-display-panel.c:2170 - msgid "Presentation" - msgstr "Presentazione" - --#: ../panels/display/cc-display-panel.c:2161 -+#: ../panels/display/cc-display-panel.c:2171 - msgid "Show slideshows and media only" - msgstr "Mostra solo presentazioni ed elementi mutlimediali" - - #. translators: "Mirror" describes when both displays show the same view --#: ../panels/display/cc-display-panel.c:2166 -+#: ../panels/display/cc-display-panel.c:2176 - msgid "Mirror" - msgstr "Duplicato" - --#: ../panels/display/cc-display-panel.c:2167 -+#: ../panels/display/cc-display-panel.c:2177 - msgid "Show your existing view on both displays" - msgstr "Mostra quanto già visibile su entrambi i monitor" - --#: ../panels/display/cc-display-panel.c:2173 -+#: ../panels/display/cc-display-panel.c:2183 - msgid "Turn Off" - msgstr "Spegni" - --#: ../panels/display/cc-display-panel.c:2174 -+#: ../panels/display/cc-display-panel.c:2184 - msgid "Don't use this display" - msgstr "Non usare questo display" - --#: ../panels/display/cc-display-panel.c:2383 -+#: ../panels/display/cc-display-panel.c:2388 - msgid "Could not get screen information" - msgstr "Impossibile ottenere informazioni sullo schermo" - --#: ../panels/display/cc-display-panel.c:2414 -+#: ../panels/display/cc-display-panel.c:2419 - msgid "_Arrange Combined Displays" - msgstr "_Disponi monitor combinati" - -@@ -1198,11 +1196,9 @@ - - #. Translators: those are keywords for the display control-center panel - #: ../panels/display/gnome-display-panel.desktop.in.in.h:4 --#| msgid "Panel;Projector;xrandr;Screen;Resolution;Refresh;" - msgid "Panel;Projector;xrandr;Screen;Resolution;Refresh;Monitor;" - msgstr "" --"Pannello;Proiettore;xrandr;Schermo;Risoluzione;Dimensioni;Refresh;Display;" --"Monitor;" -+"Pannello;Proiettore;xrandr;Schermo;Risoluzione;Dimensioni;Refresh;Display;Monitor;" - - #: ../panels/info/cc-info-panel.c:384 - msgid "Wayland" -@@ -1213,53 +1209,49 @@ - msgid "Unknown" - msgstr "Sconosciuto" - --#: ../panels/info/cc-info-panel.c:472 --#, c-format --msgid "%s %d-bit" --msgstr "%s %d-bit" -- --#: ../panels/info/cc-info-panel.c:474 -+#. translators: This is the the type of OS architecture, eg: "64-bit" or "32-bit" -+#: ../panels/info/cc-info-panel.c:513 - #, c-format - msgid "%d-bit" - msgstr "%d-bit" - - # modificato un po' rispetto originale per mantere "azione" --#: ../panels/info/cc-info-panel.c:1154 -+#: ../panels/info/cc-info-panel.c:1191 - msgid "Ask what to do" - msgstr "Chiedere l'azione da intraprendere" - --#: ../panels/info/cc-info-panel.c:1158 -+#: ../panels/info/cc-info-panel.c:1195 - msgid "Do nothing" - msgstr "Nessuna azione" - --#: ../panels/info/cc-info-panel.c:1162 -+#: ../panels/info/cc-info-panel.c:1199 - msgid "Open folder" - msgstr "Aprire la cartella" - --#: ../panels/info/cc-info-panel.c:1253 -+#: ../panels/info/cc-info-panel.c:1290 - msgid "Other Media" - msgstr "Altri Supporti" - --#: ../panels/info/cc-info-panel.c:1284 -+#: ../panels/info/cc-info-panel.c:1321 - msgid "Select an application for audio CDs" - msgstr "Selezionare un'applicazione per i CD audio" - --#: ../panels/info/cc-info-panel.c:1285 -+#: ../panels/info/cc-info-panel.c:1322 - msgid "Select an application for video DVDs" - msgstr "Selezionare un'applicazione per i DVD video" - --#: ../panels/info/cc-info-panel.c:1286 -+#: ../panels/info/cc-info-panel.c:1323 - msgid "Select an application to run when a music player is connected" - msgstr "" - "Selezionare un'applicazione da eseguire quando viene connesso un lettore " - "musicale" - --#: ../panels/info/cc-info-panel.c:1287 -+#: ../panels/info/cc-info-panel.c:1324 - msgid "Select an application to run when a camera is connected" - msgstr "" - "Selezionare un'applicazione da eseguire quando viene connessa una fotocamera" - --#: ../panels/info/cc-info-panel.c:1288 -+#: ../panels/info/cc-info-panel.c:1325 - msgid "Select an application for software CDs" - msgstr "Selezionare un'applicazione per i CD di software" - -@@ -1267,73 +1259,73 @@ - #. * strings, just here to fix capitalization of the English originals. - #. * If the shared-mime-info translation works for your language, - #. * simply leave these untranslated. --#. --#: ../panels/info/cc-info-panel.c:1300 -+#. -+#: ../panels/info/cc-info-panel.c:1337 - msgid "audio DVD" - msgstr "DVD audio" - --#: ../panels/info/cc-info-panel.c:1301 -+#: ../panels/info/cc-info-panel.c:1338 - msgid "blank Blu-ray disc" - msgstr "Disco vuoto Blu-ray" - --#: ../panels/info/cc-info-panel.c:1302 -+#: ../panels/info/cc-info-panel.c:1339 - msgid "blank CD disc" - msgstr "Disco vuoto CD" - --#: ../panels/info/cc-info-panel.c:1303 -+#: ../panels/info/cc-info-panel.c:1340 - msgid "blank DVD disc" - msgstr "Disco vuoto DVD" - --#: ../panels/info/cc-info-panel.c:1304 -+#: ../panels/info/cc-info-panel.c:1341 - msgid "blank HD DVD disc" - msgstr "Disco vuoto HD DVD" - --#: ../panels/info/cc-info-panel.c:1305 -+#: ../panels/info/cc-info-panel.c:1342 - msgid "Blu-ray video disc" - msgstr "Disco video Blu-ray" - --#: ../panels/info/cc-info-panel.c:1306 -+#: ../panels/info/cc-info-panel.c:1343 - msgid "e-book reader" - msgstr "E-book reader" - --#: ../panels/info/cc-info-panel.c:1307 -+#: ../panels/info/cc-info-panel.c:1344 - msgid "HD DVD video disc" - msgstr "Disco video HD DVD" - --#: ../panels/info/cc-info-panel.c:1308 -+#: ../panels/info/cc-info-panel.c:1345 - msgid "Picture CD" - msgstr "Picture CD" - --#: ../panels/info/cc-info-panel.c:1309 -+#: ../panels/info/cc-info-panel.c:1346 - msgid "Super Video CD" - msgstr "Super Video CD" - --#: ../panels/info/cc-info-panel.c:1310 -+#: ../panels/info/cc-info-panel.c:1347 - msgid "Video CD" - msgstr "Video CD" - --#: ../panels/info/cc-info-panel.c:1311 -+#: ../panels/info/cc-info-panel.c:1348 - msgid "Windows software" - msgstr "Software Windows" - --#: ../panels/info/cc-info-panel.c:1434 --#: ../panels/keyboard/keyboard-shortcuts.c:1918 -+#: ../panels/info/cc-info-panel.c:1471 -+#: ../panels/keyboard/keyboard-shortcuts.c:1932 - msgid "Section" - msgstr "Sezione" - --#: ../panels/info/cc-info-panel.c:1443 ../panels/info/info.ui.h:14 -+#: ../panels/info/cc-info-panel.c:1480 ../panels/info/info.ui.h:13 - msgid "Overview" - msgstr "Panoramica" - --#: ../panels/info/cc-info-panel.c:1449 ../panels/info/info.ui.h:21 -+#: ../panels/info/cc-info-panel.c:1486 ../panels/info/info.ui.h:20 - msgid "Default Applications" - msgstr "Applicazioni predefinite" - --#: ../panels/info/cc-info-panel.c:1454 ../panels/info/info.ui.h:29 -+#: ../panels/info/cc-info-panel.c:1491 ../panels/info/info.ui.h:28 - msgid "Removable Media" - msgstr "Dispositivi rimovibili" - --#: ../panels/info/cc-info-panel.c:1479 -+#: ../panels/info/cc-info-panel.c:1516 - #, c-format - msgid "Version %s" - msgstr "Versione %s" -@@ -1351,12 +1343,9 @@ - #. sure that you use the same "translation" for those keywords - #: ../panels/info/gnome-info-panel.desktop.in.in.h:4 - msgid "" --"device;system;information;memory;processor;version;default;application;" --"preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" -+"device;system;information;memory;processor;version;default;application;preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" - msgstr "" --"dispositivo;sistema;informazioni;memoria;processore;versione;predefinito;" --"applicazione;preferite;cd;dvd;usb;audio;video;disc;rimovibile;media;" --"multimedia;esecuzione;autorun;" -+"dispositivo;sistema;informazioni;memoria;processore;versione;predefinito;applicazione;preferite;cd;dvd;usb;audio;video;disc;rimovibile;media;multimedia;esecuzione;autorun;" - - #: ../panels/info/info.ui.h:1 - msgid "Select how other media should be handled" -@@ -1382,80 +1371,80 @@ - msgid "Processor" - msgstr "Processore" - --#. To translators: this field contains the distro name, version and type --#: ../panels/info/info.ui.h:8 --msgid "Base system" --msgstr "Sistema base" -+#: ../panels/info/info.ui.h:7 -+#, fuzzy -+msgid "OS Type" -+msgstr "Tipo" - --#: ../panels/info/info.ui.h:9 -+#: ../panels/info/info.ui.h:8 - msgid "Disk" - msgstr "Disco" - --#: ../panels/info/info.ui.h:10 -+#: ../panels/info/info.ui.h:9 - msgid "Calculating…" - msgstr "Calcolo…" - --#: ../panels/info/info.ui.h:11 -+#: ../panels/info/info.ui.h:10 - msgid "Graphics" - msgstr "Grafica" - --#: ../panels/info/info.ui.h:12 -+#: ../panels/info/info.ui.h:11 - msgid "Virtualization" - msgstr "Virtualizzazione" - --#: ../panels/info/info.ui.h:13 -+#: ../panels/info/info.ui.h:12 - msgid "Check for updates" - msgstr "Controlla aggiornamenti" - --#: ../panels/info/info.ui.h:15 -+#: ../panels/info/info.ui.h:14 - msgid "_Web" - msgstr "_Web" - --#: ../panels/info/info.ui.h:16 -+#: ../panels/info/info.ui.h:15 - msgid "_Mail" - msgstr "E_mail" - --#: ../panels/info/info.ui.h:17 -+#: ../panels/info/info.ui.h:16 - msgid "_Calendar" - msgstr "_Calendario" - --#: ../panels/info/info.ui.h:18 -+#: ../panels/info/info.ui.h:17 - msgid "M_usic" - msgstr "M_usica" - --#: ../panels/info/info.ui.h:19 -+#: ../panels/info/info.ui.h:18 - msgid "_Video" - msgstr "_Video" - --#: ../panels/info/info.ui.h:20 -+#: ../panels/info/info.ui.h:19 - msgid "_Photos" - msgstr "_Fotografie" - --#: ../panels/info/info.ui.h:22 -+#: ../panels/info/info.ui.h:21 - msgid "Select how media should be handled" - msgstr "Selezionare la modalità di gestione dei supporti" - --#: ../panels/info/info.ui.h:23 -+#: ../panels/info/info.ui.h:22 - msgid "CD _audio" - msgstr "CD _audio" - --#: ../panels/info/info.ui.h:24 -+#: ../panels/info/info.ui.h:23 - msgid "_DVD video" - msgstr "_DVD video" - --#: ../panels/info/info.ui.h:25 -+#: ../panels/info/info.ui.h:24 - msgid "_Music player" - msgstr "Lettore _musicale" - --#: ../panels/info/info.ui.h:26 -+#: ../panels/info/info.ui.h:25 - msgid "_Software" - msgstr "_Software" - --#: ../panels/info/info.ui.h:27 -+#: ../panels/info/info.ui.h:26 - msgid "_Other Media…" - msgstr "_Altri supporti…" - --#: ../panels/info/info.ui.h:28 -+#: ../panels/info/info.ui.h:27 - msgid "_Never prompt or start programs on media insertion" - msgstr "_Non chiedere o avviare programmi all'inserimento di supporti" - -@@ -1525,7 +1514,7 @@ - msgid "Launch help browser" - msgstr "Lancia il visualizzatore di manuali" - --#: ../panels/keyboard/01-launchers.xml.in.h:3 ../shell/cc-window.c:1601 -+#: ../panels/keyboard/01-launchers.xml.in.h:3 ../shell/cc-window.c:1604 - #: ../shell/gnome-control-center.desktop.in.in.h:1 - msgid "Settings" - msgstr "Impostazioni" -@@ -1649,7 +1638,7 @@ - #. Translators: This key is also known as 'third level - #. * chooser'. AltGr is often used for this purpose. See - #. * https://live.gnome.org/Design/SystemSettings/RegionAndLanguage --#. -+#. - #: ../panels/keyboard/cc-keyboard-option.c:354 - msgid "Alternative Characters Key" - msgstr "Tasti carattere alternativi" -@@ -1657,7 +1646,7 @@ - #. Translators: The Compose key is used to initiate key - #. * sequences that are combined to form a single character. - #. * See http://en.wikipedia.org/wiki/Compose_key --#. -+#. - #: ../panels/keyboard/cc-keyboard-option.c:363 - msgid "Compose Key" - msgstr "Tasto Compose" -@@ -1785,7 +1774,7 @@ - - # Appare se si prova ad usare come scorciatoia un tasto solo che non sia un - # tasto speciale (per esempio "G"). --# -+# - # Adattata al meglio la traduzione italiana.c - #: ../panels/keyboard/keyboard-shortcuts.c:1357 - #, c-format -@@ -1800,17 +1789,16 @@ - - #: ../panels/keyboard/keyboard-shortcuts.c:1387 - #, c-format --msgid "" --"The shortcut \"%s\" is already used for\n" -+msgid "The shortcut \"%s\" is already used for\n" - "\"%s\"" --msgstr "" --"La scorciatoia «%s» è già usata per\n" -+msgstr "La scorciatoia «%s» è già usata per\n" - "«%s»" - - #: ../panels/keyboard/keyboard-shortcuts.c:1392 - #, c-format - msgid "" - "If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be disabled." -+"" - msgstr "" - "Se si riassegna la scorciatoia a «%s», la scorciatoia «%s» verrà " - "disabilitata." -@@ -1819,7 +1807,7 @@ - msgid "_Reassign" - msgstr "_Riassegna" - --#: ../panels/keyboard/keyboard-shortcuts.c:1430 -+#: ../panels/keyboard/keyboard-shortcuts.c:1439 - #, c-format - msgid "" - "The \"%s\" shortcut has an associated \"%s\" shortcut. Do you want to " -@@ -1828,11 +1816,8 @@ - "La scorciatoia «%s» è associata alla scorciatoia «%s». Impostarla " - "automaticamente a «%s»?" - --#: ../panels/keyboard/keyboard-shortcuts.c:1436 -+#: ../panels/keyboard/keyboard-shortcuts.c:1449 - #, c-format --#| msgid "" --#| "If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be " --#| "disabled." - msgid "" - "\"%s\" is currently associated with \"%s\", this shortcut will be disabled " - "if you move forward." -@@ -1840,8 +1825,7 @@ - "«%s» è attualmente associata con «%s», procedendo tale scorciatoia verrà " - "disabilitata." - --#: ../panels/keyboard/keyboard-shortcuts.c:1442 --#| msgid "_Reassign" -+#: ../panels/keyboard/keyboard-shortcuts.c:1456 - msgid "_Assign" - msgstr "_Assegna" - -@@ -1869,8 +1853,7 @@ - #: ../panels/mouse/gnome-mouse-panel.desktop.in.in.h:4 - msgid "Trackpad;Pointer;Click;Tap;Double;Button;Trackball;Scroll;" - msgstr "" --"Trackpad;Puntatore;Click;Clic;Tap;Doppio;Pulsante;Trackball;Cursore;Scroll;" --"Scorrimento;" -+"Trackpad;Puntatore;Click;Clic;Tap;Doppio;Pulsante;Trackball;Cursore;Scroll;Scorrimento;" - - #: ../panels/mouse/gnome-mouse-properties.ui.h:1 - msgid "General" -@@ -1992,26 +1975,26 @@ - - #. TRANSLATORS: this is to disable the radio hardware in the - #. * network panel --#: ../panels/network/cc-network-panel.c:366 -+#: ../panels/network/cc-network-panel.c:369 - msgid "Air_plane Mode" - msgstr "Modalità ae_reo" - --#: ../panels/network/cc-network-panel.c:965 -+#: ../panels/network/cc-network-panel.c:978 - msgid "Network proxy" - msgstr "Proxy di rete" - - #. Translators: this is the title of the connection details - #. * window for vpn connections, it is also used to display - #. * vpn connections in the device list. --#. --#: ../panels/network/cc-network-panel.c:1144 ../panels/network/net-vpn.c:278 -+#. -+#: ../panels/network/cc-network-panel.c:1155 ../panels/network/net-vpn.c:278 - #: ../panels/network/net-vpn.c:431 - #, c-format - msgid "%s VPN" - msgstr "VPN %s" - - #. TRANSLATORS: the user is running a NM that is not API compatible --#: ../panels/network/cc-network-panel.c:1289 -+#: ../panels/network/cc-network-panel.c:1302 - msgid "The system network services are not compatible with this version." - msgstr "" - "Il servizi di rete di sistema non sono compatibili con questa versione." -@@ -2175,7 +2158,7 @@ - #: ../panels/network/connection-editor/ce-page-ip4.c:465 - #: ../panels/network/connection-editor/ce-page-ip6.c:205 - #: ../panels/network/connection-editor/ce-page-ip6.c:473 --#: ../panels/network/network-vpn.ui.h:3 -+#: ../panels/network/network-vpn.ui.h:2 - msgid "Gateway" - msgstr "Gateway" - -@@ -2227,7 +2210,7 @@ - msgid "Link-Local Only" - msgstr "Solo link-local" - --#: ../panels/network/connection-editor/ce-page-ip4.c:953 -+#: ../panels/network/connection-editor/ce-page-ip4.c:967 - #: ../panels/network/network-wifi.ui.h:48 - msgid "IPv4" - msgstr "IPv4" -@@ -2249,7 +2232,7 @@ - msgid "Automatic, DHCP only" - msgstr "Automatico, solo DHCP" - --#: ../panels/network/connection-editor/ce-page-ip6.c:919 -+#: ../panels/network/connection-editor/ce-page-ip6.c:937 - #: ../panels/network/network-wifi.ui.h:49 - msgid "IPv6" - msgstr "IPv6" -@@ -2417,7 +2400,7 @@ - msgstr "_Zona firewall" - - #: ../panels/network/connection-editor/firewall-helpers.c:48 --#: ../panels/network/connection-editor/firewall-helpers.c:112 -+#: ../panels/network/connection-editor/firewall-helpers.c:113 - msgctxt "Firewall zone" - msgid "Default" - msgstr "Predefinita" -@@ -2473,7 +2456,6 @@ - msgstr "Nuovo profilo" - - #: ../panels/network/connection-editor/net-connection-editor.c:577 --#: ../panels/network/network.ui.h:1 ../panels/network/network-vpn.ui.h:1 - msgid "VPN" - msgstr "VPN" - -@@ -2559,7 +2541,7 @@ - msgstr "Selezione file da importare" - - #: ../panels/network/connection-editor/vpn-helpers.c:246 --#: ../panels/printers/cc-printers-panel.c:1948 -+#: ../panels/printers/cc-printers-panel.c:1950 - #: ../panels/sharing/cc-sharing-panel.c:492 - #: ../panels/user-accounts/um-photo-dialog.c:223 - msgid "_Open" -@@ -2585,17 +2567,14 @@ - - #: ../panels/network/connection-editor/vpn-helpers.c:336 - #, c-format --msgid "" --"The VPN connection '%s' could not be exported to %s.\n" -+msgid "The VPN connection '%s' could not be exported to %s.\n" - "\n" - "Error: %s." --msgstr "" --"Non è possibile esportare su %s la connessione VPN «%s»,\n" -+msgstr "Non è possibile esportare su %s la connessione VPN «%s»,\n" - "\n" - "Errore: %s." - - #: ../panels/network/connection-editor/vpn-helpers.c:371 --#| msgid "Export VPN connection..." - msgid "Export VPN connection" - msgstr "Esporta connessione VPN" - -@@ -2633,15 +2612,12 @@ - - #. Translators: those are keywords for the network control-center panel - #: ../panels/network/gnome-network-panel.desktop.in.in.h:4 --#| msgid "" --#| "Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;" --#| "vpn;vlan;bridge;bond;" - msgid "" --"Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;" --"vlan;bridge;bond;DNS;" -+"Network;Wireless;Wi-" -+"Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;vlan;bridge;bond;DNS;" - msgstr "" --"Rete;Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;" --"vpn;vlan;bridge;bond;DNS;" -+"Rete;Network;Wireless;Wi-" -+"Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;vlan;bridge;bond;DNS;" - - #: ../panels/network/net-device-bond.c:77 - msgid "Bond slaves" -@@ -2688,7 +2664,7 @@ - #. * details window for ethernet, if there is only a single - #. * profile. It is also used to display ethernet in the - #. * device list. --#. -+#. - #: ../panels/network/net-device-ethernet.c:288 - #: ../panels/network/network-ethernet.ui.h:1 - #: ../panels/network/network-simple.ui.h:1 -@@ -2700,7 +2676,7 @@ - #: ../panels/network/network-ethernet.ui.h:3 - #: ../panels/network/network-mobile.ui.h:8 - #: ../panels/network/network-simple.ui.h:8 --#: ../panels/network/network-vpn.ui.h:8 -+#: ../panels/network/network-vpn.ui.h:7 - msgid "Options…" - msgstr "Opzioni…" - -@@ -2729,7 +2705,8 @@ - #: ../panels/network/net-device-wifi.c:1158 - #, c-format - msgid "Switching on the wireless hotspot will disconnect you from %s." --msgstr "L'attivazione dell'hotspot Wi-Fi terminerà la connessione a %s." -+msgstr "" -+"L'attivazione dell'hotspot Wi-Fi terminerà la connessione a %s." - - #: ../panels/network/net-device-wifi.c:1162 - msgid "" -@@ -2770,7 +2747,7 @@ - - #: ../panels/network/net-device-wifi.c:1749 - #: ../panels/region/input-options.ui.h:2 ../panels/wacom/button-mapping.ui.h:2 --#: ../panels/wacom/cc-wacom-page.c:533 -+#: ../panels/wacom/cc-wacom-page.c:525 - #: ../panels/wacom/gnome-wacom-properties.ui.h:4 - msgid "_Close" - msgstr "_Chiudi" -@@ -2813,17 +2790,17 @@ - msgid "Provider" - msgstr "Provider" - --#: ../panels/network/network-proxy.ui.h:1 ../panels/network/network.ui.h:2 -+#: ../panels/network/network-proxy.ui.h:1 - msgctxt "proxy method" - msgid "None" - msgstr "Nessuno" - --#: ../panels/network/network-proxy.ui.h:2 ../panels/network/network.ui.h:3 -+#: ../panels/network/network-proxy.ui.h:2 - msgctxt "proxy method" - msgid "Manual" - msgstr "Manuale" - --#: ../panels/network/network-proxy.ui.h:3 ../panels/network/network.ui.h:4 -+#: ../panels/network/network-proxy.ui.h:3 - msgctxt "proxy method" - msgid "Automatic" - msgstr "Automatico" -@@ -2876,32 +2853,32 @@ - msgid "Turn device off" - msgstr "Spegne il dispositivo" - --#: ../panels/network/network.ui.h:5 -+#: ../panels/network/network.ui.h:1 - msgid "Add Device" - msgstr "Aggiungi dispositivo" - --#: ../panels/network/network.ui.h:6 -+#: ../panels/network/network.ui.h:2 - msgid "Remove Device" - msgstr "Rimuovi dispositivo" - --#: ../panels/network/network-vpn.ui.h:2 -+#: ../panels/network/network-vpn.ui.h:1 - msgid "VPN Type" - msgstr "Tipo di VPN" - --#: ../panels/network/network-vpn.ui.h:4 -+#: ../panels/network/network-vpn.ui.h:3 - msgid "Group Name" - msgstr "Nome gruppo" - --#: ../panels/network/network-vpn.ui.h:5 -+#: ../panels/network/network-vpn.ui.h:4 - msgid "Group Password" - msgstr "Password gruppo" - --#: ../panels/network/network-vpn.ui.h:6 -+#: ../panels/network/network-vpn.ui.h:5 - #: ../panels/printers/authentication-dialog.ui.h:4 - msgid "Username" - msgstr "Nome utente" - --#: ../panels/network/network-vpn.ui.h:7 -+#: ../panels/network/network-vpn.ui.h:6 - msgid "Turn VPN connection off" - msgstr "Spegne la connessione VPN" - -@@ -3371,7 +3348,6 @@ - msgstr "MSCHAPv2" - - #: ../panels/network/wireless-security/eap-method-fast.c:409 --#| msgid "Choose a PAC file..." - msgid "Choose a PAC file" - msgstr "Scegliere una file PAC" - -@@ -3437,7 +3413,6 @@ - #: ../panels/network/wireless-security/eap-method-peap.c:350 - #: ../panels/network/wireless-security/eap-method-tls.c:456 - #: ../panels/network/wireless-security/eap-method-ttls.c:350 --#| msgid "Choose a Certificate Authority certificate..." - msgid "Choose a Certificate Authority certificate" - msgstr "Scegliere un certificato di un'Autorità di Certificazione" - -@@ -3482,12 +3457,10 @@ - "(È possibile proteggere le proprie chiavi private con «openssl».)" - - #: ../panels/network/wireless-security/eap-method-tls.c:450 --#| msgid "Choose your personal certificate..." - msgid "Choose your personal certificate" - msgstr "Scegliere il certificato personale" - - #: ../panels/network/wireless-security/eap-method-tls.c:462 --#| msgid "Choose your private key..." - msgid "Choose your private key" - msgstr "Scegliere la chiave privata personale" - -@@ -3627,7 +3600,7 @@ - msgstr "Mostrare i dettagli nel blocco schermo" - - #: ../panels/notifications/cc-notifications-panel.c:185 --#: ../panels/power/cc-power-panel.c:1690 ../panels/power/cc-power-panel.c:1697 -+#: ../panels/power/cc-power-panel.c:1710 ../panels/power/cc-power-panel.c:1717 - #: ../panels/privacy/cc-privacy-panel.c:84 - #: ../panels/privacy/cc-privacy-panel.c:124 - #: ../panels/universal-access/cc-ua-panel.c:257 -@@ -3731,11 +3704,9 @@ - #. For ReadItLater and Pocket, see http://en.wikipedia.org/wiki/Pocket_(application) - #: ../panels/online-accounts/gnome-online-accounts-panel.desktop.in.in.h:4 - msgid "" --"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;" --"Kerberos;IMAP;SMTP;Pocket;ReadItLater;" -+"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;Kerberos;IMAP;SMTP;Pocket;ReadItLater;" - msgstr "" --"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Conversazioni;Calendario;Email;" --"Posta;Contatto;Contatti;ownCloud;Kerberos;IMAP;SMTP;Pocket;ReadItLater;" -+"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Conversazioni;Calendario;Email;Posta;Contatto;Contatti;ownCloud;Kerberos;IMAP;SMTP;Pocket;ReadItLater;" - - #: ../panels/online-accounts/online-accounts.ui.h:1 - msgid "No online accounts configured" -@@ -3758,18 +3729,18 @@ - "Aggiungendo un account le applicazioni potranno accedere ai relativi " - "documenti, email, contatti, calendari, chat e altro." - --#: ../panels/power/cc-power-panel.c:183 -+#: ../panels/power/cc-power-panel.c:192 - msgid "Unknown time" - msgstr "Tempo sconosciuto" - --#: ../panels/power/cc-power-panel.c:189 -+#: ../panels/power/cc-power-panel.c:198 - #, c-format - msgid "%i minute" - msgid_plural "%i minutes" - msgstr[0] "%i minuto" - msgstr[1] "%i minuti" - --#: ../panels/power/cc-power-panel.c:201 -+#: ../panels/power/cc-power-panel.c:210 - #, c-format - msgid "%i hour" - msgid_plural "%i hours" -@@ -3778,226 +3749,226 @@ - - #. TRANSLATOR: "%i %s %i %s" are "%i hours %i minutes" - #. * Swap order with "%2$s %2$i %1$s %1$i if needed --#: ../panels/power/cc-power-panel.c:209 -+#: ../panels/power/cc-power-panel.c:218 - #, c-format - msgid "%i %s %i %s" - msgstr "%i %s e %i %s" - --#: ../panels/power/cc-power-panel.c:210 -+#: ../panels/power/cc-power-panel.c:219 - msgid "hour" - msgid_plural "hours" - msgstr[0] "ora" - msgstr[1] "ore" - --#: ../panels/power/cc-power-panel.c:211 -+#: ../panels/power/cc-power-panel.c:220 - msgid "minute" - msgid_plural "minutes" - msgstr[0] "minuto" - msgstr[1] "minuti" - - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" --#: ../panels/power/cc-power-panel.c:230 -+#: ../panels/power/cc-power-panel.c:239 - #, c-format - msgid "%s until fully charged" - msgstr "%s alla carica completa" - - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" --#: ../panels/power/cc-power-panel.c:237 -+#: ../panels/power/cc-power-panel.c:246 - #, c-format - msgid "Caution: %s remaining" - msgstr "Attenzione: ancora %s" - - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" --#: ../panels/power/cc-power-panel.c:242 -+#: ../panels/power/cc-power-panel.c:251 - #, c-format - msgid "%s remaining" - msgstr "ancora %s" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:247 ../panels/power/cc-power-panel.c:275 -+#: ../panels/power/cc-power-panel.c:256 ../panels/power/cc-power-panel.c:284 - msgid "Fully charged" - msgstr "Carica" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:251 ../panels/power/cc-power-panel.c:279 -+#: ../panels/power/cc-power-panel.c:260 ../panels/power/cc-power-panel.c:288 - msgid "Empty" - msgstr "Scarica" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:266 -+#: ../panels/power/cc-power-panel.c:275 - msgid "Charging" - msgstr "In carica" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:271 -+#: ../panels/power/cc-power-panel.c:280 - msgid "Discharging" - msgstr "In scarica" - --#: ../panels/power/cc-power-panel.c:396 -+#: ../panels/power/cc-power-panel.c:405 - msgctxt "Battery name" - msgid "Main" - msgstr "Principale" - --#: ../panels/power/cc-power-panel.c:398 -+#: ../panels/power/cc-power-panel.c:407 - msgctxt "Battery name" - msgid "Extra" - msgstr "Aggiuntiva" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:470 -+#: ../panels/power/cc-power-panel.c:479 - msgid "Wireless mouse" - msgstr "Mouse wireless" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:473 -+#: ../panels/power/cc-power-panel.c:482 - msgid "Wireless keyboard" - msgstr "Tastiera wireless" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:476 -+#: ../panels/power/cc-power-panel.c:485 - msgid "Uninterruptible power supply" - msgstr "UPS" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:479 -+#: ../panels/power/cc-power-panel.c:488 - msgid "Personal digital assistant" - msgstr "PDA" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:482 -+#: ../panels/power/cc-power-panel.c:491 - msgid "Cellphone" - msgstr "Cellulare" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:485 -+#: ../panels/power/cc-power-panel.c:494 - msgid "Media player" - msgstr "Lettore multimediale" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:488 -+#: ../panels/power/cc-power-panel.c:497 - msgid "Tablet" - msgstr "Tavoletta Wacom" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:491 -+#: ../panels/power/cc-power-panel.c:500 - msgid "Computer" - msgstr "Computer" - - #. TRANSLATORS: secondary battery, misc --#: ../panels/power/cc-power-panel.c:494 ../panels/power/cc-power-panel.c:717 --#: ../panels/power/cc-power-panel.c:2019 -+#: ../panels/power/cc-power-panel.c:503 ../panels/power/cc-power-panel.c:726 -+#: ../panels/power/cc-power-panel.c:2046 - msgid "Battery" - msgstr "Batteria" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:540 -+#: ../panels/power/cc-power-panel.c:549 - msgctxt "Battery power" - msgid "Charging" - msgstr "In carica" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:547 -+#: ../panels/power/cc-power-panel.c:556 - msgctxt "Battery power" - msgid "Caution" - msgstr "Attenzione" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:552 -+#: ../panels/power/cc-power-panel.c:561 - msgctxt "Battery power" - msgid "Low" - msgstr "Bassa" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:557 -+#: ../panels/power/cc-power-panel.c:566 - msgctxt "Battery power" - msgid "Good" - msgstr "Buona" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:562 -+#: ../panels/power/cc-power-panel.c:571 - msgctxt "Battery power" - msgid "Fully charged" - msgstr "Carica" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:566 -+#: ../panels/power/cc-power-panel.c:575 - msgctxt "Battery power" - msgid "Empty" - msgstr "Scarica" - --#: ../panels/power/cc-power-panel.c:715 -+#: ../panels/power/cc-power-panel.c:724 - msgid "Batteries" - msgstr "Batterie" - --#: ../panels/power/cc-power-panel.c:1117 -+#: ../panels/power/cc-power-panel.c:1126 - msgid "When _idle" - msgstr "Quando _inattivo" - --#: ../panels/power/cc-power-panel.c:1445 -+#: ../panels/power/cc-power-panel.c:1454 - msgid "Power Saving" - msgstr "Risparmio energetico" - --#: ../panels/power/cc-power-panel.c:1473 -+#: ../panels/power/cc-power-panel.c:1489 - msgid "_Screen brightness" - msgstr "Luminosità dello _schermo" - --#: ../panels/power/cc-power-panel.c:1479 -+#: ../panels/power/cc-power-panel.c:1495 - msgid "_Keyboard brightness" - msgstr "Luminosità della _tastiera" - --#: ../panels/power/cc-power-panel.c:1489 -+#: ../panels/power/cc-power-panel.c:1505 - msgid "_Dim screen when inactive" - msgstr "_Oscurare lo schermo quando inattivo" - --#: ../panels/power/cc-power-panel.c:1514 -+#: ../panels/power/cc-power-panel.c:1530 - msgid "_Blank screen" - msgstr "Schermo _nero" - --#: ../panels/power/cc-power-panel.c:1551 -+#: ../panels/power/cc-power-panel.c:1567 - msgid "_Wi-Fi" - msgstr "_Wi-Fi" - --#: ../panels/power/cc-power-panel.c:1556 -+#: ../panels/power/cc-power-panel.c:1572 - msgid "Turns off wireless devices" - msgstr "Spegne i dispositivi Wi-Fi" - --#: ../panels/power/cc-power-panel.c:1581 -+#: ../panels/power/cc-power-panel.c:1597 - msgid "_Mobile broadband" - msgstr "Banda larga _mobile" - --#: ../panels/power/cc-power-panel.c:1586 -+#: ../panels/power/cc-power-panel.c:1602 - msgid "Turns off mobile broadband (3G, 4G, WiMax, etc.) devices" - msgstr "Spegne i dispositivi a banda larga mobile (3G, 4G, WiMax, ecc...)" - --#: ../panels/power/cc-power-panel.c:1635 -+#: ../panels/power/cc-power-panel.c:1652 - msgid "_Bluetooth" - msgstr "_Bluetooth" - --#: ../panels/power/cc-power-panel.c:1686 -+#: ../panels/power/cc-power-panel.c:1706 - msgid "When on battery power" - msgstr "Quando a batteria" - --#: ../panels/power/cc-power-panel.c:1688 -+#: ../panels/power/cc-power-panel.c:1708 - msgid "When plugged in" - msgstr "Quando collegato" - --#: ../panels/power/cc-power-panel.c:1818 -+#: ../panels/power/cc-power-panel.c:1838 - msgid "Suspend & Power Off" - msgstr "Sospensione e spegnimento" - --#: ../panels/power/cc-power-panel.c:1851 -+#: ../panels/power/cc-power-panel.c:1878 - msgid "_Automatic suspend" - msgstr "_Sospensione automatica" - --#: ../panels/power/cc-power-panel.c:1875 -+#: ../panels/power/cc-power-panel.c:1902 - msgid "When battery power is _critical" - msgstr "Quando la carica della batteria è _critica" - --#: ../panels/power/cc-power-panel.c:1930 -+#: ../panels/power/cc-power-panel.c:1957 - msgid "Power Off" - msgstr "Spegni" - --#: ../panels/power/cc-power-panel.c:2066 -+#: ../panels/power/cc-power-panel.c:2100 - msgid "Devices" - msgstr "Dispositivi" - -@@ -4016,8 +3987,7 @@ - msgid "" - "Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;" - msgstr "" --"Alimentazione;Sleep;Sospensione;Ibernazione;Batteria;Luminosità;Monitor;Dim;" --"DPMS;" -+"Alimentazione;Sleep;Sospensione;Ibernazione;Batteria;Luminosità;Monitor;Dim;DPMS;" - - #: ../panels/power/power.ui.h:1 - msgid "Hibernate" -@@ -4262,15 +4232,15 @@ - msgstr[1] "%u attivi" - - #. Translators: Addition of the new printer failed. --#: ../panels/printers/cc-printers-panel.c:1777 -+#: ../panels/printers/cc-printers-panel.c:1779 - msgid "Failed to add new printer." - msgstr "Aggiunta della nuova stampante non riuscita." - --#: ../panels/printers/cc-printers-panel.c:1944 -+#: ../panels/printers/cc-printers-panel.c:1946 - msgid "Select PPD File" - msgstr "Selezionare file PPD" - --#: ../panels/printers/cc-printers-panel.c:1953 -+#: ../panels/printers/cc-printers-panel.c:1955 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" -@@ -4278,30 +4248,30 @@ - "File PostScript Printer Description (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD." - "GZ)" - --#: ../panels/printers/cc-printers-panel.c:2258 -+#: ../panels/printers/cc-printers-panel.c:2260 - msgid "No suitable driver found" - msgstr "Nessun driver adatto trovato" - --#: ../panels/printers/cc-printers-panel.c:2327 -+#: ../panels/printers/cc-printers-panel.c:2329 - msgid "Searching for preferred drivers…" - msgstr "Ricerca driver preferiti…" - --#: ../panels/printers/cc-printers-panel.c:2342 -+#: ../panels/printers/cc-printers-panel.c:2344 - msgid "Select from database…" - msgstr "Seleziona dal database…" - --#: ../panels/printers/cc-printers-panel.c:2351 -+#: ../panels/printers/cc-printers-panel.c:2353 - msgid "Provide PPD File…" - msgstr "Fornisci file PPD…" - - #. Translators: Name of job which makes printer to print test page --#: ../panels/printers/cc-printers-panel.c:2502 --#: ../panels/printers/cc-printers-panel.c:2525 -+#: ../panels/printers/cc-printers-panel.c:2504 -+#: ../panels/printers/cc-printers-panel.c:2527 - msgid "Test page" - msgstr "Pagina di test" - - #. Translators: The XML file containing user interface can not be loaded --#: ../panels/printers/cc-printers-panel.c:2933 -+#: ../panels/printers/cc-printers-panel.c:2935 - #, c-format - msgid "Could not load ui: %s" - msgstr "Impossibile caricare l'interfaccia: %s" -@@ -4312,7 +4282,8 @@ - - #: ../panels/printers/gnome-printers-panel.desktop.in.in.h:2 - msgid "Add printers, view printer jobs and decide how you want to print" --msgstr "Aggiunge stampanti, visualizza lavori di stampa e decide come stampare" -+msgstr "" -+"Aggiunge stampanti, visualizza lavori di stampa e decide come stampare" - - #. Translators: those are keywords for the printing control-center panel - #: ../panels/printers/gnome-printers-panel.desktop.in.in.h:4 -@@ -4375,13 +4346,11 @@ - - #. Translators: The found device is a JetDirect printer - #: ../panels/printers/pp-host.c:506 --#| msgid "Remove Printer" - msgid "JetDirect Printer" - msgstr "Stampante JetDirect" - - #. Translators: The found device is a Line Printer Daemon printer - #: ../panels/printers/pp-host.c:756 --#| msgid "%s Printer" - msgid "LPD Printer" - msgstr "Stampante LPD" - -@@ -4719,11 +4688,9 @@ - - #. Translators: The CUPS server is not running (we can not connect to it). - #: ../panels/printers/printers.ui.h:26 --msgid "" --"Sorry! The system printing service\n" -+msgid "Sorry! The system printing service\n" - "doesn't seem to be available." --msgstr "" --"Il servizio di sistema per la stampa\n" -+msgstr "Il servizio di sistema per la stampa\n" - "sembra non essere disponibile." - - #: ../panels/privacy/cc-privacy-panel.c:252 ../panels/privacy/privacy.ui.h:24 -@@ -4779,11 +4746,9 @@ - #. Translators: those are keywords for the privacy control-center panel - #: ../panels/privacy/gnome-privacy-panel.desktop.in.in.h:4 - msgid "" --"screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;" --"network;identity;" -+"screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;network;identity;" - msgstr "" --"schermo;blocco;diagnostica;crash;privato;recente;temporaneo;tmp;indice;nome;" --"rete;identità;" -+"schermo;blocco;diagnostica;crash;privato;recente;temporaneo;tmp;indice;nome;rete;identità;" - - #: ../panels/privacy/privacy.ui.h:1 - msgid "Screen Turns Off" -@@ -4892,8 +4857,8 @@ - #: ../panels/privacy/privacy.ui.h:37 - msgid "" - "Sending us information about which software you use helps us provide you " --"with more accurate recommendations. It also helps us to improve our " --"software.\n" -+"with more accurate recommendations. It also helps us to improve our software." -+"\n" - "\n" - "All the information we collect is made anonymous, and we will never share " - "your data with third parties." -@@ -4913,7 +4878,6 @@ - msgstr "Informativa sulla privacy" - - #: ../panels/privacy/privacy.ui.h:42 --#| msgid "Location: %s" - msgid "_Location Services" - msgstr "Servizi di _localizzazione" - -@@ -4939,34 +4903,34 @@ - msgid "No input sources found" - msgstr "Nessuna sorgente di input trovata" - --#: ../panels/region/cc-input-chooser.c:1076 -+#: ../panels/region/cc-input-chooser.c:1084 - msgctxt "Input Source" - msgid "Other" - msgstr "Altro" - --#: ../panels/region/cc-region-panel.c:239 --#: ../panels/user-accounts/um-user-panel.c:892 -+#: ../panels/region/cc-region-panel.c:243 -+#: ../panels/user-accounts/um-user-panel.c:1113 - msgid "Your session needs to be restarted for changes to take effect" - msgstr "È necessario riavviare la sessione per applicare le modifiche" - --#: ../panels/region/cc-region-panel.c:240 --#: ../panels/user-accounts/um-user-panel.c:893 -+#: ../panels/region/cc-region-panel.c:247 -+#: ../panels/user-accounts/um-user-panel.c:1117 - msgid "Restart Now" - msgstr "Riavvia adesso" - --#: ../panels/region/cc-region-panel.c:858 -+#: ../panels/region/cc-region-panel.c:867 - msgid "No input source selected" - msgstr "Nessuna sorgente di input selezionata" - --#: ../panels/region/cc-region-panel.c:1088 -+#: ../panels/region/cc-region-panel.c:1097 - msgid "Sorry" - msgstr "Spiacenti" - --#: ../panels/region/cc-region-panel.c:1090 -+#: ../panels/region/cc-region-panel.c:1099 - msgid "Input methods can't be used on the login screen" - msgstr "Non è possibile usare i metodi di input nella schermata di accesso" - --#: ../panels/region/cc-region-panel.c:1727 -+#: ../panels/region/cc-region-panel.c:1739 - msgid "Login Screen" - msgstr "Schermata di accesso" - -@@ -5104,7 +5068,7 @@ - msgid "_OK" - msgstr "_OK" - --#: ../panels/search/cc-search-panel.c:176 -+#: ../panels/search/cc-search-panel.c:177 - msgid "No applications found" - msgstr "Nessuna applicazione" - -@@ -5152,13 +5116,11 @@ - msgstr "Off" - - #: ../panels/sharing/cc-sharing-panel.c:304 --#| msgid "Enabled" - msgctxt "service is enabled" - msgid "Enabled" - msgstr "Abilitato" - - #: ../panels/sharing/cc-sharing-panel.c:307 --#| msgid "Active Jobs" - msgctxt "service is active" - msgid "Active" - msgstr "Attivo" -@@ -5167,7 +5129,7 @@ - msgid "Choose a Folder" - msgstr "Scegliere una cartella" - --#: ../panels/sharing/cc-sharing-panel.c:916 -+#: ../panels/sharing/cc-sharing-panel.c:917 - msgid "Copy" - msgstr "Copia" - -@@ -5182,11 +5144,9 @@ - #. Translators: those are keywords for the sharing control-center panel - #: ../panels/sharing/gnome-sharing-panel.desktop.in.in.h:4 - msgid "" --"share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;" --"pictures;photos;movies;server;renderer;" -+"share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;pictures;photos;movies;server;renderer;" - msgstr "" --"condivisione;share;ssh;host;nome;remoto;desktop;bluetooth;obex;media;" --"multimedia;audio;video;immagini;foto;film;server;" -+"condivisione;share;ssh;host;nome;remoto;desktop;bluetooth;obex;media;multimedia;audio;video;immagini;foto;film;server;" - - #: ../panels/sharing/org.gnome.controlcenter.remote-login-helper.policy.in.in.h:1 - msgid "Enable or disable remote login" -@@ -5198,15 +5158,14 @@ - "È necessario autenticarsi per abilitare o disabilitare l'accesso remoto" - - #. Label --#: ../panels/sharing/cc-sharing-networks.c:299 -+#: ../panels/sharing/cc-sharing-networks.c:303 - msgid "No networks selected for sharing" - msgstr "Nessuna rete selezionata per la condivisione" - --#. -+#. - #. * vim: sw=2 ts=8 cindent noai bs=2 --#. -+#. - #: ../panels/sharing/networks.ui.h:1 --#| msgid "Network" - msgid "Networks" - msgstr "Reti" - -@@ -5261,8 +5220,8 @@ - "your current network using: dav://%s" - msgstr "" - "La condivisione di file personali permette di condividere con altri la " --"propria cartella Pubblici sulla rete attuale usando: dav://%s" -+"propria cartella Pubblici sulla rete attuale usando: dav://%s" - - #: ../panels/sharing/sharing.ui.h:13 - msgid "Require Password" -@@ -5311,12 +5270,10 @@ - msgstr "Richiedere una password" - - #: ../panels/sharing/sharing.ui.h:26 --#| msgid "Share Music, Photos and Videos with others on the current network." - msgid "Share music, photos and videos over the network." - msgstr "Condivide musica, foto e video sulla rete." - - #: ../panels/sharing/sharing.ui.h:27 --#| msgid "Add Folder" - msgid "Folders" - msgstr "Cartelle" - -@@ -5333,8 +5290,7 @@ - #: ../panels/sound/data/gnome-sound-panel.desktop.in.in.h:4 - msgid "Card;Microphone;Volume;Fade;Balance;Bluetooth;Headset;Audio;" - msgstr "" --"Scheda;Microfono;Volume;Fade;Dissolvenza;Bilanciamento;Bluetooth;Auricolare;" --"Cuffie;Suono;" -+"Scheda;Microfono;Volume;Fade;Dissolvenza;Bilanciamento;Bluetooth;Auricolare;Cuffie;Suono;" - - #. Translators: This is the name of an audio file that sounds like the bark of a dog. - #. You might want to translate it into the equivalent words of your language. -@@ -5447,66 +5403,66 @@ - msgid "Peak detect" - msgstr "Rilevamento picco" - --#: ../panels/sound/gvc-mixer-dialog.c:1509 --#: ../panels/sound/gvc-sound-theme-chooser.c:594 -+#: ../panels/sound/gvc-mixer-dialog.c:1516 -+#: ../panels/sound/gvc-sound-theme-chooser.c:564 - msgid "Name" - msgstr "Nome" - --#: ../panels/sound/gvc-mixer-dialog.c:1528 -+#: ../panels/sound/gvc-mixer-dialog.c:1535 - msgid "Device" - msgstr "Dispositivo" - - # (ndt) quello pare essere il nome della scheda audio --#: ../panels/sound/gvc-mixer-dialog.c:1591 -+#: ../panels/sound/gvc-mixer-dialog.c:1598 - #, c-format - msgid "Speaker Testing for %s" - msgstr "Test altoparlanti per %s" - --#: ../panels/sound/gvc-mixer-dialog.c:1649 -+#: ../panels/sound/gvc-mixer-dialog.c:1656 - msgid "_Output volume:" - msgstr "V_olume di uscita: " - --#: ../panels/sound/gvc-mixer-dialog.c:1663 -+#: ../panels/sound/gvc-mixer-dialog.c:1670 - msgid "Output" - msgstr "Uscita" - --#: ../panels/sound/gvc-mixer-dialog.c:1668 -+#: ../panels/sound/gvc-mixer-dialog.c:1675 - msgid "C_hoose a device for sound output:" - msgstr "_Scegliere un dispositivo per l'uscita audio:" - --#: ../panels/sound/gvc-mixer-dialog.c:1693 -+#: ../panels/sound/gvc-mixer-dialog.c:1700 - msgid "Settings for the selected device:" - msgstr "Impostazioni per il dispositivo selezionato:" - --#: ../panels/sound/gvc-mixer-dialog.c:1704 -+#: ../panels/sound/gvc-mixer-dialog.c:1711 - msgid "Input" - msgstr "Ingresso" - --#: ../panels/sound/gvc-mixer-dialog.c:1711 -+#: ../panels/sound/gvc-mixer-dialog.c:1718 - msgid "_Input volume:" - msgstr "Volume d'_ingresso: " - --#: ../panels/sound/gvc-mixer-dialog.c:1734 -+#: ../panels/sound/gvc-mixer-dialog.c:1741 - msgid "Input level:" - msgstr "Livello d'ingresso:" - --#: ../panels/sound/gvc-mixer-dialog.c:1762 -+#: ../panels/sound/gvc-mixer-dialog.c:1769 - msgid "C_hoose a device for sound input:" - msgstr "_Scegliere un dispositivo per l'ingresso audio:" - --#: ../panels/sound/gvc-mixer-dialog.c:1789 -+#: ../panels/sound/gvc-mixer-dialog.c:1796 - msgid "Sound Effects" - msgstr "Effetti sonori" - --#: ../panels/sound/gvc-mixer-dialog.c:1796 -+#: ../panels/sound/gvc-mixer-dialog.c:1803 - msgid "_Alert volume:" - msgstr "Volume di _avviso: " - --#: ../panels/sound/gvc-mixer-dialog.c:1809 -+#: ../panels/sound/gvc-mixer-dialog.c:1816 - msgid "Applications" - msgstr "Applicazioni" - --#: ../panels/sound/gvc-mixer-dialog.c:1813 -+#: ../panels/sound/gvc-mixer-dialog.c:1820 - msgid "No application is currently playing or recording audio." - msgstr "Nessuna applicazione sta riproducendo dell'audio." - -@@ -5526,16 +5482,16 @@ - msgid "Testing event sound" - msgstr "Test evento sonoro" - --#: ../panels/sound/gvc-sound-theme-chooser.c:584 -+#: ../panels/sound/gvc-sound-theme-chooser.c:554 - msgid "Default" - msgstr "Predefinito" - - # (ndt) indica il tipo di effetto sonoro, da dove arriva --#: ../panels/sound/gvc-sound-theme-chooser.c:585 -+#: ../panels/sound/gvc-sound-theme-chooser.c:555 - msgid "From theme" - msgstr "Dal tema" - --#: ../panels/sound/gvc-sound-theme-chooser.c:769 -+#: ../panels/sound/gvc-sound-theme-chooser.c:739 - msgid "C_hoose an alert sound:" - msgstr "_Scegliere un suono di avviso:" - -@@ -5563,12 +5519,11 @@ - #. Translators: those are keywords for the universal access control-center panel - #: ../panels/universal-access/gnome-universal-access-panel.desktop.in.in.h:4 - msgid "" --"Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;" --"AccessX;Sticky;Keys;Slow;Bounce;Mouse;" -+"Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;AccessX;Sticky;Keys;Slow;Bounce;Mouse;" - msgstr "" --"Tastiera;Mouse;a11y;Accessibilità;Contrasto;Ingrandimento;Zoom;Screen;Reader;" --"Lettore;schermo;testo;font;tipo di carattere;dimensione;AccessX;Tasti;" --"Singoli;Sticky;Lenti;Slow;Rimbalzati;Slow;Mouse;" -+"Tastiera;Mouse;a11y;Accessibilità;Contrasto;Ingrandimento;Zoom;Screen;Reader;Lettore;schermo;testo;font;tipo " -+"di " -+"carattere;dimensione;AccessX;Tasti;Singoli;Sticky;Lenti;Slow;Rimbalzati;Slow;Mouse;" - - #: ../panels/universal-access/uap.ui.h:1 - msgid "_Always Show Universal Access Menu" -@@ -5634,6 +5589,7 @@ - msgid "The screen reader reads displayed text as you move the focus." - msgstr "" - "Il lettore di schermo legge il testo visualizzato allo spostamento del focus." -+"" - - #: ../panels/universal-access/uap.ui.h:19 - msgid "_Screen Reader" -@@ -5685,7 +5641,8 @@ - msgstr "_Disabilitare se due tasti sono premuti insieme" - - #: ../panels/universal-access/uap.ui.h:31 --msgid "Beep when a _modifer key is pressed" -+#, fuzzy -+msgid "Beep when a _modifier key is pressed" - msgstr "Avviso sonoro quando viene premuto un tasto _modificatore" - - #: ../panels/universal-access/uap.ui.h:32 -@@ -6050,11 +6007,9 @@ - msgstr "_Dominio" - - #: ../panels/user-accounts/data/account-dialog.ui.h:13 --msgid "" --"Go online to add\n" -+msgid "Go online to add\n" - "enterprise login accounts." --msgstr "" --"Andare online per aggiungere\n" -+msgstr "Andare online per aggiungere\n" - "account d'accesso enterprise." - - #: ../panels/user-accounts/data/account-dialog.ui.h:15 -@@ -6127,7 +6082,7 @@ - - # (ndt) titolo - #: ../panels/user-accounts/data/account-fingerprint.ui.h:9 --#: ../panels/user-accounts/um-fingerprint-dialog.c:687 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:689 - msgid "Enable Fingerprint Login" - msgstr "Abilita accesso con impronta" - -@@ -6169,7 +6124,6 @@ - msgstr "Cronologia accessi" - - #: ../panels/user-accounts/data/password-dialog.ui.h:1 --#| msgid "Show Password" - msgid "Change Password" - msgstr "Cambia password" - -@@ -6294,6 +6248,7 @@ - msgid "Try to use a mixture of letters, numbers and punctuation." - msgstr "" - "Provare a usare una combinazione di lettere, numeri e segni di punteggiatura." -+"" - - #: ../panels/user-accounts/pw-utils.c:109 - msgctxt "Password hint" -@@ -6416,7 +6371,8 @@ - - #: ../panels/user-accounts/um-account-dialog.c:34 - msgid "Should match the web address of your account provider." --msgstr "Dovrebbe corrispondere all'indirizzo web del proprio account provider." -+msgstr "" -+"Dovrebbe corrispondere all'indirizzo web del proprio account provider." - - #: ../panels/user-accounts/um-account-dialog.c:228 - msgid "Failed to add account" -@@ -6440,19 +6396,15 @@ - msgstr "Join al dominio non riuscita" - - #: ../panels/user-accounts/um-account-dialog.c:1035 --msgid "" --"That login name didn't work.\n" -+msgid "That login name didn't work.\n" - "Please try again." --msgstr "" --"Nome di accesso non valido.\n" -+msgstr "Nome di accesso non valido.\n" - "Provare di nuovo." - - #: ../panels/user-accounts/um-account-dialog.c:1042 --msgid "" --"That login password didn't work.\n" -+msgid "That login password didn't work.\n" - "Please try again." --msgstr "" --"Password non valida.\n" -+msgstr "Password non valida.\n" - "Provare di nuovo." - - #: ../panels/user-accounts/um-account-dialog.c:1050 -@@ -6461,7 +6413,8 @@ - - #: ../panels/user-accounts/um-account-dialog.c:1108 - msgid "Unable find the domain. Maybe you misspelled it?" --msgstr "Impossibile trovare il dominio. Forse è stato digitato in modo errato." -+msgstr "" -+"Impossibile trovare il dominio. Forse è stato digitato in modo errato." - - #: ../panels/user-accounts/um-fingerprint-dialog.c:138 - msgid "" -@@ -6498,15 +6451,15 @@ - "Eliminare le impronte digitali registrate così da disabilitare l'accesso " - "tramite impronta?" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:444 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:446 - msgid "Done!" - msgstr "Eseguito." - - #. translators: - #. * The variable is the name of the device, for example: - #. * "Could you not access "Digital Persona U.are.U 4000/4000B" device --#: ../panels/user-accounts/um-fingerprint-dialog.c:505 --#: ../panels/user-accounts/um-fingerprint-dialog.c:547 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:507 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:549 - #, c-format - msgid "Could not access '%s' device" - msgstr "Impossibile accedere al dispositivo «%s»" -@@ -6514,16 +6467,16 @@ - #. translators: - #. * The variable is the name of the device, for example: - #. * "Could you not access "Digital Persona U.are.U 4000/4000B" device --#: ../panels/user-accounts/um-fingerprint-dialog.c:588 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:590 - #, c-format - msgid "Could not start finger capture on '%s' device" - msgstr "Impossibile avviare la cattura dell'impronta sul dispositivo «%s»" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:638 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:640 - msgid "Could not access any fingerprint readers" - msgstr "Impossibile accedere ad alcun lettore di impronte digitali" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:639 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:641 - msgid "Please contact your system administrator for help." - msgstr "Contattare l'amministratore di sistema per ricevere aiuto." - -@@ -6531,8 +6484,8 @@ - #. * The variable is the name of the device, for example: - #. * "To enable fingerprint login, you need to save one of your fingerprints, using the - #. * 'Digital Persona U.are.U 4000/4000B' device." --#. --#: ../panels/user-accounts/um-fingerprint-dialog.c:721 -+#. -+#: ../panels/user-accounts/um-fingerprint-dialog.c:723 - #, c-format - msgid "" - "To enable fingerprint login, you need to save one of your fingerprints, " -@@ -6541,11 +6494,11 @@ - "Per abilitare l'accesso tramite impronta digitale è necessario salvare una " - "delle proprie impronte digitali utilizzando il dispositivo «%s»." - --#: ../panels/user-accounts/um-fingerprint-dialog.c:728 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:730 - msgid "Selecting finger" - msgstr "Selezione dito" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:729 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:731 - msgid "Enrolling fingerprints" - msgstr "Registrazione impronte digitali" - -@@ -6585,7 +6538,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/um-history-dialog.c:175 --#: ../panels/user-accounts/um-user-panel.c:631 -+#: ../panels/user-accounts/um-user-panel.c:844 - msgctxt "login date-time" - msgid "%k:%M" - msgstr "%k.%M" -@@ -6593,7 +6546,7 @@ - #. Translators: This indicates a login date-time. - #. The first %s is a date, and the second %s a time. - #: ../panels/user-accounts/um-history-dialog.c:178 --#: ../panels/user-accounts/um-user-panel.c:635 -+#: ../panels/user-accounts/um-user-panel.c:848 - #, c-format - msgctxt "login date-time" - msgid "%s, %s" -@@ -6668,24 +6621,31 @@ - msgid "Couldn't connect to the %s domain: %s" - msgstr "Impossibile connettersi al dominio %s: %s" - --#: ../panels/user-accounts/um-user-panel.c:198 -+#: ../panels/user-accounts/um-user-panel.c:239 - msgid "Other Accounts" - msgstr "Altri account" - --#: ../panels/user-accounts/um-user-panel.c:417 -+#: ../panels/user-accounts/um-user-panel.c:453 - msgid "Failed to delete user" - msgstr "Eliminazione dell'utente non riuscita" - --#: ../panels/user-accounts/um-user-panel.c:482 -+#: ../panels/user-accounts/um-user-panel.c:513 -+#: ../panels/user-accounts/um-user-panel.c:569 -+#: ../panels/user-accounts/um-user-panel.c:621 -+#, fuzzy -+msgid "Failed to revoke remotely managed user" -+msgstr "Eliminazione dell'utente non riuscita" -+ -+#: ../panels/user-accounts/um-user-panel.c:677 - msgid "You cannot delete your own account." - msgstr "Non è concesso eliminare il proprio account." - --#: ../panels/user-accounts/um-user-panel.c:491 -+#: ../panels/user-accounts/um-user-panel.c:686 - #, c-format - msgid "%s is still logged in" - msgstr "%s non ha ancora terminato la sessione" - --#: ../panels/user-accounts/um-user-panel.c:495 -+#: ../panels/user-accounts/um-user-panel.c:690 - msgid "" - "Deleting a user while they are logged in can leave the system in an " - "inconsistent state." -@@ -6693,12 +6653,12 @@ - "Eliminare un utente mentre è ancora in corso la sua sessione può lasciare il " - "sistema in uno stato incoerente." - --#: ../panels/user-accounts/um-user-panel.c:504 -+#: ../panels/user-accounts/um-user-panel.c:699 - #, c-format - msgid "Do you want to keep %s's files?" - msgstr "Mantenere i file di %s?" - --#: ../panels/user-accounts/um-user-panel.c:508 -+#: ../panels/user-accounts/um-user-panel.c:703 - msgid "" - "It is possible to keep the home directory, mail spool and temporary files " - "around when deleting a user account." -@@ -6706,101 +6666,100 @@ - "È possibile mantenere la directory home, gli spool di posta e i vari file " - "temporanei quando si elimina un account utente." - --#: ../panels/user-accounts/um-user-panel.c:511 -+#: ../panels/user-accounts/um-user-panel.c:706 - msgid "_Delete Files" - msgstr "_Elimina file" - --#: ../panels/user-accounts/um-user-panel.c:512 -+#: ../panels/user-accounts/um-user-panel.c:707 - msgid "_Keep Files" - msgstr "Mantieni _file" - --#: ../panels/user-accounts/um-user-panel.c:564 -+#: ../panels/user-accounts/um-user-panel.c:721 -+#, fuzzy, c-format -+msgid "Are you sure you want to permanently delete %s's account?" -+msgstr "Rimuovere veramente l'account?" -+ -+#: ../panels/user-accounts/um-user-panel.c:725 -+#, fuzzy -+msgid "_Delete" -+msgstr "_Elimina file" -+ -+#: ../panels/user-accounts/um-user-panel.c:777 - msgctxt "Password mode" - msgid "Account disabled" - msgstr "Account disabilitato" - --#: ../panels/user-accounts/um-user-panel.c:572 -+#: ../panels/user-accounts/um-user-panel.c:785 - msgctxt "Password mode" - msgid "To be set at next login" - msgstr "Da impostare al prossimo accesso" - --#: ../panels/user-accounts/um-user-panel.c:575 -+#: ../panels/user-accounts/um-user-panel.c:788 - msgctxt "Password mode" - msgid "None" - msgstr "Nessuno" - --#: ../panels/user-accounts/um-user-panel.c:624 -+#: ../panels/user-accounts/um-user-panel.c:837 - msgid "Logged in" - msgstr "Accesso eseguito" - - # Contatto mi pareva orrendo... --#: ../panels/user-accounts/um-user-panel.c:1067 -+#: ../panels/user-accounts/um-user-panel.c:1297 - msgid "Failed to contact the accounts service" - msgstr "Comunicazione con servizio account non riuscita" - --#: ../panels/user-accounts/um-user-panel.c:1069 -+#: ../panels/user-accounts/um-user-panel.c:1299 - msgid "Please make sure that the AccountService is installed and enabled." - msgstr "Assicurarsi che AccountService sia installato e abilitato." - --#: ../panels/user-accounts/um-user-panel.c:1110 --msgid "" --"To make changes,\n" -+#: ../panels/user-accounts/um-user-panel.c:1340 -+msgid "To make changes,\n" - "click the * icon first" --msgstr "" --"Per apportare cambiamenti,\n" -+msgstr "Per apportare cambiamenti,\n" - "fare prima clic sull'icona *" - --#: ../panels/user-accounts/um-user-panel.c:1148 -+#: ../panels/user-accounts/um-user-panel.c:1378 - msgid "Create a user account" - msgstr "Crea un account utente" - --#: ../panels/user-accounts/um-user-panel.c:1159 --#: ../panels/user-accounts/um-user-panel.c:1471 --msgid "" --"To create a user account,\n" -+#: ../panels/user-accounts/um-user-panel.c:1389 -+#: ../panels/user-accounts/um-user-panel.c:1702 -+msgid "To create a user account,\n" - "click the * icon first" --msgstr "" --"Per creare un account utente,\n" -+msgstr "Per creare un account utente,\n" - "fare prima clic sull'icona *" - --#: ../panels/user-accounts/um-user-panel.c:1169 -+#: ../panels/user-accounts/um-user-panel.c:1399 - msgid "Delete the selected user account" - msgstr "Elimina l'account utente selezionato" - --#: ../panels/user-accounts/um-user-panel.c:1181 --#: ../panels/user-accounts/um-user-panel.c:1476 --msgid "" --"To delete the selected user account,\n" -+#: ../panels/user-accounts/um-user-panel.c:1411 -+#: ../panels/user-accounts/um-user-panel.c:1707 -+msgid "To delete the selected user account,\n" - "click the * icon first" - msgstr "" - "Per eliminare gli account utente selezionati,\n" - "fare prima clic sull'icona *" - --#: ../panels/user-accounts/um-user-panel.c:1385 -+#: ../panels/user-accounts/um-user-panel.c:1616 - msgid "My Account" - msgstr "Account personale" - - #: ../panels/user-accounts/um-utils.c:567 - #, c-format --#| msgid "A user with the username '%s' already exists" - msgid "A user with the username '%s' already exists." - msgstr "Esiste già un utente con nome «%s»." - - #: ../panels/user-accounts/um-utils.c:571 - #, c-format --#| msgid "The username is too long" - msgid "The username is too long." - msgstr "Il nome utente è troppo lungo." - - #: ../panels/user-accounts/um-utils.c:574 --#| msgid "The username cannot start with a '-'" - msgid "The username cannot start with a '-'." - msgstr "Il nome utente non può cominciare con un \"-\"." - - #: ../panels/user-accounts/um-utils.c:577 --#| msgid "" --#| "The username should only consist of lower and upper case letters from a-" --#| "z, digits and any of characters '.', '-' and '_'" - msgid "" - "The username should only consist of lower and upper case letters from a-z, " - "digits and any of characters '.', '-' and '_'." -@@ -6837,9 +6796,9 @@ - "To edit a shortcut, choose the \"Send Keystroke\" action, press the keyboard " - "shortcut button and hold down the new keys or press Backspace to clear." - msgstr "" --"Per modificare una scorciatoia, scegliere l'azione \"Invia pressione tasti" --"\", premere il pulsante scorciatoia da tastiera e tenere premuti i nuovi " --"tasti, oppure premere Backspace per cancellarla." -+"Per modificare una scorciatoia, scegliere l'azione \"Invia pressione " -+"tasti\", premere il pulsante scorciatoia da tastiera e tenere premuti i " -+"nuovi tasti, oppure premere Backspace per cancellarla." - - #: ../panels/wacom/calibrator/calibrator-gui.c:83 - msgid "" -@@ -6902,11 +6861,11 @@ - msgid "%d of %d" - msgstr "%d di %d" - --#: ../panels/wacom/cc-wacom-page.c:530 -+#: ../panels/wacom/cc-wacom-page.c:522 - msgid "Display Mapping" - msgstr "Mappatura display" - --#: ../panels/wacom/cc-wacom-stylus-page.c:372 -+#: ../panels/wacom/cc-wacom-stylus-page.c:376 - msgid "Button" - msgstr "Pulsante" - -@@ -7187,22 +7146,22 @@ - msgid "Quit" - msgstr "Esci" - --#: ../shell/cc-window.c:61 ../shell/cc-window.c:1490 -+#: ../shell/cc-window.c:61 ../shell/cc-window.c:1493 - msgid "All Settings" - msgstr "Tutte le impostazioni" - - #. Add categories --#: ../shell/cc-window.c:876 -+#: ../shell/cc-window.c:879 - msgctxt "category" - msgid "Personal" - msgstr "Personale" - --#: ../shell/cc-window.c:877 -+#: ../shell/cc-window.c:880 - msgctxt "category" - msgid "Hardware" - msgstr "Hardware" - --#: ../shell/cc-window.c:878 -+#: ../shell/cc-window.c:881 - msgctxt "category" - msgid "System" - msgstr "Sistema" -@@ -7210,73 +7169,3 @@ - #: ../shell/gnome-control-center.desktop.in.in.h:2 - msgid "Preferences;Settings;" - msgstr "Preferenze;Impostazioni;" -- --#~ msgid "Immediately" --#~ msgstr "Immediatamente" -- --#~ msgid "Share Media On This Network" --#~ msgstr "Condividere file multimediali su questa rete" -- --#~ msgid "Shared Folders" --#~ msgstr "Cartelle condivise" -- --#~ msgid "column" --#~ msgstr "colonna" -- --#~ msgid "Remove Folder" --#~ msgstr "Rimuovi cartella" -- --#~ msgid "Share Public Folder On This Network" --#~ msgstr "Condividere la cartella Pubblici su questa rete" -- --#~ msgid "Flickr" --#~ msgstr "Flickr" -- --#~ msgid "Set Up New Device" --#~ msgstr "Imposta nuovo dispositivo" -- --#~ msgid "Connection" --#~ msgstr "Connessione" -- --#~ msgid "Paired" --#~ msgstr "Accoppiato" -- --#~ msgid "Type" --#~ msgstr "Tipo" -- --#~ msgid "Mouse & Touchpad Settings" --#~ msgstr "Impostazioni mouse e touchpad" -- --#~ msgid "Sound Settings" --#~ msgstr "Impostazioni audio" -- --#~ msgid "Keyboard Settings" --#~ msgstr "Impostazioni tastiera" -- --#~ msgid "Send Files…" --#~ msgstr "Invia file…" -- --#~ msgid "Visibility" --#~ msgstr "Visibilità" -- --#~ msgid "Visibility of “%s”" --#~ msgstr "Visibilità di «%s»" -- --#~ msgid "Remove '%s' from the list of devices?" --#~ msgstr "Rimuovere «%s» dall'elenco dei dispositivi?" -- --#~ msgid "" --#~ "If you remove the device, you will have to set it up again before next " --#~ "use." --#~ msgstr "" --#~ "Se si rimuove il dispositivo, sarà poi necessario impostarlo di nuovo " --#~ "prima del prossimo uso." -- --#~ msgid "Install Updates" --#~ msgstr "Installa aggiornamenti" -- --#~ msgid "System Up-To-Date" --#~ msgstr "Sistema aggiornato" -- --#~ msgid "Search for network printers or filter result" --#~ msgstr "Cerca stampanti di rete o filtra i risultati" -diff -urN gnome-control-center-3.14.5/po/ja.po gnome-control-center-3.14.5_localized/po/ja.po ---- gnome-control-center-3.14.5/po/ja.po 2015-04-30 17:35:48.000000000 +0530 -+++ gnome-control-center-3.14.5_localized/po/ja.po 2016-03-12 12:08:33.709000000 +0530 -@@ -14,20 +14,22 @@ - # Hideki Yamnane , 2011. - # Noriko Mizumoto , 2012. - # Ikuya Awashiro , 2014. --# -+# noriko , 2016. #zanata -+# pnemade , 2016. #zanata - msgid "" - msgstr "" --"Project-Id-Version: gnome-control-center master\n" --"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-control-center&keywords=I18N+L10N&component=general\n" --"POT-Creation-Date: 2014-09-16 09:00+0000\n" --"PO-Revision-Date: 2014-09-16 22:57+0900\n" --"Last-Translator: Jiro Matsuzawa \n" --"Language-Team: Japanese \n" --"Language: ja\n" -+"Project-Id-Version: PACKAGE VERSION\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2016-02-10 09:57+0530\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"PO-Revision-Date: 2016-03-09 07:21+0000\n" -+"Last-Translator: noriko \n" -+"Language-Team: Japanese \n" -+"Language: ja\n" - "Plural-Forms: nplurals=1; plural=0;\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../panels/background/background.ui.h:1 - #: ../panels/background/gnome-background-panel.desktop.in.in.h:1 -@@ -116,8 +118,8 @@ - #: ../panels/background/cc-background-chooser-dialog.c:583 - #: ../panels/color/cc-color-panel.c:224 ../panels/color/cc-color-panel.c:961 - #: ../panels/color/color.ui.h:29 ../panels/common/language-chooser.ui.h:3 --#: ../panels/display/cc-display-panel.c:1537 --#: ../panels/display/cc-display-panel.c:1976 -+#: ../panels/display/cc-display-panel.c:1540 -+#: ../panels/display/cc-display-panel.c:1985 - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:2 - #: ../panels/network/connection-editor/connection-editor.ui.h:1 - #: ../panels/network/connection-editor/vpn-helpers.c:245 -@@ -125,7 +127,7 @@ - #: ../panels/network/net-device-wifi.c:1247 - #: ../panels/network/net-device-wifi.c:1440 - #: ../panels/network/network-wifi.ui.h:1 --#: ../panels/printers/cc-printers-panel.c:1947 -+#: ../panels/printers/cc-printers-panel.c:1949 - #: ../panels/printers/new-printer-dialog.ui.h:2 - #: ../panels/privacy/cc-privacy-panel.c:468 - #: ../panels/region/format-chooser.ui.h:3 -@@ -137,7 +139,8 @@ - #: ../panels/user-accounts/um-fingerprint-dialog.c:264 - #: ../panels/user-accounts/um-photo-dialog.c:95 - #: ../panels/user-accounts/um-photo-dialog.c:222 --#: ../panels/user-accounts/um-user-panel.c:513 -+#: ../panels/user-accounts/um-user-panel.c:708 -+#: ../panels/user-accounts/um-user-panel.c:726 - msgid "_Cancel" - msgstr "キャンセル(_C)" - -@@ -147,18 +150,18 @@ - msgid "Select" - msgstr "選択" - --#: ../panels/background/cc-background-item.c:197 -+#: ../panels/background/cc-background-item.c:203 - msgid "multiple sizes" - msgstr "複数のサイズ" - - #. translators: 100 × 100px - #. * Note that this is not an "x", but U+00D7 MULTIPLICATION SIGN --#: ../panels/background/cc-background-item.c:201 -+#: ../panels/background/cc-background-item.c:207 - #, c-format - msgid "%d × %d" - msgstr "%d × %d" - --#: ../panels/background/cc-background-item.c:327 -+#: ../panels/background/cc-background-item.c:333 - msgid "No Desktop Background" - msgstr "デスクトップの背景ではありません" - -@@ -206,14 +209,16 @@ - #. * dial or switch manually. We also show a picture showing them - #. * what to do... - #: ../panels/color/cc-color-calibrate.c:367 --msgid "Move your calibration device to the calibrate position and press 'Continue'" -+msgid "" -+"Move your calibration device to the calibrate position and press 'Continue'" - msgstr "キャリブレーション装置を測定位置に移動して '続ける' を押してください" - - #. TRANSLATORS: Some calibration devices need the user to move a - #. * dial or switch manually. We also show a picture showing them - #. * what to do... - #: ../panels/color/cc-color-calibrate.c:373 --msgid "Move your calibration device to the surface position and press 'Continue'" -+msgid "" -+"Move your calibration device to the surface position and press 'Continue'" - msgstr "キャリブレーション装置を表面の位置に移動して '続ける' を押してください" - - #. TRANSLATORS: on some hardware e.g. Lenovo W700 the sensor -@@ -412,7 +417,9 @@ - - #. TRANSLATORS: this is when the button is insensitive - #: ../panels/color/cc-color-panel.c:1337 ../panels/color/cc-color-panel.c:1361 --msgid "The measuring instrument is not detected. Please check it is turned on and correctly connected." -+msgid "" -+"The measuring instrument is not detected. Please check it is turned on and " -+"correctly connected." - msgstr "計測器が検出できません。電源が入っていること、正しく接続されていることを確認してください。" - - #. TRANSLATORS: this is when the button is insensitive -@@ -536,11 +543,16 @@ - msgstr "画面位置調整" - - #: ../panels/color/color.ui.h:2 --msgid "Calibration will produce a profile that you can use to color manage your screen. The longer you spend on calibration, the better the quality of the color profile." --msgstr "キャリブレーションは画面の色管理に利用できるプロファイルを作成します。キャリブレーションに時間をかけるほど色プロファイルの品質は向上します。" -+msgid "" -+"Calibration will produce a profile that you can use to color manage your " -+"screen. The longer you spend on calibration, the better the quality of the " -+"color profile." -+msgstr "" -+"キャリブレーションは画面の色管理に利用できるプロファイルを作成します。キャリブレーションに時間をかけるほど色プロファイルの品質は向上します。" - - #: ../panels/color/color.ui.h:3 --msgid "You will not be able to use your computer while calibration takes place." -+msgid "" -+"You will not be able to use your computer while calibration takes place." - msgstr "キャリブレーション処理中はコンピューターを使えなくなります。" - - #. This is the approximate time it takes to calibrate the display. -@@ -574,7 +586,9 @@ - msgstr "ディスプレイの種類" - - #: ../panels/color/color.ui.h:13 --msgid "Select a display target white point. Most displays should be calibrated to a D65 illuminant." -+msgid "" -+"Select a display target white point. Most displays should be calibrated to a " -+"D65 illuminant." - msgstr "表示対象の白色点を選択してください。ほとんどのディスプレイが D65 光源に対してキャリブレーションを行えばいいはずです。" - - #: ../panels/color/color.ui.h:14 -@@ -582,11 +596,15 @@ - msgstr "白色点のプロファイル作成" - - #: ../panels/color/color.ui.h:15 --msgid "Please set the display to a brightness that is typical for you. Color management will be most accurate at this brightness level." -+msgid "" -+"Please set the display to a brightness that is typical for you. Color " -+"management will be most accurate at this brightness level." - msgstr "ディスプレイを標準的に使っている輝度に設定してください。色管理はこの輝度で最も正確になります。 " - - #: ../panels/color/color.ui.h:16 --msgid "Alternatively, you can use the brightness level used with one of the other profiles for this device." -+msgid "" -+"Alternatively, you can use the brightness level used with one of the other " -+"profiles for this device." - msgstr "他のプロファイルで使っている輝度をこのデバイス用に利用することもできます。" - - #: ../panels/color/color.ui.h:17 -@@ -594,7 +612,9 @@ - msgstr "ディスプレイの明るさ" - - #: ../panels/color/color.ui.h:18 --msgid "You can use a color profile on different computers, or even create profiles for different lighting conditions." -+msgid "" -+"You can use a color profile on different computers, or even create profiles " -+"for different lighting conditions." - msgstr "異なるコンピューターの色プロファイルを利用したり、異なる照明条件のプロファイルを作成することもできます。" - - #: ../panels/color/color.ui.h:19 -@@ -626,11 +646,16 @@ - msgstr "インターネット接続が必要です" - - #: ../panels/color/color.ui.h:26 --msgid "You may find these instructions on how to use the profile on GNU/Linux, Apple OS X and Microsoft Windows systems useful." --msgstr "GNU/LinuxApple OS XMicrosoft Windows システムでのプロファイルの利用方法が役立つかもしません。" -+msgid "" -+"You may find these instructions on how to use the profile on GNU/Linux, Apple OS X and Microsoft Windows systems useful." -+msgstr "" -+"GNU/LinuxApple OS XMicrosoft Windows システムでのプロファイルの利用方法が役立つかもしません。" - - #: ../panels/color/color.ui.h:27 --#: ../panels/user-accounts/um-fingerprint-dialog.c:730 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:732 - msgid "Summary" - msgstr "概要" - -@@ -648,7 +673,9 @@ - msgstr "追加(_A)" - - #: ../panels/color/color.ui.h:31 --msgid "Problems detected. The profile may not work correctly. Show details." -+msgid "" -+"Problems detected. The profile may not work correctly. Show " -+"details." - msgstr "問題が検出されました。プロファイルは正しく動作しない可能性があります。詳細を表示する。" - - #: ../panels/color/color.ui.h:32 -@@ -793,13 +820,15 @@ - msgstr "色" - - #: ../panels/color/gnome-color-panel.desktop.in.in.h:2 --msgid "Calibrate the color of your devices, such as displays, cameras or printers" -+msgid "" -+"Calibrate the color of your devices, such as displays, cameras or printers" - msgstr "ディスプレイやカメラ、プリンター等のデバイスのキャリブレート" - - #. Translators: those are keywords for the color control-center panel - #: ../panels/color/gnome-color-panel.desktop.in.in.h:4 - msgid "Color;ICC;Profile;Calibrate;Printer;Display;" --msgstr "Color;ICC;Profile;Calibrate;Printer;Display;色;ICC;プロファイル;キャリブレーション;プリンター;ディスプレイ;" -+msgstr "" -+"Color;ICC;Profile;Calibrate;Printer;Display;色;ICC;プロファイル;キャリブレーション;プリンター;ディスプレイ;" - - #. Add some common regions - #: ../panels/common/cc-common-language.c:684 -@@ -1029,23 +1058,23 @@ - msgid "To change time or date settings, you need to authenticate." - msgstr "時刻と日付の設定を変更するには、認証が必要です。" - --#: ../panels/display/cc-display-panel.c:487 -+#: ../panels/display/cc-display-panel.c:490 - msgid "Lid Closed" - msgstr "蓋が閉じています" - - #. translators: "Mirrored" describes when both displays show the same view --#: ../panels/display/cc-display-panel.c:490 -+#: ../panels/display/cc-display-panel.c:493 - msgid "Mirrored" - msgstr "ミラー済み" - --#: ../panels/display/cc-display-panel.c:492 --#: ../panels/display/cc-display-panel.c:2145 -+#: ../panels/display/cc-display-panel.c:495 -+#: ../panels/display/cc-display-panel.c:2155 - msgid "Primary" - msgstr "プライマリ" - --#: ../panels/display/cc-display-panel.c:494 -+#: ../panels/display/cc-display-panel.c:497 - #: ../panels/notifications/cc-notifications-panel.c:185 --#: ../panels/power/cc-power-panel.c:1684 ../panels/power/cc-power-panel.c:1695 -+#: ../panels/power/cc-power-panel.c:1704 ../panels/power/cc-power-panel.c:1715 - #: ../panels/privacy/cc-privacy-panel.c:84 - #: ../panels/privacy/cc-privacy-panel.c:124 - #: ../panels/universal-access/cc-ua-panel.c:257 -@@ -1055,81 +1084,81 @@ - msgid "Off" - msgstr "オフ" - --#: ../panels/display/cc-display-panel.c:497 -+#: ../panels/display/cc-display-panel.c:500 - msgid "Secondary" - msgstr "セカンダリ" - --#: ../panels/display/cc-display-panel.c:1533 -+#: ../panels/display/cc-display-panel.c:1536 - msgid "Arrange Combined Displays" - msgstr "ディスプレイの配置の調整" - --#: ../panels/display/cc-display-panel.c:1539 --#: ../panels/display/cc-display-panel.c:1979 -+#: ../panels/display/cc-display-panel.c:1542 -+#: ../panels/display/cc-display-panel.c:1988 - #: ../panels/network/connection-editor/connection-editor.ui.h:2 - #: ../panels/network/network-wifi.ui.h:2 - msgid "_Apply" - msgstr "適用(_A)" - --#: ../panels/display/cc-display-panel.c:1560 -+#: ../panels/display/cc-display-panel.c:1563 - msgid "Drag displays to rearrange them" - msgstr "ディスプレイをドラッグして位置を調整してください" - --#: ../panels/display/cc-display-panel.c:2081 -+#: ../panels/display/cc-display-panel.c:2090 - msgid "Size" - msgstr "サイズ" - - #. aspect ratio --#: ../panels/display/cc-display-panel.c:2094 -+#: ../panels/display/cc-display-panel.c:2103 - msgid "Aspect Ratio" - msgstr "アスペクト比" - --#: ../panels/display/cc-display-panel.c:2115 -+#: ../panels/display/cc-display-panel.c:2125 - #: ../panels/printers/pp-options-dialog.c:85 - msgid "Resolution" - msgstr "解像度" - --#: ../panels/display/cc-display-panel.c:2146 -+#: ../panels/display/cc-display-panel.c:2156 - msgid "Show the top bar and Activities Overview on this display" - msgstr "トップバーとアクティビティ画面をこのディスプレイに表示する" - --#: ../panels/display/cc-display-panel.c:2152 -+#: ../panels/display/cc-display-panel.c:2162 - msgid "Secondary Display" - msgstr "セカンダリディスプレイ" - --#: ../panels/display/cc-display-panel.c:2153 -+#: ../panels/display/cc-display-panel.c:2163 - msgid "Join this display with another to create an extra workspace" - msgstr "このディスプレイをつなげて拡張ワークスペースとして使用する" - --#: ../panels/display/cc-display-panel.c:2160 -+#: ../panels/display/cc-display-panel.c:2170 - msgid "Presentation" - msgstr "プレゼンテーション" - --#: ../panels/display/cc-display-panel.c:2161 -+#: ../panels/display/cc-display-panel.c:2171 - msgid "Show slideshows and media only" - msgstr "スライドショーやメディアだけを表示する" - - #. translators: "Mirror" describes when both displays show the same view --#: ../panels/display/cc-display-panel.c:2166 -+#: ../panels/display/cc-display-panel.c:2176 - msgid "Mirror" - msgstr "ミラー" - --#: ../panels/display/cc-display-panel.c:2167 -+#: ../panels/display/cc-display-panel.c:2177 - msgid "Show your existing view on both displays" - msgstr "既存の画面をすべてのディスプレイに表示する" - --#: ../panels/display/cc-display-panel.c:2173 -+#: ../panels/display/cc-display-panel.c:2183 - msgid "Turn Off" - msgstr "オフ" - --#: ../panels/display/cc-display-panel.c:2174 -+#: ../panels/display/cc-display-panel.c:2184 - msgid "Don't use this display" - msgstr "このディスプレイを使用しない" - --#: ../panels/display/cc-display-panel.c:2383 -+#: ../panels/display/cc-display-panel.c:2388 - msgid "Could not get screen information" - msgstr "スクリーンの情報を取得できませんでした" - --#: ../panels/display/cc-display-panel.c:2414 -+#: ../panels/display/cc-display-panel.c:2419 - msgid "_Arrange Combined Displays" - msgstr "ディスプレイの配置を調整(_A)" - -@@ -1144,7 +1173,8 @@ - #. Translators: those are keywords for the display control-center panel - #: ../panels/display/gnome-display-panel.desktop.in.in.h:4 - msgid "Panel;Projector;xrandr;Screen;Resolution;Refresh;Monitor;" --msgstr "Panel;Projector;xrandr;Screen;Resolution;Refresh;パネル;プロジェクター;画面;解像度;リフレッシュ;モニター;ディスプレイ;ディスプレー;" -+msgstr "" -+"Panel;Projector;xrandr;Screen;Resolution;Refresh;パネル;プロジェクター;画面;解像度;リフレッシュ;モニター;ディスプレイ;ディスプレー;" - - #: ../panels/info/cc-info-panel.c:384 - msgid "Wayland" -@@ -1155,49 +1185,45 @@ - msgid "Unknown" - msgstr "不明" - --#: ../panels/info/cc-info-panel.c:472 --#, c-format --msgid "%s %d-bit" --msgstr "%s %d ビット" -- --#: ../panels/info/cc-info-panel.c:474 -+#. translators: This is the the type of OS architecture, eg: "64-bit" or "32-bit" -+#: ../panels/info/cc-info-panel.c:513 - #, c-format - msgid "%d-bit" - msgstr "%d ビット" - --#: ../panels/info/cc-info-panel.c:1154 -+#: ../panels/info/cc-info-panel.c:1191 - msgid "Ask what to do" - msgstr "どうするか確認する" - --#: ../panels/info/cc-info-panel.c:1158 -+#: ../panels/info/cc-info-panel.c:1195 - msgid "Do nothing" - msgstr "なにもしない" - --#: ../panels/info/cc-info-panel.c:1162 -+#: ../panels/info/cc-info-panel.c:1199 - msgid "Open folder" - msgstr "フォルダーを開く" - --#: ../panels/info/cc-info-panel.c:1253 -+#: ../panels/info/cc-info-panel.c:1290 - msgid "Other Media" - msgstr "他のメディア" - --#: ../panels/info/cc-info-panel.c:1284 -+#: ../panels/info/cc-info-panel.c:1321 - msgid "Select an application for audio CDs" - msgstr "オーディオCD用のアプリケーションを選択" - --#: ../panels/info/cc-info-panel.c:1285 -+#: ../panels/info/cc-info-panel.c:1322 - msgid "Select an application for video DVDs" - msgstr "ビデオDVD用のアプリケーションを選択" - --#: ../panels/info/cc-info-panel.c:1286 -+#: ../panels/info/cc-info-panel.c:1323 - msgid "Select an application to run when a music player is connected" - msgstr "ミュージックプレイヤーが接続された時に実行するアプリケーションを選択" - --#: ../panels/info/cc-info-panel.c:1287 -+#: ../panels/info/cc-info-panel.c:1324 - msgid "Select an application to run when a camera is connected" - msgstr "カメラが接続された時に起動するアプリケーションを選択" - --#: ../panels/info/cc-info-panel.c:1288 -+#: ../panels/info/cc-info-panel.c:1325 - msgid "Select an application for software CDs" - msgstr "ソフトウェアの CD を開くアプリケーションを選択してください" - -@@ -1205,73 +1231,73 @@ - #. * strings, just here to fix capitalization of the English originals. - #. * If the shared-mime-info translation works for your language, - #. * simply leave these untranslated. --#. --#: ../panels/info/cc-info-panel.c:1300 -+#. -+#: ../panels/info/cc-info-panel.c:1337 - msgid "audio DVD" - msgstr "オーディオ DVD" - --#: ../panels/info/cc-info-panel.c:1301 -+#: ../panels/info/cc-info-panel.c:1338 - msgid "blank Blu-ray disc" - msgstr "空のブルーレイディスク" - --#: ../panels/info/cc-info-panel.c:1302 -+#: ../panels/info/cc-info-panel.c:1339 - msgid "blank CD disc" - msgstr "空の CD" - --#: ../panels/info/cc-info-panel.c:1303 -+#: ../panels/info/cc-info-panel.c:1340 - msgid "blank DVD disc" - msgstr "空の DVD" - --#: ../panels/info/cc-info-panel.c:1304 -+#: ../panels/info/cc-info-panel.c:1341 - msgid "blank HD DVD disc" - msgstr "空の HD DVD" - --#: ../panels/info/cc-info-panel.c:1305 -+#: ../panels/info/cc-info-panel.c:1342 - msgid "Blu-ray video disc" - msgstr "ブルーレイビデオディスク" - --#: ../panels/info/cc-info-panel.c:1306 -+#: ../panels/info/cc-info-panel.c:1343 - msgid "e-book reader" - msgstr "電子書籍リーダー" - --#: ../panels/info/cc-info-panel.c:1307 -+#: ../panels/info/cc-info-panel.c:1344 - msgid "HD DVD video disc" - msgstr "HD DVD ビデオディスク" - --#: ../panels/info/cc-info-panel.c:1308 -+#: ../panels/info/cc-info-panel.c:1345 - msgid "Picture CD" - msgstr "ピクチャーCD" - --#: ../panels/info/cc-info-panel.c:1309 -+#: ../panels/info/cc-info-panel.c:1346 - msgid "Super Video CD" - msgstr "スーパービデオCD" - --#: ../panels/info/cc-info-panel.c:1310 -+#: ../panels/info/cc-info-panel.c:1347 - msgid "Video CD" - msgstr "ビデオCD" - --#: ../panels/info/cc-info-panel.c:1311 -+#: ../panels/info/cc-info-panel.c:1348 - msgid "Windows software" - msgstr "Windows ソフトウェア" - --#: ../panels/info/cc-info-panel.c:1434 -+#: ../panels/info/cc-info-panel.c:1471 - #: ../panels/keyboard/keyboard-shortcuts.c:1932 - msgid "Section" - msgstr "セクション" - --#: ../panels/info/cc-info-panel.c:1443 ../panels/info/info.ui.h:14 -+#: ../panels/info/cc-info-panel.c:1480 ../panels/info/info.ui.h:13 - msgid "Overview" - msgstr "概要" - --#: ../panels/info/cc-info-panel.c:1449 ../panels/info/info.ui.h:21 -+#: ../panels/info/cc-info-panel.c:1486 ../panels/info/info.ui.h:20 - msgid "Default Applications" - msgstr "既定のアプリケーション" - --#: ../panels/info/cc-info-panel.c:1454 ../panels/info/info.ui.h:29 -+#: ../panels/info/cc-info-panel.c:1491 ../panels/info/info.ui.h:28 - msgid "Removable Media" - msgstr "リムーバブルメディア" - --#: ../panels/info/cc-info-panel.c:1479 -+#: ../panels/info/cc-info-panel.c:1516 - #, c-format - msgid "Version %s" - msgstr "バージョン %s" -@@ -1288,8 +1314,10 @@ - - #. sure that you use the same "translation" for those keywords - #: ../panels/info/gnome-info-panel.desktop.in.in.h:4 --msgid "device;system;information;memory;processor;version;default;application;preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" --msgstr "device;system;information;memory;processor;version;default;application;preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;デバイス;システム;情報;メモリ;プロセッサ;バージョン;デフォルト;アプリケーション;設定;オーディオ;音声;音楽;ミュージック;ビデオ;動画;ディスク;リムーバブルメディア;媒体;自動起動;オートラン;" -+msgid "" -+"device;system;information;memory;processor;version;default;application;preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" -+msgstr "" -+"device;system;information;memory;processor;version;default;application;preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;デバイス;システム;情報;メモリ;プロセッサ;バージョン;デフォルト;アプリケーション;設定;オーディオ;音声;音楽;ミュージック;ビデオ;動画;ディスク;リムーバブルメディア;媒体;自動起動;オートラン;" - - #: ../panels/info/info.ui.h:1 - msgid "Select how other media should be handled" -@@ -1315,80 +1343,79 @@ - msgid "Processor" - msgstr "プロセッサ" - --#. To translators: this field contains the distro name, version and type --#: ../panels/info/info.ui.h:8 --msgid "Base system" --msgstr "ベースシステム" -+#: ../panels/info/info.ui.h:7 -+msgid "OS Type" -+msgstr "OS の種類" - --#: ../panels/info/info.ui.h:9 -+#: ../panels/info/info.ui.h:8 - msgid "Disk" - msgstr "ディスク" - --#: ../panels/info/info.ui.h:10 -+#: ../panels/info/info.ui.h:9 - msgid "Calculating…" - msgstr "計算中…" - --#: ../panels/info/info.ui.h:11 -+#: ../panels/info/info.ui.h:10 - msgid "Graphics" - msgstr "グラフィック" - --#: ../panels/info/info.ui.h:12 -+#: ../panels/info/info.ui.h:11 - msgid "Virtualization" - msgstr "仮想化" - --#: ../panels/info/info.ui.h:13 -+#: ../panels/info/info.ui.h:12 - msgid "Check for updates" - msgstr "更新の確認" - --#: ../panels/info/info.ui.h:15 -+#: ../panels/info/info.ui.h:14 - msgid "_Web" - msgstr "ウェブ(_W)" - --#: ../panels/info/info.ui.h:16 -+#: ../panels/info/info.ui.h:15 - msgid "_Mail" - msgstr "メール(_M)" - --#: ../panels/info/info.ui.h:17 -+#: ../panels/info/info.ui.h:16 - msgid "_Calendar" - msgstr "カレンダー(_C)" - --#: ../panels/info/info.ui.h:18 -+#: ../panels/info/info.ui.h:17 - msgid "M_usic" - msgstr "音楽(_U)" - --#: ../panels/info/info.ui.h:19 -+#: ../panels/info/info.ui.h:18 - msgid "_Video" - msgstr "ビデオ(_V)" - --#: ../panels/info/info.ui.h:20 -+#: ../panels/info/info.ui.h:19 - msgid "_Photos" - msgstr "写真(_P)" - --#: ../panels/info/info.ui.h:22 -+#: ../panels/info/info.ui.h:21 - msgid "Select how media should be handled" - msgstr "メディアの処理方法を選択してください" - --#: ../panels/info/info.ui.h:23 -+#: ../panels/info/info.ui.h:22 - msgid "CD _audio" - msgstr "CD オーディオ(_A)" - --#: ../panels/info/info.ui.h:24 -+#: ../panels/info/info.ui.h:23 - msgid "_DVD video" - msgstr "DVD ビデオ(_D)" - --#: ../panels/info/info.ui.h:25 -+#: ../panels/info/info.ui.h:24 - msgid "_Music player" - msgstr "音楽プレイヤー(_M)" - --#: ../panels/info/info.ui.h:26 -+#: ../panels/info/info.ui.h:25 - msgid "_Software" - msgstr "ソフトウェア(_S)" - --#: ../panels/info/info.ui.h:27 -+#: ../panels/info/info.ui.h:26 - msgid "_Other Media…" - msgstr "他のメディア(_O)…" - --#: ../panels/info/info.ui.h:28 -+#: ../panels/info/info.ui.h:27 - msgid "_Never prompt or start programs on media insertion" - msgstr "メディア挿入時にどう処理するか確認したり、プログラムを実行したりしない(_N)" - -@@ -1458,7 +1485,7 @@ - msgid "Launch help browser" - msgstr "ヘルプブラウザーを起動" - --#: ../panels/keyboard/01-launchers.xml.in.h:3 ../shell/cc-window.c:1601 -+#: ../panels/keyboard/01-launchers.xml.in.h:3 ../shell/cc-window.c:1604 - #: ../shell/gnome-control-center.desktop.in.in.h:1 - msgid "Settings" - msgstr "設定" -@@ -1582,7 +1609,7 @@ - #. Translators: This key is also known as 'third level - #. * chooser'. AltGr is often used for this purpose. See - #. * https://live.gnome.org/Design/SystemSettings/RegionAndLanguage --#. -+#. - #: ../panels/keyboard/cc-keyboard-option.c:354 - msgid "Alternative Characters Key" - msgstr "代替文字キー" -@@ -1590,7 +1617,7 @@ - #. Translators: The Compose key is used to initiate key - #. * sequences that are combined to form a single character. - #. * See http://en.wikipedia.org/wiki/Compose_key --#. -+#. - #: ../panels/keyboard/cc-keyboard-option.c:363 - msgid "Compose Key" - msgstr "Compose キー" -@@ -1694,7 +1721,9 @@ - msgstr "ショートカットの削除" - - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:23 --msgid "To edit a shortcut, click the row and hold down the new keys or press Backspace to clear." -+msgid "" -+"To edit a shortcut, click the row and hold down the new keys or press " -+"Backspace to clear." - msgstr "ショートカットを編集するには、対応する行をクリックし、新しいキーの組み合わせを押すか、[BS] キーで取り消してください。" - - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:24 -@@ -1713,7 +1742,8 @@ - #: ../panels/keyboard/keyboard-shortcuts.c:1357 - #, c-format - msgid "" --"The shortcut \"%s\" cannot be used because it will become impossible to type using this key.\n" -+"The shortcut \"%s\" cannot be used because it will become impossible to type " -+"using this key.\n" - "Please try with a key such as Control, Alt or Shift at the same time." - msgstr "" - "このキーでは入力できないので \"%s\" というショートカットキーは利用できません。\n" -@@ -1721,16 +1751,16 @@ - - #: ../panels/keyboard/keyboard-shortcuts.c:1387 - #, c-format --msgid "" --"The shortcut \"%s\" is already used for\n" -+msgid "The shortcut \"%s\" is already used for\n" - "\"%s\"" --msgstr "" --"\"%s\" というショートカットはすでに登録済みです:\n" -+msgstr "\"%s\" というショートカットはすでに登録済みです:\n" - "\"%s\"" - - #: ../panels/keyboard/keyboard-shortcuts.c:1392 - #, c-format --msgid "If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be disabled." -+msgid "" -+"If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be disabled." -+"" - msgstr "このショートカットを \"%s\" 用に変更すると、\"%s\" 用のショートカットが無効になります。" - - #: ../panels/keyboard/keyboard-shortcuts.c:1398 -@@ -1739,12 +1769,16 @@ - - #: ../panels/keyboard/keyboard-shortcuts.c:1439 - #, c-format --msgid "The \"%s\" shortcut has an associated \"%s\" shortcut. Do you want to automatically set it to \"%s\"?" -+msgid "" -+"The \"%s\" shortcut has an associated \"%s\" shortcut. Do you want to " -+"automatically set it to \"%s\"?" - msgstr "\"%s\" 用のショートカットは \"%s\" 用のショートカットと関連付けられています。\"%s\" を後者のショートカットに設定しますか。" - - #: ../panels/keyboard/keyboard-shortcuts.c:1449 - #, c-format --msgid "\"%s\" is currently associated with \"%s\", this shortcut will be disabled if you move forward." -+msgid "" -+"\"%s\" is currently associated with \"%s\", this shortcut will be disabled " -+"if you move forward." - msgstr "\"%s\" はすでに \"%s\" 用に設定済みです。新規割り当てを行うと、設定済みのショートカットは取り消されます。" - - #: ../panels/keyboard/keyboard-shortcuts.c:1456 -@@ -1766,13 +1800,15 @@ - msgstr "マウスとタッチパッド" - - #: ../panels/mouse/gnome-mouse-panel.desktop.in.in.h:2 --msgid "Change your mouse or touchpad sensitivity and select right or left-handed" -+msgid "" -+"Change your mouse or touchpad sensitivity and select right or left-handed" - msgstr "マウスやタッチパッドの感度の変更、利き手の選択をします" - - #. Translators: those are keywords for the mouse and touchpad control-center panel - #: ../panels/mouse/gnome-mouse-panel.desktop.in.in.h:4 - msgid "Trackpad;Pointer;Click;Tap;Double;Button;Trackball;Scroll;" --msgstr "Trackpad;Pointer;Click;Tap;Double;Button;Trackball;トラックパッド;ポインター;クリック;タップ;ダブル;ボタン;トラックボール;スクロール;" -+msgstr "" -+"Trackpad;Pointer;Click;Tap;Double;Button;Trackball;トラックパッド;ポインター;クリック;タップ;ダブル;ボタン;トラックボール;スクロール;" - - #: ../panels/mouse/gnome-mouse-properties.ui.h:1 - msgid "General" -@@ -1894,26 +1930,26 @@ - - #. TRANSLATORS: this is to disable the radio hardware in the - #. * network panel --#: ../panels/network/cc-network-panel.c:366 -+#: ../panels/network/cc-network-panel.c:369 - msgid "Air_plane Mode" - msgstr "機内モード(_P)" - --#: ../panels/network/cc-network-panel.c:974 -+#: ../panels/network/cc-network-panel.c:978 - msgid "Network proxy" - msgstr "ネットワークプロキシ" - - #. Translators: this is the title of the connection details - #. * window for vpn connections, it is also used to display - #. * vpn connections in the device list. --#. --#: ../panels/network/cc-network-panel.c:1153 ../panels/network/net-vpn.c:278 -+#. -+#: ../panels/network/cc-network-panel.c:1155 ../panels/network/net-vpn.c:278 - #: ../panels/network/net-vpn.c:431 - #, c-format - msgid "%s VPN" - msgstr "%s VPN" - - #. TRANSLATORS: the user is running a NM that is not API compatible --#: ../panels/network/cc-network-panel.c:1298 -+#: ../panels/network/cc-network-panel.c:1302 - msgid "The system network services are not compatible with this version." - msgstr "システムのネットワークサービスはこのバージョンと互換性がありません。" - -@@ -2075,7 +2111,7 @@ - #: ../panels/network/connection-editor/ce-page-ip4.c:465 - #: ../panels/network/connection-editor/ce-page-ip6.c:205 - #: ../panels/network/connection-editor/ce-page-ip6.c:473 --#: ../panels/network/network-vpn.ui.h:3 -+#: ../panels/network/network-vpn.ui.h:2 - msgid "Gateway" - msgstr "ゲートウェイ" - -@@ -2127,7 +2163,7 @@ - msgid "Link-Local Only" - msgstr "リンクローカルのみ" - --#: ../panels/network/connection-editor/ce-page-ip4.c:953 -+#: ../panels/network/connection-editor/ce-page-ip4.c:967 - #: ../panels/network/network-wifi.ui.h:48 - msgid "IPv4" - msgstr "IPv4" -@@ -2149,7 +2185,7 @@ - msgid "Automatic, DHCP only" - msgstr "自動、DHCP のみ" - --#: ../panels/network/connection-editor/ce-page-ip6.c:919 -+#: ../panels/network/connection-editor/ce-page-ip6.c:937 - #: ../panels/network/network-wifi.ui.h:49 - msgid "IPv6" - msgstr "IPv6" -@@ -2317,7 +2353,7 @@ - msgstr "ファイアウォールゾーン(_Z)" - - #: ../panels/network/connection-editor/firewall-helpers.c:48 --#: ../panels/network/connection-editor/firewall-helpers.c:112 -+#: ../panels/network/connection-editor/firewall-helpers.c:113 - msgctxt "Firewall zone" - msgid "Default" - msgstr "デフォルト" -@@ -2373,7 +2409,6 @@ - msgstr "新規プロファイル" - - #: ../panels/network/connection-editor/net-connection-editor.c:577 --#: ../panels/network/network.ui.h:1 ../panels/network/network-vpn.ui.h:1 - msgid "VPN" - msgstr "VPN" - -@@ -2417,11 +2452,15 @@ - msgstr "破棄(_F)" - - #: ../panels/network/connection-editor/reset-page.ui.h:3 --msgid "Reset the settings for this network, including passwords, but remember it as a preferred network" -+msgid "" -+"Reset the settings for this network, including passwords, but remember it as " -+"a preferred network" - msgstr "パスワードを含め、このネットワークの設定をリセットします。ただし、推奨ネットワークであることは記憶" - - #: ../panels/network/connection-editor/reset-page.ui.h:4 --msgid "Remove all details relating to this network and do not try to automatically connect" -+msgid "" -+"Remove all details relating to this network and do not try to automatically " -+"connect" - msgstr "このネットワークに関する詳細を削除し、自動的に接続しないようにします" - - #: ../panels/network/connection-editor/security-page.ui.h:1 -@@ -2436,11 +2475,11 @@ - #: ../panels/network/connection-editor/vpn-helpers.c:207 - #, c-format - msgid "" --"The file '%s' could not be read or does not contain recognized VPN connection information\n" -+"The file '%s' could not be read or does not contain recognized VPN " -+"connection information\n" - "\n" - "Error: %s." --msgstr "" --"ファイル '%s' は読み込めなかったか、または処理できる VPN 接続情報がありません\n" -+msgstr "ファイル '%s' は読み込めなかったか、または処理できる VPN 接続情報がありません\n" - "\n" - "エラー: %s" - -@@ -2449,7 +2488,7 @@ - msgstr "インポートするファイルを選択する" - - #: ../panels/network/connection-editor/vpn-helpers.c:246 --#: ../panels/printers/cc-printers-panel.c:1948 -+#: ../panels/printers/cc-printers-panel.c:1950 - #: ../panels/sharing/cc-sharing-panel.c:492 - #: ../panels/user-accounts/um-photo-dialog.c:223 - msgid "_Open" -@@ -2475,12 +2514,10 @@ - - #: ../panels/network/connection-editor/vpn-helpers.c:336 - #, c-format --msgid "" --"The VPN connection '%s' could not be exported to %s.\n" -+msgid "The VPN connection '%s' could not be exported to %s.\n" - "\n" - "Error: %s." --msgstr "" --"VPN 接続 '%s' は %s にエクスポートできませんでした。\n" -+msgstr "VPN 接続 '%s' は %s にエクスポートできませんでした。\n" - "\n" - "エラー: %s" - -@@ -2522,8 +2559,12 @@ - - #. Translators: those are keywords for the network control-center panel - #: ../panels/network/gnome-network-panel.desktop.in.in.h:4 --msgid "Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;vlan;bridge;bond;DNS;" --msgstr "Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;vlan;bridge;bond;DNS;ネットワーク;インターネット;無線;ワイヤレス;有線;プロキシー;プロクシー;ブロードバンド;モデム;ブルートゥース;ブリッジ;ボンディング;ドメイン名;ドメインネームサーバー;" -+msgid "" -+"Network;Wireless;Wi-" -+"Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;vlan;bridge;bond;DNS;" -+msgstr "" -+"Network;Wireless;Wi-" -+"Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;vlan;bridge;bond;DNS;ネットワーク;インターネット;無線;ワイヤレス;有線;プロキシー;プロクシー;ブロードバンド;モデム;ブルートゥース;ブリッジ;ボンディング;ドメイン名;ドメインネームサーバー;" - - #: ../panels/network/net-device-bond.c:77 - msgid "Bond slaves" -@@ -2570,7 +2611,7 @@ - #. * details window for ethernet, if there is only a single - #. * profile. It is also used to display ethernet in the - #. * device list. --#. -+#. - #: ../panels/network/net-device-ethernet.c:288 - #: ../panels/network/network-ethernet.ui.h:1 - #: ../panels/network/network-simple.ui.h:1 -@@ -2582,7 +2623,7 @@ - #: ../panels/network/network-ethernet.ui.h:3 - #: ../panels/network/network-mobile.ui.h:8 - #: ../panels/network/network-simple.ui.h:8 --#: ../panels/network/network-vpn.ui.h:8 -+#: ../panels/network/network-vpn.ui.h:7 - msgid "Options…" - msgstr "オプション…" - -@@ -2600,7 +2641,9 @@ - msgstr "チームのスレーブ" - - #: ../panels/network/net-device-wifi.c:1154 --msgid "If you have a connection to the Internet other than wireless, you can set up a wireless hotspot to share the connection with others." -+msgid "" -+"If you have a connection to the Internet other than wireless, you can set up " -+"a wireless hotspot to share the connection with others." - msgstr "ワイヤレス以外のインターネット接続がある場合には、 ワイヤレスホットスポットを設定し、他の人とインターネット接続を共有することができます。" - - #: ../panels/network/net-device-wifi.c:1158 -@@ -2609,7 +2652,9 @@ - msgstr "ワイヤレスホットスポットをオンにすると %s の接続が切断されます。" - - #: ../panels/network/net-device-wifi.c:1162 --msgid "It is not possible to access the Internet through your wireless while the hotspot is active." -+msgid "" -+"It is not possible to access the Internet through your wireless while the " -+"hotspot is active." - msgstr "ホットスポットがアクティブな場合、ワイヤレスによるインターネット接続はできません。" - - #: ../panels/network/net-device-wifi.c:1245 -@@ -2629,7 +2674,9 @@ - msgstr "ワイヤレスデバイスがホットスポットモードに対応していません" - - #: ../panels/network/net-device-wifi.c:1437 --msgid "Network details for the selected networks, including passwords and any custom configuration will be lost." -+msgid "" -+"Network details for the selected networks, including passwords and any " -+"custom configuration will be lost." - msgstr "パスワードや独自の設定など、 選択したネットワークの詳細は失われます。" - - #: ../panels/network/net-device-wifi.c:1745 -@@ -2639,7 +2686,7 @@ - - #: ../panels/network/net-device-wifi.c:1749 - #: ../panels/region/input-options.ui.h:2 ../panels/wacom/button-mapping.ui.h:2 --#: ../panels/wacom/cc-wacom-page.c:533 -+#: ../panels/wacom/cc-wacom-page.c:525 - #: ../panels/wacom/gnome-wacom-properties.ui.h:4 - msgid "_Close" - msgstr "閉じる(_C)" -@@ -2652,7 +2699,8 @@ - - #. TRANSLATORS: this is when the use leaves the PAC textbox blank - #: ../panels/network/net-proxy.c:67 --msgid "Web Proxy Autodiscovery is used when a Configuration URL is not provided." -+msgid "" -+"Web Proxy Autodiscovery is used when a Configuration URL is not provided." - msgstr "設定ファイルの URL が指定されていない場合 Web Proxy Autodiscovery が使用されます。" - - #. TRANSLATORS: WPAD is bad: if you enable it on an untrusted -@@ -2679,17 +2727,17 @@ - msgid "Provider" - msgstr "プロバイダー" - --#: ../panels/network/network-proxy.ui.h:1 ../panels/network/network.ui.h:2 -+#: ../panels/network/network-proxy.ui.h:1 - msgctxt "proxy method" - msgid "None" - msgstr "使わない" - --#: ../panels/network/network-proxy.ui.h:2 ../panels/network/network.ui.h:3 -+#: ../panels/network/network-proxy.ui.h:2 - msgctxt "proxy method" - msgid "Manual" - msgstr "手動" - --#: ../panels/network/network-proxy.ui.h:3 ../panels/network/network.ui.h:4 -+#: ../panels/network/network-proxy.ui.h:3 - msgctxt "proxy method" - msgid "Automatic" - msgstr "自動" -@@ -2742,32 +2790,32 @@ - msgid "Turn device off" - msgstr "デバイスをオフにする" - --#: ../panels/network/network.ui.h:5 -+#: ../panels/network/network.ui.h:1 - msgid "Add Device" - msgstr "デバイスの追加" - --#: ../panels/network/network.ui.h:6 -+#: ../panels/network/network.ui.h:2 - msgid "Remove Device" - msgstr "デバイスの削除" - --#: ../panels/network/network-vpn.ui.h:2 -+#: ../panels/network/network-vpn.ui.h:1 - msgid "VPN Type" - msgstr "VPN の種類" - --#: ../panels/network/network-vpn.ui.h:4 -+#: ../panels/network/network-vpn.ui.h:3 - msgid "Group Name" - msgstr "グループ名" - --#: ../panels/network/network-vpn.ui.h:5 -+#: ../panels/network/network-vpn.ui.h:4 - msgid "Group Password" - msgstr "グループのパスワード" - --#: ../panels/network/network-vpn.ui.h:6 -+#: ../panels/network/network-vpn.ui.h:5 - #: ../panels/printers/authentication-dialog.ui.h:4 - msgid "Username" - msgstr "ユーザー名" - --#: ../panels/network/network-vpn.ui.h:7 -+#: ../panels/network/network-vpn.ui.h:6 - msgid "Turn VPN connection off" - msgstr "VPN 接続をオフにする" - -@@ -2838,11 +2886,15 @@ - msgstr "ハードウェア" - - #: ../panels/network/network-wifi.ui.h:43 --msgid "Reset the settings for this connection to their defaults, but remember as a preferred connection." -+msgid "" -+"Reset the settings for this connection to their defaults, but remember as a " -+"preferred connection." - msgstr "この接続の設定をデフォルトにリセットしますが、推奨接続であることは記憶します。" - - #: ../panels/network/network-wifi.ui.h:44 --msgid "Remove all details relating to this network and do not try to automatically connect to it." -+msgid "" -+"Remove all details relating to this network and do not try to automatically " -+"connect to it." - msgstr "このネットワークに関する詳細はすべて削除して、自動的に接続しないようにします。" - - #: ../panels/network/network-wifi.ui.h:45 -@@ -3192,7 +3244,10 @@ - msgstr "認証局(CA)の証明書が選択されていません" - - #: ../panels/network/wireless-security/eap-method.c:276 --msgid "Not using a Certificate Authority (CA) certificate can result in connections to insecure, rogue Wi-Fi networks. Would you like to choose a Certificate Authority certificate?" -+msgid "" -+"Not using a Certificate Authority (CA) certificate can result in connections " -+"to insecure, rogue Wi-Fi networks. Would you like to choose a Certificate " -+"Authority certificate?" - msgstr "認証局(CA)証明書を使用しなければ接続は安全でなく、危険な W-Fi ネットワークになってしまいます。認証局証明書を選択しますか?" - - #: ../panels/network/wireless-security/eap-method.c:281 -@@ -3319,11 +3374,14 @@ - - #: ../panels/network/wireless-security/eap-method-tls.c:285 - msgid "" --"The selected private key does not appear to be protected by a password. This could allow your security credentials to be compromised. Please select a password-protected private key.\n" -+"The selected private key does not appear to be protected by a password. " -+"This could allow your security credentials to be compromised. Please select " -+"a password-protected private key.\n" - "\n" - "(You can password-protect your private key with openssl)" - msgstr "" --"選択したプライベートキーはパスワードで保護されていないようです。この状態は 信用情報の侵害を許してしまいます。パスワード保護のあるプライベートキーを選択してください。\n" -+"選択したプライベートキーはパスワードで保護されていないようです。この状態は " -+"信用情報の侵害を許してしまいます。パスワード保護のあるプライベートキーを選択してください。\n" - "\n" - "(プライベートキーは openssl を使用してパスワード保護ができます)" - -@@ -3471,7 +3529,7 @@ - msgstr "ロック画面で詳細を表示する" - - #: ../panels/notifications/cc-notifications-panel.c:185 --#: ../panels/power/cc-power-panel.c:1690 ../panels/power/cc-power-panel.c:1697 -+#: ../panels/power/cc-power-panel.c:1710 ../panels/power/cc-power-panel.c:1717 - #: ../panels/privacy/cc-privacy-panel.c:84 - #: ../panels/privacy/cc-privacy-panel.c:124 - #: ../panels/universal-access/cc-ua-panel.c:257 -@@ -3574,8 +3632,10 @@ - - #. For ReadItLater and Pocket, see http://en.wikipedia.org/wiki/Pocket_(application) - #: ../panels/online-accounts/gnome-online-accounts-panel.desktop.in.in.h:4 --msgid "Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;Kerberos;IMAP;SMTP;Pocket;ReadItLater;" --msgstr "Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;Kerberos;IMAP;SMTP;Pocket;ReadItLater;グーグル;フェイスブック;ツイッター;ヤフー;ウェブ;オンライン;チャット;カレンダー;メール;連絡先;Flickr;" -+msgid "" -+"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;Kerberos;IMAP;SMTP;Pocket;ReadItLater;" -+msgstr "" -+"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;Kerberos;IMAP;SMTP;Pocket;ReadItLater;グーグル;フェイスブック;ツイッター;ヤフー;ウェブ;オンライン;チャット;カレンダー;メール;連絡先;Flickr;" - - #: ../panels/online-accounts/online-accounts.ui.h:1 - msgid "No online accounts configured" -@@ -3590,20 +3650,23 @@ - msgstr "オンラインアカウントの追加" - - #: ../panels/online-accounts/online-accounts.ui.h:5 --msgid "Adding an account allows your applications to access it for documents, mail, contacts, calendar, chat and more." --msgstr "アカウントを追加すると、お使いのアプリケーションがそのアカウントのドキュメントやメール、連絡先、カレンダー、チャットなどにアクセスできるようになります。" -+msgid "" -+"Adding an account allows your applications to access it for documents, mail, " -+"contacts, calendar, chat and more." -+msgstr "" -+"アカウントを追加すると、お使いのアプリケーションがそのアカウントのドキュメントやメール、連絡先、カレンダー、チャットなどにアクセスできるようになります。" - --#: ../panels/power/cc-power-panel.c:183 -+#: ../panels/power/cc-power-panel.c:192 - msgid "Unknown time" - msgstr "不明" - --#: ../panels/power/cc-power-panel.c:189 -+#: ../panels/power/cc-power-panel.c:198 - #, c-format - msgid "%i minute" - msgid_plural "%i minutes" - msgstr[0] "%i 分" - --#: ../panels/power/cc-power-panel.c:201 -+#: ../panels/power/cc-power-panel.c:210 - #, c-format - msgid "%i hour" - msgid_plural "%i hours" -@@ -3611,224 +3674,224 @@ - - #. TRANSLATOR: "%i %s %i %s" are "%i hours %i minutes" - #. * Swap order with "%2$s %2$i %1$s %1$i if needed --#: ../panels/power/cc-power-panel.c:209 -+#: ../panels/power/cc-power-panel.c:218 - #, c-format - msgid "%i %s %i %s" - msgstr "%i %s %i %s" - --#: ../panels/power/cc-power-panel.c:210 -+#: ../panels/power/cc-power-panel.c:219 - msgid "hour" - msgid_plural "hours" - msgstr[0] "時間" - --#: ../panels/power/cc-power-panel.c:211 -+#: ../panels/power/cc-power-panel.c:220 - msgid "minute" - msgid_plural "minutes" - msgstr[0] "分" - - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" --#: ../panels/power/cc-power-panel.c:230 -+#: ../panels/power/cc-power-panel.c:239 - #, c-format - msgid "%s until fully charged" - msgstr "フル充電まで %s" - - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" --#: ../panels/power/cc-power-panel.c:237 -+#: ../panels/power/cc-power-panel.c:246 - #, c-format - msgid "Caution: %s remaining" - msgstr "注意: 残り %s" - - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" --#: ../panels/power/cc-power-panel.c:242 -+#: ../panels/power/cc-power-panel.c:251 - #, c-format - msgid "%s remaining" - msgstr "残り %s" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:247 ../panels/power/cc-power-panel.c:275 -+#: ../panels/power/cc-power-panel.c:256 ../panels/power/cc-power-panel.c:284 - msgid "Fully charged" - msgstr "フル充電" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:251 ../panels/power/cc-power-panel.c:279 -+#: ../panels/power/cc-power-panel.c:260 ../panels/power/cc-power-panel.c:288 - msgid "Empty" - msgstr "空" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:266 -+#: ../panels/power/cc-power-panel.c:275 - msgid "Charging" - msgstr "充電中" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:271 -+#: ../panels/power/cc-power-panel.c:280 - msgid "Discharging" - msgstr "放電中" - --#: ../panels/power/cc-power-panel.c:396 -+#: ../panels/power/cc-power-panel.c:405 - msgctxt "Battery name" - msgid "Main" - msgstr "主" - --#: ../panels/power/cc-power-panel.c:398 -+#: ../panels/power/cc-power-panel.c:407 - msgctxt "Battery name" - msgid "Extra" - msgstr "予備" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:470 -+#: ../panels/power/cc-power-panel.c:479 - msgid "Wireless mouse" - msgstr "ワイヤレスマウス" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:473 -+#: ../panels/power/cc-power-panel.c:482 - msgid "Wireless keyboard" - msgstr "ワイヤレスキーボード" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:476 -+#: ../panels/power/cc-power-panel.c:485 - msgid "Uninterruptible power supply" - msgstr "無停電電源装置" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:479 -+#: ../panels/power/cc-power-panel.c:488 - msgid "Personal digital assistant" - msgstr "携帯情報端末" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:482 -+#: ../panels/power/cc-power-panel.c:491 - msgid "Cellphone" - msgstr "携帯電話" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:485 -+#: ../panels/power/cc-power-panel.c:494 - msgid "Media player" - msgstr "音楽プレイヤー" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:488 -+#: ../panels/power/cc-power-panel.c:497 - msgid "Tablet" - msgstr "タブレット" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:491 -+#: ../panels/power/cc-power-panel.c:500 - msgid "Computer" - msgstr "コンピューター" - - #. TRANSLATORS: secondary battery, misc --#: ../panels/power/cc-power-panel.c:494 ../panels/power/cc-power-panel.c:717 --#: ../panels/power/cc-power-panel.c:2019 -+#: ../panels/power/cc-power-panel.c:503 ../panels/power/cc-power-panel.c:726 -+#: ../panels/power/cc-power-panel.c:2046 - msgid "Battery" - msgstr "バッテリー" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:540 -+#: ../panels/power/cc-power-panel.c:549 - msgctxt "Battery power" - msgid "Charging" - msgstr "充電中" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:547 -+#: ../panels/power/cc-power-panel.c:556 - msgctxt "Battery power" - msgid "Caution" - msgstr "注意" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:552 -+#: ../panels/power/cc-power-panel.c:561 - msgctxt "Battery power" - msgid "Low" - msgstr "少ない" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:557 -+#: ../panels/power/cc-power-panel.c:566 - msgctxt "Battery power" - msgid "Good" - msgstr "充分" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:562 -+#: ../panels/power/cc-power-panel.c:571 - msgctxt "Battery power" - msgid "Fully charged" - msgstr "フル充電" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:566 -+#: ../panels/power/cc-power-panel.c:575 - msgctxt "Battery power" - msgid "Empty" - msgstr "空" - --#: ../panels/power/cc-power-panel.c:715 -+#: ../panels/power/cc-power-panel.c:724 - msgid "Batteries" - msgstr "バッテリー" - --#: ../panels/power/cc-power-panel.c:1117 -+#: ../panels/power/cc-power-panel.c:1126 - msgid "When _idle" - msgstr "アイドル時(_I)" - --#: ../panels/power/cc-power-panel.c:1445 -+#: ../panels/power/cc-power-panel.c:1454 - msgid "Power Saving" - msgstr "省電力" - --#: ../panels/power/cc-power-panel.c:1473 -+#: ../panels/power/cc-power-panel.c:1489 - msgid "_Screen brightness" - msgstr "画面の明るさ(_S)" - --#: ../panels/power/cc-power-panel.c:1479 -+#: ../panels/power/cc-power-panel.c:1495 - msgid "_Keyboard brightness" - msgstr "キーボードの明るさ(_K)" - --#: ../panels/power/cc-power-panel.c:1489 -+#: ../panels/power/cc-power-panel.c:1505 - msgid "_Dim screen when inactive" - msgstr "操作していないときに画面を暗くする(_D)" - --#: ../panels/power/cc-power-panel.c:1514 -+#: ../panels/power/cc-power-panel.c:1530 - msgid "_Blank screen" - msgstr "ブランクスクリーン(_B)" - --#: ../panels/power/cc-power-panel.c:1551 -+#: ../panels/power/cc-power-panel.c:1567 - msgid "_Wi-Fi" - msgstr "Wi-Fi(_W)" - --#: ../panels/power/cc-power-panel.c:1556 -+#: ../panels/power/cc-power-panel.c:1572 - msgid "Turns off wireless devices" - msgstr "ワイヤレスデバイスのオン/オフを切り替える" - --#: ../panels/power/cc-power-panel.c:1581 -+#: ../panels/power/cc-power-panel.c:1597 - msgid "_Mobile broadband" - msgstr "モバイルブロードバンド(_M)" - --#: ../panels/power/cc-power-panel.c:1586 -+#: ../panels/power/cc-power-panel.c:1602 - msgid "Turns off mobile broadband (3G, 4G, WiMax, etc.) devices" - msgstr "モバイルブロードバンド (3G、4G、WiMax など) デバイスのオン/オフを切り替える" - --#: ../panels/power/cc-power-panel.c:1635 -+#: ../panels/power/cc-power-panel.c:1652 - msgid "_Bluetooth" - msgstr "Bluetooth(_B)" - --#: ../panels/power/cc-power-panel.c:1686 -+#: ../panels/power/cc-power-panel.c:1706 - msgid "When on battery power" - msgstr "バッテリー動作時" - --#: ../panels/power/cc-power-panel.c:1688 -+#: ../panels/power/cc-power-panel.c:1708 - msgid "When plugged in" - msgstr "電源接続時" - --#: ../panels/power/cc-power-panel.c:1818 -+#: ../panels/power/cc-power-panel.c:1838 - msgid "Suspend & Power Off" - msgstr "サスペンドと電源オフ" - --#: ../panels/power/cc-power-panel.c:1851 -+#: ../panels/power/cc-power-panel.c:1878 - msgid "_Automatic suspend" - msgstr "自動サスペンド(_A)" - --#: ../panels/power/cc-power-panel.c:1875 -+#: ../panels/power/cc-power-panel.c:1902 - msgid "When battery power is _critical" - msgstr "バッテリーがひどく低下したときの動作(_C)" - --#: ../panels/power/cc-power-panel.c:1930 -+#: ../panels/power/cc-power-panel.c:1957 - msgid "Power Off" - msgstr "電源オフ" - --#: ../panels/power/cc-power-panel.c:2066 -+#: ../panels/power/cc-power-panel.c:2100 - msgid "Devices" - msgstr "デバイス" - -@@ -3842,8 +3905,10 @@ - - #. Translators: those are keywords for the power control-center panel - #: ../panels/power/gnome-power-panel.desktop.in.in.h:4 --msgid "Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;" --msgstr "Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;電源;スリープ;サスペンド;ハイバネート;バッテリー;明るさ;ブランクスクリーン;モニター;画面;ディスプレイ;アイドル;待機;" -+msgid "" -+"Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;" -+msgstr "" -+"Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;電源;スリープ;サスペンド;ハイバネート;バッテリー;明るさ;ブランクスクリーン;モニター;画面;ディスプレイ;アイドル;待機;" - - #: ../panels/power/power.ui.h:1 - msgid "Hibernate" -@@ -4083,42 +4148,46 @@ - msgstr[0] "%u 個がアクティブ" - - #. Translators: Addition of the new printer failed. --#: ../panels/printers/cc-printers-panel.c:1777 -+#: ../panels/printers/cc-printers-panel.c:1779 - msgid "Failed to add new printer." - msgstr "新しいプリンターを追加できませんでした。" - --#: ../panels/printers/cc-printers-panel.c:1944 -+#: ../panels/printers/cc-printers-panel.c:1946 - msgid "Select PPD File" - msgstr "PPDファイルの選択" - --#: ../panels/printers/cc-printers-panel.c:1953 --msgid "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD.GZ)" --msgstr "PostScript Printer Description ファイル(*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD.GZ)" -+#: ../panels/printers/cc-printers-panel.c:1955 -+msgid "" -+"PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." -+"PPD.GZ)" -+msgstr "" -+"PostScript Printer Description ファイル(*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD." -+"GZ)" - --#: ../panels/printers/cc-printers-panel.c:2258 -+#: ../panels/printers/cc-printers-panel.c:2260 - msgid "No suitable driver found" - msgstr "適切なドライバーが見つかりませんでした" - --#: ../panels/printers/cc-printers-panel.c:2327 -+#: ../panels/printers/cc-printers-panel.c:2329 - msgid "Searching for preferred drivers…" - msgstr "推奨ドライバーの検索中…" - --#: ../panels/printers/cc-printers-panel.c:2342 -+#: ../panels/printers/cc-printers-panel.c:2344 - msgid "Select from database…" - msgstr "データベースから選択…" - --#: ../panels/printers/cc-printers-panel.c:2351 -+#: ../panels/printers/cc-printers-panel.c:2353 - msgid "Provide PPD File…" - msgstr "PPDファイルを指定…" - - #. Translators: Name of job which makes printer to print test page --#: ../panels/printers/cc-printers-panel.c:2502 --#: ../panels/printers/cc-printers-panel.c:2525 -+#: ../panels/printers/cc-printers-panel.c:2504 -+#: ../panels/printers/cc-printers-panel.c:2527 - msgid "Test page" - msgstr "テストページ" - - #. Translators: The XML file containing user interface can not be loaded --#: ../panels/printers/cc-printers-panel.c:2933 -+#: ../panels/printers/cc-printers-panel.c:2935 - #, c-format - msgid "Could not load ui: %s" - msgstr "ui ファイルを読み込めませんでした: %s" -@@ -4532,11 +4601,9 @@ - - #. Translators: The CUPS server is not running (we can not connect to it). - #: ../panels/printers/printers.ui.h:26 --msgid "" --"Sorry! The system printing service\n" -+msgid "Sorry! The system printing service\n" - "doesn't seem to be available." --msgstr "" --"申し訳ありません! システムの印刷サービスは\n" -+msgstr "申し訳ありません! システムの印刷サービスは\n" - "利用できないようです。" - - #: ../panels/privacy/cc-privacy-panel.c:252 ../panels/privacy/privacy.ui.h:24 -@@ -4589,8 +4656,10 @@ - - #. Translators: those are keywords for the privacy control-center panel - #: ../panels/privacy/gnome-privacy-panel.desktop.in.in.h:4 --msgid "screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;network;identity;" --msgstr "screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;network;identity;画面;スクリーン;ロック;診断;クラッシュ;プライベート;最近;テンポラリー;一時;インデックス;索引;名前;ネットワーク;" -+msgid "" -+"screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;network;identity;" -+msgstr "" -+"screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;network;identity;画面;スクリーン;ロック;診断;クラッシュ;プライベート;最近;テンポラリー;一時;インデックス;索引;名前;ネットワーク;" - - #: ../panels/privacy/privacy.ui.h:1 - msgid "Screen Turns Off" -@@ -4641,7 +4710,9 @@ - msgstr "無期限" - - #: ../panels/privacy/privacy.ui.h:20 --msgid "Remembering your history makes things easier to find again. These items are never shared over the network." -+msgid "" -+"Remembering your history makes things easier to find again. These items are " -+"never shared over the network." - msgstr "履歴を記憶しておくと、以前の作業を探し出すのが簡単になります。これらの項目はネットワークを越えて共有されることはありません。" - - #: ../panels/privacy/privacy.ui.h:21 -@@ -4673,7 +4744,9 @@ - msgstr "ロック画面に通知を表示する(_N)" - - #: ../panels/privacy/privacy.ui.h:30 --msgid "Automatically purge the Trash and temporary files to help keep your computer free of unnecessary sensitive information." -+msgid "" -+"Automatically purge the Trash and temporary files to help keep your computer " -+"free of unnecessary sensitive information." - msgstr "ゴミ箱や一時ファイルを自動的に削除することで、不要になった機密情報が残ったままにならないようにします。" - - #: ../panels/privacy/privacy.ui.h:31 -@@ -4690,9 +4763,12 @@ - - #: ../panels/privacy/privacy.ui.h:37 - msgid "" --"Sending us information about which software you use helps us provide you with more accurate recommendations. It also helps us to improve our software.\n" -+"Sending us information about which software you use helps us provide you " -+"with more accurate recommendations. It also helps us to improve our software." -+"\n" - "\n" --"All the information we collect is made anonymous, and we will never share your data with third parties." -+"All the information we collect is made anonymous, and we will never share " -+"your data with third parties." - msgstr "" - "どのソフトウェアをあなたが使用しているかについての情報を私たちに送信することで、私たちはあなたにより的確な提案ができるようになります。また、送信した情報は、私たちがソフトウェアを改善することにも役立てられます。\n" - "\n" -@@ -4732,34 +4808,34 @@ - msgid "No input sources found" - msgstr "入力ソースが見つかりません" - --#: ../panels/region/cc-input-chooser.c:1076 -+#: ../panels/region/cc-input-chooser.c:1084 - msgctxt "Input Source" - msgid "Other" - msgstr "その他" - --#: ../panels/region/cc-region-panel.c:239 --#: ../panels/user-accounts/um-user-panel.c:892 -+#: ../panels/region/cc-region-panel.c:243 -+#: ../panels/user-accounts/um-user-panel.c:1113 - msgid "Your session needs to be restarted for changes to take effect" - msgstr "変更内容を反映させるにはログインしなおす必要があります" - --#: ../panels/region/cc-region-panel.c:240 --#: ../panels/user-accounts/um-user-panel.c:893 -+#: ../panels/region/cc-region-panel.c:247 -+#: ../panels/user-accounts/um-user-panel.c:1117 - msgid "Restart Now" - msgstr "ログアウト" - --#: ../panels/region/cc-region-panel.c:858 -+#: ../panels/region/cc-region-panel.c:867 - msgid "No input source selected" - msgstr "入力ソースが選択されていません" - --#: ../panels/region/cc-region-panel.c:1088 -+#: ../panels/region/cc-region-panel.c:1097 - msgid "Sorry" - msgstr "申し訳ありません" - --#: ../panels/region/cc-region-panel.c:1090 -+#: ../panels/region/cc-region-panel.c:1099 - msgid "Input methods can't be used on the login screen" - msgstr "インプットメソッドはログイン画面で使用できません" - --#: ../panels/region/cc-region-panel.c:1727 -+#: ../panels/region/cc-region-panel.c:1739 - msgid "Login Screen" - msgstr "ログイン画面" - -@@ -4797,7 +4873,8 @@ - msgstr "地域と言語" - - #: ../panels/region/gnome-region-panel.desktop.in.in.h:2 --msgid "Select your display language, formats, keyboard layouts and input sources" -+msgid "" -+"Select your display language, formats, keyboard layouts and input sources" - msgstr "表示言語、フォーマット、キーボードレイアウト、入力ソースを設定します" - - #. Translators: those are keywords for the region control-center panel -@@ -4892,7 +4969,7 @@ - msgid "_OK" - msgstr "OK(_O)" - --#: ../panels/search/cc-search-panel.c:176 -+#: ../panels/search/cc-search-panel.c:177 - msgid "No applications found" - msgstr "アプリケーションが見つかりません" - -@@ -4901,13 +4978,15 @@ - msgstr "検索" - - #: ../panels/search/gnome-search-panel.desktop.in.in.h:2 --msgid "Control which applications show search results in the Activities Overview" -+msgid "" -+"Control which applications show search results in the Activities Overview" - msgstr "アクティビティ画面で検索結果を表示するアプリケーションを設定します" - - #. Translators: those are keywords for the search control-center panel - #: ../panels/search/gnome-search-panel.desktop.in.in.h:4 - msgid "Search;Find;Index;Hide;Privacy;Results;" --msgstr "Search;Find;Index;Hide;Privacy;Results;サーチ;検索;インデックス;索引;非表示;プライバシー;結果;" -+msgstr "" -+"Search;Find;Index;Hide;Privacy;Results;サーチ;検索;インデックス;索引;非表示;プライバシー;結果;" - - #: ../panels/search/search-locations-dialog.ui.h:1 - msgid "Search Locations" -@@ -4950,7 +5029,7 @@ - msgid "Choose a Folder" - msgstr "フォルダーの選択" - --#: ../panels/sharing/cc-sharing-panel.c:916 -+#: ../panels/sharing/cc-sharing-panel.c:917 - msgid "Copy" - msgstr "コピー" - -@@ -4964,8 +5043,10 @@ - - #. Translators: those are keywords for the sharing control-center panel - #: ../panels/sharing/gnome-sharing-panel.desktop.in.in.h:4 --msgid "share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;pictures;photos;movies;server;renderer;" --msgstr "share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;pictures;photos;movies;server;renderer;共有;シェアリング;セキュアシェル;ホスト;名前;リモート;遠隔;デスクトップ;ブルートゥース;メディア;コンテンツ;オーディオ;音声;音楽;楽曲;ミュージック;ビデオ;動画;映像;画像;静止画;写真;フォト;ムービー;映画;サーバー;レンダラー;" -+msgid "" -+"share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;pictures;photos;movies;server;renderer;" -+msgstr "" -+"share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;pictures;photos;movies;server;renderer;共有;シェアリング;セキュアシェル;ホスト;名前;リモート;遠隔;デスクトップ;ブルートゥース;メディア;コンテンツ;オーディオ;音声;音楽;楽曲;ミュージック;ビデオ;動画;映像;画像;静止画;写真;フォト;ムービー;映画;サーバー;レンダラー;" - - #: ../panels/sharing/org.gnome.controlcenter.remote-login-helper.policy.in.in.h:1 - msgid "Enable or disable remote login" -@@ -4976,13 +5057,13 @@ - msgstr "リモートログインを有効化または無効化するには認証が必要になります" - - #. Label --#: ../panels/sharing/cc-sharing-networks.c:299 -+#: ../panels/sharing/cc-sharing-networks.c:303 - msgid "No networks selected for sharing" - msgstr "共有するネットワークが選択されていません" - --#. -+#. - #. * vim: sw=2 ts=8 cindent noai bs=2 --#. -+#. - #: ../panels/sharing/networks.ui.h:1 - msgid "Networks" - msgstr "ネットワーク" -@@ -4992,7 +5073,9 @@ - msgstr "Bluetooth 共有" - - #: ../panels/sharing/sharing.ui.h:2 --msgid "Bluetooth Sharing allows you to share files with other Bluetooth enabled devices" -+msgid "" -+"Bluetooth Sharing allows you to share files with other Bluetooth enabled " -+"devices" - msgstr "Bluetooth 共有を利用して、他の Bluetooth デバイスとファイルを共有できるようにします。" - - #: ../panels/sharing/sharing.ui.h:3 -@@ -5029,8 +5112,12 @@ - - #: ../panels/sharing/sharing.ui.h:12 - #, no-c-format --msgid "Personal File Sharing allows you to share your Public folder with others on your current network using: dav://%s" --msgstr "パーソナルファイル共有を利用して、現在のネットワークの他ユーザーが次の URI に接続し、あなたの公開フォルダーを共有できるようにします: dav://%s" -+msgid "" -+"Personal File Sharing allows you to share your Public folder with others on " -+"your current network using: dav://%s" -+msgstr "" -+"パーソナルファイル共有を利用して、現在のネットワークの他ユーザーが次の URI に接続し、あなたの公開フォルダーを共有できるようにします: dav://%s" - - #: ../panels/sharing/sharing.ui.h:13 - msgid "Require Password" -@@ -5047,8 +5134,12 @@ - - #: ../panels/sharing/sharing.ui.h:19 - #, no-c-format --msgid "Allow remote users to view or control your screen by connecting to: vnc://%s" --msgstr "リモートユーザーが次の URI に接続して画面の表示または操作を行うことを許可します: vnc://%s" -+msgid "" -+"Allow remote users to view or control your screen by connecting to: vnc://%s" -+msgstr "" -+"リモートユーザーが次の URI に接続して画面の表示または操作を行うことを許可します: vnc://%s" - - #: ../panels/sharing/sharing.ui.h:20 - msgid "Allow Remote Control" -@@ -5093,7 +5184,8 @@ - #. Translators: those are keywords for the sound control-center panel - #: ../panels/sound/data/gnome-sound-panel.desktop.in.in.h:4 - msgid "Card;Microphone;Volume;Fade;Balance;Bluetooth;Headset;Audio;" --msgstr "Card;Microphone;Volume;Fade;Balance;Bluetooth;Headset;Audio;カード;マイク;音量;フェード;バランス;ブルートゥース;ヘッドセット;オーディオ;" -+msgstr "" -+"Card;Microphone;Volume;Fade;Balance;Bluetooth;Headset;Audio;カード;マイク;音量;フェード;バランス;ブルートゥース;ヘッドセット;オーディオ;" - - #. Translators: This is the name of an audio file that sounds like the bark of a dog. - #. You might want to translate it into the equivalent words of your language. -@@ -5204,65 +5296,65 @@ - msgid "Peak detect" - msgstr "ピークの検出" - --#: ../panels/sound/gvc-mixer-dialog.c:1509 --#: ../panels/sound/gvc-sound-theme-chooser.c:594 -+#: ../panels/sound/gvc-mixer-dialog.c:1516 -+#: ../panels/sound/gvc-sound-theme-chooser.c:564 - msgid "Name" - msgstr "名前" - --#: ../panels/sound/gvc-mixer-dialog.c:1528 -+#: ../panels/sound/gvc-mixer-dialog.c:1535 - msgid "Device" - msgstr "デバイス" - --#: ../panels/sound/gvc-mixer-dialog.c:1591 -+#: ../panels/sound/gvc-mixer-dialog.c:1598 - #, c-format - msgid "Speaker Testing for %s" - msgstr "%s のスピーカーテスト" - --#: ../panels/sound/gvc-mixer-dialog.c:1649 -+#: ../panels/sound/gvc-mixer-dialog.c:1656 - msgid "_Output volume:" - msgstr "出力の音量(_O):" - --#: ../panels/sound/gvc-mixer-dialog.c:1663 -+#: ../panels/sound/gvc-mixer-dialog.c:1670 - msgid "Output" - msgstr "出力" - --#: ../panels/sound/gvc-mixer-dialog.c:1668 -+#: ../panels/sound/gvc-mixer-dialog.c:1675 - msgid "C_hoose a device for sound output:" - msgstr "サウンド出力デバイスの選択(_H):" - --#: ../panels/sound/gvc-mixer-dialog.c:1693 -+#: ../panels/sound/gvc-mixer-dialog.c:1700 - msgid "Settings for the selected device:" - msgstr "選択したデバイスの設定:" - --#: ../panels/sound/gvc-mixer-dialog.c:1704 -+#: ../panels/sound/gvc-mixer-dialog.c:1711 - msgid "Input" - msgstr "入力" - --#: ../panels/sound/gvc-mixer-dialog.c:1711 -+#: ../panels/sound/gvc-mixer-dialog.c:1718 - msgid "_Input volume:" - msgstr "入力の音量(_I):" - --#: ../panels/sound/gvc-mixer-dialog.c:1734 -+#: ../panels/sound/gvc-mixer-dialog.c:1741 - msgid "Input level:" - msgstr "入力レベル:" - --#: ../panels/sound/gvc-mixer-dialog.c:1762 -+#: ../panels/sound/gvc-mixer-dialog.c:1769 - msgid "C_hoose a device for sound input:" - msgstr "サウンド入力デバイスの選択(_H):" - --#: ../panels/sound/gvc-mixer-dialog.c:1789 -+#: ../panels/sound/gvc-mixer-dialog.c:1796 - msgid "Sound Effects" - msgstr "音響効果" - --#: ../panels/sound/gvc-mixer-dialog.c:1796 -+#: ../panels/sound/gvc-mixer-dialog.c:1803 - msgid "_Alert volume:" - msgstr "警告音の音量(_A):" - --#: ../panels/sound/gvc-mixer-dialog.c:1809 -+#: ../panels/sound/gvc-mixer-dialog.c:1816 - msgid "Applications" - msgstr "アプリケーション" - --#: ../panels/sound/gvc-mixer-dialog.c:1813 -+#: ../panels/sound/gvc-mixer-dialog.c:1820 - msgid "No application is currently playing or recording audio." - msgstr "音声の再生または録音を実行しているアプリケーションはありません。" - -@@ -5282,15 +5374,15 @@ - msgid "Testing event sound" - msgstr "イベント音のテスト中" - --#: ../panels/sound/gvc-sound-theme-chooser.c:584 -+#: ../panels/sound/gvc-sound-theme-chooser.c:554 - msgid "Default" - msgstr "デフォルト" - --#: ../panels/sound/gvc-sound-theme-chooser.c:585 -+#: ../panels/sound/gvc-sound-theme-chooser.c:555 - msgid "From theme" - msgstr "テーマから" - --#: ../panels/sound/gvc-sound-theme-chooser.c:769 -+#: ../panels/sound/gvc-sound-theme-chooser.c:739 - msgid "C_hoose an alert sound:" - msgstr "警告音の選択(_H):" - -@@ -5317,8 +5409,11 @@ - - #. Translators: those are keywords for the universal access control-center panel - #: ../panels/universal-access/gnome-universal-access-panel.desktop.in.in.h:4 --msgid "Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;AccessX;Sticky;Keys;Slow;Bounce;Mouse;" --msgstr "Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen Reader;text;font;size;AccessX;Sticky;Keys;Slow;Bounce;Mouse;キーボード;マウス;アクセシビリティ;コントラスト;ズーム;拡大鏡;スクリーンリーダー;テキスト;文字;フォント;サイズ;大きさ;固定;キー;スロー;バウンス;マウス;" -+msgid "" -+"Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;AccessX;Sticky;Keys;Slow;Bounce;Mouse;" -+msgstr "" -+"Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen " -+"Reader;text;font;size;AccessX;Sticky;Keys;Slow;Bounce;Mouse;キーボード;マウス;アクセシビリティ;コントラスト;ズーム;拡大鏡;スクリーンリーダー;テキスト;文字;フォント;サイズ;大きさ;固定;キー;スロー;バウンス;マウス;" - - #: ../panels/universal-access/uap.ui.h:1 - msgid "_Always Show Universal Access Menu" -@@ -5438,7 +5533,7 @@ - msgstr "同時に 2 つのキーを押したら無効にする(_D)" - - #: ../panels/universal-access/uap.ui.h:31 --msgid "Beep when a _modifer key is pressed" -+msgid "Beep when a _modifier key is pressed" - msgstr "修飾キーを押したらビープ音を鳴らす(_M)" - - #: ../panels/universal-access/uap.ui.h:32 -@@ -5793,7 +5888,9 @@ - msgstr "確認(_V)" - - #: ../panels/user-accounts/data/account-dialog.ui.h:11 --msgid "Enterprise login allows an existing centrally managed user account to be used on this device." -+msgid "" -+"Enterprise login allows an existing centrally managed user account to be " -+"used on this device." - msgstr "エンタープライズログインでは、中央管理された既存のユーザーアカウントをこのデバイスで使用できます。" - - #: ../panels/user-accounts/data/account-dialog.ui.h:12 -@@ -5801,11 +5898,9 @@ - msgstr "ドメイン(_D)" - - #: ../panels/user-accounts/data/account-dialog.ui.h:13 --msgid "" --"Go online to add\n" -+msgid "Go online to add\n" - "enterprise login accounts." --msgstr "" --"オンラインになって\n" -+msgstr "オンラインになって\n" - "エンタープライズログインアカウントを追加する。" - - #: ../panels/user-accounts/data/account-dialog.ui.h:15 -@@ -5877,7 +5972,7 @@ - msgstr "右の小指" - - #: ../panels/user-accounts/data/account-fingerprint.ui.h:9 --#: ../panels/user-accounts/um-fingerprint-dialog.c:687 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:689 - msgid "Enable Fingerprint Login" - msgstr "指紋認証を有効にする" - -@@ -5894,7 +5989,9 @@ - msgstr "別の指(_O):" - - #: ../panels/user-accounts/data/account-fingerprint.ui.h:13 --msgid "Your fingerprint was successfully saved. You should now be able to log in using your fingerprint reader." -+msgid "" -+"Your fingerprint was successfully saved. You should now be able to log in " -+"using your fingerprint reader." - msgstr "あなたの指紋を登録しました。今から指紋リーダーを使ってログインできるようになりました。" - - #: ../panels/user-accounts/data/gnome-user-accounts-panel.desktop.in.in.h:1 -@@ -5908,7 +6005,8 @@ - #. Translators: those are keywords for the user accounts control-center panel - #: ../panels/user-accounts/data/gnome-user-accounts-panel.desktop.in.in.h:4 - msgid "Login;Name;Fingerprint;Avatar;Logo;Face;Password;" --msgstr "Login;Name;Fingerprint;Avatar;Logo;Face;Password;ログイン;名前;指紋;アバター;ロゴ;顔;パスワード;" -+msgstr "" -+"Login;Name;Fingerprint;Avatar;Logo;Face;Password;ログイン;名前;指紋;アバター;ロゴ;顔;パスワード;" - - #: ../panels/user-accounts/data/history-dialog.ui.h:1 - msgid "Login History" -@@ -6046,7 +6144,9 @@ - - #: ../panels/user-accounts/pw-utils.c:111 - msgctxt "Password hint" --msgid "Try to avoid repeating the same type of character: you need to mix up letters, numbers and punctuation." -+msgid "" -+"Try to avoid repeating the same type of character: you need to mix up " -+"letters, numbers and punctuation." - msgstr "同じ種類の文字を繰り返しは避けるようにしてください。アルファベット、数字、記号を混ぜてください。" - - #: ../panels/user-accounts/pw-utils.c:113 -@@ -6066,7 +6166,9 @@ - - #: ../panels/user-accounts/pw-utils.c:119 - msgctxt "Password hint" --msgid "Good password! Adding more letters, numbers and punctuation will make it stronger." -+msgid "" -+"Good password! Adding more letters, numbers and punctuation will make it " -+"stronger." - msgstr "良いパスワードです! さらに文字や数字、記号を追加するともっと強くなります。" - - #: ../panels/user-accounts/pw-utils.c:141 -@@ -6174,19 +6276,15 @@ - msgstr "ドメインの参加に失敗しました" - - #: ../panels/user-accounts/um-account-dialog.c:1035 --msgid "" --"That login name didn't work.\n" -+msgid "That login name didn't work.\n" - "Please try again." --msgstr "" --"ログイン名に問題がありました。\n" -+msgstr "ログイン名に問題がありました。\n" - "やり直してください。" - - #: ../panels/user-accounts/um-account-dialog.c:1042 --msgid "" --"That login password didn't work.\n" -+msgid "That login password didn't work.\n" - "Please try again." --msgstr "" --"パスワードに問題がありました。\n" -+msgstr "パスワードに問題がありました。\n" - "やり直してください。" - - #: ../panels/user-accounts/um-account-dialog.c:1050 -@@ -6198,7 +6296,8 @@ - msgstr "ドメインを見つけられません。スペルミスがないか確認してください。" - - #: ../panels/user-accounts/um-fingerprint-dialog.c:138 --msgid "You are not allowed to access the device. Contact your system administrator." -+msgid "" -+"You are not allowed to access the device. Contact your system administrator." - msgstr "デバイスへのアクセスが許可されていません。システム管理者に連絡してください。" - - #: ../panels/user-accounts/um-fingerprint-dialog.c:140 -@@ -6222,18 +6321,20 @@ - msgstr "削除する(_D)" - - #: ../panels/user-accounts/um-fingerprint-dialog.c:273 --msgid "Do you want to delete your registered fingerprints so fingerprint login is disabled?" -+msgid "" -+"Do you want to delete your registered fingerprints so fingerprint login is " -+"disabled?" - msgstr "登録済みの指紋情報を削除して指紋認証を無効にしますか?" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:444 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:446 - msgid "Done!" - msgstr "完了です!" - - #. translators: - #. * The variable is the name of the device, for example: - #. * "Could you not access "Digital Persona U.are.U 4000/4000B" device --#: ../panels/user-accounts/um-fingerprint-dialog.c:505 --#: ../panels/user-accounts/um-fingerprint-dialog.c:547 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:507 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:549 - #, c-format - msgid "Could not access '%s' device" - msgstr "'%s' というデバイスにアクセスできません" -@@ -6241,16 +6342,16 @@ - #. translators: - #. * The variable is the name of the device, for example: - #. * "Could you not access "Digital Persona U.are.U 4000/4000B" device --#: ../panels/user-accounts/um-fingerprint-dialog.c:588 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:590 - #, c-format - msgid "Could not start finger capture on '%s' device" - msgstr "'%s' で指紋を読み取れませんでした" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:638 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:640 - msgid "Could not access any fingerprint readers" - msgstr "指紋リーダーにアクセスできませんでした" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:639 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:641 - msgid "Please contact your system administrator for help." - msgstr "システム管理者に連絡してください。" - -@@ -6258,17 +6359,19 @@ - #. * The variable is the name of the device, for example: - #. * "To enable fingerprint login, you need to save one of your fingerprints, using the - #. * 'Digital Persona U.are.U 4000/4000B' device." --#. --#: ../panels/user-accounts/um-fingerprint-dialog.c:721 -+#. -+#: ../panels/user-accounts/um-fingerprint-dialog.c:723 - #, c-format --msgid "To enable fingerprint login, you need to save one of your fingerprints, using the '%s' device." -+msgid "" -+"To enable fingerprint login, you need to save one of your fingerprints, " -+"using the '%s' device." - msgstr "指紋認証を有効にするには、'%s' のデバイスを使って、あなたの指紋を登録する必要があります。" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:728 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:730 - msgid "Selecting finger" - msgstr "指の選択" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:729 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:731 - msgid "Enrolling fingerprints" - msgstr "指紋の登録" - -@@ -6308,7 +6411,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/um-history-dialog.c:175 --#: ../panels/user-accounts/um-user-panel.c:631 -+#: ../panels/user-accounts/um-user-panel.c:844 - msgctxt "login date-time" - msgid "%k:%M" - msgstr "%H:%M" -@@ -6316,7 +6419,7 @@ - #. Translators: This indicates a login date-time. - #. The first %s is a date, and the second %s a time. - #: ../panels/user-accounts/um-history-dialog.c:178 --#: ../panels/user-accounts/um-user-panel.c:635 -+#: ../panels/user-accounts/um-user-panel.c:848 - #, c-format - msgctxt "login date-time" - msgid "%s, %s" -@@ -6391,104 +6494,118 @@ - msgid "Couldn't connect to the %s domain: %s" - msgstr "%sドメインに接続できませんでした: %s" - --#: ../panels/user-accounts/um-user-panel.c:198 -+#: ../panels/user-accounts/um-user-panel.c:239 - msgid "Other Accounts" - msgstr "他のアカウント" - --#: ../panels/user-accounts/um-user-panel.c:417 -+#: ../panels/user-accounts/um-user-panel.c:453 - msgid "Failed to delete user" - msgstr "ユーザーの削除に失敗しました" - --#: ../panels/user-accounts/um-user-panel.c:482 -+#: ../panels/user-accounts/um-user-panel.c:513 -+#: ../panels/user-accounts/um-user-panel.c:569 -+#: ../panels/user-accounts/um-user-panel.c:621 -+msgid "Failed to revoke remotely managed user" -+msgstr "リモート管理ユーザーの削除に失敗しました" -+ -+#: ../panels/user-accounts/um-user-panel.c:677 - msgid "You cannot delete your own account." - msgstr "自分自身のアカウントは削除できません。" - --#: ../panels/user-accounts/um-user-panel.c:491 -+#: ../panels/user-accounts/um-user-panel.c:686 - #, c-format - msgid "%s is still logged in" - msgstr "%s はまだログインしています" - --#: ../panels/user-accounts/um-user-panel.c:495 --msgid "Deleting a user while they are logged in can leave the system in an inconsistent state." -+#: ../panels/user-accounts/um-user-panel.c:690 -+msgid "" -+"Deleting a user while they are logged in can leave the system in an " -+"inconsistent state." - msgstr "ログイン中のユーザーを削除すると、システムが不整合な状態になることがあります。" - --#: ../panels/user-accounts/um-user-panel.c:504 -+#: ../panels/user-accounts/um-user-panel.c:699 - #, c-format - msgid "Do you want to keep %s's files?" - msgstr "'%s' のファイルを残しますか?" - --#: ../panels/user-accounts/um-user-panel.c:508 --msgid "It is possible to keep the home directory, mail spool and temporary files around when deleting a user account." -+#: ../panels/user-accounts/um-user-panel.c:703 -+msgid "" -+"It is possible to keep the home directory, mail spool and temporary files " -+"around when deleting a user account." - msgstr "ユーザーアカウントを削除するときに、ユーザーのホームディレクトリ、メールスプールおよび一時ファイルを残しておくことができます。" - --#: ../panels/user-accounts/um-user-panel.c:511 -+#: ../panels/user-accounts/um-user-panel.c:706 - msgid "_Delete Files" - msgstr "ファイルを削除(_D)" - --#: ../panels/user-accounts/um-user-panel.c:512 -+#: ../panels/user-accounts/um-user-panel.c:707 - msgid "_Keep Files" - msgstr "ファイルを残す(_K)" - --#: ../panels/user-accounts/um-user-panel.c:564 -+#: ../panels/user-accounts/um-user-panel.c:721 -+#, c-format -+msgid "Are you sure you want to permanently delete %s's account?" -+msgstr "本当に %s のアカウントを削除しますか?" -+ -+#: ../panels/user-accounts/um-user-panel.c:725 -+msgid "_Delete" -+msgstr "削除(_D)" -+ -+#: ../panels/user-accounts/um-user-panel.c:777 - msgctxt "Password mode" - msgid "Account disabled" - msgstr "無効アカウント" - --#: ../panels/user-accounts/um-user-panel.c:572 -+#: ../panels/user-accounts/um-user-panel.c:785 - msgctxt "Password mode" - msgid "To be set at next login" - msgstr "次のログイン時に設定" - --#: ../panels/user-accounts/um-user-panel.c:575 -+#: ../panels/user-accounts/um-user-panel.c:788 - msgctxt "Password mode" - msgid "None" - msgstr "なし" - --#: ../panels/user-accounts/um-user-panel.c:624 -+#: ../panels/user-accounts/um-user-panel.c:837 - msgid "Logged in" - msgstr "ログイン中" - --#: ../panels/user-accounts/um-user-panel.c:1067 -+#: ../panels/user-accounts/um-user-panel.c:1297 - msgid "Failed to contact the accounts service" - msgstr "アカウントサービスの接続に失敗しました" - --#: ../panels/user-accounts/um-user-panel.c:1069 -+#: ../panels/user-accounts/um-user-panel.c:1299 - msgid "Please make sure that the AccountService is installed and enabled." - msgstr "AccountService がインストールされ、有効になっているか確認してください。" - --#: ../panels/user-accounts/um-user-panel.c:1110 --msgid "" --"To make changes,\n" -+#: ../panels/user-accounts/um-user-panel.c:1340 -+msgid "To make changes,\n" - "click the * icon first" - msgstr "変更するには、まず * アイコンをクリックしてください" - --#: ../panels/user-accounts/um-user-panel.c:1148 -+#: ../panels/user-accounts/um-user-panel.c:1378 - msgid "Create a user account" - msgstr "ユーザーアカウントを作成します" - --#: ../panels/user-accounts/um-user-panel.c:1159 --#: ../panels/user-accounts/um-user-panel.c:1471 --msgid "" --"To create a user account,\n" -+#: ../panels/user-accounts/um-user-panel.c:1389 -+#: ../panels/user-accounts/um-user-panel.c:1702 -+msgid "To create a user account,\n" - "click the * icon first" --msgstr "" --"ユーザーアカウントを作成するには、\n" -+msgstr "ユーザーアカウントを作成するには、\n" - "まず * アイコンをクリックしてください" - --#: ../panels/user-accounts/um-user-panel.c:1169 -+#: ../panels/user-accounts/um-user-panel.c:1399 - msgid "Delete the selected user account" - msgstr "選択したユーザーアカウントを削除します" - --#: ../panels/user-accounts/um-user-panel.c:1181 --#: ../panels/user-accounts/um-user-panel.c:1476 --msgid "" --"To delete the selected user account,\n" -+#: ../panels/user-accounts/um-user-panel.c:1411 -+#: ../panels/user-accounts/um-user-panel.c:1707 -+msgid "To delete the selected user account,\n" - "click the * icon first" --msgstr "" --"選択したユーザーアカウントを削除するには、\n" -+msgstr "選択したユーザーアカウントを削除するには、\n" - "まず * アイコンをクリックしてください" - --#: ../panels/user-accounts/um-user-panel.c:1385 -+#: ../panels/user-accounts/um-user-panel.c:1616 - msgid "My Account" - msgstr "自分のアカウント" - -@@ -6507,7 +6624,9 @@ - msgstr "ユーザー名の先頭文字に '-' は使えません。" - - #: ../panels/user-accounts/um-utils.c:577 --msgid "The username should only consist of lower and upper case letters from a-z, digits and any of characters '.', '-' and '_'." -+msgid "" -+"The username should only consist of lower and upper case letters from a-z, " -+"digits and any of characters '.', '-' and '_'." - msgstr "ユーザー名には次の文字だけを使用してください。a から z の大文字・小文字、数字、'.'、'-'、および '_'。" - - #: ../panels/user-accounts/um-utils.c:581 -@@ -6533,11 +6652,17 @@ - msgstr "ボタンへ機能を割り当て" - - #: ../panels/wacom/button-mapping.ui.h:4 --msgid "To edit a shortcut, choose the \"Send Keystroke\" action, press the keyboard shortcut button and hold down the new keys or press Backspace to clear." --msgstr "ショートカットを編集するには、\"キー入力の送信\"を選択し、キーボードショートカットボタンを押して、新しいキー組み合わせを入力するか、[BS] キーで取り消してください。" -+msgid "" -+"To edit a shortcut, choose the \"Send Keystroke\" action, press the keyboard " -+"shortcut button and hold down the new keys or press Backspace to clear." -+msgstr "" -+"ショートカットを編集するには、\"キー入力の送信\"を選択し、キーボードショートカットボタンを押して、新しいキー組み合わせを入力するか、[BS] " -+"キーで取り消してください。" - - #: ../panels/wacom/calibrator/calibrator-gui.c:83 --msgid "Please tap the target markers as they appear on screen to calibrate the tablet." -+msgid "" -+"Please tap the target markers as they appear on screen to calibrate the " -+"tablet." - msgstr "タブレットの位置調整を行いますので、画面に出現するマーカーをタップしてください。" - - #: ../panels/wacom/calibrator/calibrator-gui.c:87 -@@ -6594,11 +6719,11 @@ - msgid "%d of %d" - msgstr "%d / %d" - --#: ../panels/wacom/cc-wacom-page.c:530 -+#: ../panels/wacom/cc-wacom-page.c:522 - msgid "Display Mapping" - msgstr "画面のマッピング" - --#: ../panels/wacom/cc-wacom-stylus-page.c:372 -+#: ../panels/wacom/cc-wacom-stylus-page.c:376 - msgid "Button" - msgstr "ボタン" - -@@ -6867,8 +6992,7 @@ - msgid "" - "%s\n" - "Run '%s --help' to see a full list of available command line options.\n" --msgstr "" --"%s\n" -+msgstr "%s\n" - "利用可能なすべてのコマンドラインオプションを表示するには '%s --help' を実行してください。\n" - - #: ../shell/cc-application.c:193 -@@ -6883,22 +7007,22 @@ - msgid "Quit" - msgstr "終了" - --#: ../shell/cc-window.c:61 ../shell/cc-window.c:1490 -+#: ../shell/cc-window.c:61 ../shell/cc-window.c:1493 - msgid "All Settings" - msgstr "すべての設定" - - #. Add categories --#: ../shell/cc-window.c:876 -+#: ../shell/cc-window.c:879 - msgctxt "category" - msgid "Personal" - msgstr "パーソナル" - --#: ../shell/cc-window.c:877 -+#: ../shell/cc-window.c:880 - msgctxt "category" - msgid "Hardware" - msgstr "ハードウェア" - --#: ../shell/cc-window.c:878 -+#: ../shell/cc-window.c:881 - msgctxt "category" - msgid "System" - msgstr "システム" -diff -urN gnome-control-center-3.14.5/po/ko.po gnome-control-center-3.14.5_localized/po/ko.po ---- gnome-control-center-3.14.5/po/ko.po 2015-04-30 17:35:48.000000000 +0530 -+++ gnome-control-center-3.14.5_localized/po/ko.po 2016-03-12 12:09:07.907000000 +0530 -@@ -1,15 +1,15 @@ - # gnome-control-center Korean message translation - # This file is distributed under the same license as the gnome-control-center package. --# -+# - # Young-Ho Cha , 2002, 2006. - # Seong-ho Cho , 2011, 2012. - # Changwoo Ryu , 2002-2014. --# --# -+# -+# - # - 주의: 어려운 용어가 많습니다. 충분히 시간을 두고 실제 의미가 - # 무엇인지, UI에 어떻게 나타나는지 이해하고 번역해 주세요. 기계적인 - # 번역은 품질 저하의 지름길입니다. --# -+# - # - 용어 - # - Airplane Mode: 비행기 모드 - # - pairing (bluetooth 관련): 페어링 -@@ -18,27 +18,26 @@ - # - prefix (ipv6 관련): 프리픽스 - # - wide gamut: 광색역 - # - tablet: 태블릿 (tablet PC와 graphics tablet 모두) --# -+# - # - 검색 키워드는 원문과 번역문을 같이 세미콜론으로 구분해 기입한다. 예를 들어: --# -+# - # msgid "Wallpaper;Screen;Desktop;" - # msgstr "Wallpaper;배경 그림;Screen;화면;Desktop;바탕 화면;" --# -+# pnemade , 2016. #zanata - msgid "" - msgstr "" --"Project-Id-Version: gnome-control-center\n" --"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" --"control-center&keywords=I18N+L10N&component=general\n" --"POT-Creation-Date: 2014-09-04 18:31+0000\n" --"PO-Revision-Date: 2014-10-04 22:19+0900\n" --"Last-Translator: Changwoo Ryu \n" --"Language-Team: GNOME Korea \n" --"Language: Korean\n" -+"Project-Id-Version: PACKAGE VERSION\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2016-02-10 09:57+0530\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"PO-Revision-Date: 2014-10-04 01:19+0000\n" -+"Last-Translator: Changwoo Ryu \n" -+"Language-Team: GNOME Korea \n" -+"Language: ko\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Poedit 1.5.3\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../panels/background/background.ui.h:1 - #: ../panels/background/gnome-background-panel.desktop.in.in.h:1 -@@ -85,48 +84,48 @@ - msgid "Span" - msgstr "걸치기" - -+#: ../panels/background/cc-background-chooser-dialog.c:438 -+msgid "Wallpapers" -+msgstr "배경 그림" -+ -+#: ../panels/background/cc-background-chooser-dialog.c:447 -+msgid "Colors" -+msgstr "색" -+ - #. translators: This is the title of the wallpaper chooser dialog. --#: ../panels/background/cc-background-chooser-dialog.c:442 -+#: ../panels/background/cc-background-chooser-dialog.c:485 - msgid "Select Background" - msgstr "배경 선택" - --#: ../panels/background/cc-background-chooser-dialog.c:463 --msgid "Wallpapers" --msgstr "배경 그림" -- --#: ../panels/background/cc-background-chooser-dialog.c:472 -+#: ../panels/background/cc-background-chooser-dialog.c:514 - msgid "Pictures" - msgstr "그림" - --#: ../panels/background/cc-background-chooser-dialog.c:481 --msgid "Colors" --msgstr "색" -- - #. translators: No pictures were found --#: ../panels/background/cc-background-chooser-dialog.c:540 -+#: ../panels/background/cc-background-chooser-dialog.c:546 - msgid "No Pictures Found" - msgstr "사진이 없습니다" - - #. translators: "Home" is used in place of the Pictures - #. * directory in the string below when XDG_PICTURES_DIR is - #. * undefined --#: ../panels/background/cc-background-chooser-dialog.c:558 -+#: ../panels/background/cc-background-chooser-dialog.c:564 - #: ../panels/search/cc-search-locations-dialog.c:274 - msgid "Home" - msgstr "내 폴더" - - #. translators: %s here is the name of the Pictures directory, the string should be translated in - #. * the context "You can add images to your Pictures folder and they will show up here" --#: ../panels/background/cc-background-chooser-dialog.c:570 -+#: ../panels/background/cc-background-chooser-dialog.c:576 - #, c-format - msgid "You can add images to your %s folder and they will show up here" - msgstr "그림 파일을 %s 폴더에 놓으면 여기 나타납니다" - --#: ../panels/background/cc-background-chooser-dialog.c:592 -+#: ../panels/background/cc-background-chooser-dialog.c:583 - #: ../panels/color/cc-color-panel.c:224 ../panels/color/cc-color-panel.c:961 - #: ../panels/color/color.ui.h:29 ../panels/common/language-chooser.ui.h:3 --#: ../panels/display/cc-display-panel.c:1537 --#: ../panels/display/cc-display-panel.c:1976 -+#: ../panels/display/cc-display-panel.c:1540 -+#: ../panels/display/cc-display-panel.c:1985 - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:2 - #: ../panels/network/connection-editor/connection-editor.ui.h:1 - #: ../panels/network/connection-editor/vpn-helpers.c:245 -@@ -134,7 +133,7 @@ - #: ../panels/network/net-device-wifi.c:1247 - #: ../panels/network/net-device-wifi.c:1440 - #: ../panels/network/network-wifi.ui.h:1 --#: ../panels/printers/cc-printers-panel.c:1947 -+#: ../panels/printers/cc-printers-panel.c:1949 - #: ../panels/printers/new-printer-dialog.ui.h:2 - #: ../panels/privacy/cc-privacy-panel.c:468 - #: ../panels/region/format-chooser.ui.h:3 -@@ -143,31 +142,32 @@ - #: ../panels/sharing/cc-sharing-panel.c:491 - #: ../panels/user-accounts/data/account-dialog.ui.h:17 - #: ../panels/user-accounts/data/password-dialog.ui.h:2 --#: ../panels/user-accounts/um-fingerprint-dialog.c:267 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:264 - #: ../panels/user-accounts/um-photo-dialog.c:95 - #: ../panels/user-accounts/um-photo-dialog.c:222 --#: ../panels/user-accounts/um-user-panel.c:513 -+#: ../panels/user-accounts/um-user-panel.c:708 -+#: ../panels/user-accounts/um-user-panel.c:726 - msgid "_Cancel" - msgstr "취소(_C)" - --#: ../panels/background/cc-background-chooser-dialog.c:593 -+#: ../panels/background/cc-background-chooser-dialog.c:584 - #: ../panels/printers/ppd-selection-dialog.ui.h:3 - #: ../panels/user-accounts/um-photo-dialog.c:97 - msgid "Select" - msgstr "선택" - --#: ../panels/background/cc-background-item.c:197 -+#: ../panels/background/cc-background-item.c:203 - msgid "multiple sizes" - msgstr "여러 개 크기" - - #. translators: 100 × 100px - #. * Note that this is not an "x", but U+00D7 MULTIPLICATION SIGN --#: ../panels/background/cc-background-item.c:201 -+#: ../panels/background/cc-background-item.c:207 - #, c-format - msgid "%d × %d" - msgstr "%d × %d" - --#: ../panels/background/cc-background-item.c:327 -+#: ../panels/background/cc-background-item.c:333 - msgid "No Desktop Background" - msgstr "바탕 화면 배경 없음" - -@@ -424,9 +424,7 @@ - msgid "" - "The measuring instrument is not detected. Please check it is turned on and " - "correctly connected." --msgstr "" --"측정 장치가 감지되지 않았습니다. 장치가 켜져 있고 제대로 연결되었는지 확인하" --"십시오." -+msgstr "측정 장치가 감지되지 않았습니다. 장치가 켜져 있고 제대로 연결되었는지 확인하십시오." - - #. TRANSLATORS: this is when the button is insensitive - #: ../panels/color/cc-color-panel.c:1371 -@@ -554,8 +552,7 @@ - "screen. The longer you spend on calibration, the better the quality of the " - "color profile." - msgstr "" --"보정을 할 때 만드는 프로파일을 사용해 화면의 색을 관리할 수 있습니다. 보정에 " --"많은 시간을 들일 수록 색 프로파일의 품질이 좋아집니다." -+"보정을 할 때 만드는 프로파일을 사용해 화면의 색을 관리할 수 있습니다. 보정에 많은 시간을 들일 수록 색 프로파일의 품질이 좋아집니다." - - #: ../panels/color/color.ui.h:3 - msgid "" -@@ -596,9 +593,7 @@ - msgid "" - "Select a display target white point. Most displays should be calibrated to a " - "D65 illuminant." --msgstr "" --"디스플레이의 목표 화이트 포인트를 선택하십시오. 대부분의 디스플레이는 경우 " --"Illuminant D65로 보정합니다." -+msgstr "디스플레이의 목표 화이트 포인트를 선택하십시오. 대부분의 디스플레이는 경우 Illuminant D65로 보정합니다." - - #: ../panels/color/color.ui.h:14 - msgid "Profile Whitepoint" -@@ -608,17 +603,13 @@ - msgid "" - "Please set the display to a brightness that is typical for you. Color " - "management will be most accurate at this brightness level." --msgstr "" --"화면을 자기에 맞는 밝기로 맞추십시오. 색 관리가 이 밝기 수준에 맞게 조정됩니" --"다." -+msgstr "화면을 자기에 맞는 밝기로 맞추십시오. 색 관리가 이 밝기 수준에 맞게 조정됩니다." - - #: ../panels/color/color.ui.h:16 - msgid "" - "Alternatively, you can use the brightness level used with one of the other " - "profiles for this device." --msgstr "" --"아니면 이 장치에 대한 다른 프로파일에 사용한 밝기 단계를 사용할 수도 있습니" --"다." -+msgstr "아니면 이 장치에 대한 다른 프로파일에 사용한 밝기 단계를 사용할 수도 있습니다." - - #: ../panels/color/color.ui.h:17 - msgid "Display Brightness" -@@ -628,9 +619,7 @@ - msgid "" - "You can use a color profile on different computers, or even create profiles " - "for different lighting conditions." --msgstr "" --"다른 컴퓨터의 색 프로파일을 사용할 수도 있고, 다른 조명에 대한 프로파일을 만" --"들 수도 있습니다." -+msgstr "다른 컴퓨터의 색 프로파일을 사용할 수도 있고, 다른 조명에 대한 프로파일을 만들 수도 있습니다." - - #: ../panels/color/color.ui.h:19 - msgid "Profile Name:" -@@ -662,16 +651,15 @@ - - #: ../panels/color/color.ui.h:26 - msgid "" --"You may find these instructions on how to use the profile on GNU/Linux, Apple OS X and Microsoft Windows systems useful." -+"You may find these instructions on how to use the profile on GNU/Linux, Apple OS X and Microsoft Windows systems useful." - msgstr "" - "GNU/리눅스, 애플 OS X마이크로소프트 윈도우Microsoft Windows 시스템의 프로파일 사용" --"법 안내를 읽어보면 도움이 됩니다." -+"\"windows\">마이크로소프트 윈도우Microsoft Windows 시스템의 프로파일 사용법 안내를 읽어보면 도움이 됩니다." - - #: ../panels/color/color.ui.h:27 --#: ../panels/user-accounts/um-fingerprint-dialog.c:740 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:732 - msgid "Summary" - msgstr "요약" - -@@ -692,9 +680,7 @@ - msgid "" - "Problems detected. The profile may not work correctly. Show " - "details." --msgstr "" --"문제가 발생했습니다. 프로파일이 동작하지 않을 수도 있습니다. 자" --"세히 보기." -+msgstr "문제가 발생했습니다. 프로파일이 동작하지 않을 수도 있습니다. 자세히 보기." - - #: ../panels/color/color.ui.h:32 - msgid "Each device needs an up to date color profile to be color managed." -@@ -845,9 +831,7 @@ - #. Translators: those are keywords for the color control-center panel - #: ../panels/color/gnome-color-panel.desktop.in.in.h:4 - msgid "Color;ICC;Profile;Calibrate;Printer;Display;" --msgstr "" --"Color;색;ICC;Profile;프로파일;Calibrate;보정;Printer;프린터;Display;디스플레" --"이;" -+msgstr "Color;색;ICC;Profile;프로파일;Calibrate;보정;Printer;프린터;Display;디스플레이;" - - #. Add some common regions - #: ../panels/common/cc-common-language.c:684 -@@ -1078,24 +1062,24 @@ - msgid "To change time or date settings, you need to authenticate." - msgstr "시간 또는 날짜 설정을 바꾸려면 인증이 필요합니다." - --#: ../panels/display/cc-display-panel.c:487 -+#: ../panels/display/cc-display-panel.c:490 - msgid "Lid Closed" - msgstr "덮개 닫힘" - - #. translators: "Mirrored" describes when both displays show the same view --#: ../panels/display/cc-display-panel.c:490 -+#: ../panels/display/cc-display-panel.c:493 - msgid "Mirrored" - msgstr "동일 화면" - - # 모니터 이름, Primary-Secondary --#: ../panels/display/cc-display-panel.c:492 --#: ../panels/display/cc-display-panel.c:2145 -+#: ../panels/display/cc-display-panel.c:495 -+#: ../panels/display/cc-display-panel.c:2155 - msgid "Primary" - msgstr "주요" - --#: ../panels/display/cc-display-panel.c:494 -+#: ../panels/display/cc-display-panel.c:497 - #: ../panels/notifications/cc-notifications-panel.c:185 --#: ../panels/power/cc-power-panel.c:1684 ../panels/power/cc-power-panel.c:1695 -+#: ../panels/power/cc-power-panel.c:1704 ../panels/power/cc-power-panel.c:1715 - #: ../panels/privacy/cc-privacy-panel.c:84 - #: ../panels/privacy/cc-privacy-panel.c:124 - #: ../panels/universal-access/cc-ua-panel.c:257 -@@ -1106,81 +1090,81 @@ - msgstr "끔" - - # 모니터 이름, Primary-Secondary --#: ../panels/display/cc-display-panel.c:497 -+#: ../panels/display/cc-display-panel.c:500 - msgid "Secondary" - msgstr "보조" - --#: ../panels/display/cc-display-panel.c:1533 -+#: ../panels/display/cc-display-panel.c:1536 - msgid "Arrange Combined Displays" - msgstr "정렬된 결합 디스플레이" - --#: ../panels/display/cc-display-panel.c:1539 --#: ../panels/display/cc-display-panel.c:1979 -+#: ../panels/display/cc-display-panel.c:1542 -+#: ../panels/display/cc-display-panel.c:1988 - #: ../panels/network/connection-editor/connection-editor.ui.h:2 - #: ../panels/network/network-wifi.ui.h:2 - msgid "_Apply" - msgstr "적용(_A)" - --#: ../panels/display/cc-display-panel.c:1560 -+#: ../panels/display/cc-display-panel.c:1563 - msgid "Drag displays to rearrange them" - msgstr "디스플레이를 끌어서 위치를 맞추십시오" - --#: ../panels/display/cc-display-panel.c:2081 -+#: ../panels/display/cc-display-panel.c:2090 - msgid "Size" - msgstr "크기" - - #. aspect ratio --#: ../panels/display/cc-display-panel.c:2094 -+#: ../panels/display/cc-display-panel.c:2103 - msgid "Aspect Ratio" - msgstr "종횡비" - --#: ../panels/display/cc-display-panel.c:2115 -+#: ../panels/display/cc-display-panel.c:2125 - #: ../panels/printers/pp-options-dialog.c:85 - msgid "Resolution" - msgstr "해상도" - --#: ../panels/display/cc-display-panel.c:2146 -+#: ../panels/display/cc-display-panel.c:2156 - msgid "Show the top bar and Activities Overview on this display" - msgstr "이 디스플레이의 화면 위에 막대와 현재 활동 요약을 표시" - --#: ../panels/display/cc-display-panel.c:2152 -+#: ../panels/display/cc-display-panel.c:2162 - msgid "Secondary Display" - msgstr "보조 디스플레이" - --#: ../panels/display/cc-display-panel.c:2153 -+#: ../panels/display/cc-display-panel.c:2163 - msgid "Join this display with another to create an extra workspace" - msgstr "이 디스플레이를 다른 디스플레이와 합쳐서 추가 작업 공간 만들기" - --#: ../panels/display/cc-display-panel.c:2160 -+#: ../panels/display/cc-display-panel.c:2170 - msgid "Presentation" - msgstr "표시" - --#: ../panels/display/cc-display-panel.c:2161 -+#: ../panels/display/cc-display-panel.c:2171 - msgid "Show slideshows and media only" - msgstr "슬라이드 쇼와 미디어만 표시" - - #. translators: "Mirror" describes when both displays show the same view --#: ../panels/display/cc-display-panel.c:2166 -+#: ../panels/display/cc-display-panel.c:2176 - msgid "Mirror" - msgstr "동일 화면" - --#: ../panels/display/cc-display-panel.c:2167 -+#: ../panels/display/cc-display-panel.c:2177 - msgid "Show your existing view on both displays" - msgstr "두 디스플레이에서 모두 같은 화면을 봅니다" - --#: ../panels/display/cc-display-panel.c:2173 -+#: ../panels/display/cc-display-panel.c:2183 - msgid "Turn Off" - msgstr "끄기" - --#: ../panels/display/cc-display-panel.c:2174 -+#: ../panels/display/cc-display-panel.c:2184 - msgid "Don't use this display" - msgstr "이 디스플레이를 사용하지 않습니다" - --#: ../panels/display/cc-display-panel.c:2383 -+#: ../panels/display/cc-display-panel.c:2388 - msgid "Could not get screen information" - msgstr "화면 정보를 읽어 올 수 없습니다" - --#: ../panels/display/cc-display-panel.c:2414 -+#: ../panels/display/cc-display-panel.c:2419 - msgid "_Arrange Combined Displays" - msgstr "결합 디스플레이 정렬(_A)" - -@@ -1195,7 +1179,8 @@ - #. Translators: those are keywords for the display control-center panel - #: ../panels/display/gnome-display-panel.desktop.in.in.h:4 - msgid "Panel;Projector;xrandr;Screen;Resolution;Refresh;Monitor;" --msgstr "Panel;패널;Projector;프로젝터;xrandr;Screen;화면;Resolution;해상도;Refresh;주사율;Monitor;모니터;" -+msgstr "" -+"Panel;패널;Projector;프로젝터;xrandr;Screen;화면;Resolution;해상도;Refresh;주사율;Monitor;모니터;" - - #: ../panels/info/cc-info-panel.c:384 - msgid "Wayland" -@@ -1206,49 +1191,45 @@ - msgid "Unknown" - msgstr "알 수 없음" - --#: ../panels/info/cc-info-panel.c:472 --#, c-format --msgid "%s %d-bit" --msgstr "%s %d비트" -- --#: ../panels/info/cc-info-panel.c:474 -+#. translators: This is the the type of OS architecture, eg: "64-bit" or "32-bit" -+#: ../panels/info/cc-info-panel.c:513 - #, c-format - msgid "%d-bit" - msgstr "%d비트" - --#: ../panels/info/cc-info-panel.c:1154 -+#: ../panels/info/cc-info-panel.c:1191 - msgid "Ask what to do" - msgstr "어떻게 할지 물어보기" - --#: ../panels/info/cc-info-panel.c:1158 -+#: ../panels/info/cc-info-panel.c:1195 - msgid "Do nothing" - msgstr "아무것도 하지 않기" - --#: ../panels/info/cc-info-panel.c:1162 -+#: ../panels/info/cc-info-panel.c:1199 - msgid "Open folder" - msgstr "폴더 열기" - --#: ../panels/info/cc-info-panel.c:1253 -+#: ../panels/info/cc-info-panel.c:1290 - msgid "Other Media" - msgstr "기타 미디어" - --#: ../panels/info/cc-info-panel.c:1284 -+#: ../panels/info/cc-info-panel.c:1321 - msgid "Select an application for audio CDs" - msgstr "오디오 CD에 사용할 프로그램을 선택하십시오" - --#: ../panels/info/cc-info-panel.c:1285 -+#: ../panels/info/cc-info-panel.c:1322 - msgid "Select an application for video DVDs" - msgstr "비디오 DVD에 사용할 프로그램을 선택하십시오" - --#: ../panels/info/cc-info-panel.c:1286 -+#: ../panels/info/cc-info-panel.c:1323 - msgid "Select an application to run when a music player is connected" - msgstr "음악 플레이어를 연결했을 때 실행할 프로그램을 선택하십시오" - --#: ../panels/info/cc-info-panel.c:1287 -+#: ../panels/info/cc-info-panel.c:1324 - msgid "Select an application to run when a camera is connected" - msgstr "카메라를 연결했을 때 실행할 프로그램을 선택하십시오" - --#: ../panels/info/cc-info-panel.c:1288 -+#: ../panels/info/cc-info-panel.c:1325 - msgid "Select an application for software CDs" - msgstr "소프트웨어 CD에 사용할 프로그램을 선택하십시오" - -@@ -1256,73 +1237,73 @@ - #. * strings, just here to fix capitalization of the English originals. - #. * If the shared-mime-info translation works for your language, - #. * simply leave these untranslated. --#. --#: ../panels/info/cc-info-panel.c:1300 -+#. -+#: ../panels/info/cc-info-panel.c:1337 - msgid "audio DVD" - msgstr "오디오 DVD" - --#: ../panels/info/cc-info-panel.c:1301 -+#: ../panels/info/cc-info-panel.c:1338 - msgid "blank Blu-ray disc" - msgstr "빈 Blu-ray 디스크" - --#: ../panels/info/cc-info-panel.c:1302 -+#: ../panels/info/cc-info-panel.c:1339 - msgid "blank CD disc" - msgstr "빈 CD 디스크" - --#: ../panels/info/cc-info-panel.c:1303 -+#: ../panels/info/cc-info-panel.c:1340 - msgid "blank DVD disc" - msgstr "빈 DVD 디스크" - --#: ../panels/info/cc-info-panel.c:1304 -+#: ../panels/info/cc-info-panel.c:1341 - msgid "blank HD DVD disc" - msgstr "빈 HD DVD 디스크" - --#: ../panels/info/cc-info-panel.c:1305 -+#: ../panels/info/cc-info-panel.c:1342 - msgid "Blu-ray video disc" - msgstr "Blu-ray 비디오 디스크" - --#: ../panels/info/cc-info-panel.c:1306 -+#: ../panels/info/cc-info-panel.c:1343 - msgid "e-book reader" - msgstr "전자책 읽기 프로그램" - --#: ../panels/info/cc-info-panel.c:1307 -+#: ../panels/info/cc-info-panel.c:1344 - msgid "HD DVD video disc" - msgstr "HD DVD 비디오 디스크" - --#: ../panels/info/cc-info-panel.c:1308 -+#: ../panels/info/cc-info-panel.c:1345 - msgid "Picture CD" - msgstr "사진 CD" - --#: ../panels/info/cc-info-panel.c:1309 -+#: ../panels/info/cc-info-panel.c:1346 - msgid "Super Video CD" - msgstr "수퍼 비디오 CD" - --#: ../panels/info/cc-info-panel.c:1310 -+#: ../panels/info/cc-info-panel.c:1347 - msgid "Video CD" - msgstr "비디오 CD" - --#: ../panels/info/cc-info-panel.c:1311 -+#: ../panels/info/cc-info-panel.c:1348 - msgid "Windows software" - msgstr "윈도우 프로그램" - --#: ../panels/info/cc-info-panel.c:1434 --#: ../panels/keyboard/keyboard-shortcuts.c:1917 -+#: ../panels/info/cc-info-panel.c:1471 -+#: ../panels/keyboard/keyboard-shortcuts.c:1932 - msgid "Section" - msgstr "분류" - --#: ../panels/info/cc-info-panel.c:1443 ../panels/info/info.ui.h:14 -+#: ../panels/info/cc-info-panel.c:1480 ../panels/info/info.ui.h:13 - msgid "Overview" - msgstr "개요" - --#: ../panels/info/cc-info-panel.c:1449 ../panels/info/info.ui.h:21 -+#: ../panels/info/cc-info-panel.c:1486 ../panels/info/info.ui.h:20 - msgid "Default Applications" - msgstr "기본 프로그램" - --#: ../panels/info/cc-info-panel.c:1454 ../panels/info/info.ui.h:29 -+#: ../panels/info/cc-info-panel.c:1491 ../panels/info/info.ui.h:28 - msgid "Removable Media" - msgstr "이동식 미디어" - --#: ../panels/info/cc-info-panel.c:1479 -+#: ../panels/info/cc-info-panel.c:1516 - #, c-format - msgid "Version %s" - msgstr "버전 %s" -@@ -1340,13 +1321,11 @@ - #. sure that you use the same "translation" for those keywords - #: ../panels/info/gnome-info-panel.desktop.in.in.h:4 - msgid "" --"device;system;information;memory;processor;version;default;application;" --"preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" -+"device;system;information;memory;processor;version;default;application;preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" - msgstr "" --"device;장치;system;시스템;information;정보;memory;메모리;processor;프로세서;" --"version;버전;default;기본값;application;응용 프로그램;preferred;우선;cd;dvd;" --"usb;audio;오디오;video;비디오;disc;디스크;removable;이동식;media;미디어;" --"autorun;자동 실행;" -+"device;장치;system;시스템;information;정보;memory;메모리;processor;프로세서;version;버전;default;기본값;application;응용 " -+"프로그램;preferred;우선;cd;dvd;usb;audio;오디오;video;비디오;disc;디스크;removable;이동식;media;미디어;autorun;자동 " -+"실행;" - - #: ../panels/info/info.ui.h:1 - msgid "Select how other media should be handled" -@@ -1372,80 +1351,80 @@ - msgid "Processor" - msgstr "프로세서" - --#. To translators: this field contains the distro name, version and type --#: ../panels/info/info.ui.h:8 --msgid "Base system" --msgstr "기본 시스템" -+#: ../panels/info/info.ui.h:7 -+#, fuzzy -+msgid "OS Type" -+msgstr "종류" - --#: ../panels/info/info.ui.h:9 -+#: ../panels/info/info.ui.h:8 - msgid "Disk" - msgstr "디스크" - --#: ../panels/info/info.ui.h:10 -+#: ../panels/info/info.ui.h:9 - msgid "Calculating…" - msgstr "계산 중…" - --#: ../panels/info/info.ui.h:11 -+#: ../panels/info/info.ui.h:10 - msgid "Graphics" - msgstr "그래픽" - --#: ../panels/info/info.ui.h:12 -+#: ../panels/info/info.ui.h:11 - msgid "Virtualization" - msgstr "가상화" - --#: ../panels/info/info.ui.h:13 -+#: ../panels/info/info.ui.h:12 - msgid "Check for updates" - msgstr "업데이트 확인" - --#: ../panels/info/info.ui.h:15 -+#: ../panels/info/info.ui.h:14 - msgid "_Web" - msgstr "웹(_W)" - --#: ../panels/info/info.ui.h:16 -+#: ../panels/info/info.ui.h:15 - msgid "_Mail" - msgstr "메일(_M)" - --#: ../panels/info/info.ui.h:17 -+#: ../panels/info/info.ui.h:16 - msgid "_Calendar" - msgstr "달력(_C)" - --#: ../panels/info/info.ui.h:18 -+#: ../panels/info/info.ui.h:17 - msgid "M_usic" - msgstr "음악(_U)" - --#: ../panels/info/info.ui.h:19 -+#: ../panels/info/info.ui.h:18 - msgid "_Video" - msgstr "영상(_V)" - --#: ../panels/info/info.ui.h:20 -+#: ../panels/info/info.ui.h:19 - msgid "_Photos" - msgstr "사진(_P)" - --#: ../panels/info/info.ui.h:22 -+#: ../panels/info/info.ui.h:21 - msgid "Select how media should be handled" - msgstr "미디어를 어떻게 처리할지 고르십시오" - --#: ../panels/info/info.ui.h:23 -+#: ../panels/info/info.ui.h:22 - msgid "CD _audio" - msgstr "CD 오디오(_A)" - --#: ../panels/info/info.ui.h:24 -+#: ../panels/info/info.ui.h:23 - msgid "_DVD video" - msgstr "DVD 비디오(_D)" - --#: ../panels/info/info.ui.h:25 -+#: ../panels/info/info.ui.h:24 - msgid "_Music player" - msgstr "음악 재생기(_M)" - --#: ../panels/info/info.ui.h:26 -+#: ../panels/info/info.ui.h:25 - msgid "_Software" - msgstr "프로그램(_S)" - --#: ../panels/info/info.ui.h:27 -+#: ../panels/info/info.ui.h:26 - msgid "_Other Media…" - msgstr "기타 미디어(_O)…" - --#: ../panels/info/info.ui.h:28 -+#: ../panels/info/info.ui.h:27 - msgid "_Never prompt or start programs on media insertion" - msgstr "미디어가 연결되어도 물어보거나 프로그램 시작하지 않기(_N)" - -@@ -1515,7 +1494,7 @@ - msgid "Launch help browser" - msgstr "도움말 보기 실행" - --#: ../panels/keyboard/01-launchers.xml.in.h:3 ../shell/cc-window.c:1601 -+#: ../panels/keyboard/01-launchers.xml.in.h:3 ../shell/cc-window.c:1604 - #: ../shell/gnome-control-center.desktop.in.in.h:1 - msgid "Settings" - msgstr "설정" -@@ -1629,18 +1608,17 @@ - #. * The device has been disabled - #: ../panels/keyboard/cc-keyboard-option.c:276 - #: ../panels/keyboard/cc-keyboard-option.c:395 --#: ../panels/keyboard/keyboard-shortcuts.c:1217 -+#: ../panels/keyboard/keyboard-shortcuts.c:1218 - #: ../panels/network/network-wifi.ui.h:31 - #: ../panels/sound/gvc/gvc-mixer-control.c:1830 - #: ../panels/user-accounts/um-fingerprint-dialog.c:213 --#: ../panels/user-accounts/um-fingerprint-dialog.c:214 - msgid "Disabled" - msgstr "사용 않음" - - #. Translators: This key is also known as 'third level - #. * chooser'. AltGr is often used for this purpose. See - #. * https://live.gnome.org/Design/SystemSettings/RegionAndLanguage --#. -+#. - #: ../panels/keyboard/cc-keyboard-option.c:354 - msgid "Alternative Characters Key" - msgstr "대체 문자 키" -@@ -1648,7 +1626,7 @@ - #. Translators: The Compose key is used to initiate key - #. * sequences that are combined to form a single character. - #. * See http://en.wikipedia.org/wiki/Compose_key --#. -+#. - #: ../panels/keyboard/cc-keyboard-option.c:363 - msgid "Compose Key" - msgstr "구성 키" -@@ -1755,66 +1733,63 @@ - msgid "" - "To edit a shortcut, click the row and hold down the new keys or press " - "Backspace to clear." --msgstr "" --"바로 가기 키를 편집하려면, 해당 줄을 누르고 새 키를 누르십시오. 지우려면 백스" --"페이스를 누르십시오." -+msgstr "바로 가기 키를 편집하려면, 해당 줄을 누르고 새 키를 누르십시오. 지우려면 백스페이스를 누르십시오." - - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:24 - msgid "Shortcuts" - msgstr "바로 가기" - --#: ../panels/keyboard/keyboard-shortcuts.c:634 --#: ../panels/keyboard/keyboard-shortcuts.c:642 -+#: ../panels/keyboard/keyboard-shortcuts.c:635 -+#: ../panels/keyboard/keyboard-shortcuts.c:643 - msgid "Custom Shortcuts" - msgstr "사용자 설정 바로 가기" - --#: ../panels/keyboard/keyboard-shortcuts.c:859 -+#: ../panels/keyboard/keyboard-shortcuts.c:860 - msgid "" - msgstr "<알 수 없는 동작>" - --#: ../panels/keyboard/keyboard-shortcuts.c:1356 -+#: ../panels/keyboard/keyboard-shortcuts.c:1357 - #, c-format - msgid "" - "The shortcut \"%s\" cannot be used because it will become impossible to type " - "using this key.\n" - "Please try with a key such as Control, Alt or Shift at the same time." - msgstr "" --"바로 가기 키 \"%s\"(은)는 사용할 수 없습니다. 이 키만으로는 입력할 수 없습니" --"다.\n" -+"바로 가기 키 \"%s\"(은)는 사용할 수 없습니다. 이 키만으로는 입력할 수 없습니다.\n" - "Control 또는 Alt, Shift키와 동시에 사용해 보십시오." - --#: ../panels/keyboard/keyboard-shortcuts.c:1386 -+#: ../panels/keyboard/keyboard-shortcuts.c:1387 - #, c-format --msgid "" --"The shortcut \"%s\" is already used for\n" -+msgid "The shortcut \"%s\" is already used for\n" - "\"%s\"" - msgstr "바로 가기 키 \"%s\"(은)는 \"%s\"에 쓰고 있습니다" - --#: ../panels/keyboard/keyboard-shortcuts.c:1391 -+#: ../panels/keyboard/keyboard-shortcuts.c:1392 - #, c-format - msgid "" - "If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be disabled." -+"" - msgstr "바로 가기 키를 \"%s\"에 다시 설정하면, \"%s\" 바로 가기는 없어집니다." - --#: ../panels/keyboard/keyboard-shortcuts.c:1397 -+#: ../panels/keyboard/keyboard-shortcuts.c:1398 - msgid "_Reassign" - msgstr "다시 설정(_R)" - --#: ../panels/keyboard/keyboard-shortcuts.c:1429 -+#: ../panels/keyboard/keyboard-shortcuts.c:1439 - #, c-format - msgid "" - "The \"%s\" shortcut has an associated \"%s\" shortcut. Do you want to " - "automatically set it to \"%s\"?" - msgstr "\"%s\" 바로 가기에는 연결된 \"%s\" 바로 가기가 있습니다. 자동으로 \"%s\"에 할당하시겠습니까?" - --#: ../panels/keyboard/keyboard-shortcuts.c:1435 -+#: ../panels/keyboard/keyboard-shortcuts.c:1449 - #, c-format - msgid "" - "\"%s\" is currently associated with \"%s\", this shortcut will be disabled " - "if you move forward." - msgstr "\"%s\" 바로 가기가 현재 \"%s\"에 연결되어 있고, 계속하면 이 바로 가기 키 사용을 중지합니다." - --#: ../panels/keyboard/keyboard-shortcuts.c:1441 -+#: ../panels/keyboard/keyboard-shortcuts.c:1456 - msgid "_Assign" - msgstr "설정(_A)" - -@@ -1833,15 +1808,13 @@ - #: ../panels/mouse/gnome-mouse-panel.desktop.in.in.h:2 - msgid "" - "Change your mouse or touchpad sensitivity and select right or left-handed" --msgstr "" --"마우스 및 터치패드 민감도를 바꾸고 오른손잡이용인지 왼손잡이용인지 설정합니다" -+msgstr "마우스 및 터치패드 민감도를 바꾸고 오른손잡이용인지 왼손잡이용인지 설정합니다" - - #. Translators: those are keywords for the mouse and touchpad control-center panel - #: ../panels/mouse/gnome-mouse-panel.desktop.in.in.h:4 - msgid "Trackpad;Pointer;Click;Tap;Double;Button;Trackball;Scroll;" - msgstr "" --"Trackpad;트랙패드;Pointer;포인터;Click;클릭;누르기;Tap;두드리기;Double;더블;" --"Button;버튼;단추;Trackball;트랙볼;Scroll;스크롤;" -+"Trackpad;트랙패드;Pointer;포인터;Click;클릭;누르기;Tap;두드리기;Double;더블;Button;버튼;단추;Trackball;트랙볼;Scroll;스크롤;" - - #: ../panels/mouse/gnome-mouse-properties.ui.h:1 - msgid "General" -@@ -1963,26 +1936,26 @@ - - #. TRANSLATORS: this is to disable the radio hardware in the - #. * network panel --#: ../panels/network/cc-network-panel.c:366 -+#: ../panels/network/cc-network-panel.c:369 - msgid "Air_plane Mode" - msgstr "비행 모드(_P)" - --#: ../panels/network/cc-network-panel.c:965 -+#: ../panels/network/cc-network-panel.c:978 - msgid "Network proxy" - msgstr "네트워크 프록시" - - #. Translators: this is the title of the connection details - #. * window for vpn connections, it is also used to display - #. * vpn connections in the device list. --#. --#: ../panels/network/cc-network-panel.c:1144 ../panels/network/net-vpn.c:278 -+#. -+#: ../panels/network/cc-network-panel.c:1155 ../panels/network/net-vpn.c:278 - #: ../panels/network/net-vpn.c:431 - #, c-format - msgid "%s VPN" - msgstr "%s 가상사설망" - - #. TRANSLATORS: the user is running a NM that is not API compatible --#: ../panels/network/cc-network-panel.c:1289 -+#: ../panels/network/cc-network-panel.c:1302 - msgid "The system network services are not compatible with this version." - msgstr "시스템 네트워크 서비스가 이 버전과 호환되지 않습니다." - -@@ -2144,7 +2117,7 @@ - #: ../panels/network/connection-editor/ce-page-ip4.c:465 - #: ../panels/network/connection-editor/ce-page-ip6.c:205 - #: ../panels/network/connection-editor/ce-page-ip6.c:473 --#: ../panels/network/network-vpn.ui.h:3 -+#: ../panels/network/network-vpn.ui.h:2 - msgid "Gateway" - msgstr "게이트웨이" - -@@ -2197,7 +2170,7 @@ - msgid "Link-Local Only" - msgstr "링크 로컬만" - --#: ../panels/network/connection-editor/ce-page-ip4.c:953 -+#: ../panels/network/connection-editor/ce-page-ip4.c:967 - #: ../panels/network/network-wifi.ui.h:48 - msgid "IPv4" - msgstr "IPv4" -@@ -2220,7 +2193,7 @@ - msgid "Automatic, DHCP only" - msgstr "자동, DHCP 전용" - --#: ../panels/network/connection-editor/ce-page-ip6.c:919 -+#: ../panels/network/connection-editor/ce-page-ip6.c:937 - #: ../panels/network/network-wifi.ui.h:49 - msgid "IPv6" - msgstr "IPv6" -@@ -2388,7 +2361,7 @@ - msgstr "방화벽 구역(_Z)" - - #: ../panels/network/connection-editor/firewall-helpers.c:48 --#: ../panels/network/connection-editor/firewall-helpers.c:112 -+#: ../panels/network/connection-editor/firewall-helpers.c:113 - msgctxt "Firewall zone" - msgid "Default" - msgstr "기본값" -@@ -2444,7 +2417,6 @@ - msgstr "새 프로파일" - - #: ../panels/network/connection-editor/net-connection-editor.c:577 --#: ../panels/network/network.ui.h:1 ../panels/network/network-vpn.ui.h:1 - msgid "VPN" - msgstr "가상사설망" - -@@ -2491,9 +2463,7 @@ - msgid "" - "Reset the settings for this network, including passwords, but remember it as " - "a preferred network" --msgstr "" --"이 네트워크의 설정을(암호 포함) 초기화합니다. 동시에 기본 네트워크로 설정합니" --"다." -+msgstr "이 네트워크의 설정을(암호 포함) 초기화합니다. 동시에 기본 네트워크로 설정합니다." - - #: ../panels/network/connection-editor/reset-page.ui.h:4 - msgid "" -@@ -2517,9 +2487,7 @@ - "connection information\n" - "\n" - "Error: %s." --msgstr "" --"'%s' 파일을 읽을 수가 없거나, 파일에 알려진 VPN 연결 정보가 들어 있지 않습니" --"다\n" -+msgstr "'%s' 파일을 읽을 수가 없거나, 파일에 알려진 VPN 연결 정보가 들어 있지 않습니다\n" - "\n" - "오류: %s." - -@@ -2528,7 +2496,7 @@ - msgstr "가져올 파일을 선택하십시오" - - #: ../panels/network/connection-editor/vpn-helpers.c:246 --#: ../panels/printers/cc-printers-panel.c:1948 -+#: ../panels/printers/cc-printers-panel.c:1950 - #: ../panels/sharing/cc-sharing-panel.c:492 - #: ../panels/user-accounts/um-photo-dialog.c:223 - msgid "_Open" -@@ -2554,12 +2522,10 @@ - - #: ../panels/network/connection-editor/vpn-helpers.c:336 - #, c-format --msgid "" --"The VPN connection '%s' could not be exported to %s.\n" -+msgid "The VPN connection '%s' could not be exported to %s.\n" - "\n" - "Error: %s." --msgstr "" --"'%s' VPN 연결을 %s에 내보낼 수 없습니다.\n" -+msgstr "'%s' VPN 연결을 %s에 내보낼 수 없습니다.\n" - "\n" - "오류: %s." - -@@ -2602,9 +2568,11 @@ - #. Translators: those are keywords for the network control-center panel - #: ../panels/network/gnome-network-panel.desktop.in.in.h:4 - msgid "" --"Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;" --"vlan;bridge;bond;DNS;" --msgstr "Network;네트워크;Wireless;무선;Wi-Fi;Wifi;와이파이;IP;LAN;랜;Proxy;프록시;WAN;인터넷;Broadband;브로드밴드;Modem;모뎀;Bluetooth;블루투스;vpn;가상사설망;vlan;가상랜;bridge;브릿지;bond;본딩;DNS;네임서버;" -+"Network;Wireless;Wi-" -+"Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;vlan;bridge;bond;DNS;" -+msgstr "" -+"Network;네트워크;Wireless;무선;Wi-" -+"Fi;Wifi;와이파이;IP;LAN;랜;Proxy;프록시;WAN;인터넷;Broadband;브로드밴드;Modem;모뎀;Bluetooth;블루투스;vpn;가상사설망;vlan;가상랜;bridge;브릿지;bond;본딩;DNS;네임서버;" - - #: ../panels/network/net-device-bond.c:77 - msgid "Bond slaves" -@@ -2651,7 +2619,7 @@ - #. * details window for ethernet, if there is only a single - #. * profile. It is also used to display ethernet in the - #. * device list. --#. -+#. - #: ../panels/network/net-device-ethernet.c:288 - #: ../panels/network/network-ethernet.ui.h:1 - #: ../panels/network/network-simple.ui.h:1 -@@ -2663,7 +2631,7 @@ - #: ../panels/network/network-ethernet.ui.h:3 - #: ../panels/network/network-mobile.ui.h:8 - #: ../panels/network/network-simple.ui.h:8 --#: ../panels/network/network-vpn.ui.h:8 -+#: ../panels/network/network-vpn.ui.h:7 - msgid "Options…" - msgstr "옵션…" - -@@ -2684,9 +2652,7 @@ - msgid "" - "If you have a connection to the Internet other than wireless, you can set up " - "a wireless hotspot to share the connection with others." --msgstr "" --"무선 연결이 아닌 인터넷 연결이 있으면, 무선 핫스팟을 통해 인터넷 연결을 다른 " --"사람과 공유할 수 있습니다." -+msgstr "무선 연결이 아닌 인터넷 연결이 있으면, 무선 핫스팟을 통해 인터넷 연결을 다른 사람과 공유할 수 있습니다." - - #: ../panels/network/net-device-wifi.c:1158 - #, c-format -@@ -2719,8 +2685,7 @@ - msgid "" - "Network details for the selected networks, including passwords and any " - "custom configuration will be lost." --msgstr "" --"선택한 네트워크의 상세 정보(암호 및 기타 사용자 설정 정보 포함)가 지워집니다." -+msgstr "선택한 네트워크의 상세 정보(암호 및 기타 사용자 설정 정보 포함)가 지워집니다." - - #: ../panels/network/net-device-wifi.c:1745 - #: ../panels/user-accounts/data/user-accounts-dialog.ui.h:13 -@@ -2729,7 +2694,7 @@ - - #: ../panels/network/net-device-wifi.c:1749 - #: ../panels/region/input-options.ui.h:2 ../panels/wacom/button-mapping.ui.h:2 --#: ../panels/wacom/cc-wacom-page.c:533 -+#: ../panels/wacom/cc-wacom-page.c:525 - #: ../panels/wacom/gnome-wacom-properties.ui.h:4 - msgid "_Close" - msgstr "닫기(_C)" -@@ -2770,17 +2735,17 @@ - msgid "Provider" - msgstr "공급처" - --#: ../panels/network/network-proxy.ui.h:1 ../panels/network/network.ui.h:2 -+#: ../panels/network/network-proxy.ui.h:1 - msgctxt "proxy method" - msgid "None" - msgstr "없음" - --#: ../panels/network/network-proxy.ui.h:2 ../panels/network/network.ui.h:3 -+#: ../panels/network/network-proxy.ui.h:2 - msgctxt "proxy method" - msgid "Manual" - msgstr "수동" - --#: ../panels/network/network-proxy.ui.h:3 ../panels/network/network.ui.h:4 -+#: ../panels/network/network-proxy.ui.h:3 - msgctxt "proxy method" - msgid "Automatic" - msgstr "자동" -@@ -2834,32 +2799,32 @@ - msgid "Turn device off" - msgstr "장치 끄기" - --#: ../panels/network/network.ui.h:5 -+#: ../panels/network/network.ui.h:1 - msgid "Add Device" - msgstr "장치 추가" - --#: ../panels/network/network.ui.h:6 -+#: ../panels/network/network.ui.h:2 - msgid "Remove Device" - msgstr "장치 제거" - --#: ../panels/network/network-vpn.ui.h:2 -+#: ../panels/network/network-vpn.ui.h:1 - msgid "VPN Type" - msgstr "가상사설망 방식" - --#: ../panels/network/network-vpn.ui.h:4 -+#: ../panels/network/network-vpn.ui.h:3 - msgid "Group Name" - msgstr "그룹 이름" - --#: ../panels/network/network-vpn.ui.h:5 -+#: ../panels/network/network-vpn.ui.h:4 - msgid "Group Password" - msgstr "그룹 암호" - --#: ../panels/network/network-vpn.ui.h:6 -+#: ../panels/network/network-vpn.ui.h:5 - #: ../panels/printers/authentication-dialog.ui.h:4 - msgid "Username" - msgstr "사용자 이름" - --#: ../panels/network/network-vpn.ui.h:7 -+#: ../panels/network/network-vpn.ui.h:6 - msgid "Turn VPN connection off" - msgstr "가상 사설망 끄기" - -@@ -2933,15 +2898,13 @@ - msgid "" - "Reset the settings for this connection to their defaults, but remember as a " - "preferred connection." --msgstr "" --"이 네트워크와 관련된 모든 설정을 초기화합니다. 동시에 기본 연결로 설정합니다." -+msgstr "이 네트워크와 관련된 모든 설정을 초기화합니다. 동시에 기본 연결로 설정합니다." - - #: ../panels/network/network-wifi.ui.h:44 - msgid "" - "Remove all details relating to this network and do not try to automatically " - "connect to it." --msgstr "" --"이 네트워크와 관련된 모든 사항을 제거하고 자동으로 연결을 시도하지 않습니다." -+msgstr "이 네트워크와 관련된 모든 사항을 제거하고 자동으로 연결을 시도하지 않습니다." - - #: ../panels/network/network-wifi.ui.h:45 - msgid "reset" -@@ -3295,9 +3258,8 @@ - "to insecure, rogue Wi-Fi networks. Would you like to choose a Certificate " - "Authority certificate?" - msgstr "" --"인증 기관(CA) 인증서를 사용하지 않으면 연결이 위험해 지거나, 아무나 연결할 " --"수 있는 와이파이 네트워크가 될 수 있습니다. 인증 기관 인증서를 고르시겠습니" --"까?" -+"인증 기관(CA) 인증서를 사용하지 않으면 연결이 위험해 지거나, 아무나 연결할 수 있는 와이파이 네트워크가 될 수 있습니다. 인증 기관 " -+"인증서를 고르시겠습니까?" - - #: ../panels/network/wireless-security/eap-method.c:281 - msgid "Ignore" -@@ -3430,8 +3392,7 @@ - "\n" - "(You can password-protect your private key with openssl)" - msgstr "" --"선택한 개인 키는 암호로 보호하지 않았습니다. 이러면 비밀 정보가 유출될 수 있" --"습니다. 암호로 보호한 개인 키를 선택하십시오.\n" -+"선택한 개인 키는 암호로 보호하지 않았습니다. 이러면 비밀 정보가 유출될 수 있습니다. 암호로 보호한 개인 키를 선택하십시오.\n" - "\n" - "(OpenSSL로 개인 키를 암호로 보호할 수도 있습니다)" - -@@ -3579,7 +3540,7 @@ - msgstr "잠금 화면에서 자세한 정보 표시" - - #: ../panels/notifications/cc-notifications-panel.c:185 --#: ../panels/power/cc-power-panel.c:1690 ../panels/power/cc-power-panel.c:1697 -+#: ../panels/power/cc-power-panel.c:1710 ../panels/power/cc-power-panel.c:1717 - #: ../panels/privacy/cc-privacy-panel.c:84 - #: ../panels/privacy/cc-privacy-panel.c:124 - #: ../panels/universal-access/cc-ua-panel.c:257 -@@ -3599,8 +3560,7 @@ - #. Translators: those are keywords for the notifications control-center panel - #: ../panels/notifications/gnome-notifications-panel.desktop.in.in.h:4 - msgid "Notifications;Banner;Message;Tray;Popup;" --msgstr "" --"Notifications;알림;Banner;안내판;Message;메시지;Tray;트레이;Popup;팝업;" -+msgstr "Notifications;알림;Banner;안내판;Message;메시지;Tray;트레이;Popup;팝업;" - - #: ../panels/notifications/notifications.ui.h:1 - msgid "Show Pop Up Banners" -@@ -3684,12 +3644,9 @@ - #. For ReadItLater and Pocket, see http://en.wikipedia.org/wiki/Pocket_(application) - #: ../panels/online-accounts/gnome-online-accounts-panel.desktop.in.in.h:4 - msgid "" --"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;" --"Kerberos;IMAP;SMTP;Pocket;ReadItLater;" -+"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;Kerberos;IMAP;SMTP;Pocket;ReadItLater;" - msgstr "" --"Google;구글;Facebook;페이스북;Twitter;트위터;Yahoo;야후;Web;웹;Online;온라인;" --"Chat;채팅;Calendar;달력;Mail;메일;Contact;연락처;ownCloud;Kerberos;케르베로" --"스;IMAP;SMTP;;Pocket;ReadItLater;" -+"Google;구글;Facebook;페이스북;Twitter;트위터;Yahoo;야후;Web;웹;Online;온라인;Chat;채팅;Calendar;달력;Mail;메일;Contact;연락처;ownCloud;Kerberos;케르베로스;IMAP;SMTP;;Pocket;ReadItLater;" - - #: ../panels/online-accounts/online-accounts.ui.h:1 - msgid "No online accounts configured" -@@ -3707,21 +3664,19 @@ - msgid "" - "Adding an account allows your applications to access it for documents, mail, " - "contacts, calendar, chat and more." --msgstr "" --"계정을 추가하면 프로그램에서 그 계정을 이용해 문서, 메일, 달력, 대화를 사용" --"할 수 있습니다." -+msgstr "계정을 추가하면 프로그램에서 그 계정을 이용해 문서, 메일, 달력, 대화를 사용할 수 있습니다." - --#: ../panels/power/cc-power-panel.c:183 -+#: ../panels/power/cc-power-panel.c:192 - msgid "Unknown time" - msgstr "시간 알 수 없음" - --#: ../panels/power/cc-power-panel.c:189 -+#: ../panels/power/cc-power-panel.c:198 - #, c-format - msgid "%i minute" - msgid_plural "%i minutes" - msgstr[0] "%i분" - --#: ../panels/power/cc-power-panel.c:201 -+#: ../panels/power/cc-power-panel.c:210 - #, c-format - msgid "%i hour" - msgid_plural "%i hours" -@@ -3729,225 +3684,225 @@ - - #. TRANSLATOR: "%i %s %i %s" are "%i hours %i minutes" - #. * Swap order with "%2$s %2$i %1$s %1$i if needed --#: ../panels/power/cc-power-panel.c:209 -+#: ../panels/power/cc-power-panel.c:218 - #, c-format - msgid "%i %s %i %s" - msgstr "%i%s %i%s" - --#: ../panels/power/cc-power-panel.c:210 -+#: ../panels/power/cc-power-panel.c:219 - msgid "hour" - msgid_plural "hours" - msgstr[0] "시간" - --#: ../panels/power/cc-power-panel.c:211 -+#: ../panels/power/cc-power-panel.c:220 - msgid "minute" - msgid_plural "minutes" - msgstr[0] "분" - - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" --#: ../panels/power/cc-power-panel.c:230 -+#: ../panels/power/cc-power-panel.c:239 - #, c-format - msgid "%s until fully charged" - msgstr "완전 충전까지 %s 남음" - - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" --#: ../panels/power/cc-power-panel.c:237 -+#: ../panels/power/cc-power-panel.c:246 - #, c-format - msgid "Caution: %s remaining" - msgstr "주의: %s 남음" - - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" --#: ../panels/power/cc-power-panel.c:242 -+#: ../panels/power/cc-power-panel.c:251 - #, c-format - msgid "%s remaining" - msgstr "%s 남음" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:247 ../panels/power/cc-power-panel.c:275 -+#: ../panels/power/cc-power-panel.c:256 ../panels/power/cc-power-panel.c:284 - msgid "Fully charged" - msgstr "완전 충전" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:251 ../panels/power/cc-power-panel.c:279 -+#: ../panels/power/cc-power-panel.c:260 ../panels/power/cc-power-panel.c:288 - msgid "Empty" - msgstr "비었음" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:266 -+#: ../panels/power/cc-power-panel.c:275 - msgid "Charging" - msgstr "충전 중" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:271 -+#: ../panels/power/cc-power-panel.c:280 - msgid "Discharging" - msgstr "방전 중" - --#: ../panels/power/cc-power-panel.c:396 -+#: ../panels/power/cc-power-panel.c:405 - msgctxt "Battery name" - msgid "Main" - msgstr "1차" - --#: ../panels/power/cc-power-panel.c:398 -+#: ../panels/power/cc-power-panel.c:407 - msgctxt "Battery name" - msgid "Extra" - msgstr "추가" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:470 -+#: ../panels/power/cc-power-panel.c:479 - msgid "Wireless mouse" - msgstr "무선 마우스" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:473 -+#: ../panels/power/cc-power-panel.c:482 - msgid "Wireless keyboard" - msgstr "무선 키보드" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:476 -+#: ../panels/power/cc-power-panel.c:485 - msgid "Uninterruptible power supply" - msgstr "무정전 전원 장치" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:479 -+#: ../panels/power/cc-power-panel.c:488 - msgid "Personal digital assistant" - msgstr "개인 휴대 정보 단말기" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:482 -+#: ../panels/power/cc-power-panel.c:491 - msgid "Cellphone" - msgstr "휴대전화" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:485 -+#: ../panels/power/cc-power-panel.c:494 - msgid "Media player" - msgstr "미디어 플레이어" - - # 태블릿 PC - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:488 -+#: ../panels/power/cc-power-panel.c:497 - msgid "Tablet" - msgstr "태블릿" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:491 -+#: ../panels/power/cc-power-panel.c:500 - msgid "Computer" - msgstr "컴퓨터" - - #. TRANSLATORS: secondary battery, misc --#: ../panels/power/cc-power-panel.c:494 ../panels/power/cc-power-panel.c:717 --#: ../panels/power/cc-power-panel.c:2019 -+#: ../panels/power/cc-power-panel.c:503 ../panels/power/cc-power-panel.c:726 -+#: ../panels/power/cc-power-panel.c:2046 - msgid "Battery" - msgstr "배터리" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:540 -+#: ../panels/power/cc-power-panel.c:549 - msgctxt "Battery power" - msgid "Charging" - msgstr "충전 중" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:547 -+#: ../panels/power/cc-power-panel.c:556 - msgctxt "Battery power" - msgid "Caution" - msgstr "위험" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:552 -+#: ../panels/power/cc-power-panel.c:561 - msgctxt "Battery power" - msgid "Low" - msgstr "적음" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:557 -+#: ../panels/power/cc-power-panel.c:566 - msgctxt "Battery power" - msgid "Good" - msgstr "적당함" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:562 -+#: ../panels/power/cc-power-panel.c:571 - msgctxt "Battery power" - msgid "Fully charged" - msgstr "완전 충전" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:566 -+#: ../panels/power/cc-power-panel.c:575 - msgctxt "Battery power" - msgid "Empty" - msgstr "방전됨" - --#: ../panels/power/cc-power-panel.c:715 -+#: ../panels/power/cc-power-panel.c:724 - msgid "Batteries" - msgstr "배터리" - --#: ../panels/power/cc-power-panel.c:1117 -+#: ../panels/power/cc-power-panel.c:1126 - msgid "When _idle" - msgstr "입력이 없을 때(_I)" - --#: ../panels/power/cc-power-panel.c:1445 -+#: ../panels/power/cc-power-panel.c:1454 - msgid "Power Saving" - msgstr "절전" - --#: ../panels/power/cc-power-panel.c:1473 -+#: ../panels/power/cc-power-panel.c:1489 - msgid "_Screen brightness" - msgstr "화면 밝기(_S)" - --#: ../panels/power/cc-power-panel.c:1479 -+#: ../panels/power/cc-power-panel.c:1495 - msgid "_Keyboard brightness" - msgstr "키보드 밝기(_K)" - --#: ../panels/power/cc-power-panel.c:1489 -+#: ../panels/power/cc-power-panel.c:1505 - msgid "_Dim screen when inactive" - msgstr "입력이 없으면 화면 어둡게(_D)" - --#: ../panels/power/cc-power-panel.c:1514 -+#: ../panels/power/cc-power-panel.c:1530 - msgid "_Blank screen" - msgstr "빈 화면(_B)" - --#: ../panels/power/cc-power-panel.c:1551 -+#: ../panels/power/cc-power-panel.c:1567 - msgid "_Wi-Fi" - msgstr "와이파이(_W)" - --#: ../panels/power/cc-power-panel.c:1556 -+#: ../panels/power/cc-power-panel.c:1572 - msgid "Turns off wireless devices" - msgstr "무선 장치를 끕니다" - --#: ../panels/power/cc-power-panel.c:1581 -+#: ../panels/power/cc-power-panel.c:1597 - msgid "_Mobile broadband" - msgstr "휴대전화 네트워크(_M)" - --#: ../panels/power/cc-power-panel.c:1586 -+#: ../panels/power/cc-power-panel.c:1602 - msgid "Turns off mobile broadband (3G, 4G, WiMax, etc.) devices" - msgstr "휴대전화 네트워크(3G, 4G, WiMax 등) 장치를 끕니다" - --#: ../panels/power/cc-power-panel.c:1635 -+#: ../panels/power/cc-power-panel.c:1652 - msgid "_Bluetooth" - msgstr "블루투스(_B)" - --#: ../panels/power/cc-power-panel.c:1686 -+#: ../panels/power/cc-power-panel.c:1706 - msgid "When on battery power" - msgstr "배터리 전원 사용할 때" - --#: ../panels/power/cc-power-panel.c:1688 -+#: ../panels/power/cc-power-panel.c:1708 - msgid "When plugged in" - msgstr "전원이 연결되었을 때" - --#: ../panels/power/cc-power-panel.c:1818 -+#: ../panels/power/cc-power-panel.c:1838 - msgid "Suspend & Power Off" - msgstr "대기 모드 및 전원 끄기" - --#: ../panels/power/cc-power-panel.c:1851 -+#: ../panels/power/cc-power-panel.c:1878 - msgid "_Automatic suspend" - msgstr "자동 대기 모드(_A)" - --#: ../panels/power/cc-power-panel.c:1875 -+#: ../panels/power/cc-power-panel.c:1902 - msgid "When battery power is _critical" - msgstr "배터리 전원이 위험할 때(_C)" - --#: ../panels/power/cc-power-panel.c:1930 -+#: ../panels/power/cc-power-panel.c:1957 - msgid "Power Off" - msgstr "전원 끄기" - --#: ../panels/power/cc-power-panel.c:2066 -+#: ../panels/power/cc-power-panel.c:2100 - msgid "Devices" - msgstr "장치" - -@@ -3964,8 +3919,8 @@ - msgid "" - "Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;" - msgstr "" --"Power;전원;Sleep;절전;Suspend;대기 모드;Hibernate;최대 절전;Battery;배터리;" --"Brightness;밝기;Dim;어둡게;Blank;Monitor;모니터;DPMS;Idle;입력;" -+"Power;전원;Sleep;절전;Suspend;대기 모드;Hibernate;최대 " -+"절전;Battery;배터리;Brightness;밝기;Dim;어둡게;Blank;Monitor;모니터;DPMS;Idle;입력;" - - #: ../panels/power/power.ui.h:1 - msgid "Hibernate" -@@ -4205,45 +4160,44 @@ - msgstr[0] "%u개 활성" - - #. Translators: Addition of the new printer failed. --#: ../panels/printers/cc-printers-panel.c:1777 -+#: ../panels/printers/cc-printers-panel.c:1779 - msgid "Failed to add new printer." - msgstr "새 프린터 추가에 실패했습니다." - --#: ../panels/printers/cc-printers-panel.c:1944 -+#: ../panels/printers/cc-printers-panel.c:1946 - msgid "Select PPD File" - msgstr "PPD 파일 선택" - --#: ../panels/printers/cc-printers-panel.c:1953 -+#: ../panels/printers/cc-printers-panel.c:1955 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" --msgstr "" --"포스트스크립트 프린터 기술 파일(*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD.GZ)" -+msgstr "포스트스크립트 프린터 기술 파일(*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD.GZ)" - --#: ../panels/printers/cc-printers-panel.c:2258 -+#: ../panels/printers/cc-printers-panel.c:2260 - msgid "No suitable driver found" - msgstr "적당한 드라이버가 없습니다" - --#: ../panels/printers/cc-printers-panel.c:2327 -+#: ../panels/printers/cc-printers-panel.c:2329 - msgid "Searching for preferred drivers…" - msgstr "준비된 드라이버 검색중…" - --#: ../panels/printers/cc-printers-panel.c:2342 -+#: ../panels/printers/cc-printers-panel.c:2344 - msgid "Select from database…" - msgstr "데이터베이스에서 선택…" - --#: ../panels/printers/cc-printers-panel.c:2351 -+#: ../panels/printers/cc-printers-panel.c:2353 - msgid "Provide PPD File…" - msgstr "PPD 파일 제공…" - - #. Translators: Name of job which makes printer to print test page --#: ../panels/printers/cc-printers-panel.c:2502 --#: ../panels/printers/cc-printers-panel.c:2525 -+#: ../panels/printers/cc-printers-panel.c:2504 -+#: ../panels/printers/cc-printers-panel.c:2527 - msgid "Test page" - msgstr "시험 페이지" - - #. Translators: The XML file containing user interface can not be loaded --#: ../panels/printers/cc-printers-panel.c:2933 -+#: ../panels/printers/cc-printers-panel.c:2935 - #, c-format - msgid "Could not load ui: %s" - msgstr "UI를 읽어들일 수 없습니다: %s" -@@ -4259,8 +4213,7 @@ - #. Translators: those are keywords for the printing control-center panel - #: ../panels/printers/gnome-printers-panel.desktop.in.in.h:4 - msgid "Printer;Queue;Print;Paper;Ink;Toner;" --msgstr "" --"Printer;프린터;Queue;대기열;Print;인쇄;Paper;용지;종이;Ink;잉크;Toner;토너;" -+msgstr "Printer;프린터;Queue;대기열;Print;인쇄;Paper;용지;종이;Ink;잉크;Toner;토너;" - - #. Translators: This dialog contains list of active print jobs of the selected printer - #: ../panels/printers/jobs-dialog.ui.h:2 -@@ -4658,11 +4611,9 @@ - - #. Translators: The CUPS server is not running (we can not connect to it). - #: ../panels/printers/printers.ui.h:26 --msgid "" --"Sorry! The system printing service\n" -+msgid "Sorry! The system printing service\n" - "doesn't seem to be available." --msgstr "" --"죄송합니다. 시스템 인쇄 서비스가\n" -+msgstr "죄송합니다. 시스템 인쇄 서비스가\n" - "존재하지 않는 것 같습니다." - - #: ../panels/privacy/cc-privacy-panel.c:252 ../panels/privacy/privacy.ui.h:24 -@@ -4716,11 +4667,9 @@ - #. Translators: those are keywords for the privacy control-center panel - #: ../panels/privacy/gnome-privacy-panel.desktop.in.in.h:4 - msgid "" --"screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;" --"network;identity;" -+"screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;network;identity;" - msgstr "" --"screen;화면;lock;잠그기;diagnostics;진단;crash;private;개인;사생활;recent;최" --"근;temporary;tmp;임시;index;색인;name;이름;network;네트워크;identity;신원;" -+"screen;화면;lock;잠그기;diagnostics;진단;crash;private;개인;사생활;recent;최근;temporary;tmp;임시;index;색인;name;이름;network;네트워크;identity;신원;" - - #: ../panels/privacy/privacy.ui.h:1 - msgid "Screen Turns Off" -@@ -4774,9 +4723,7 @@ - msgid "" - "Remembering your history makes things easier to find again. These items are " - "never shared over the network." --msgstr "" --"기록을 저장하면 나중에 다시 찾아 볼 수 있습니다. 이 항목은 네트워크에 공유되" --"지 않습니다." -+msgstr "기록을 저장하면 나중에 다시 찾아 볼 수 있습니다. 이 항목은 네트워크에 공유되지 않습니다." - - #: ../panels/privacy/privacy.ui.h:21 - msgid "_Recently Used" -@@ -4810,9 +4757,7 @@ - msgid "" - "Automatically purge the Trash and temporary files to help keep your computer " - "free of unnecessary sensitive information." --msgstr "" --"민감한 정보를 불필요하게 갖고 있지 않도록, 휴지통 파일과 임시 파일을 자동으" --"로 지웁니다." -+msgstr "민감한 정보를 불필요하게 갖고 있지 않도록, 휴지통 파일과 임시 파일을 자동으로 지웁니다." - - #: ../panels/privacy/privacy.ui.h:31 - msgid "Automatically empty _Trash" -@@ -4829,14 +4774,13 @@ - #: ../panels/privacy/privacy.ui.h:37 - msgid "" - "Sending us information about which software you use helps us provide you " --"with more accurate recommendations. It also helps us to improve our " --"software.\n" -+"with more accurate recommendations. It also helps us to improve our software." -+"\n" - "\n" - "All the information we collect is made anonymous, and we will never share " - "your data with third parties." - msgstr "" --"어떤 소프트웨어를 사용하는지에 대한 정보를 보내면 소프트웨어를 좀 더 정확히 " --"추천할 수 있습니다. 또 소프트웨어 개발에도 도움이 됩니다.\n" -+"어떤 소프트웨어를 사용하는지에 대한 정보를 보내면 소프트웨어를 좀 더 정확히 추천할 수 있습니다. 또 소프트웨어 개발에도 도움이 됩니다.\n" - "\n" - "모든 정보는 익명으로 수집되며, 절대로 제 3자에게 공유하지 않습니다." - -@@ -4874,34 +4818,34 @@ - msgid "No input sources found" - msgstr "입력 소스가 없습니다" - --#: ../panels/region/cc-input-chooser.c:1076 -+#: ../panels/region/cc-input-chooser.c:1084 - msgctxt "Input Source" - msgid "Other" - msgstr "기타" - --#: ../panels/region/cc-region-panel.c:239 --#: ../panels/user-accounts/um-user-panel.c:896 -+#: ../panels/region/cc-region-panel.c:243 -+#: ../panels/user-accounts/um-user-panel.c:1113 - msgid "Your session needs to be restarted for changes to take effect" - msgstr "바뀐 사항을 적용하려면 세션을 다시 시작해야 합니다." - --#: ../panels/region/cc-region-panel.c:240 --#: ../panels/user-accounts/um-user-panel.c:897 -+#: ../panels/region/cc-region-panel.c:247 -+#: ../panels/user-accounts/um-user-panel.c:1117 - msgid "Restart Now" - msgstr "지금 다시 시작" - --#: ../panels/region/cc-region-panel.c:858 -+#: ../panels/region/cc-region-panel.c:867 - msgid "No input source selected" - msgstr "입력 소스를 선택하지 않았습니다" - --#: ../panels/region/cc-region-panel.c:1088 -+#: ../panels/region/cc-region-panel.c:1097 - msgid "Sorry" - msgstr "미안합니다" - --#: ../panels/region/cc-region-panel.c:1090 -+#: ../panels/region/cc-region-panel.c:1099 - msgid "Input methods can't be used on the login screen" - msgstr "로그인 화면에서는 입력기를 사용할 수 없습니다" - --#: ../panels/region/cc-region-panel.c:1727 -+#: ../panels/region/cc-region-panel.c:1739 - msgid "Login Screen" - msgstr "로그인 화면" - -@@ -5035,7 +4979,7 @@ - msgid "_OK" - msgstr "확인(_O)" - --#: ../panels/search/cc-search-panel.c:176 -+#: ../panels/search/cc-search-panel.c:177 - msgid "No applications found" - msgstr "프로그램 없음" - -@@ -5051,9 +4995,7 @@ - #. Translators: those are keywords for the search control-center panel - #: ../panels/search/gnome-search-panel.desktop.in.in.h:4 - msgid "Search;Find;Index;Hide;Privacy;Results;" --msgstr "" --"Search;검색;Find;찾기;Index;인덱스;색인;Hide;숨기기;Privacy;개인정보;Results;" --"결과;" -+msgstr "Search;검색;Find;찾기;Index;인덱스;색인;Hide;숨기기;Privacy;개인정보;Results;결과;" - - #: ../panels/search/search-locations-dialog.ui.h:1 - msgid "Search Locations" -@@ -5096,7 +5038,7 @@ - msgid "Choose a Folder" - msgstr "폴더 선택" - --#: ../panels/sharing/cc-sharing-panel.c:916 -+#: ../panels/sharing/cc-sharing-panel.c:917 - msgid "Copy" - msgstr "복사" - -@@ -5111,12 +5053,9 @@ - #. Translators: those are keywords for the sharing control-center panel - #: ../panels/sharing/gnome-sharing-panel.desktop.in.in.h:4 - msgid "" --"share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;" --"pictures;photos;movies;server;renderer;" -+"share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;pictures;photos;movies;server;renderer;" - msgstr "" --"share;sharing;공유;ssh;보안쉘;host;name;호스트;이름;remote;desktop;원격;데스" --"크톱;bluetooth;블루투스;obex;media;미디어;audio;오디오;video;비디오;pictures;" --"photos;사진;movies;영상;동영상;server;서버;renderer;렌더러;" -+"share;sharing;공유;ssh;보안쉘;host;name;호스트;이름;remote;desktop;원격;데스크톱;bluetooth;블루투스;obex;media;미디어;audio;오디오;video;비디오;pictures;photos;사진;movies;영상;동영상;server;서버;renderer;렌더러;" - - #: ../panels/sharing/org.gnome.controlcenter.remote-login-helper.policy.in.in.h:1 - msgid "Enable or disable remote login" -@@ -5127,13 +5066,13 @@ - msgstr "원격 로그인 사용 여부를 바꾸려면 인증이 필요합니다" - - #. Label --#: ../panels/sharing/cc-sharing-networks.c:299 -+#: ../panels/sharing/cc-sharing-networks.c:303 - msgid "No networks selected for sharing" - msgstr "공유에 사용할 네트워크를 선택하지 않았습니다" - --#. -+#. - #. * vim: sw=2 ts=8 cindent noai bs=2 --#. -+#. - #: ../panels/sharing/networks.ui.h:1 - msgid "Networks" - msgstr "네트워크" -@@ -5146,8 +5085,7 @@ - msgid "" - "Bluetooth Sharing allows you to share files with other Bluetooth enabled " - "devices" --msgstr "" --"블루투스 공유를 사용하면 다른 블루투스를 장치와 파일을 공유할 수 있습니다" -+msgstr "블루투스 공유를 사용하면 다른 블루투스를 장치와 파일을 공유할 수 있습니다" - - #: ../panels/sharing/sharing.ui.h:3 - msgid "Only Receive From Trusted Devices" -@@ -5187,8 +5125,8 @@ - "Personal File Sharing allows you to share your Public folder with others on " - "your current network using: dav://%s" - msgstr "" --"개인 파일 공유를 사용하면 공유 폴더를 네트워크의 다른 사람이 다음을 사용해 공" --"유할 수 있습니다: dav://%s" -+"개인 파일 공유를 사용하면 공유 폴더를 네트워크의 다른 사람이 다음을 사용해 공유할 수 있습니다: dav://%s" - - #: ../panels/sharing/sharing.ui.h:13 - msgid "Require Password" -@@ -5199,8 +5137,7 @@ - msgid "" - "Allow remote users to connect using the Secure Shell command:\n" - "ssh %s" --msgstr "" --"원격 사용자가 보안 셸 명령으로 연결하도록 허용:\n" -+msgstr "원격 사용자가 보안 셸 명령으로 연결하도록 허용:\n" - "ssh %s" - - #: ../panels/sharing/sharing.ui.h:19 -@@ -5208,9 +5145,7 @@ - msgid "" - "Allow remote users to view or control your screen by connecting to: vnc://%s" --msgstr "" --"원격 사용자가 다음에 연결해 화면을 보거나 조작할 수 있습니다: vnc://%s" -+msgstr "원격 사용자가 다음에 연결해 화면을 보거나 조작할 수 있습니다: vnc://%s" - - #: ../panels/sharing/sharing.ui.h:20 - msgid "Allow Remote Control" -@@ -5256,8 +5191,7 @@ - #: ../panels/sound/data/gnome-sound-panel.desktop.in.in.h:4 - msgid "Card;Microphone;Volume;Fade;Balance;Bluetooth;Headset;Audio;" - msgstr "" --"Card;카드;Microphone;마이크;Volume;볼륨;음량;Fade;페이드;Balance;균형;밸런스;" --"Bluetooth;블루투스;Headset;헤드셋;Audio;오디오;" -+"Card;카드;Microphone;마이크;Volume;볼륨;음량;Fade;페이드;Balance;균형;밸런스;Bluetooth;블루투스;Headset;헤드셋;Audio;오디오;" - - #. Translators: This is the name of an audio file that sounds like the bark of a dog. - #. You might want to translate it into the equivalent words of your language. -@@ -5368,65 +5302,65 @@ - msgid "Peak detect" - msgstr "피크 검색" - --#: ../panels/sound/gvc-mixer-dialog.c:1509 --#: ../panels/sound/gvc-sound-theme-chooser.c:594 -+#: ../panels/sound/gvc-mixer-dialog.c:1516 -+#: ../panels/sound/gvc-sound-theme-chooser.c:564 - msgid "Name" - msgstr "이름" - --#: ../panels/sound/gvc-mixer-dialog.c:1528 -+#: ../panels/sound/gvc-mixer-dialog.c:1535 - msgid "Device" - msgstr "장치" - --#: ../panels/sound/gvc-mixer-dialog.c:1591 -+#: ../panels/sound/gvc-mixer-dialog.c:1598 - #, c-format - msgid "Speaker Testing for %s" - msgstr "스피커 시험(%s)" - --#: ../panels/sound/gvc-mixer-dialog.c:1649 -+#: ../panels/sound/gvc-mixer-dialog.c:1656 - msgid "_Output volume:" - msgstr "출력 음량(_O):" - --#: ../panels/sound/gvc-mixer-dialog.c:1663 -+#: ../panels/sound/gvc-mixer-dialog.c:1670 - msgid "Output" - msgstr "출력" - --#: ../panels/sound/gvc-mixer-dialog.c:1668 -+#: ../panels/sound/gvc-mixer-dialog.c:1675 - msgid "C_hoose a device for sound output:" - msgstr "사운드 출력 장치 선택(_H):" - --#: ../panels/sound/gvc-mixer-dialog.c:1693 -+#: ../panels/sound/gvc-mixer-dialog.c:1700 - msgid "Settings for the selected device:" - msgstr "선택한 장치에 대한 설정:" - --#: ../panels/sound/gvc-mixer-dialog.c:1704 -+#: ../panels/sound/gvc-mixer-dialog.c:1711 - msgid "Input" - msgstr "입력" - --#: ../panels/sound/gvc-mixer-dialog.c:1711 -+#: ../panels/sound/gvc-mixer-dialog.c:1718 - msgid "_Input volume:" - msgstr "입력 음량(_I):" - --#: ../panels/sound/gvc-mixer-dialog.c:1734 -+#: ../panels/sound/gvc-mixer-dialog.c:1741 - msgid "Input level:" - msgstr "입력 레벨:" - --#: ../panels/sound/gvc-mixer-dialog.c:1762 -+#: ../panels/sound/gvc-mixer-dialog.c:1769 - msgid "C_hoose a device for sound input:" - msgstr "사운드 입력 장치 선택(_H):" - --#: ../panels/sound/gvc-mixer-dialog.c:1789 -+#: ../panels/sound/gvc-mixer-dialog.c:1796 - msgid "Sound Effects" - msgstr "효과음" - --#: ../panels/sound/gvc-mixer-dialog.c:1796 -+#: ../panels/sound/gvc-mixer-dialog.c:1803 - msgid "_Alert volume:" - msgstr "경보 음량(_A):" - --#: ../panels/sound/gvc-mixer-dialog.c:1809 -+#: ../panels/sound/gvc-mixer-dialog.c:1816 - msgid "Applications" - msgstr "프로그램" - --#: ../panels/sound/gvc-mixer-dialog.c:1813 -+#: ../panels/sound/gvc-mixer-dialog.c:1820 - msgid "No application is currently playing or recording audio." - msgstr "현재 오디오를 재생 중이거나 녹음 중인 프로그램이 없습니다." - -@@ -5446,15 +5380,15 @@ - msgid "Testing event sound" - msgstr "이벤트 사운드 시험중" - --#: ../panels/sound/gvc-sound-theme-chooser.c:584 -+#: ../panels/sound/gvc-sound-theme-chooser.c:554 - msgid "Default" - msgstr "기본값" - --#: ../panels/sound/gvc-sound-theme-chooser.c:585 -+#: ../panels/sound/gvc-sound-theme-chooser.c:555 - msgid "From theme" - msgstr "테마에서" - --#: ../panels/sound/gvc-sound-theme-chooser.c:769 -+#: ../panels/sound/gvc-sound-theme-chooser.c:739 - msgid "C_hoose an alert sound:" - msgstr "경보 사운드 선택(_H):" - -@@ -5482,12 +5416,9 @@ - #. Translators: those are keywords for the universal access control-center panel - #: ../panels/universal-access/gnome-universal-access-panel.desktop.in.in.h:4 - msgid "" --"Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;" --"AccessX;Sticky;Keys;Slow;Bounce;Mouse;" -+"Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;AccessX;Sticky;Keys;Slow;Bounce;Mouse;" - msgstr "" --"Keyboard;키보드;Mouse;마우스;a11y;Accessibility;접근성;Contrast;대비;Zoom;확" --"대;축소;Screen;Reader;스크린;리더;화면;읽기;text;텍스트;font;size;폰트;글꼴;" --"크기;AccessX;Sticky;Keys;고정;키;Slow;느린;Bounce;탄력;Mouse;마우스;" -+"Keyboard;키보드;Mouse;마우스;a11y;Accessibility;접근성;Contrast;대비;Zoom;확대;축소;Screen;Reader;스크린;리더;화면;읽기;text;텍스트;font;size;폰트;글꼴;크기;AccessX;Sticky;Keys;고정;키;Slow;느린;Bounce;탄력;Mouse;마우스;" - - #: ../panels/universal-access/uap.ui.h:1 - msgid "_Always Show Universal Access Menu" -@@ -5602,7 +5533,8 @@ - msgstr "키 두개를 같이 누르면 사용 중지(_D)" - - #: ../panels/universal-access/uap.ui.h:31 --msgid "Beep when a _modifer key is pressed" -+#, fuzzy -+msgid "Beep when a _modifier key is pressed" - msgstr "변경 키를 눌렀을 때 삑 소리(_M)" - - #: ../panels/universal-access/uap.ui.h:32 -@@ -5956,19 +5888,16 @@ - msgid "" - "Enterprise login allows an existing centrally managed user account to be " - "used on this device." --msgstr "" --"기업 로그인에서는 중앙에서 관리하는 사용자 계정을 이 장치에서 사용합니다." -+msgstr "기업 로그인에서는 중앙에서 관리하는 사용자 계정을 이 장치에서 사용합니다." - - #: ../panels/user-accounts/data/account-dialog.ui.h:12 - msgid "_Domain" - msgstr "도메인(_D)" - - #: ../panels/user-accounts/data/account-dialog.ui.h:13 --msgid "" --"Go online to add\n" -+msgid "Go online to add\n" - "enterprise login accounts." --msgstr "" --"기업 로그인 계정을 추가하려면\n" -+msgstr "기업 로그인 계정을 추가하려면\n" - "먼저 연결하십시오." - - #: ../panels/user-accounts/data/account-dialog.ui.h:15 -@@ -6040,7 +5969,7 @@ - msgstr "오른쪽 새끼" - - #: ../panels/user-accounts/data/account-fingerprint.ui.h:9 --#: ../panels/user-accounts/um-fingerprint-dialog.c:697 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:689 - msgid "Enable Fingerprint Login" - msgstr "지문 로그인 사용" - -@@ -6060,9 +5989,7 @@ - msgid "" - "Your fingerprint was successfully saved. You should now be able to log in " - "using your fingerprint reader." --msgstr "" --"지문을 성공적으로 저장했습니다. 이제 지문 인식 장치를 이용해 로그인할 수 있습" --"니다." -+msgstr "지문을 성공적으로 저장했습니다. 이제 지문 인식 장치를 이용해 로그인할 수 있습니다." - - #: ../panels/user-accounts/data/gnome-user-accounts-panel.desktop.in.in.h:1 - msgid "Users" -@@ -6076,8 +6003,8 @@ - #: ../panels/user-accounts/data/gnome-user-accounts-panel.desktop.in.in.h:4 - msgid "Login;Name;Fingerprint;Avatar;Logo;Face;Password;" - msgstr "" --"Login;로그인;Name;이름;Fingerprint;지문;Avatar;아바타;Logo;로고;Face;얼굴;" --"Password;암호;비밀 번호;" -+"Login;로그인;Name;이름;Fingerprint;지문;Avatar;아바타;Logo;로고;Face;얼굴;Password;암호;비밀 " -+"번호;" - - #: ../panels/user-accounts/data/history-dialog.ui.h:1 - msgid "Login History" -@@ -6218,9 +6145,7 @@ - msgid "" - "Try to avoid repeating the same type of character: you need to mix up " - "letters, numbers and punctuation." --msgstr "" --"같은 종류의 문자의 반복을 피해 보십시오. 영문자, 숫자, 문장 기호를 섞어 써야 " --"합니다." -+msgstr "같은 종류의 문자의 반복을 피해 보십시오. 영문자, 숫자, 문장 기호를 섞어 써야 합니다." - - #: ../panels/user-accounts/pw-utils.c:113 - msgctxt "Password hint" -@@ -6349,19 +6274,15 @@ - msgstr "도메인 참여에 실패했습니다" - - #: ../panels/user-accounts/um-account-dialog.c:1035 --msgid "" --"That login name didn't work.\n" -+msgid "That login name didn't work.\n" - "Please try again." --msgstr "" --"이 로그인 이름은 쓸 수 없습니다.\n" -+msgstr "이 로그인 이름은 쓸 수 없습니다.\n" - "다시 시도해 보십시오." - - #: ../panels/user-accounts/um-account-dialog.c:1042 --msgid "" --"That login password didn't work.\n" -+msgid "That login password didn't work.\n" - "Please try again." --msgstr "" --"이 로그인 암호는 쓸 수 없습니다.\n" -+msgstr "이 로그인 암호는 쓸 수 없습니다.\n" - "다시 시도해 보십시오." - - #: ../panels/user-accounts/um-account-dialog.c:1050 -@@ -6372,47 +6293,46 @@ - msgid "Unable find the domain. Maybe you misspelled it?" - msgstr "도메인을 찾을 수 없습니다. 잘못 쓰신 것이 아닙니까?" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:137 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:138 - msgid "" - "You are not allowed to access the device. Contact your system administrator." - msgstr "이 장치를 사용할 권한이 없습니다. 시스템 관리자에게 문의하십시오." - --#: ../panels/user-accounts/um-fingerprint-dialog.c:139 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:140 - msgid "The device is already in use." - msgstr "장치를 이미 사용중입니다." - --#: ../panels/user-accounts/um-fingerprint-dialog.c:141 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:142 - msgid "An internal error occurred." - msgstr "내부 오류가 발생했습니다." - --#: ../panels/user-accounts/um-fingerprint-dialog.c:217 --#: ../panels/user-accounts/um-fingerprint-dialog.c:218 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:216 - msgid "Enabled" - msgstr "사용" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:266 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:263 - msgid "Delete registered fingerprints?" - msgstr "등록한 지문을 삭제하시겠습니까?" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:270 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:267 - msgid "_Delete Fingerprints" - msgstr "지문 삭제(_D)" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:276 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:273 - msgid "" - "Do you want to delete your registered fingerprints so fingerprint login is " - "disabled?" - msgstr "등록한 지문을 삭제하고 지문 로그인을 사용하지 않습니까?" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:452 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:446 - msgid "Done!" - msgstr "완료!" - - #. translators: - #. * The variable is the name of the device, for example: - #. * "Could you not access "Digital Persona U.are.U 4000/4000B" device --#: ../panels/user-accounts/um-fingerprint-dialog.c:513 --#: ../panels/user-accounts/um-fingerprint-dialog.c:555 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:507 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:549 - #, c-format - msgid "Could not access '%s' device" - msgstr "'%s' 장치에 접근할 수 없습니다" -@@ -6420,16 +6340,16 @@ - #. translators: - #. * The variable is the name of the device, for example: - #. * "Could you not access "Digital Persona U.are.U 4000/4000B" device --#: ../panels/user-accounts/um-fingerprint-dialog.c:596 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:590 - #, c-format - msgid "Could not start finger capture on '%s' device" - msgstr "'%s' 장치의 지문 캡처를 시작할 수 없습니다" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:647 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:640 - msgid "Could not access any fingerprint readers" - msgstr "지문 인식 장치에 접근할 수 없습니다" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:648 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:641 - msgid "Please contact your system administrator for help." - msgstr "시스템 관리자에게 문의하십시오." - -@@ -6437,19 +6357,19 @@ - #. * The variable is the name of the device, for example: - #. * "To enable fingerprint login, you need to save one of your fingerprints, using the - #. * 'Digital Persona U.are.U 4000/4000B' device." --#. --#: ../panels/user-accounts/um-fingerprint-dialog.c:731 -+#. -+#: ../panels/user-accounts/um-fingerprint-dialog.c:723 - #, c-format - msgid "" - "To enable fingerprint login, you need to save one of your fingerprints, " - "using the '%s' device." - msgstr "지문 로그인을 사용하려면, '%s' 장치를 이용해 지문을 입력해야 합니다." - --#: ../panels/user-accounts/um-fingerprint-dialog.c:738 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:730 - msgid "Selecting finger" - msgstr "손가락 선택" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:739 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:731 - msgid "Enrolling fingerprints" - msgstr "지문 등록하는 중" - -@@ -6489,7 +6409,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/um-history-dialog.c:175 --#: ../panels/user-accounts/um-user-panel.c:631 -+#: ../panels/user-accounts/um-user-panel.c:844 - msgctxt "login date-time" - msgid "%k:%M" - msgstr "%k:%M" -@@ -6497,7 +6417,7 @@ - #. Translators: This indicates a login date-time. - #. The first %s is a date, and the second %s a time. - #: ../panels/user-accounts/um-history-dialog.c:178 --#: ../panels/user-accounts/um-user-panel.c:635 -+#: ../panels/user-accounts/um-user-panel.c:848 - #, c-format - msgctxt "login date-time" - msgid "%s, %s" -@@ -6572,112 +6492,121 @@ - msgid "Couldn't connect to the %s domain: %s" - msgstr "%s 도메인에 연결할 수 없습니다: %s" - --#: ../panels/user-accounts/um-user-panel.c:198 -+#: ../panels/user-accounts/um-user-panel.c:239 - msgid "Other Accounts" - msgstr "기타 계정" - --#: ../panels/user-accounts/um-user-panel.c:417 -+#: ../panels/user-accounts/um-user-panel.c:453 - msgid "Failed to delete user" - msgstr "사용자 삭제에 실패했습니다" - --#: ../panels/user-accounts/um-user-panel.c:482 -+#: ../panels/user-accounts/um-user-panel.c:513 -+#: ../panels/user-accounts/um-user-panel.c:569 -+#: ../panels/user-accounts/um-user-panel.c:621 -+#, fuzzy -+msgid "Failed to revoke remotely managed user" -+msgstr "사용자 삭제에 실패했습니다" -+ -+#: ../panels/user-accounts/um-user-panel.c:677 - msgid "You cannot delete your own account." - msgstr "자기 계정은 삭제할 수 없습니다." - --#: ../panels/user-accounts/um-user-panel.c:491 -+#: ../panels/user-accounts/um-user-panel.c:686 - #, c-format - msgid "%s is still logged in" - msgstr "%s 사용자가 아직 로그인 중입니다" - --#: ../panels/user-accounts/um-user-panel.c:495 -+#: ../panels/user-accounts/um-user-panel.c:690 - msgid "" - "Deleting a user while they are logged in can leave the system in an " - "inconsistent state." - msgstr "로그인 중인 사용자를 삭제하면 시스템이 불안정한 상태가 될 수 있습니다." - --#: ../panels/user-accounts/um-user-panel.c:504 -+#: ../panels/user-accounts/um-user-panel.c:699 - #, c-format - msgid "Do you want to keep %s's files?" - msgstr "%s 사용자의 파일을 유지하시겠습니까?" - --#: ../panels/user-accounts/um-user-panel.c:508 -+#: ../panels/user-accounts/um-user-panel.c:703 - msgid "" - "It is possible to keep the home directory, mail spool and temporary files " - "around when deleting a user account." --msgstr "" --"사용자 계정을 삭제할 때 홈 디렉터리, 메일 스풀, 임시 파일을 유지할 수 있습니" --"다." -+msgstr "사용자 계정을 삭제할 때 홈 디렉터리, 메일 스풀, 임시 파일을 유지할 수 있습니다." - --#: ../panels/user-accounts/um-user-panel.c:511 -+#: ../panels/user-accounts/um-user-panel.c:706 - msgid "_Delete Files" - msgstr "파일 삭제(_D)" - --#: ../panels/user-accounts/um-user-panel.c:512 -+#: ../panels/user-accounts/um-user-panel.c:707 - msgid "_Keep Files" - msgstr "파일 유지(_K)" - --#: ../panels/user-accounts/um-user-panel.c:564 -+#: ../panels/user-accounts/um-user-panel.c:721 -+#, fuzzy, c-format -+msgid "Are you sure you want to permanently delete %s's account?" -+msgstr "정말로 계정을 제거하시겠습니까?" -+ -+#: ../panels/user-accounts/um-user-panel.c:725 -+#, fuzzy -+msgid "_Delete" -+msgstr "파일 삭제(_D)" -+ -+#: ../panels/user-accounts/um-user-panel.c:777 - msgctxt "Password mode" - msgid "Account disabled" - msgstr "계정 사용 중지됨" - --#: ../panels/user-accounts/um-user-panel.c:572 -+#: ../panels/user-accounts/um-user-panel.c:785 - msgctxt "Password mode" - msgid "To be set at next login" - msgstr "다음 로그인에 설정 예정" - --#: ../panels/user-accounts/um-user-panel.c:575 -+#: ../panels/user-accounts/um-user-panel.c:788 - msgctxt "Password mode" - msgid "None" - msgstr "없음" - --#: ../panels/user-accounts/um-user-panel.c:624 -+#: ../panels/user-accounts/um-user-panel.c:837 - msgid "Logged in" - msgstr "로그인함" - --#: ../panels/user-accounts/um-user-panel.c:1072 -+#: ../panels/user-accounts/um-user-panel.c:1297 - msgid "Failed to contact the accounts service" - msgstr "계정 서비스 연결에 실패했습니다" - --#: ../panels/user-accounts/um-user-panel.c:1074 -+#: ../panels/user-accounts/um-user-panel.c:1299 - msgid "Please make sure that the AccountService is installed and enabled." - msgstr "AccountService를 설치하고 사용 표시했는지 확인하십시오." - --#: ../panels/user-accounts/um-user-panel.c:1115 --msgid "" --"To make changes,\n" -+#: ../panels/user-accounts/um-user-panel.c:1340 -+msgid "To make changes,\n" - "click the * icon first" --msgstr "" --"바꾸려면,\n" -+msgstr "바꾸려면,\n" - "먼저 * 아이콘을 누르십시오" - --#: ../panels/user-accounts/um-user-panel.c:1153 -+#: ../panels/user-accounts/um-user-panel.c:1378 - msgid "Create a user account" - msgstr "새 사용자 계정 만들기" - --#: ../panels/user-accounts/um-user-panel.c:1164 --#: ../panels/user-accounts/um-user-panel.c:1453 --msgid "" --"To create a user account,\n" -+#: ../panels/user-accounts/um-user-panel.c:1389 -+#: ../panels/user-accounts/um-user-panel.c:1702 -+msgid "To create a user account,\n" - "click the * icon first" --msgstr "" --"사용자 계정을 만드려면,\n" -+msgstr "사용자 계정을 만드려면,\n" - "먼저 * 아이콘을 누르십시오" - --#: ../panels/user-accounts/um-user-panel.c:1174 -+#: ../panels/user-accounts/um-user-panel.c:1399 - msgid "Delete the selected user account" - msgstr "선택한 사용자 계정 삭제" - --#: ../panels/user-accounts/um-user-panel.c:1186 --#: ../panels/user-accounts/um-user-panel.c:1458 --msgid "" --"To delete the selected user account,\n" -+#: ../panels/user-accounts/um-user-panel.c:1411 -+#: ../panels/user-accounts/um-user-panel.c:1707 -+msgid "To delete the selected user account,\n" - "click the * icon first" --msgstr "" --"선택한 사용자 계정을 삭제하려면,\n" -+msgstr "선택한 사용자 계정을 삭제하려면,\n" - "먼저 * 아이콘을 누르십시오" - --#: ../panels/user-accounts/um-user-panel.c:1368 -+#: ../panels/user-accounts/um-user-panel.c:1616 - msgid "My Account" - msgstr "내 계정" - -@@ -6699,9 +6628,7 @@ - msgid "" - "The username should only consist of lower and upper case letters from a-z, " - "digits and any of characters '.', '-' and '_'." --msgstr "" --"사용자 이름은 a-z까지 대소문자와 숫자, 그리고 '.', '-', '_' 문자만으로 만들어" --"야 합니다." -+msgstr "사용자 이름은 a-z까지 대소문자와 숫자, 그리고 '.', '-', '_' 문자만으로 만들어야 합니다." - - #: ../panels/user-accounts/um-utils.c:581 - msgid "This will be used to name your home folder and can't be changed." -@@ -6729,9 +6656,7 @@ - msgid "" - "To edit a shortcut, choose the \"Send Keystroke\" action, press the keyboard " - "shortcut button and hold down the new keys or press Backspace to clear." --msgstr "" --"바로 가기 키를 편집하려면, \"키 누름 보내기\" 동작을 선택하고, 새 키를 누르십" --"시오. 지우려면 백스페이스를 누르십시오." -+msgstr "바로 가기 키를 편집하려면, \"키 누름 보내기\" 동작을 선택하고, 새 키를 누르십시오. 지우려면 백스페이스를 누르십시오." - - #: ../panels/wacom/calibrator/calibrator-gui.c:83 - msgid "" -@@ -6792,11 +6717,11 @@ - msgid "%d of %d" - msgstr "%2$d개 중 %1$d" - --#: ../panels/wacom/cc-wacom-page.c:530 -+#: ../panels/wacom/cc-wacom-page.c:522 - msgid "Display Mapping" - msgstr "디스플레이 매핑" - --#: ../panels/wacom/cc-wacom-stylus-page.c:372 -+#: ../panels/wacom/cc-wacom-stylus-page.c:376 - msgid "Button" - msgstr "단추" - -@@ -7062,8 +6987,7 @@ - msgid "" - "%s\n" - "Run '%s --help' to see a full list of available command line options.\n" --msgstr "" --"%s\n" -+msgstr "%s\n" - "사용할 수 있는 옵션 목록을 모두 보려면 '%s --help' 명령을 실행하십시오.\n" - - #: ../shell/cc-application.c:193 -@@ -7078,22 +7002,22 @@ - msgid "Quit" - msgstr "끝내기" - --#: ../shell/cc-window.c:61 ../shell/cc-window.c:1490 -+#: ../shell/cc-window.c:61 ../shell/cc-window.c:1493 - msgid "All Settings" - msgstr "전체 설정" - - #. Add categories --#: ../shell/cc-window.c:876 -+#: ../shell/cc-window.c:879 - msgctxt "category" - msgid "Personal" - msgstr "개인" - --#: ../shell/cc-window.c:877 -+#: ../shell/cc-window.c:880 - msgctxt "category" - msgid "Hardware" - msgstr "하드웨어" - --#: ../shell/cc-window.c:878 -+#: ../shell/cc-window.c:881 - msgctxt "category" - msgid "System" - msgstr "시스템" -@@ -7101,157 +7025,3 @@ - #: ../shell/gnome-control-center.desktop.in.in.h:2 - msgid "Preferences;Settings;" - msgstr "Preferences;기본 설정;Settings;설정;" -- --#~ msgid "Immediately" --#~ msgstr "즉시" -- --#~ msgid "Share Media On This Network" --#~ msgstr "이 네트워크에 미디어 공유" -- --#~ msgid "Shared Folders" --#~ msgstr "공유 폴더" -- --#~ msgid "column" --#~ msgstr "열" -- --#~ msgid "Remove Folder" --#~ msgstr "폴더 제거" -- --#~ msgid "Share Public Folder On This Network" --#~ msgstr "이 네트워크에 공개 폴더 공유" -- --#~ msgid "Flickr" --#~ msgstr "플리커" -- --#~ msgid "Set Up New Device" --#~ msgstr "새 장치 준비" -- --#~ msgid "Connection" --#~ msgstr "연결" -- --#~ msgid "Paired" --#~ msgstr "페어링됨" -- --#~ msgid "Type" --#~ msgstr "종류" -- --#~ msgid "Mouse & Touchpad Settings" --#~ msgstr "마우스 및 터치패드 설정" -- --#~ msgid "Sound Settings" --#~ msgstr "사운드 설정" -- --#~ msgid "Keyboard Settings" --#~ msgstr "키보드 설정" -- --#~ msgid "Send Files…" --#~ msgstr "파일 보내기…" -- --#~ msgid "Visibility" --#~ msgstr "가시성" -- --#~ msgid "Visibility of “%s”" --#~ msgstr "“%s”의 가시성" -- --#~ msgid "Remove '%s' from the list of devices?" --#~ msgstr "'%s'을(를) 장치 목록에서 제거하시겠습니까?" -- --#~ msgid "" --#~ "If you remove the device, you will have to set it up again before next " --#~ "use." --#~ msgstr "장치를 제거하면, 다음에 다시 설정해야 합니다." -- --#~ msgid "Device type:" --#~ msgstr "장치 유형:" -- --#~ msgid "Manufacturer:" --#~ msgstr "제조사:" -- --#~ msgid "Model:" --#~ msgstr "모델:" -- --#~ msgid "" --#~ "Image files can be dragged on this window to auto-complete the above " --#~ "fields." --#~ msgstr "" --#~ "그림 파일을 이 창에 끌어오면 위의 항목을 자동으로 완성할 수 있습니다." -- --#~ msgid "Switch between AM and PM." --#~ msgstr "오전 오후를 전환합니다." -- --#~ msgid "Show your primary display on this screen also" --#~ msgstr "주요 디스플레이의 내용을 이 화면에도 표시" -- --#~ msgid "Combine" --#~ msgstr "결합" -- --#~ msgid "Join with the primary display to create an extra space" --#~ msgstr "이 디스플레이를 주요 디스플레이와 합쳐서 추가 작업 공간 만들기" -- --#~ msgid "Refresh Rate" --#~ msgstr "주사율" -- --#~ msgid "Install Updates" --#~ msgstr "업데이트 설치" -- --#~ msgid "System Up-To-Date" --#~ msgstr "시스템 최신 업데이트된 상태" -- --#~ msgid "Mouse Preferences" --#~ msgstr "마우스 기본 설정" -- --#~ msgid "Select the interface to use for the new service" --#~ msgstr "새 서비스에 사용할 인터페이스를 선택하십시오" -- --#~ msgid "C_reate…" --#~ msgstr "만들기(_R)…" -- --#~ msgid "_Interface" --#~ msgstr "인터페이스(_I)" -- --#~ msgid "Estimated battery capacity: %s" --#~ msgstr "예상 배터리 용량: %s" -- --#~ msgid "Search for network printers or filter result" --#~ msgstr "네트워크 프린터 또는 검색 조건 결과 검색" -- --#~ msgid "_Default" --#~ msgstr "기본값(_D)" -- --#~ msgctxt "Language" --#~ msgid "None" --#~ msgstr "없음" -- --#~ msgid "Share Public Folder" --#~ msgstr "공개 폴더 공유" -- --#~ msgid "Only share with Trusted Devices" --#~ msgstr "신뢰하는 장치에만 공유" -- --#~ msgid "Remote View" --#~ msgstr "원격 보기" -- --#~ msgid "Approve All Connections" --#~ msgstr "모든 연결 허용" -- --#~ msgid "Changing photo for:" --#~ msgstr "사진 바꾸기:" -- --#~ msgid "" --#~ "Choose a picture that will be shown at the login screen for this account." --#~ msgstr "이 계정에 대해 로그인 화면에 표시할 사진을 선택하십시오." -- --#~ msgid "Gallery" --#~ msgstr "갤러리" -- --#~ msgid "Take a photograph" --#~ msgstr "사진 찍기" -- --#~ msgid "Browse" --#~ msgstr "찾아보기" -- --#~ msgid "Photograph" --#~ msgstr "사진" -- --#~ msgid "Account Information" --#~ msgstr "계정 정보" -diff -urN gnome-control-center-3.14.5/po/pt_BR.po gnome-control-center-3.14.5_localized/po/pt_BR.po ---- gnome-control-center-3.14.5/po/pt_BR.po 2015-04-30 17:35:48.000000000 +0530 -+++ gnome-control-center-3.14.5_localized/po/pt_BR.po 2016-03-12 12:08:55.720000000 +0530 -@@ -25,22 +25,22 @@ - # Georges Basile Stavracas Neto , 2013. - # Rafael Ferreira , 2012, 2013, 2014. - # Enrico Nicoletto , 2012, 2013, 2014. --# -+# msuppesd , 2016. #zanata -+# pnemade , 2016. #zanata - msgid "" - msgstr "" --"Project-Id-Version: gnome-control-center\n" --"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" --"control-center&keywords=I18N+L10N&component=general\n" --"POT-Creation-Date: 2014-12-14 19:19+0000\n" --"PO-Revision-Date: 2014-12-14 22:12-0300\n" --"Last-Translator: Rafael Ferreira \n" --"Language-Team: Brazilian Portuguese \n" --"Language: pt_BR\n" -+"Project-Id-Version: PACKAGE VERSION\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2016-02-10 09:57+0530\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"PO-Revision-Date: 2016-03-09 08:10+0000\n" -+"Last-Translator: msuppesd \n" -+"Language-Team: Brazilian Portuguese \n" -+"Language: pt-BR\n" - "Plural-Forms: nplurals=2; plural=(n > 1);\n" --"X-Generator: Poedit 1.6.11\n" -+"X-Generator: Zanata 3.8.2\n" - "X-Project-Style: gnome\n" - - #: ../panels/background/background.ui.h:1 -@@ -129,8 +129,8 @@ - #: ../panels/background/cc-background-chooser-dialog.c:583 - #: ../panels/color/cc-color-panel.c:224 ../panels/color/cc-color-panel.c:961 - #: ../panels/color/color.ui.h:29 ../panels/common/language-chooser.ui.h:3 --#: ../panels/display/cc-display-panel.c:1537 --#: ../panels/display/cc-display-panel.c:1976 -+#: ../panels/display/cc-display-panel.c:1540 -+#: ../panels/display/cc-display-panel.c:1985 - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:2 - #: ../panels/network/connection-editor/connection-editor.ui.h:1 - #: ../panels/network/connection-editor/vpn-helpers.c:245 -@@ -138,7 +138,7 @@ - #: ../panels/network/net-device-wifi.c:1247 - #: ../panels/network/net-device-wifi.c:1440 - #: ../panels/network/network-wifi.ui.h:1 --#: ../panels/printers/cc-printers-panel.c:1947 -+#: ../panels/printers/cc-printers-panel.c:1949 - #: ../panels/printers/new-printer-dialog.ui.h:2 - #: ../panels/privacy/cc-privacy-panel.c:468 - #: ../panels/region/format-chooser.ui.h:3 -@@ -150,7 +150,8 @@ - #: ../panels/user-accounts/um-fingerprint-dialog.c:264 - #: ../panels/user-accounts/um-photo-dialog.c:95 - #: ../panels/user-accounts/um-photo-dialog.c:222 --#: ../panels/user-accounts/um-user-panel.c:513 -+#: ../panels/user-accounts/um-user-panel.c:708 -+#: ../panels/user-accounts/um-user-panel.c:726 - msgid "_Cancel" - msgstr "_Cancelar" - -@@ -160,18 +161,18 @@ - msgid "Select" - msgstr "Selecionar" - --#: ../panels/background/cc-background-item.c:197 -+#: ../panels/background/cc-background-item.c:203 - msgid "multiple sizes" - msgstr "múltiplos tamanhos" - - #. translators: 100 × 100px - #. * Note that this is not an "x", but U+00D7 MULTIPLICATION SIGN --#: ../panels/background/cc-background-item.c:201 -+#: ../panels/background/cc-background-item.c:207 - #, c-format - msgid "%d × %d" - msgstr "%d × %d" - --#: ../panels/background/cc-background-item.c:327 -+#: ../panels/background/cc-background-item.c:333 - msgid "No Desktop Background" - msgstr "Nenhum plano de fundo" - -@@ -214,8 +215,8 @@ - #: ../panels/color/cc-color-calibrate.c:361 - msgid "Place your calibration device over the square and press 'Start'" - msgstr "" --"Posicione o dispositivo de calibração sobre o quadrado e pressione \"Começar" --"\"" -+"Posicione o dispositivo de calibração sobre o quadrado e pressione " -+"\"Começar\"" - - #. TRANSLATORS: Some calibration devices need the user to move a - #. * dial or switch manually. We also show a picture showing them -@@ -591,7 +592,8 @@ - - #: ../panels/color/color.ui.h:9 - msgid "Select the sensor device you want to use for calibration." --msgstr "Selecione o dispositivo sensor que você deseja usar para a calibração." -+msgstr "" -+"Selecione o dispositivo sensor que você deseja usar para a calibração." - - #: ../panels/color/color.ui.h:10 - msgid "Calibration Device" -@@ -675,16 +677,16 @@ - - #: ../panels/color/color.ui.h:26 - msgid "" --"You may find these instructions on how to use the profile on GNU/Linux, Apple OS X and Microsoft Windows systems useful." -+"You may find these instructions on how to use the profile on GNU/Linux, Apple OS X and Microsoft Windows systems useful." - msgstr "" - "Você pode considerar úteis, essas instruções sobre como usar o perfil em " - "sistemas GNU/Linux, Apple OS X e " - "Microsoft Windows." - - #: ../panels/color/color.ui.h:27 --#: ../panels/user-accounts/um-fingerprint-dialog.c:730 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:732 - msgid "Summary" - msgstr "Resumo" - -@@ -1099,23 +1101,23 @@ - msgstr "" - "Para modificar configurações de data ou hora você precisa se autenticar." - --#: ../panels/display/cc-display-panel.c:487 -+#: ../panels/display/cc-display-panel.c:490 - msgid "Lid Closed" - msgstr "Tampa fechada" - - #. translators: "Mirrored" describes when both displays show the same view --#: ../panels/display/cc-display-panel.c:490 -+#: ../panels/display/cc-display-panel.c:493 - msgid "Mirrored" - msgstr "Espelhadas" - --#: ../panels/display/cc-display-panel.c:492 --#: ../panels/display/cc-display-panel.c:2145 -+#: ../panels/display/cc-display-panel.c:495 -+#: ../panels/display/cc-display-panel.c:2155 - msgid "Primary" - msgstr "Primária" - --#: ../panels/display/cc-display-panel.c:494 -+#: ../panels/display/cc-display-panel.c:497 - #: ../panels/notifications/cc-notifications-panel.c:185 --#: ../panels/power/cc-power-panel.c:1695 ../panels/power/cc-power-panel.c:1706 -+#: ../panels/power/cc-power-panel.c:1704 ../panels/power/cc-power-panel.c:1715 - #: ../panels/privacy/cc-privacy-panel.c:84 - #: ../panels/privacy/cc-privacy-panel.c:124 - #: ../panels/universal-access/cc-ua-panel.c:257 -@@ -1125,82 +1127,82 @@ - msgid "Off" - msgstr "Off" - --#: ../panels/display/cc-display-panel.c:497 -+#: ../panels/display/cc-display-panel.c:500 - msgid "Secondary" - msgstr "Secundária" - --#: ../panels/display/cc-display-panel.c:1533 -+#: ../panels/display/cc-display-panel.c:1536 - msgid "Arrange Combined Displays" - msgstr "Organizar telas combinadas" - --#: ../panels/display/cc-display-panel.c:1539 --#: ../panels/display/cc-display-panel.c:1979 -+#: ../panels/display/cc-display-panel.c:1542 -+#: ../panels/display/cc-display-panel.c:1988 - #: ../panels/network/connection-editor/connection-editor.ui.h:2 - #: ../panels/network/network-wifi.ui.h:2 - msgid "_Apply" - msgstr "_Aplicar" - --#: ../panels/display/cc-display-panel.c:1560 -+#: ../panels/display/cc-display-panel.c:1563 - msgid "Drag displays to rearrange them" - msgstr "Arraste as telas para organizá-las" - --#: ../panels/display/cc-display-panel.c:2081 -+#: ../panels/display/cc-display-panel.c:2090 - msgid "Size" - msgstr "Tamanho" - - #. aspect ratio --#: ../panels/display/cc-display-panel.c:2094 -+#: ../panels/display/cc-display-panel.c:2103 - msgid "Aspect Ratio" - msgstr "Taxa de proporção" - --#: ../panels/display/cc-display-panel.c:2115 -+#: ../panels/display/cc-display-panel.c:2125 - #: ../panels/printers/pp-options-dialog.c:85 - msgid "Resolution" - msgstr "Resolução" - - # Geralmente o "panorama de atividades" é mencionado em maiúsculo. Seria o caso aqui? --#: ../panels/display/cc-display-panel.c:2146 -+#: ../panels/display/cc-display-panel.c:2156 - msgid "Show the top bar and Activities Overview on this display" - msgstr "Mostrar a barra superior e o panorama de atividades nesta tela" - --#: ../panels/display/cc-display-panel.c:2152 -+#: ../panels/display/cc-display-panel.c:2162 - msgid "Secondary Display" - msgstr "Tela secundária" - --#: ../panels/display/cc-display-panel.c:2153 -+#: ../panels/display/cc-display-panel.c:2163 - msgid "Join this display with another to create an extra workspace" - msgstr "Une esta tela a outra para criar um espaço de trabalho extra" - --#: ../panels/display/cc-display-panel.c:2160 -+#: ../panels/display/cc-display-panel.c:2170 - msgid "Presentation" - msgstr "Apresentação" - --#: ../panels/display/cc-display-panel.c:2161 -+#: ../panels/display/cc-display-panel.c:2171 - msgid "Show slideshows and media only" - msgstr "Mostra apenas apresentações de slides e mídia" - - #. translators: "Mirror" describes when both displays show the same view --#: ../panels/display/cc-display-panel.c:2166 -+#: ../panels/display/cc-display-panel.c:2176 - msgid "Mirror" - msgstr "Espelhar" - --#: ../panels/display/cc-display-panel.c:2167 -+#: ../panels/display/cc-display-panel.c:2177 - msgid "Show your existing view on both displays" - msgstr "Mostra sua visão existente em ambas as telas" - --#: ../panels/display/cc-display-panel.c:2173 -+#: ../panels/display/cc-display-panel.c:2183 - msgid "Turn Off" - msgstr "Desligar" - --#: ../panels/display/cc-display-panel.c:2174 -+#: ../panels/display/cc-display-panel.c:2184 - msgid "Don't use this display" - msgstr "Não usar esta tela" - --#: ../panels/display/cc-display-panel.c:2383 -+#: ../panels/display/cc-display-panel.c:2388 - msgid "Could not get screen information" - msgstr "Não foi possível obter informação sobre a tela" - --#: ../panels/display/cc-display-panel.c:2414 -+#: ../panels/display/cc-display-panel.c:2419 - msgid "_Arrange Combined Displays" - msgstr "Organiz_ar telas combinadas" - -@@ -1226,51 +1228,47 @@ - msgid "Unknown" - msgstr "Desconhecido" - --#: ../panels/info/cc-info-panel.c:472 --#, c-format --msgid "%s %d-bit" --msgstr "%s %d-bit" -- --#: ../panels/info/cc-info-panel.c:474 -+#. translators: This is the the type of OS architecture, eg: "64-bit" or "32-bit" -+#: ../panels/info/cc-info-panel.c:513 - #, c-format - msgid "%d-bit" - msgstr "%d-bit" - --#: ../panels/info/cc-info-panel.c:1154 -+#: ../panels/info/cc-info-panel.c:1191 - msgid "Ask what to do" - msgstr "Pergunte o que fazer" - --#: ../panels/info/cc-info-panel.c:1158 -+#: ../panels/info/cc-info-panel.c:1195 - msgid "Do nothing" - msgstr "Não fazer nada" - --#: ../panels/info/cc-info-panel.c:1162 -+#: ../panels/info/cc-info-panel.c:1199 - msgid "Open folder" - msgstr "Abrir pasta" - --#: ../panels/info/cc-info-panel.c:1253 -+#: ../panels/info/cc-info-panel.c:1290 - msgid "Other Media" - msgstr "Outra mídia" - --#: ../panels/info/cc-info-panel.c:1284 -+#: ../panels/info/cc-info-panel.c:1321 - msgid "Select an application for audio CDs" - msgstr "Selecione um aplicativo para CDs de áudio" - --#: ../panels/info/cc-info-panel.c:1285 -+#: ../panels/info/cc-info-panel.c:1322 - msgid "Select an application for video DVDs" - msgstr "Selecione um aplicativo para DVDs de vídeo" - --#: ../panels/info/cc-info-panel.c:1286 -+#: ../panels/info/cc-info-panel.c:1323 - msgid "Select an application to run when a music player is connected" - msgstr "" - "Selecione um aplicativo para executar quando um reprodutor de música é " - "conectado" - --#: ../panels/info/cc-info-panel.c:1287 -+#: ../panels/info/cc-info-panel.c:1324 - msgid "Select an application to run when a camera is connected" - msgstr "Selecione um aplicativo para executar quando uma câmera é conectada" - --#: ../panels/info/cc-info-panel.c:1288 -+#: ../panels/info/cc-info-panel.c:1325 - msgid "Select an application for software CDs" - msgstr "Selecione um aplicativo para CDs de software" - -@@ -1278,73 +1276,73 @@ - #. * strings, just here to fix capitalization of the English originals. - #. * If the shared-mime-info translation works for your language, - #. * simply leave these untranslated. --#. --#: ../panels/info/cc-info-panel.c:1300 -+#. -+#: ../panels/info/cc-info-panel.c:1337 - msgid "audio DVD" - msgstr "DVD de áudio" - --#: ../panels/info/cc-info-panel.c:1301 -+#: ../panels/info/cc-info-panel.c:1338 - msgid "blank Blu-ray disc" - msgstr "Disco Blu-ray vazio" - --#: ../panels/info/cc-info-panel.c:1302 -+#: ../panels/info/cc-info-panel.c:1339 - msgid "blank CD disc" - msgstr "Disco CD vazio" - --#: ../panels/info/cc-info-panel.c:1303 -+#: ../panels/info/cc-info-panel.c:1340 - msgid "blank DVD disc" - msgstr "Disco DVD vazio" - --#: ../panels/info/cc-info-panel.c:1304 -+#: ../panels/info/cc-info-panel.c:1341 - msgid "blank HD DVD disc" - msgstr "Disco HD DVD vazio" - --#: ../panels/info/cc-info-panel.c:1305 -+#: ../panels/info/cc-info-panel.c:1342 - msgid "Blu-ray video disc" - msgstr "Disco Blu-ray de vídeo" - --#: ../panels/info/cc-info-panel.c:1306 -+#: ../panels/info/cc-info-panel.c:1343 - msgid "e-book reader" - msgstr "Leitor de e-book" - --#: ../panels/info/cc-info-panel.c:1307 -+#: ../panels/info/cc-info-panel.c:1344 - msgid "HD DVD video disc" - msgstr "Disco HD DVD de vídeo" - --#: ../panels/info/cc-info-panel.c:1308 -+#: ../panels/info/cc-info-panel.c:1345 - msgid "Picture CD" - msgstr "CD de imagem" - --#: ../panels/info/cc-info-panel.c:1309 -+#: ../panels/info/cc-info-panel.c:1346 - msgid "Super Video CD" - msgstr "Super Video CD" - --#: ../panels/info/cc-info-panel.c:1310 -+#: ../panels/info/cc-info-panel.c:1347 - msgid "Video CD" - msgstr "CD de vídeo" - --#: ../panels/info/cc-info-panel.c:1311 -+#: ../panels/info/cc-info-panel.c:1348 - msgid "Windows software" - msgstr "Software do Windows" - --#: ../panels/info/cc-info-panel.c:1434 -+#: ../panels/info/cc-info-panel.c:1471 - #: ../panels/keyboard/keyboard-shortcuts.c:1932 - msgid "Section" - msgstr "Seção" - --#: ../panels/info/cc-info-panel.c:1443 ../panels/info/info.ui.h:14 -+#: ../panels/info/cc-info-panel.c:1480 ../panels/info/info.ui.h:13 - msgid "Overview" - msgstr "Visão geral" - --#: ../panels/info/cc-info-panel.c:1449 ../panels/info/info.ui.h:21 -+#: ../panels/info/cc-info-panel.c:1486 ../panels/info/info.ui.h:20 - msgid "Default Applications" - msgstr "Aplicativos padrões" - --#: ../panels/info/cc-info-panel.c:1454 ../panels/info/info.ui.h:29 -+#: ../panels/info/cc-info-panel.c:1491 ../panels/info/info.ui.h:28 - msgid "Removable Media" - msgstr "Mídia removível" - --#: ../panels/info/cc-info-panel.c:1479 -+#: ../panels/info/cc-info-panel.c:1516 - #, c-format - msgid "Version %s" - msgstr "Versão %s" -@@ -1362,11 +1360,9 @@ - #. sure that you use the same "translation" for those keywords - #: ../panels/info/gnome-info-panel.desktop.in.in.h:4 - msgid "" --"device;system;information;memory;processor;version;default;application;" --"preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" -+"device;system;information;memory;processor;version;default;application;preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" - msgstr "" --"dispositivo;sistema;informação;memória;processador;versão;padrão;aplicativo;" --"reserva;preferido;cd;dvd;usb;áudio;vídeo;unidade;removível;mídia;autorun;" -+"dispositivo;sistema;informação;memória;processador;versão;padrão;aplicativo;reserva;preferido;cd;dvd;usb;áudio;vídeo;unidade;removível;mídia;autorun;" - - #: ../panels/info/info.ui.h:1 - msgid "Select how other media should be handled" -@@ -1392,80 +1388,79 @@ - msgid "Processor" - msgstr "Processador" - --#. To translators: this field contains the distro name, version and type --#: ../panels/info/info.ui.h:8 --msgid "Base system" --msgstr "Sistema base" -+#: ../panels/info/info.ui.h:7 -+msgid "OS Type" -+msgstr "Tipo de SO" - --#: ../panels/info/info.ui.h:9 -+#: ../panels/info/info.ui.h:8 - msgid "Disk" - msgstr "Disco" - --#: ../panels/info/info.ui.h:10 -+#: ../panels/info/info.ui.h:9 - msgid "Calculating…" - msgstr "Calculando…" - --#: ../panels/info/info.ui.h:11 -+#: ../panels/info/info.ui.h:10 - msgid "Graphics" - msgstr "Gráficos" - --#: ../panels/info/info.ui.h:12 -+#: ../panels/info/info.ui.h:11 - msgid "Virtualization" - msgstr "Virtualização" - --#: ../panels/info/info.ui.h:13 -+#: ../panels/info/info.ui.h:12 - msgid "Check for updates" - msgstr "Verificar atualizações" - --#: ../panels/info/info.ui.h:15 -+#: ../panels/info/info.ui.h:14 - msgid "_Web" - msgstr "_Web" - --#: ../panels/info/info.ui.h:16 -+#: ../panels/info/info.ui.h:15 - msgid "_Mail" - msgstr "C_orreio" - --#: ../panels/info/info.ui.h:17 -+#: ../panels/info/info.ui.h:16 - msgid "_Calendar" - msgstr "_Calendário" - --#: ../panels/info/info.ui.h:18 -+#: ../panels/info/info.ui.h:17 - msgid "M_usic" - msgstr "Mús_ica" - --#: ../panels/info/info.ui.h:19 -+#: ../panels/info/info.ui.h:18 - msgid "_Video" - msgstr "_Vídeo" - --#: ../panels/info/info.ui.h:20 -+#: ../panels/info/info.ui.h:19 - msgid "_Photos" - msgstr "_Fotos" - --#: ../panels/info/info.ui.h:22 -+#: ../panels/info/info.ui.h:21 - msgid "Select how media should be handled" - msgstr "Selecione como a mídia deve ser manuseada" - --#: ../panels/info/info.ui.h:23 -+#: ../panels/info/info.ui.h:22 - msgid "CD _audio" - msgstr "CD de á_udio" - --#: ../panels/info/info.ui.h:24 -+#: ../panels/info/info.ui.h:23 - msgid "_DVD video" - msgstr "_DVD de vídeo" - --#: ../panels/info/info.ui.h:25 -+#: ../panels/info/info.ui.h:24 - msgid "_Music player" - msgstr "Reprodutor de _música" - --#: ../panels/info/info.ui.h:26 -+#: ../panels/info/info.ui.h:25 - msgid "_Software" - msgstr "_Software" - --#: ../panels/info/info.ui.h:27 -+#: ../panels/info/info.ui.h:26 - msgid "_Other Media…" - msgstr "_Outra mídia…" - --#: ../panels/info/info.ui.h:28 -+#: ../panels/info/info.ui.h:27 - msgid "_Never prompt or start programs on media insertion" - msgstr "_Nunca perguntar ou iniciar programas de inserção na mídia" - -@@ -1659,7 +1654,7 @@ - #. Translators: This key is also known as 'third level - #. * chooser'. AltGr is often used for this purpose. See - #. * https://live.gnome.org/Design/SystemSettings/RegionAndLanguage --#. -+#. - #: ../panels/keyboard/cc-keyboard-option.c:354 - msgid "Alternative Characters Key" - msgstr "Teclas de caracteres alternativos" -@@ -1667,7 +1662,7 @@ - #. Translators: The Compose key is used to initiate key - #. * sequences that are combined to form a single character. - #. * See http://en.wikipedia.org/wiki/Compose_key --#. -+#. - #: ../panels/keyboard/cc-keyboard-option.c:363 - msgid "Compose Key" - msgstr "Tecla de composição" -@@ -1805,19 +1800,17 @@ - - #: ../panels/keyboard/keyboard-shortcuts.c:1387 - #, c-format --msgid "" --"The shortcut \"%s\" is already used for\n" -+msgid "The shortcut \"%s\" is already used for\n" - "\"%s\"" --msgstr "" --"O atalho \"%s\" já está sendo usado por\n" -+msgstr "O atalho \"%s\" já está sendo usado por\n" - "\"%s\"" - - #: ../panels/keyboard/keyboard-shortcuts.c:1392 - #, c-format - msgid "" - "If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be disabled." --msgstr "" --"Se você reatribuir o atalho para \"%s\", o atalho \"%s\" será desativado." -+"" -+msgstr "Se você reatribuir o atalho para \"%s\", o atalho \"%s\" será desativado." - - #: ../panels/keyboard/keyboard-shortcuts.c:1398 - msgid "_Reassign" -@@ -1868,8 +1861,7 @@ - #: ../panels/mouse/gnome-mouse-panel.desktop.in.in.h:4 - msgid "Trackpad;Pointer;Click;Tap;Double;Button;Trackball;Scroll;" - msgstr "" --"Trackpad;Ponteiro;Clicar;Tap;Toque;Batida;Duplo;Botão;Trackball;Rolagem;" --"Scroll;" -+"Trackpad;Ponteiro;Clicar;Tap;Toque;Batida;Duplo;Botão;Trackball;Rolagem;Scroll;" - - #: ../panels/mouse/gnome-mouse-properties.ui.h:1 - msgid "General" -@@ -1954,7 +1946,6 @@ - # Todas as referências que encontrei em português falavam em "zona de - # rolagem"; em inglês "edge scrolling" é feito na "scroll zone" mas não achei - # algo como "rolagem na borda" em português. -- Leonardo Fontenelle --# - #. 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/gnome-mouse-properties.ui.h:20 - msgid "_Natural scrolling" -@@ -2000,22 +1991,22 @@ - msgid "Air_plane Mode" - msgstr "Modo a_vião" - --#: ../panels/network/cc-network-panel.c:977 -+#: ../panels/network/cc-network-panel.c:978 - msgid "Network proxy" - msgstr "Proxy da rede" - - #. Translators: this is the title of the connection details - #. * window for vpn connections, it is also used to display - #. * vpn connections in the device list. --#. --#: ../panels/network/cc-network-panel.c:1156 ../panels/network/net-vpn.c:278 -+#. -+#: ../panels/network/cc-network-panel.c:1155 ../panels/network/net-vpn.c:278 - #: ../panels/network/net-vpn.c:431 - #, c-format - msgid "%s VPN" - msgstr "%s VPN" - - #. TRANSLATORS: the user is running a NM that is not API compatible --#: ../panels/network/cc-network-panel.c:1301 -+#: ../panels/network/cc-network-panel.c:1302 - msgid "The system network services are not compatible with this version." - msgstr "Os serviços de rede do sistema não são compatíveis com esta versão." - -@@ -2178,7 +2169,7 @@ - #: ../panels/network/connection-editor/ce-page-ip4.c:465 - #: ../panels/network/connection-editor/ce-page-ip6.c:205 - #: ../panels/network/connection-editor/ce-page-ip6.c:473 --#: ../panels/network/network-vpn.ui.h:3 -+#: ../panels/network/network-vpn.ui.h:2 - msgid "Gateway" - msgstr "Gateway" - -@@ -2230,7 +2221,7 @@ - msgid "Link-Local Only" - msgstr "Apenas conexão local" - --#: ../panels/network/connection-editor/ce-page-ip4.c:953 -+#: ../panels/network/connection-editor/ce-page-ip4.c:967 - #: ../panels/network/network-wifi.ui.h:48 - msgid "IPv4" - msgstr "IPv4" -@@ -2252,7 +2243,7 @@ - msgid "Automatic, DHCP only" - msgstr "Automático, somente DHCP" - --#: ../panels/network/connection-editor/ce-page-ip6.c:919 -+#: ../panels/network/connection-editor/ce-page-ip6.c:937 - #: ../panels/network/network-wifi.ui.h:49 - msgid "IPv6" - msgstr "IPv6" -@@ -2420,7 +2411,7 @@ - msgstr "_Zona de firewall" - - #: ../panels/network/connection-editor/firewall-helpers.c:48 --#: ../panels/network/connection-editor/firewall-helpers.c:112 -+#: ../panels/network/connection-editor/firewall-helpers.c:113 - msgctxt "Firewall zone" - msgid "Default" - msgstr "Padrão" -@@ -2476,7 +2467,6 @@ - msgstr "Novo perfil" - - #: ../panels/network/connection-editor/net-connection-editor.c:577 --#: ../panels/network/network.ui.h:1 ../panels/network/network-vpn.ui.h:1 - msgid "VPN" - msgstr "VPN" - -@@ -2563,7 +2553,7 @@ - msgstr "Selecione um arquivo para importar" - - #: ../panels/network/connection-editor/vpn-helpers.c:246 --#: ../panels/printers/cc-printers-panel.c:1948 -+#: ../panels/printers/cc-printers-panel.c:1950 - #: ../panels/sharing/cc-sharing-panel.c:492 - #: ../panels/user-accounts/um-photo-dialog.c:223 - msgid "_Open" -@@ -2589,12 +2579,10 @@ - - #: ../panels/network/connection-editor/vpn-helpers.c:336 - #, c-format --msgid "" --"The VPN connection '%s' could not be exported to %s.\n" -+msgid "The VPN connection '%s' could not be exported to %s.\n" - "\n" - "Error: %s." --msgstr "" --"A conexão VPN \"%s\" não pode ser exportada para %s.\n" -+msgstr "A conexão VPN \"%s\" não pode ser exportada para %s.\n" - "\n" - "Erro: %s." - -@@ -2637,11 +2625,11 @@ - #. Translators: those are keywords for the network control-center panel - #: ../panels/network/gnome-network-panel.desktop.in.in.h:4 - msgid "" --"Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;" --"vlan;bridge;bond;DNS;" -+"Network;Wireless;Wi-" -+"Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;vlan;bridge;bond;DNS;" - msgstr "" --"Rede;Network;Sem fio;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Banda larga;Modem;" --"Bluetooth;vpn;vlan;ponte;bridge;bond;vinculo;DNS;" -+"Rede;Network;Sem fio;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Banda " -+"larga;Modem;Bluetooth;vpn;vlan;ponte;bridge;bond;vinculo;DNS;" - - #: ../panels/network/net-device-bond.c:77 - msgid "Bond slaves" -@@ -2688,7 +2676,7 @@ - #. * details window for ethernet, if there is only a single - #. * profile. It is also used to display ethernet in the - #. * device list. --#. -+#. - #: ../panels/network/net-device-ethernet.c:288 - #: ../panels/network/network-ethernet.ui.h:1 - #: ../panels/network/network-simple.ui.h:1 -@@ -2700,7 +2688,7 @@ - #: ../panels/network/network-ethernet.ui.h:3 - #: ../panels/network/network-mobile.ui.h:8 - #: ../panels/network/network-simple.ui.h:8 --#: ../panels/network/network-vpn.ui.h:8 -+#: ../panels/network/network-vpn.ui.h:7 - msgid "Options…" - msgstr "Opções…" - -@@ -2773,7 +2761,7 @@ - - #: ../panels/network/net-device-wifi.c:1749 - #: ../panels/region/input-options.ui.h:2 ../panels/wacom/button-mapping.ui.h:2 --#: ../panels/wacom/cc-wacom-page.c:533 -+#: ../panels/wacom/cc-wacom-page.c:525 - #: ../panels/wacom/gnome-wacom-properties.ui.h:4 - msgid "_Close" - msgstr "Fe_char" -@@ -2816,17 +2804,17 @@ - msgid "Provider" - msgstr "Provedor" - --#: ../panels/network/network-proxy.ui.h:1 ../panels/network/network.ui.h:2 -+#: ../panels/network/network-proxy.ui.h:1 - msgctxt "proxy method" - msgid "None" - msgstr "Nenhum" - --#: ../panels/network/network-proxy.ui.h:2 ../panels/network/network.ui.h:3 -+#: ../panels/network/network-proxy.ui.h:2 - msgctxt "proxy method" - msgid "Manual" - msgstr "Manual" - --#: ../panels/network/network-proxy.ui.h:3 ../panels/network/network.ui.h:4 -+#: ../panels/network/network-proxy.ui.h:3 - msgctxt "proxy method" - msgid "Automatic" - msgstr "Automático" -@@ -2879,32 +2867,32 @@ - msgid "Turn device off" - msgstr "Desligar dispositivo" - --#: ../panels/network/network.ui.h:5 -+#: ../panels/network/network.ui.h:1 - msgid "Add Device" - msgstr "Adicionar dispositivo" - --#: ../panels/network/network.ui.h:6 -+#: ../panels/network/network.ui.h:2 - msgid "Remove Device" - msgstr "Remover dispositivo" - --#: ../panels/network/network-vpn.ui.h:2 -+#: ../panels/network/network-vpn.ui.h:1 - msgid "VPN Type" - msgstr "Tipo de VPN" - --#: ../panels/network/network-vpn.ui.h:4 -+#: ../panels/network/network-vpn.ui.h:3 - msgid "Group Name" - msgstr "Nome do grupo" - --#: ../panels/network/network-vpn.ui.h:5 -+#: ../panels/network/network-vpn.ui.h:4 - msgid "Group Password" - msgstr "Senha do grupo" - --#: ../panels/network/network-vpn.ui.h:6 -+#: ../panels/network/network-vpn.ui.h:5 - #: ../panels/printers/authentication-dialog.ui.h:4 - msgid "Username" - msgstr "Nome de usuário" - --#: ../panels/network/network-vpn.ui.h:7 -+#: ../panels/network/network-vpn.ui.h:6 - msgid "Turn VPN connection off" - msgstr "Desligar conexão VPN" - -@@ -3629,7 +3617,7 @@ - msgstr "Mostrar detalhes na tela de bloqueio" - - #: ../panels/notifications/cc-notifications-panel.c:185 --#: ../panels/power/cc-power-panel.c:1701 ../panels/power/cc-power-panel.c:1708 -+#: ../panels/power/cc-power-panel.c:1710 ../panels/power/cc-power-panel.c:1717 - #: ../panels/privacy/cc-privacy-panel.c:84 - #: ../panels/privacy/cc-privacy-panel.c:124 - #: ../panels/universal-access/cc-ua-panel.c:257 -@@ -3734,12 +3722,11 @@ - #. For ReadItLater and Pocket, see http://en.wikipedia.org/wiki/Pocket_(application) - #: ../panels/online-accounts/gnome-online-accounts-panel.desktop.in.in.h:4 - msgid "" --"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;" --"Kerberos;IMAP;SMTP;Pocket;ReadItLater;" -+"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;Kerberos;IMAP;SMTP;Pocket;ReadItLater;" - msgstr "" --"Google;Facebook;Twitter;Yahoo;Web;Conectado;Online;Bate-papo;Chat;Calendário;" --"Agenda;E-mail;Correio;Contato;Contatos;ownCloud;Kerberos;IMAP;SMTP;Pocket;" --"ReadItLater;" -+"Google;Facebook;Twitter;Yahoo;Web;Conectado;Online;Bate-" -+"papo;Chat;Calendário;Agenda;E-" -+"mail;Correio;Contato;Contatos;ownCloud;Kerberos;IMAP;SMTP;Pocket;ReadItLater;" - - #: ../panels/online-accounts/online-accounts.ui.h:1 - msgid "No online accounts configured" -@@ -3889,7 +3876,7 @@ - - #. TRANSLATORS: secondary battery, misc - #: ../panels/power/cc-power-panel.c:503 ../panels/power/cc-power-panel.c:726 --#: ../panels/power/cc-power-panel.c:2030 -+#: ../panels/power/cc-power-panel.c:2046 - msgid "Battery" - msgstr "Bateria" - -@@ -3941,67 +3928,67 @@ - msgid "Power Saving" - msgstr "Economia de energia" - --#: ../panels/power/cc-power-panel.c:1482 -+#: ../panels/power/cc-power-panel.c:1489 - msgid "_Screen brightness" - msgstr "_Brilho da tela" - --#: ../panels/power/cc-power-panel.c:1488 -+#: ../panels/power/cc-power-panel.c:1495 - msgid "_Keyboard brightness" - msgstr "_Brilho do teclado" - --#: ../panels/power/cc-power-panel.c:1498 -+#: ../panels/power/cc-power-panel.c:1505 - msgid "_Dim screen when inactive" - msgstr "_Escurecer a tela quando inativo" - --#: ../panels/power/cc-power-panel.c:1523 -+#: ../panels/power/cc-power-panel.c:1530 - msgid "_Blank screen" - msgstr "A_pagar a tela" - --#: ../panels/power/cc-power-panel.c:1560 -+#: ../panels/power/cc-power-panel.c:1567 - msgid "_Wi-Fi" - msgstr "_Wi-Fi" - --#: ../panels/power/cc-power-panel.c:1565 -+#: ../panels/power/cc-power-panel.c:1572 - msgid "Turns off wireless devices" - msgstr "Desliga dispositivos de rede sem fio" - --#: ../panels/power/cc-power-panel.c:1590 -+#: ../panels/power/cc-power-panel.c:1597 - msgid "_Mobile broadband" - msgstr "Banda larga _móvel" - --#: ../panels/power/cc-power-panel.c:1595 -+#: ../panels/power/cc-power-panel.c:1602 - msgid "Turns off mobile broadband (3G, 4G, WiMax, etc.) devices" - msgstr "Desliga dispositivos de banda larga móvel (3G, 4G, WiMax, etc.)" - --#: ../panels/power/cc-power-panel.c:1645 -+#: ../panels/power/cc-power-panel.c:1652 - msgid "_Bluetooth" - msgstr "_Bluetooth" - --#: ../panels/power/cc-power-panel.c:1697 -+#: ../panels/power/cc-power-panel.c:1706 - msgid "When on battery power" - msgstr "Quando estiver usando a energia da bateria" - --#: ../panels/power/cc-power-panel.c:1699 -+#: ../panels/power/cc-power-panel.c:1708 - msgid "When plugged in" - msgstr "Ligado na tomada" - --#: ../panels/power/cc-power-panel.c:1829 -+#: ../panels/power/cc-power-panel.c:1838 - msgid "Suspend & Power Off" - msgstr "Suspender & desligar" - --#: ../panels/power/cc-power-panel.c:1862 -+#: ../panels/power/cc-power-panel.c:1878 - msgid "_Automatic suspend" - msgstr "Suspensão _automática" - --#: ../panels/power/cc-power-panel.c:1886 -+#: ../panels/power/cc-power-panel.c:1902 - msgid "When battery power is _critical" - msgstr "Quando a energia da bateria estiver _crítica" - --#: ../panels/power/cc-power-panel.c:1941 -+#: ../panels/power/cc-power-panel.c:1957 - msgid "Power Off" - msgstr "Desligar" - --#: ../panels/power/cc-power-panel.c:2077 -+#: ../panels/power/cc-power-panel.c:2100 - msgid "Devices" - msgstr "Dispositivos" - -@@ -4012,15 +3999,15 @@ - #: ../panels/power/gnome-power-panel.desktop.in.in.h:2 - msgid "View your battery status and change power saving settings" - msgstr "" --"Veja o status da sua bateria e altere as configurações de economia de energia" -+"Veja o status da sua bateria e altere as configurações de economia de " -+"energia" - - #. Translators: those are keywords for the power control-center panel - #: ../panels/power/gnome-power-panel.desktop.in.in.h:4 - msgid "" - "Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;" - msgstr "" --"Energia;Dormir;Suspender;Hibernar;Bateria;Brilho;Escurecer;Vazio;Branca;" --"Monitor;DPMS;Inativo;" -+"Energia;Dormir;Suspender;Hibernar;Bateria;Brilho;Escurecer;Vazio;Branca;Monitor;DPMS;Inativo;" - - #: ../panels/power/power.ui.h:1 - msgid "Hibernate" -@@ -4261,15 +4248,15 @@ - msgstr[1] "%u ativos" - - #. Translators: Addition of the new printer failed. --#: ../panels/printers/cc-printers-panel.c:1777 -+#: ../panels/printers/cc-printers-panel.c:1779 - msgid "Failed to add new printer." - msgstr "Falha ao adicionar nova impressora." - --#: ../panels/printers/cc-printers-panel.c:1944 -+#: ../panels/printers/cc-printers-panel.c:1946 - msgid "Select PPD File" - msgstr "Selecionar um arquivo PPD" - --#: ../panels/printers/cc-printers-panel.c:1953 -+#: ../panels/printers/cc-printers-panel.c:1955 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" -@@ -4277,30 +4264,30 @@ - "Arquivos de descrição de impressora PostScript (*.ppd, *.PPD, *.ppd.gz, *." - "PPD.gz, *.PPD.GZ)" - --#: ../panels/printers/cc-printers-panel.c:2258 -+#: ../panels/printers/cc-printers-panel.c:2260 - msgid "No suitable driver found" - msgstr "Não foi encontrado um driver adequado" - --#: ../panels/printers/cc-printers-panel.c:2327 -+#: ../panels/printers/cc-printers-panel.c:2329 - msgid "Searching for preferred drivers…" - msgstr "Pesquisando por drivers preferidos…" - --#: ../panels/printers/cc-printers-panel.c:2342 -+#: ../panels/printers/cc-printers-panel.c:2344 - msgid "Select from database…" - msgstr "Selecionar do banco de dados…" - --#: ../panels/printers/cc-printers-panel.c:2351 -+#: ../panels/printers/cc-printers-panel.c:2353 - msgid "Provide PPD File…" - msgstr "Forneça um arquivo PPD…" - - #. Translators: Name of job which makes printer to print test page --#: ../panels/printers/cc-printers-panel.c:2502 --#: ../panels/printers/cc-printers-panel.c:2525 -+#: ../panels/printers/cc-printers-panel.c:2504 -+#: ../panels/printers/cc-printers-panel.c:2527 - msgid "Test page" - msgstr "Página de teste" - - #. Translators: The XML file containing user interface can not be loaded --#: ../panels/printers/cc-printers-panel.c:2933 -+#: ../panels/printers/cc-printers-panel.c:2935 - #, c-format - msgid "Could not load ui: %s" - msgstr "Não foi possível carregar a interface: %s" -@@ -4651,6 +4638,7 @@ - msgid "Enter your username and password to view printers available on %s." - msgstr "" - "Digite seu nome de usuário e senha para ver as impressoras disponíveis em %s." -+"" - - #: ../panels/printers/printers.ui.h:1 - msgid "Add Printer" -@@ -4717,8 +4705,7 @@ - - #. Translators: The CUPS server is not running (we can not connect to it). - #: ../panels/printers/printers.ui.h:26 --msgid "" --"Sorry! The system printing service\n" -+msgid "Sorry! The system printing service\n" - "doesn't seem to be available." - msgstr "" - "Sinto muito! O serviço de impressão do sistema\n" -@@ -4770,16 +4757,15 @@ - - #: ../panels/privacy/gnome-privacy-panel.desktop.in.in.h:2 - msgid "Protect your personal information and control what others might see" --msgstr "Proteja suas informações pessoais e controle o que os outros podem ver" -+msgstr "" -+"Proteja suas informações pessoais e controle o que os outros podem ver" - - #. Translators: those are keywords for the privacy control-center panel - #: ../panels/privacy/gnome-privacy-panel.desktop.in.in.h:4 - msgid "" --"screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;" --"network;identity;" -+"screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;network;identity;" - msgstr "" --"tela;bloqueio;diagnostico;travamento;privado;recente;temporário;índice;nome;" --"rede;identidade;" -+"tela;bloqueio;diagnostico;travamento;privado;recente;temporário;índice;nome;rede;identidade;" - - #: ../panels/privacy/privacy.ui.h:1 - msgid "Screen Turns Off" -@@ -4889,8 +4875,8 @@ - #: ../panels/privacy/privacy.ui.h:37 - msgid "" - "Sending us information about which software you use helps us provide you " --"with more accurate recommendations. It also helps us to improve our " --"software.\n" -+"with more accurate recommendations. It also helps us to improve our software." -+"\n" - "\n" - "All the information we collect is made anonymous, and we will never share " - "your data with third parties." -@@ -4936,35 +4922,35 @@ - msgid "No input sources found" - msgstr "Nenhuma fonte de entrada encontrada" - --#: ../panels/region/cc-input-chooser.c:1083 -+#: ../panels/region/cc-input-chooser.c:1084 - msgctxt "Input Source" - msgid "Other" - msgstr "Outro" - --#: ../panels/region/cc-region-panel.c:239 --#: ../panels/user-accounts/um-user-panel.c:900 -+#: ../panels/region/cc-region-panel.c:243 -+#: ../panels/user-accounts/um-user-panel.c:1113 - msgid "Your session needs to be restarted for changes to take effect" - msgstr "" - "Sua sessão precisa ser reiniciada para que as alterações sejam efetivadas" - --#: ../panels/region/cc-region-panel.c:243 --#: ../panels/user-accounts/um-user-panel.c:904 -+#: ../panels/region/cc-region-panel.c:247 -+#: ../panels/user-accounts/um-user-panel.c:1117 - msgid "Restart Now" - msgstr "Reiniciar agora" - --#: ../panels/region/cc-region-panel.c:862 -+#: ../panels/region/cc-region-panel.c:867 - msgid "No input source selected" - msgstr "Nenhuma fonte de entrada selecionada" - --#: ../panels/region/cc-region-panel.c:1092 -+#: ../panels/region/cc-region-panel.c:1097 - msgid "Sorry" - msgstr "Sinto muito" - --#: ../panels/region/cc-region-panel.c:1094 -+#: ../panels/region/cc-region-panel.c:1099 - msgid "Input methods can't be used on the login screen" - msgstr "Métodos de entrada não podem ser usados na tela de início de sessão" - --#: ../panels/region/cc-region-panel.c:1731 -+#: ../panels/region/cc-region-panel.c:1739 - msgid "Login Screen" - msgstr "Tela de início de sessão" - -@@ -5166,7 +5152,7 @@ - msgid "Choose a Folder" - msgstr "Escolha uma pasta" - --#: ../panels/sharing/cc-sharing-panel.c:916 -+#: ../panels/sharing/cc-sharing-panel.c:917 - msgid "Copy" - msgstr "Copiar" - -@@ -5181,11 +5167,9 @@ - #. Translators: those are keywords for the sharing control-center panel - #: ../panels/sharing/gnome-sharing-panel.desktop.in.in.h:4 - msgid "" --"share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;" --"pictures;photos;movies;server;renderer;" -+"share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;pictures;photos;movies;server;renderer;" - msgstr "" --"compartilhar;compartilhamento;ssh;máquina;nome;remoto;desktop;bluetooth;obex;" --"mídia;áudio;vídeo;imagens;fotos;filmes;servidor;renderizador;" -+"compartilhar;compartilhamento;ssh;máquina;nome;remoto;desktop;bluetooth;obex;mídia;áudio;vídeo;imagens;fotos;filmes;servidor;renderizador;" - - #: ../panels/sharing/org.gnome.controlcenter.remote-login-helper.policy.in.in.h:1 - msgid "Enable or disable remote login" -@@ -5200,9 +5184,9 @@ - msgid "No networks selected for sharing" - msgstr "Sem redes selecionadas para compartilhamento" - --#. -+#. - #. * vim: sw=2 ts=8 cindent noai bs=2 --#. -+#. - #: ../panels/sharing/networks.ui.h:1 - msgid "Networks" - msgstr "Redes" -@@ -5258,8 +5242,8 @@ - "your current network using: dav://%s" - msgstr "" - "O compartilhamento de arquivos pessoais permite que você compartilhe sua " --"pasta pública com outros na sua rede atual usando: dav://%s" -+"pasta pública com outros na sua rede atual usando: dav:/" -+"/%s" - - #: ../panels/sharing/sharing.ui.h:13 - msgid "Require Password" -@@ -5444,65 +5428,65 @@ - msgid "Peak detect" - msgstr "Detectar pico" - --#: ../panels/sound/gvc-mixer-dialog.c:1501 --#: ../panels/sound/gvc-sound-theme-chooser.c:594 -+#: ../panels/sound/gvc-mixer-dialog.c:1516 -+#: ../panels/sound/gvc-sound-theme-chooser.c:564 - msgid "Name" - msgstr "Nome" - --#: ../panels/sound/gvc-mixer-dialog.c:1520 -+#: ../panels/sound/gvc-mixer-dialog.c:1535 - msgid "Device" - msgstr "Dispositivo" - --#: ../panels/sound/gvc-mixer-dialog.c:1583 -+#: ../panels/sound/gvc-mixer-dialog.c:1598 - #, c-format - msgid "Speaker Testing for %s" - msgstr "Testando alto-falantes para %s" - --#: ../panels/sound/gvc-mixer-dialog.c:1641 -+#: ../panels/sound/gvc-mixer-dialog.c:1656 - msgid "_Output volume:" - msgstr "Volume de _saída:" - --#: ../panels/sound/gvc-mixer-dialog.c:1655 -+#: ../panels/sound/gvc-mixer-dialog.c:1670 - msgid "Output" - msgstr "Saída" - --#: ../panels/sound/gvc-mixer-dialog.c:1660 -+#: ../panels/sound/gvc-mixer-dialog.c:1675 - msgid "C_hoose a device for sound output:" - msgstr "Escol_ha um dispositivo para saída de som:" - --#: ../panels/sound/gvc-mixer-dialog.c:1685 -+#: ../panels/sound/gvc-mixer-dialog.c:1700 - msgid "Settings for the selected device:" - msgstr "Configurações para o dispositivo selecionado:" - --#: ../panels/sound/gvc-mixer-dialog.c:1696 -+#: ../panels/sound/gvc-mixer-dialog.c:1711 - msgid "Input" - msgstr "Entrada" - --#: ../panels/sound/gvc-mixer-dialog.c:1703 -+#: ../panels/sound/gvc-mixer-dialog.c:1718 - msgid "_Input volume:" - msgstr "Volume de _entrada:" - --#: ../panels/sound/gvc-mixer-dialog.c:1726 -+#: ../panels/sound/gvc-mixer-dialog.c:1741 - msgid "Input level:" - msgstr "Nível de entrada:" - --#: ../panels/sound/gvc-mixer-dialog.c:1754 -+#: ../panels/sound/gvc-mixer-dialog.c:1769 - msgid "C_hoose a device for sound input:" - msgstr "Escol_ha um dispositivo para entrada de som:" - --#: ../panels/sound/gvc-mixer-dialog.c:1781 -+#: ../panels/sound/gvc-mixer-dialog.c:1796 - msgid "Sound Effects" - msgstr "Efeitos de som" - --#: ../panels/sound/gvc-mixer-dialog.c:1788 -+#: ../panels/sound/gvc-mixer-dialog.c:1803 - msgid "_Alert volume:" - msgstr "Volume do _alerta:" - --#: ../panels/sound/gvc-mixer-dialog.c:1801 -+#: ../panels/sound/gvc-mixer-dialog.c:1816 - msgid "Applications" - msgstr "Aplicativos" - --#: ../panels/sound/gvc-mixer-dialog.c:1805 -+#: ../panels/sound/gvc-mixer-dialog.c:1820 - msgid "No application is currently playing or recording audio." - msgstr "Nenhum aplicativo atualmente está reproduzindo ou gravando áudio." - -@@ -5522,15 +5506,15 @@ - msgid "Testing event sound" - msgstr "Testando eventos de som" - --#: ../panels/sound/gvc-sound-theme-chooser.c:584 -+#: ../panels/sound/gvc-sound-theme-chooser.c:554 - msgid "Default" - msgstr "Padrão" - --#: ../panels/sound/gvc-sound-theme-chooser.c:585 -+#: ../panels/sound/gvc-sound-theme-chooser.c:555 - msgid "From theme" - msgstr "Do tema" - --#: ../panels/sound/gvc-sound-theme-chooser.c:769 -+#: ../panels/sound/gvc-sound-theme-chooser.c:739 - msgid "C_hoose an alert sound:" - msgstr "Escol_ha um alerta de som:" - -@@ -5558,11 +5542,10 @@ - #. Translators: those are keywords for the universal access control-center panel - #: ../panels/universal-access/gnome-universal-access-panel.desktop.in.in.h:4 - msgid "" --"Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;" --"AccessX;Sticky;Keys;Slow;Bounce;Mouse;" -+"Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;AccessX;Sticky;Keys;Slow;Bounce;Mouse;" - msgstr "" --"Teclado;Mouse;a11y;Acessibilidade;Contraste;Zoom;Ampliação;Leitor de tela;" --"texto;fonte;tamanho;AccessX;Teclas;Lentas;Repercussão;Mouse;" -+"Teclado;Mouse;a11y;Acessibilidade;Contraste;Zoom;Ampliação;Leitor de " -+"tela;texto;fonte;tamanho;AccessX;Teclas;Lentas;Repercussão;Mouse;" - - #: ../panels/universal-access/uap.ui.h:1 - msgid "_Always Show Universal Access Menu" -@@ -5671,7 +5654,8 @@ - #: ../panels/universal-access/uap.ui.h:29 - msgid "Treats a sequence of modifier keys as a key combination" - msgstr "" --"Dispõe de uma sequancia de teclas modificadoras como uma combinação de teclas" -+"Dispõe de uma sequancia de teclas modificadoras como uma combinação de " -+"teclas" - - #: ../panels/universal-access/uap.ui.h:30 - msgid "_Disable if two keys are pressed together" -@@ -6042,11 +6026,9 @@ - msgstr "_Domínio" - - #: ../panels/user-accounts/data/account-dialog.ui.h:13 --msgid "" --"Go online to add\n" -+msgid "Go online to add\n" - "enterprise login accounts." --msgstr "" --"Conecte-se para adicionar\n" -+msgstr "Conecte-se para adicionar\n" - "contas de sessão corporativa." - - #: ../panels/user-accounts/data/account-dialog.ui.h:15 -@@ -6118,7 +6100,7 @@ - msgstr "Dedo pequeno direito" - - #: ../panels/user-accounts/data/account-fingerprint.ui.h:9 --#: ../panels/user-accounts/um-fingerprint-dialog.c:687 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:689 - msgid "Enable Fingerprint Login" - msgstr "Habilita o início de sessão por impressão digital" - -@@ -6427,19 +6409,15 @@ - msgstr "Falha em entrar no domínio" - - #: ../panels/user-accounts/um-account-dialog.c:1035 --msgid "" --"That login name didn't work.\n" -+msgid "That login name didn't work.\n" - "Please try again." --msgstr "" --"Aquele nome de sessão não funcionou.\n" -+msgstr "Aquele nome de sessão não funcionou.\n" - "Por favor, tente novamente." - - #: ../panels/user-accounts/um-account-dialog.c:1042 --msgid "" --"That login password didn't work.\n" -+msgid "That login password didn't work.\n" - "Please try again." --msgstr "" --"Aquela senha de sessão não funcionou.\n" -+msgstr "Aquela senha de sessão não funcionou.\n" - "Por favor, tente novamente." - - #: ../panels/user-accounts/um-account-dialog.c:1050 -@@ -6485,15 +6463,15 @@ - "Você tem certeza de que quer excluir suas impressões digitais registradas " - "porque o início de sessão por impressão digital está desabilitado?" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:444 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:446 - msgid "Done!" - msgstr "Feito!" - - #. translators: - #. * The variable is the name of the device, for example: - #. * "Could you not access "Digital Persona U.are.U 4000/4000B" device --#: ../panels/user-accounts/um-fingerprint-dialog.c:505 --#: ../panels/user-accounts/um-fingerprint-dialog.c:547 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:507 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:549 - #, c-format - msgid "Could not access '%s' device" - msgstr "Não foi possível acessar o dispositivo \"%s\"" -@@ -6501,18 +6479,18 @@ - #. translators: - #. * The variable is the name of the device, for example: - #. * "Could you not access "Digital Persona U.are.U 4000/4000B" device --#: ../panels/user-accounts/um-fingerprint-dialog.c:588 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:590 - #, c-format - msgid "Could not start finger capture on '%s' device" - msgstr "" --"Não foi possível iniciar o dispositivo de captura de impressões digitais \"%s" --"\"" -+"Não foi possível iniciar o dispositivo de captura de impressões digitais " -+"\"%s\"" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:638 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:640 - msgid "Could not access any fingerprint readers" - msgstr "Não foi possível acessar qualquer leitor de impressões digitais" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:639 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:641 - msgid "Please contact your system administrator for help." - msgstr "Por favor, contate seu administrador de sistemas para ajuda." - -@@ -6520,8 +6498,8 @@ - #. * The variable is the name of the device, for example: - #. * "To enable fingerprint login, you need to save one of your fingerprints, using the - #. * 'Digital Persona U.are.U 4000/4000B' device." --#. --#: ../panels/user-accounts/um-fingerprint-dialog.c:721 -+#. -+#: ../panels/user-accounts/um-fingerprint-dialog.c:723 - #, c-format - msgid "" - "To enable fingerprint login, you need to save one of your fingerprints, " -@@ -6530,11 +6508,11 @@ - "Para habilitar o início de sessão por impressão digital, você precisa salvar " - "uma de suas impressões digitais, usando o dispositivo \"%s\"." - --#: ../panels/user-accounts/um-fingerprint-dialog.c:728 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:730 - msgid "Selecting finger" - msgstr "Selecionando dedo" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:729 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:731 - msgid "Enrolling fingerprints" - msgstr "Inscrição de impressões digitais" - -@@ -6574,7 +6552,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/um-history-dialog.c:175 --#: ../panels/user-accounts/um-user-panel.c:631 -+#: ../panels/user-accounts/um-user-panel.c:844 - msgctxt "login date-time" - msgid "%k:%M" - msgstr "%k:%M" -@@ -6582,7 +6560,7 @@ - #. Translators: This indicates a login date-time. - #. The first %s is a date, and the second %s a time. - #: ../panels/user-accounts/um-history-dialog.c:178 --#: ../panels/user-accounts/um-user-panel.c:635 -+#: ../panels/user-accounts/um-user-panel.c:848 - #, c-format - msgctxt "login date-time" - msgid "%s, %s" -@@ -6657,24 +6635,30 @@ - msgid "Couldn't connect to the %s domain: %s" - msgstr "Não foi possível conectar ao domínio %s: %s" - --#: ../panels/user-accounts/um-user-panel.c:198 -+#: ../panels/user-accounts/um-user-panel.c:239 - msgid "Other Accounts" - msgstr "Outras contas" - --#: ../panels/user-accounts/um-user-panel.c:417 -+#: ../panels/user-accounts/um-user-panel.c:453 - msgid "Failed to delete user" - msgstr "Falha ao excluir usuário" - --#: ../panels/user-accounts/um-user-panel.c:482 -+#: ../panels/user-accounts/um-user-panel.c:513 -+#: ../panels/user-accounts/um-user-panel.c:569 -+#: ../panels/user-accounts/um-user-panel.c:621 -+msgid "Failed to revoke remotely managed user" -+msgstr "Falha ao revogar o usuário gerenciado remotamente" -+ -+#: ../panels/user-accounts/um-user-panel.c:677 - msgid "You cannot delete your own account." - msgstr "Você não pode excluir sua própria conta." - --#: ../panels/user-accounts/um-user-panel.c:491 -+#: ../panels/user-accounts/um-user-panel.c:686 - #, c-format - msgid "%s is still logged in" - msgstr "%s ainda está conectado" - --#: ../panels/user-accounts/um-user-panel.c:495 -+#: ../panels/user-accounts/um-user-panel.c:690 - msgid "" - "Deleting a user while they are logged in can leave the system in an " - "inconsistent state." -@@ -6682,12 +6666,12 @@ - "Excluindo um usuário enquanto ele está conectado pode deixar o sistema em um " - "estado inconsistente." - --#: ../panels/user-accounts/um-user-panel.c:504 -+#: ../panels/user-accounts/um-user-panel.c:699 - #, c-format - msgid "Do you want to keep %s's files?" - msgstr "Você deseja manter os arquivos de %s?" - --#: ../panels/user-accounts/um-user-panel.c:508 -+#: ../panels/user-accounts/um-user-panel.c:703 - msgid "" - "It is possible to keep the home directory, mail spool and temporary files " - "around when deleting a user account." -@@ -6695,78 +6679,82 @@ - "É possível manter o diretório home, fila de e-mail e arquivos temporários ao " - "excluir uma conta de usuário." - --#: ../panels/user-accounts/um-user-panel.c:511 -+#: ../panels/user-accounts/um-user-panel.c:706 - msgid "_Delete Files" - msgstr "_Excluir arquivos" - --#: ../panels/user-accounts/um-user-panel.c:512 -+#: ../panels/user-accounts/um-user-panel.c:707 - msgid "_Keep Files" - msgstr "_Manter arquivos" - --#: ../panels/user-accounts/um-user-panel.c:564 -+#: ../panels/user-accounts/um-user-panel.c:721 -+#, c-format -+msgid "Are you sure you want to permanently delete %s's account?" -+msgstr "Tem certeza de que deseja remover permanentemente a conta do(a) %s?" -+ -+#: ../panels/user-accounts/um-user-panel.c:725 -+msgid "_Delete" -+msgstr "_Excluir" -+ -+#: ../panels/user-accounts/um-user-panel.c:777 - msgctxt "Password mode" - msgid "Account disabled" - msgstr "Conta desabilitada" - --#: ../panels/user-accounts/um-user-panel.c:572 -+#: ../panels/user-accounts/um-user-panel.c:785 - msgctxt "Password mode" - msgid "To be set at next login" - msgstr "Para ser definido no próximo início de sessão" - --#: ../panels/user-accounts/um-user-panel.c:575 -+#: ../panels/user-accounts/um-user-panel.c:788 - msgctxt "Password mode" - msgid "None" - msgstr "Nenhum" - --#: ../panels/user-accounts/um-user-panel.c:624 -+#: ../panels/user-accounts/um-user-panel.c:837 - msgid "Logged in" - msgstr "Acesso autorizado" - --#: ../panels/user-accounts/um-user-panel.c:1084 -+#: ../panels/user-accounts/um-user-panel.c:1297 - msgid "Failed to contact the accounts service" - msgstr "Falhou ao contactar o serviço de contas" - --#: ../panels/user-accounts/um-user-panel.c:1086 -+#: ../panels/user-accounts/um-user-panel.c:1299 - msgid "Please make sure that the AccountService is installed and enabled." - msgstr "" - "Por favor, certifique-se de que o Serviço de Contas esteja instalado " - "corretamente." - --#: ../panels/user-accounts/um-user-panel.c:1127 --msgid "" --"To make changes,\n" -+#: ../panels/user-accounts/um-user-panel.c:1340 -+msgid "To make changes,\n" - "click the * icon first" --msgstr "" --"Para fazer alterações,\n" -+msgstr "Para fazer alterações,\n" - "clique no ícone * primeiro" - --#: ../panels/user-accounts/um-user-panel.c:1165 -+#: ../panels/user-accounts/um-user-panel.c:1378 - msgid "Create a user account" - msgstr "Cria uma conta de usuário" - --#: ../panels/user-accounts/um-user-panel.c:1176 --#: ../panels/user-accounts/um-user-panel.c:1488 --msgid "" --"To create a user account,\n" -+#: ../panels/user-accounts/um-user-panel.c:1389 -+#: ../panels/user-accounts/um-user-panel.c:1702 -+msgid "To create a user account,\n" - "click the * icon first" --msgstr "" --"Para criar uma conta de usuário,\n" -+msgstr "Para criar uma conta de usuário,\n" - "clique primeiro no ícone *" - --#: ../panels/user-accounts/um-user-panel.c:1186 -+#: ../panels/user-accounts/um-user-panel.c:1399 - msgid "Delete the selected user account" - msgstr "Exclui a conta de usuário selecionada" - --#: ../panels/user-accounts/um-user-panel.c:1198 --#: ../panels/user-accounts/um-user-panel.c:1493 --msgid "" --"To delete the selected user account,\n" -+#: ../panels/user-accounts/um-user-panel.c:1411 -+#: ../panels/user-accounts/um-user-panel.c:1707 -+msgid "To delete the selected user account,\n" - "click the * icon first" - msgstr "" - "Para excluir a conta de usuário selecionada,\n" - "clique primeiro no ícone *" - --#: ../panels/user-accounts/um-user-panel.c:1402 -+#: ../panels/user-accounts/um-user-panel.c:1616 - msgid "My Account" - msgstr "Minha conta" - -@@ -6888,11 +6876,11 @@ - msgid "%d of %d" - msgstr "%d de %d" - --#: ../panels/wacom/cc-wacom-page.c:530 -+#: ../panels/wacom/cc-wacom-page.c:522 - msgid "Display Mapping" - msgstr "Exibir associação" - --#: ../panels/wacom/cc-wacom-stylus-page.c:372 -+#: ../panels/wacom/cc-wacom-stylus-page.c:376 - msgid "Button" - msgstr "Botão" - -@@ -7194,165 +7182,3 @@ - #: ../shell/gnome-control-center.desktop.in.in.h:2 - msgid "Preferences;Settings;" - msgstr "Preferências;Configurações;Ajustes;" -- --#~ msgid "Share Media On This Network" --#~ msgstr "Compartilhar multimídia nesta rede" -- --#~ msgid "Shared Folders" --#~ msgstr "Pastas compartilhadas" -- --#~ msgid "column" --#~ msgstr "coluna" -- --#~ msgid "Remove Folder" --#~ msgstr "Remover pasta" -- --#~ msgid "Share Public Folder On This Network" --#~ msgstr "Compartilhar pasta pública nesta rede" -- --#~ msgid "Immediately" --#~ msgstr "Imediatamente" -- --#~ msgid "Remote View" --#~ msgstr "Visão remota" -- --#~ msgid "Approve All Connections" --#~ msgstr "Aprovar todas as conexões" -- --#~ msgid "Flickr" --#~ msgstr "Flickr" -- --#~ msgid "Install Updates" --#~ msgstr "Instalar atualizações" -- --#~ msgid "System Up-To-Date" --#~ msgstr "Sistema atualizado" -- --#~ msgid "Search for network printers or filter result" --#~ msgstr "Pesquisar por impressoras de rede ou resultado de filtro" -- --#~ msgid "_Default" --#~ msgstr "Pa_drão" -- --#~ msgid "Set Up New Device" --#~ msgstr "Configurar um novo dispositivo" -- --#~ msgid "Connection" --#~ msgstr "Conexão" -- --#~ msgid "Paired" --#~ msgstr "Pareado" -- --#~ msgid "Type" --#~ msgstr "Tipo" -- --#~ msgid "Mouse & Touchpad Settings" --#~ msgstr "Configurações de mouse & touchpad" -- --#~ msgid "Sound Settings" --#~ msgstr "Configurações de som" -- --#~ msgid "Keyboard Settings" --#~ msgstr "Configurações do teclado" -- --#~ msgid "Send Files…" --#~ msgstr "Enviar arquivos…" -- --#~ msgid "Visibility" --#~ msgstr "Visibilidade" -- --#~ msgid "Visibility of “%s”" --#~ msgstr "Visibilidade de \"%s\"" -- --#~ msgid "Remove '%s' from the list of devices?" --#~ msgstr "Remover \"%s\" da lista de dispositivos?" -- --#~ msgid "" --#~ "If you remove the device, you will have to set it up again before next " --#~ "use." --#~ msgstr "" --#~ "Se você excluir este dispositivo, você terá de configurá-lo novamente " --#~ "antes do próximo uso." -- --#~ msgctxt "Language" --#~ msgid "None" --#~ msgstr "Nenhum" -- --#~ msgid "Share Public Folder" --#~ msgstr "Compartilhar pasta pública" -- --#~ msgid "Only share with Trusted Devices" --#~ msgstr "Apenas compartilhar com dispositivos confiáveis" -- --#~ msgid "Device type:" --#~ msgstr "Tipo de dispositivo:" -- --#~ msgid "Manufacturer:" --#~ msgstr "Fabricante:" -- --#~ msgid "Model:" --#~ msgstr "Modelo:" -- --#~ msgid "" --#~ "Image files can be dragged on this window to auto-complete the above " --#~ "fields." --#~ msgstr "" --#~ "Arquivos de imagem podem ser arrastados sobre esta janela para completar " --#~ "automaticamente os campos acima." -- --#~ msgid "Show your primary display on this screen also" --#~ msgstr "Mostra sua tela primária também nesta tela" -- --#~ msgid "Combine" --#~ msgstr "Combinar" -- --#~ msgid "Join with the primary display to create an extra space" --#~ msgstr "Junta com a tela primária para criar um expaço extra" -- --#~ msgid "Don't use the display" --#~ msgstr "Não usa a tela" -- --#~ msgid "Refresh Rate" --#~ msgstr "Taxa de atualização" -- --#~ msgid "Mouse Preferences" --#~ msgstr "Preferências do mouse" -- --#~ msgid "Select the interface to use for the new service" --#~ msgstr "Selecione a interface para usar o novo serviço" -- --#~ msgid "C_reate…" --#~ msgstr "C_riar…" -- --#~ msgid "_Interface" --#~ msgstr "_Interface" -- --#~ msgid "Changing photo for:" --#~ msgstr "Alterando foto para:" -- --#~ msgid "" --#~ "Choose a picture that will be shown at the login screen for this account." --#~ msgstr "" --#~ "Escolha a imagem que será mostrada na tela de início de sessão para esta " --#~ "conta." -- --#~ msgid "Gallery" --#~ msgstr "Galeria" -- --#~ msgid "Take a photograph" --#~ msgstr "Tirar uma foto" -- --#~ msgid "Browse" --#~ msgstr "Navegar" -- --#~ msgid "Photograph" --#~ msgstr "Fotografia" -- --#~ msgid "Account Information" --#~ msgstr "Informações da conta" -- --#~ msgid "Switch between AM and PM." --#~ msgstr "Alternar entre AM e PM." -- --#~ msgid "Estimated battery capacity: %s" --#~ msgstr "Capacidade da bateria estimada: %s" -diff -urN gnome-control-center-3.14.5/po/ru.po gnome-control-center-3.14.5_localized/po/ru.po ---- gnome-control-center-3.14.5/po/ru.po 2015-04-30 17:35:48.000000000 +0530 -+++ gnome-control-center-3.14.5_localized/po/ru.po 2016-03-12 12:09:04.254000000 +0530 -@@ -1,7 +1,7 @@ - # translation of gnome-control-center.master.ru.po to Russian - # translation of gnome-control-center to Russian --# --# -+# -+# - # Max Valianskiy , 1998-99. - # Sergey Panov , 1999. - # Valek Filippov , 2000-2002. -@@ -16,23 +16,23 @@ - # Dmitry Shachnev , 2012. - # Yuri Myasoedov , 2012, 2014. - # Stas Solovey , 2012, 2013, 2014. --# -+# pnemade , 2016. #zanata -+# ypoyarko , 2016. #zanata - msgid "" - msgstr "" --"Project-Id-Version: ru\n" --"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" --"control-center&keywords=I18N+L10N&component=general\n" --"POT-Creation-Date: 2014-12-30 19:20+0000\n" --"PO-Revision-Date: 2014-11-06 01:10+0300\n" --"Last-Translator: Stas Solovey \n" --"Language-Team: Русский \n" --"Language: ru\n" -+"Project-Id-Version: PACKAGE VERSION\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2016-02-10 09:57+0530\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" --"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" --"X-Generator: Gtranslator 2.91.6\n" -+"PO-Revision-Date: 2016-03-06 11:09+0000\n" -+"Last-Translator: ypoyarko \n" -+"Language-Team: Русский \n" -+"Language: ru\n" -+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -+"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../panels/background/background.ui.h:1 - #: ../panels/background/gnome-background-panel.desktop.in.in.h:1 -@@ -119,8 +119,8 @@ - #: ../panels/background/cc-background-chooser-dialog.c:583 - #: ../panels/color/cc-color-panel.c:224 ../panels/color/cc-color-panel.c:961 - #: ../panels/color/color.ui.h:29 ../panels/common/language-chooser.ui.h:3 --#: ../panels/display/cc-display-panel.c:1537 --#: ../panels/display/cc-display-panel.c:1976 -+#: ../panels/display/cc-display-panel.c:1540 -+#: ../panels/display/cc-display-panel.c:1985 - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:2 - #: ../panels/network/connection-editor/connection-editor.ui.h:1 - #: ../panels/network/connection-editor/vpn-helpers.c:245 -@@ -128,7 +128,7 @@ - #: ../panels/network/net-device-wifi.c:1247 - #: ../panels/network/net-device-wifi.c:1440 - #: ../panels/network/network-wifi.ui.h:1 --#: ../panels/printers/cc-printers-panel.c:1947 -+#: ../panels/printers/cc-printers-panel.c:1949 - #: ../panels/printers/new-printer-dialog.ui.h:2 - #: ../panels/privacy/cc-privacy-panel.c:468 - #: ../panels/region/format-chooser.ui.h:3 -@@ -140,7 +140,8 @@ - #: ../panels/user-accounts/um-fingerprint-dialog.c:264 - #: ../panels/user-accounts/um-photo-dialog.c:95 - #: ../panels/user-accounts/um-photo-dialog.c:222 --#: ../panels/user-accounts/um-user-panel.c:513 -+#: ../panels/user-accounts/um-user-panel.c:708 -+#: ../panels/user-accounts/um-user-panel.c:726 - msgid "_Cancel" - msgstr "_Отменить" - -@@ -150,18 +151,18 @@ - msgid "Select" - msgstr "Выбрать" - --#: ../panels/background/cc-background-item.c:197 -+#: ../panels/background/cc-background-item.c:203 - msgid "multiple sizes" - msgstr "множество размеров" - - #. translators: 100 × 100px - #. * Note that this is not an "x", but U+00D7 MULTIPLICATION SIGN --#: ../panels/background/cc-background-item.c:201 -+#: ../panels/background/cc-background-item.c:207 - #, c-format - msgid "%d × %d" - msgstr "%d × %d" - --#: ../panels/background/cc-background-item.c:327 -+#: ../panels/background/cc-background-item.c:333 - msgid "No Desktop Background" - msgstr "Без фона рабочего стола" - -@@ -399,6 +400,7 @@ - msgid "Type the URL into your browser to download and install the profile." - msgstr "" - "Введите URL в адресную строку браузера, чтобы загрузить и установить профиль." -+"" - - #. TRANSLATORS: this is the dialog to save the ICC profile - #: ../panels/color/cc-color-panel.c:958 -@@ -661,9 +663,9 @@ - - #: ../panels/color/color.ui.h:26 - msgid "" --"You may find these instructions on how to use the profile on GNU/Linux, Apple OS X and Microsoft Windows systems useful." -+"You may find these instructions on how to use the profile on GNU/Linux, Apple OS X and Microsoft Windows systems useful." - msgstr "" - "Данные инструкции об использовании цветовых профилей применимы для систем GNU/Linux, Apple OS X и , 2011, 2012, 2014. - # Tong Hui , 2014. - # Aron Xu , 2010, 2011, 2012, 2013, 2014. --# -+# Leah Liu , 2016. #zanata -+# pnemade , 2016. #zanata - msgid "" - msgstr "" --"Project-Id-Version: gnome-control-center master\n" --"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" --"control-center&keywords=I18N+L10N&component=general\n" --"POT-Creation-Date: 2014-09-19 11:38+0000\n" --"PO-Revision-Date: 2014-08-17 22:16+0800\n" --"Last-Translator: irisgyq \n" --"Language-Team: Chinese (simplified) \n" --"Language: zh_CN\n" -+"Project-Id-Version: PACKAGE VERSION\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2016-02-10 09:57+0530\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"PO-Revision-Date: 2016-03-04 05:16+0000\n" -+"Last-Translator: Leah Liu \n" -+"Language-Team: Chinese (simplified) \n" -+"Language: zh-CN\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Poedit 1.5.4\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../panels/background/background.ui.h:1 - #: ../panels/background/gnome-background-panel.desktop.in.in.h:1 -@@ -124,8 +124,8 @@ - #: ../panels/background/cc-background-chooser-dialog.c:583 - #: ../panels/color/cc-color-panel.c:224 ../panels/color/cc-color-panel.c:961 - #: ../panels/color/color.ui.h:29 ../panels/common/language-chooser.ui.h:3 --#: ../panels/display/cc-display-panel.c:1537 --#: ../panels/display/cc-display-panel.c:1976 -+#: ../panels/display/cc-display-panel.c:1540 -+#: ../panels/display/cc-display-panel.c:1985 - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:2 - #: ../panels/network/connection-editor/connection-editor.ui.h:1 - #: ../panels/network/connection-editor/vpn-helpers.c:245 -@@ -133,7 +133,7 @@ - #: ../panels/network/net-device-wifi.c:1247 - #: ../panels/network/net-device-wifi.c:1440 - #: ../panels/network/network-wifi.ui.h:1 --#: ../panels/printers/cc-printers-panel.c:1947 -+#: ../panels/printers/cc-printers-panel.c:1949 - #: ../panels/printers/new-printer-dialog.ui.h:2 - #: ../panels/privacy/cc-privacy-panel.c:468 - #: ../panels/region/format-chooser.ui.h:3 -@@ -145,7 +145,8 @@ - #: ../panels/user-accounts/um-fingerprint-dialog.c:264 - #: ../panels/user-accounts/um-photo-dialog.c:95 - #: ../panels/user-accounts/um-photo-dialog.c:222 --#: ../panels/user-accounts/um-user-panel.c:513 -+#: ../panels/user-accounts/um-user-panel.c:708 -+#: ../panels/user-accounts/um-user-panel.c:726 - msgid "_Cancel" - msgstr "取消(_C)" - -@@ -155,18 +156,18 @@ - msgid "Select" - msgstr "选择" - --#: ../panels/background/cc-background-item.c:197 -+#: ../panels/background/cc-background-item.c:203 - msgid "multiple sizes" - msgstr "多个尺寸" - - #. translators: 100 × 100px - #. * Note that this is not an "x", but U+00D7 MULTIPLICATION SIGN --#: ../panels/background/cc-background-item.c:201 -+#: ../panels/background/cc-background-item.c:207 - #, c-format - msgid "%d × %d" - msgstr "%d × %d" - --#: ../panels/background/cc-background-item.c:327 -+#: ../panels/background/cc-background-item.c:333 - msgid "No Desktop Background" - msgstr "无桌面背景" - -@@ -617,8 +618,7 @@ - msgid "" - "You can use a color profile on different computers, or even create profiles " - "for different lighting conditions." --msgstr "" --"您可以对不同的计算机使用同一个配置,或者甚至可以对不同的光照条件创建配置。" -+msgstr "您可以对不同的计算机使用同一个配置,或者甚至可以对不同的光照条件创建配置。" - - #: ../panels/color/color.ui.h:19 - msgid "Profile Name:" -@@ -650,16 +650,15 @@ - - #: ../panels/color/color.ui.h:26 - msgid "" --"You may find these instructions on how to use the profile on GNU/Linux, Apple OS X and Microsoft Windows systems useful." -+"You may find these instructions on how to use the profile on GNU/Linux, Apple OS X and Microsoft Windows systems useful." - msgstr "" --"有关如何在 GNU/LinuxApple OS X " --"和 Microsoft Windows 系统中使用个人资料的这些说明可能" --"对您有所帮助。" -+"有关如何在 GNU/LinuxApple OS XMicrosoft Windows 系统中使用个人资料的这些说明可能对您有所帮助。" - - #: ../panels/color/color.ui.h:27 --#: ../panels/user-accounts/um-fingerprint-dialog.c:730 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:732 - msgid "Summary" - msgstr "摘要" - -@@ -831,8 +830,7 @@ - #. Translators: those are keywords for the color control-center panel - #: ../panels/color/gnome-color-panel.desktop.in.in.h:4 - msgid "Color;ICC;Profile;Calibrate;Printer;Display;" --msgstr "" --"颜色;色彩;配置;校准;打印机;显示;Color;ICC;Profile;Calibrate;Printer;Display;" -+msgstr "颜色;色彩;配置;校准;打印机;显示;Color;ICC;Profile;Calibrate;Printer;Display;" - - #. Add some common regions - #: ../panels/common/cc-common-language.c:684 -@@ -1062,23 +1060,23 @@ - msgid "To change time or date settings, you need to authenticate." - msgstr "修改时间或日期设置,您需要获得管理员权限。" - --#: ../panels/display/cc-display-panel.c:487 -+#: ../panels/display/cc-display-panel.c:490 - msgid "Lid Closed" - msgstr "关闭盖子" - - #. translators: "Mirrored" describes when both displays show the same view --#: ../panels/display/cc-display-panel.c:490 -+#: ../panels/display/cc-display-panel.c:493 - msgid "Mirrored" - msgstr "镜像显示" - --#: ../panels/display/cc-display-panel.c:492 --#: ../panels/display/cc-display-panel.c:2145 -+#: ../panels/display/cc-display-panel.c:495 -+#: ../panels/display/cc-display-panel.c:2155 - msgid "Primary" - msgstr "主" - --#: ../panels/display/cc-display-panel.c:494 -+#: ../panels/display/cc-display-panel.c:497 - #: ../panels/notifications/cc-notifications-panel.c:185 --#: ../panels/power/cc-power-panel.c:1684 ../panels/power/cc-power-panel.c:1695 -+#: ../panels/power/cc-power-panel.c:1704 ../panels/power/cc-power-panel.c:1715 - #: ../panels/privacy/cc-privacy-panel.c:84 - #: ../panels/privacy/cc-privacy-panel.c:124 - #: ../panels/universal-access/cc-ua-panel.c:257 -@@ -1088,82 +1086,82 @@ - msgid "Off" - msgstr "关" - --#: ../panels/display/cc-display-panel.c:497 -+#: ../panels/display/cc-display-panel.c:500 - msgid "Secondary" - msgstr "次" - --#: ../panels/display/cc-display-panel.c:1533 -+#: ../panels/display/cc-display-panel.c:1536 - msgid "Arrange Combined Displays" - msgstr "排列组合的显示屏" - --#: ../panels/display/cc-display-panel.c:1539 --#: ../panels/display/cc-display-panel.c:1979 -+#: ../panels/display/cc-display-panel.c:1542 -+#: ../panels/display/cc-display-panel.c:1988 - #: ../panels/network/connection-editor/connection-editor.ui.h:2 - #: ../panels/network/network-wifi.ui.h:2 - msgid "_Apply" - msgstr "应用(_A)" - --#: ../panels/display/cc-display-panel.c:1560 -+#: ../panels/display/cc-display-panel.c:1563 - msgid "Drag displays to rearrange them" - msgstr "拖动显示屏来重新排列它们" - --#: ../panels/display/cc-display-panel.c:2081 -+#: ../panels/display/cc-display-panel.c:2090 - msgid "Size" - msgstr "大小" - - #. aspect ratio --#: ../panels/display/cc-display-panel.c:2094 -+#: ../panels/display/cc-display-panel.c:2103 - msgid "Aspect Ratio" - msgstr "宽高比" - --#: ../panels/display/cc-display-panel.c:2115 -+#: ../panels/display/cc-display-panel.c:2125 - #: ../panels/printers/pp-options-dialog.c:85 - msgid "Resolution" - msgstr "分辨率" - --#: ../panels/display/cc-display-panel.c:2146 -+#: ../panels/display/cc-display-panel.c:2156 - msgid "Show the top bar and Activities Overview on this display" - msgstr "在此显示器上显示顶栏和活动概览" - --#: ../panels/display/cc-display-panel.c:2152 -+#: ../panels/display/cc-display-panel.c:2162 - msgid "Secondary Display" - msgstr "第二显示器" - --#: ../panels/display/cc-display-panel.c:2153 -+#: ../panels/display/cc-display-panel.c:2163 - msgid "Join this display with another to create an extra workspace" - msgstr "将该显示器与另一显示器合并以扩展工作空间" - - # 左撇子有歧视色彩。 --#: ../panels/display/cc-display-panel.c:2160 -+#: ../panels/display/cc-display-panel.c:2170 - msgid "Presentation" - msgstr "演示" - --#: ../panels/display/cc-display-panel.c:2161 -+#: ../panels/display/cc-display-panel.c:2171 - msgid "Show slideshows and media only" - msgstr "只显示幻灯片和多媒体" - - #. translators: "Mirror" describes when both displays show the same view --#: ../panels/display/cc-display-panel.c:2166 -+#: ../panels/display/cc-display-panel.c:2176 - msgid "Mirror" - msgstr "镜像" - --#: ../panels/display/cc-display-panel.c:2167 -+#: ../panels/display/cc-display-panel.c:2177 - msgid "Show your existing view on both displays" - msgstr "在两块显示器上同时显示当前视图" - --#: ../panels/display/cc-display-panel.c:2173 -+#: ../panels/display/cc-display-panel.c:2183 - msgid "Turn Off" - msgstr "关闭" - --#: ../panels/display/cc-display-panel.c:2174 -+#: ../panels/display/cc-display-panel.c:2184 - msgid "Don't use this display" - msgstr "不使用该显示器" - --#: ../panels/display/cc-display-panel.c:2383 -+#: ../panels/display/cc-display-panel.c:2388 - msgid "Could not get screen information" - msgstr "无法获得屏幕信息" - --#: ../panels/display/cc-display-panel.c:2414 -+#: ../panels/display/cc-display-panel.c:2419 - msgid "_Arrange Combined Displays" - msgstr "排列组合显示屏(_A)" - -@@ -1179,8 +1177,7 @@ - #: ../panels/display/gnome-display-panel.desktop.in.in.h:4 - msgid "Panel;Projector;xrandr;Screen;Resolution;Refresh;Monitor;" - msgstr "" --"Panel;Projector;xrandr;Screen;Resolution;Refresh;Monitor;面板;投影仪;屏幕;分" --"辨率;刷新;" -+"Panel;Projector;xrandr;Screen;Resolution;Refresh;Monitor;面板;投影仪;屏幕;分辨率;刷新;" - - #: ../panels/info/cc-info-panel.c:384 - msgid "Wayland" -@@ -1191,49 +1188,45 @@ - msgid "Unknown" - msgstr "未知" - --#: ../panels/info/cc-info-panel.c:472 --#, c-format --msgid "%s %d-bit" --msgstr "%s %d 位" -- --#: ../panels/info/cc-info-panel.c:474 -+#. translators: This is the the type of OS architecture, eg: "64-bit" or "32-bit" -+#: ../panels/info/cc-info-panel.c:513 - #, c-format - msgid "%d-bit" - msgstr "%d 位" - --#: ../panels/info/cc-info-panel.c:1154 -+#: ../panels/info/cc-info-panel.c:1191 - msgid "Ask what to do" - msgstr "询问如何处理" - --#: ../panels/info/cc-info-panel.c:1158 -+#: ../panels/info/cc-info-panel.c:1195 - msgid "Do nothing" - msgstr "不处理" - --#: ../panels/info/cc-info-panel.c:1162 -+#: ../panels/info/cc-info-panel.c:1199 - msgid "Open folder" - msgstr "打开文件夹" - --#: ../panels/info/cc-info-panel.c:1253 -+#: ../panels/info/cc-info-panel.c:1290 - msgid "Other Media" - msgstr "其他媒体" - --#: ../panels/info/cc-info-panel.c:1284 -+#: ../panels/info/cc-info-panel.c:1321 - msgid "Select an application for audio CDs" - msgstr "选择播放音频 CD 的应用程序" - --#: ../panels/info/cc-info-panel.c:1285 -+#: ../panels/info/cc-info-panel.c:1322 - msgid "Select an application for video DVDs" - msgstr "选择播放视频 DVD 的应用程序" - --#: ../panels/info/cc-info-panel.c:1286 -+#: ../panels/info/cc-info-panel.c:1323 - msgid "Select an application to run when a music player is connected" - msgstr "选择要在连接音乐播放器后运行的应用程序" - --#: ../panels/info/cc-info-panel.c:1287 -+#: ../panels/info/cc-info-panel.c:1324 - msgid "Select an application to run when a camera is connected" - msgstr "选择要在连接相机后运行的应用程序" - --#: ../panels/info/cc-info-panel.c:1288 -+#: ../panels/info/cc-info-panel.c:1325 - msgid "Select an application for software CDs" - msgstr "选择要在插入软件 CD 时运行的应用程序" - -@@ -1241,74 +1234,74 @@ - #. * strings, just here to fix capitalization of the English originals. - #. * If the shared-mime-info translation works for your language, - #. * simply leave these untranslated. --#. --#: ../panels/info/cc-info-panel.c:1300 -+#. -+#: ../panels/info/cc-info-panel.c:1337 - msgid "audio DVD" - msgstr "音频 DVD" - --#: ../panels/info/cc-info-panel.c:1301 -+#: ../panels/info/cc-info-panel.c:1338 - msgid "blank Blu-ray disc" - msgstr "空白蓝光光盘" - --#: ../panels/info/cc-info-panel.c:1302 -+#: ../panels/info/cc-info-panel.c:1339 - msgid "blank CD disc" - msgstr "空白 CD 光盘" - --#: ../panels/info/cc-info-panel.c:1303 -+#: ../panels/info/cc-info-panel.c:1340 - msgid "blank DVD disc" - msgstr "空白 DVD 光盘" - - # 空白 HD DVD 光盘 --#: ../panels/info/cc-info-panel.c:1304 -+#: ../panels/info/cc-info-panel.c:1341 - msgid "blank HD DVD disc" - msgstr "空白 HD DVD 光盘" - --#: ../panels/info/cc-info-panel.c:1305 -+#: ../panels/info/cc-info-panel.c:1342 - msgid "Blu-ray video disc" - msgstr "蓝光视频光盘" - --#: ../panels/info/cc-info-panel.c:1306 -+#: ../panels/info/cc-info-panel.c:1343 - msgid "e-book reader" - msgstr "电子书阅读器" - --#: ../panels/info/cc-info-panel.c:1307 -+#: ../panels/info/cc-info-panel.c:1344 - msgid "HD DVD video disc" - msgstr "HD DVD 视频光盘" - --#: ../panels/info/cc-info-panel.c:1308 -+#: ../panels/info/cc-info-panel.c:1345 - msgid "Picture CD" - msgstr "图片 CD" - --#: ../panels/info/cc-info-panel.c:1309 -+#: ../panels/info/cc-info-panel.c:1346 - msgid "Super Video CD" - msgstr "超级 VCD" - --#: ../panels/info/cc-info-panel.c:1310 -+#: ../panels/info/cc-info-panel.c:1347 - msgid "Video CD" - msgstr "视频 CD" - --#: ../panels/info/cc-info-panel.c:1311 -+#: ../panels/info/cc-info-panel.c:1348 - msgid "Windows software" - msgstr "Windows 软件" - --#: ../panels/info/cc-info-panel.c:1434 -+#: ../panels/info/cc-info-panel.c:1471 - #: ../panels/keyboard/keyboard-shortcuts.c:1932 - msgid "Section" - msgstr "节" - --#: ../panels/info/cc-info-panel.c:1443 ../panels/info/info.ui.h:14 -+#: ../panels/info/cc-info-panel.c:1480 ../panels/info/info.ui.h:13 - msgid "Overview" - msgstr "总览" - --#: ../panels/info/cc-info-panel.c:1449 ../panels/info/info.ui.h:21 -+#: ../panels/info/cc-info-panel.c:1486 ../panels/info/info.ui.h:20 - msgid "Default Applications" - msgstr "默认应用程序" - --#: ../panels/info/cc-info-panel.c:1454 ../panels/info/info.ui.h:29 -+#: ../panels/info/cc-info-panel.c:1491 ../panels/info/info.ui.h:28 - msgid "Removable Media" - msgstr "可移动介质" - --#: ../panels/info/cc-info-panel.c:1479 -+#: ../panels/info/cc-info-panel.c:1516 - #, c-format - msgid "Version %s" - msgstr "版本 %s" -@@ -1326,13 +1319,9 @@ - #. sure that you use the same "translation" for those keywords - #: ../panels/info/gnome-info-panel.desktop.in.in.h:4 - msgid "" --"device;system;information;memory;processor;version;default;application;" --"preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" -+"device;system;information;memory;processor;version;default;application;preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" - msgstr "" --"device;system;information;memory;processor;version;default;application;" --"preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;设备;系统;信息;" --"内存;处理器;CPU;版本;默认;应用程序;首选;回滚;喜好;音频;视频;光盘;光碟;盘片;可" --"擦写;可移除;媒体;介质;自动运行;" -+"device;system;information;memory;processor;version;default;application;preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;设备;系统;信息;内存;处理器;CPU;版本;默认;应用程序;首选;回滚;喜好;音频;视频;光盘;光碟;盘片;可擦写;可移除;媒体;介质;自动运行;" - - #: ../panels/info/info.ui.h:1 - msgid "Select how other media should be handled" -@@ -1358,80 +1347,79 @@ - msgid "Processor" - msgstr "处理器" - --#. To translators: this field contains the distro name, version and type --#: ../panels/info/info.ui.h:8 --msgid "Base system" --msgstr "基本系统" -+#: ../panels/info/info.ui.h:7 -+msgid "OS Type" -+msgstr "OS 类型" - --#: ../panels/info/info.ui.h:9 -+#: ../panels/info/info.ui.h:8 - msgid "Disk" - msgstr "磁盘" - --#: ../panels/info/info.ui.h:10 -+#: ../panels/info/info.ui.h:9 - msgid "Calculating…" - msgstr "正在计算…" - --#: ../panels/info/info.ui.h:11 -+#: ../panels/info/info.ui.h:10 - msgid "Graphics" - msgstr "图形" - --#: ../panels/info/info.ui.h:12 -+#: ../panels/info/info.ui.h:11 - msgid "Virtualization" - msgstr "虚拟化" - --#: ../panels/info/info.ui.h:13 -+#: ../panels/info/info.ui.h:12 - msgid "Check for updates" - msgstr "检查更新" - --#: ../panels/info/info.ui.h:15 -+#: ../panels/info/info.ui.h:14 - msgid "_Web" - msgstr "网络(_W)" - --#: ../panels/info/info.ui.h:16 -+#: ../panels/info/info.ui.h:15 - msgid "_Mail" - msgstr "邮件(_M)" - --#: ../panels/info/info.ui.h:17 -+#: ../panels/info/info.ui.h:16 - msgid "_Calendar" - msgstr "日历(_C)" - --#: ../panels/info/info.ui.h:18 -+#: ../panels/info/info.ui.h:17 - msgid "M_usic" - msgstr "音乐(_U)" - --#: ../panels/info/info.ui.h:19 -+#: ../panels/info/info.ui.h:18 - msgid "_Video" - msgstr "视频(_V)" - --#: ../panels/info/info.ui.h:20 -+#: ../panels/info/info.ui.h:19 - msgid "_Photos" - msgstr "照片(_P)" - --#: ../panels/info/info.ui.h:22 -+#: ../panels/info/info.ui.h:21 - msgid "Select how media should be handled" - msgstr "选择如何处理介质" - --#: ../panels/info/info.ui.h:23 -+#: ../panels/info/info.ui.h:22 - msgid "CD _audio" - msgstr "CD 音频(_A)" - --#: ../panels/info/info.ui.h:24 -+#: ../panels/info/info.ui.h:23 - msgid "_DVD video" - msgstr "_DVD 视频" - --#: ../panels/info/info.ui.h:25 -+#: ../panels/info/info.ui.h:24 - msgid "_Music player" - msgstr "音乐播放器(_M)" - --#: ../panels/info/info.ui.h:26 -+#: ../panels/info/info.ui.h:25 - msgid "_Software" - msgstr "软件(_S)" - --#: ../panels/info/info.ui.h:27 -+#: ../panels/info/info.ui.h:26 - msgid "_Other Media…" - msgstr "其他媒体(_O)…" - --#: ../panels/info/info.ui.h:28 -+#: ../panels/info/info.ui.h:27 - msgid "_Never prompt or start programs on media insertion" - msgstr "介质插入时从不提示或启动程序(_N)" - -@@ -1501,7 +1489,7 @@ - msgid "Launch help browser" - msgstr "启动帮助浏览器" - --#: ../panels/keyboard/01-launchers.xml.in.h:3 ../shell/cc-window.c:1601 -+#: ../panels/keyboard/01-launchers.xml.in.h:3 ../shell/cc-window.c:1604 - #: ../shell/gnome-control-center.desktop.in.in.h:1 - msgid "Settings" - msgstr "设置" -@@ -1626,7 +1614,7 @@ - #. Translators: This key is also known as 'third level - #. * chooser'. AltGr is often used for this purpose. See - #. * https://live.gnome.org/Design/SystemSettings/RegionAndLanguage --#. -+#. - #: ../panels/keyboard/cc-keyboard-option.c:354 - msgid "Alternative Characters Key" - msgstr "替代的字符键" -@@ -1634,7 +1622,7 @@ - #. Translators: The Compose key is used to initiate key - #. * sequences that are combined to form a single character. - #. * See http://en.wikipedia.org/wiki/Compose_key --#. -+#. - #: ../panels/keyboard/cc-keyboard-option.c:363 - msgid "Compose Key" - msgstr "组合键" -@@ -1741,8 +1729,7 @@ - msgid "" - "To edit a shortcut, click the row and hold down the new keys or press " - "Backspace to clear." --msgstr "" --"要编辑快捷键,请单击相应的行,然后输入新按键组合,或按 Backspace 清除。" -+msgstr "要编辑快捷键,请单击相应的行,然后输入新按键组合,或按 Backspace 清除。" - - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:24 - msgid "Shortcuts" -@@ -1763,24 +1750,22 @@ - "The shortcut \"%s\" cannot be used because it will become impossible to type " - "using this key.\n" - "Please try with a key such as Control, Alt or Shift at the same time." --msgstr "" --"“%s”不能用作快捷键,因为使用此键将无法正常输入。\n" -+msgstr "“%s”不能用作快捷键,因为使用此键将无法正常输入。\n" - "请组合 Ctrl、Alt 或 Shift 键再试一次" - - #: ../panels/keyboard/keyboard-shortcuts.c:1387 - #, c-format --msgid "" --"The shortcut \"%s\" is already used for\n" -+msgid "The shortcut \"%s\" is already used for\n" - "\"%s\"" --msgstr "" --"快捷键“%s”已被用于\n" -+msgstr "快捷键“%s”已被用于\n" - "“%s”" - - #: ../panels/keyboard/keyboard-shortcuts.c:1392 - #, c-format - msgid "" - "If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be disabled." --msgstr "如果你重新分配快捷键 %s,则快捷键 %s 将被禁用" -+"" -+msgstr "如果您重新分配快捷键 %s,则快捷键 %s 将被禁用" - - #: ../panels/keyboard/keyboard-shortcuts.c:1398 - msgid "_Reassign" -@@ -1791,27 +1776,22 @@ - msgid "" - "The \"%s\" shortcut has an associated \"%s\" shortcut. Do you want to " - "automatically set it to \"%s\"?" --msgstr "" -+msgstr "\"%s\" 快捷键与 \"%s\" 快捷键关联。您是否想要自动将其设定为 \"%s\"?" - - #: ../panels/keyboard/keyboard-shortcuts.c:1449 --#, fuzzy, c-format --#| msgid "" --#| "If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be " --#| "disabled." -+#, c-format - msgid "" - "\"%s\" is currently associated with \"%s\", this shortcut will be disabled " - "if you move forward." --msgstr "如果你重新分配快捷键 %s,则快捷键 %s 将被禁用" -+msgstr "\"%s\" 目前与 \"%s\" 关联,若继续操作则会禁用这个快捷键。" - - #: ../panels/keyboard/keyboard-shortcuts.c:1456 --#, fuzzy --#| msgid "_Reassign" - msgid "_Assign" --msgstr "重新分配(_R)" -+msgstr "重新分配(_A)" - - #: ../panels/mouse/cc-mouse-panel.c:94 - msgid "Test Your _Settings" --msgstr "测试您的设置(_S)" -+msgstr "测试您的设置(_S)" - - #: ../panels/mouse/cc-mouse-panel.c:107 - msgid "Test Your Settings" -@@ -1830,8 +1810,7 @@ - #: ../panels/mouse/gnome-mouse-panel.desktop.in.in.h:4 - msgid "Trackpad;Pointer;Click;Tap;Double;Button;Trackball;Scroll;" - msgstr "" --"Trackpad;Pointer;Click;Tap;Double;Button;Trackball;触摸板;指针;触摸;单击;双" --"击;按钮;轨迹球;" -+"Trackpad;Pointer;Click;Tap;Double;Button;Trackball;触摸板;指针;触摸;单击;双击;按钮;轨迹球;" - - #: ../panels/mouse/gnome-mouse-properties.ui.h:1 - msgid "General" -@@ -1953,26 +1932,26 @@ - - #. TRANSLATORS: this is to disable the radio hardware in the - #. * network panel --#: ../panels/network/cc-network-panel.c:366 -+#: ../panels/network/cc-network-panel.c:369 - msgid "Air_plane Mode" - msgstr "飞行模式(_P)" - --#: ../panels/network/cc-network-panel.c:974 -+#: ../panels/network/cc-network-panel.c:978 - msgid "Network proxy" - msgstr "网络代理" - - #. Translators: this is the title of the connection details - #. * window for vpn connections, it is also used to display - #. * vpn connections in the device list. --#. --#: ../panels/network/cc-network-panel.c:1153 ../panels/network/net-vpn.c:278 -+#. -+#: ../panels/network/cc-network-panel.c:1155 ../panels/network/net-vpn.c:278 - #: ../panels/network/net-vpn.c:431 - #, c-format - msgid "%s VPN" - msgstr "%s VPN" - - #. TRANSLATORS: the user is running a NM that is not API compatible --#: ../panels/network/cc-network-panel.c:1298 -+#: ../panels/network/cc-network-panel.c:1302 - msgid "The system network services are not compatible with this version." - msgstr "系统的网络服务与此版本的网络管理器不兼容。" - -@@ -2134,7 +2113,7 @@ - #: ../panels/network/connection-editor/ce-page-ip4.c:465 - #: ../panels/network/connection-editor/ce-page-ip6.c:205 - #: ../panels/network/connection-editor/ce-page-ip6.c:473 --#: ../panels/network/network-vpn.ui.h:3 -+#: ../panels/network/network-vpn.ui.h:2 - msgid "Gateway" - msgstr "网关" - -@@ -2186,7 +2165,7 @@ - msgid "Link-Local Only" - msgstr "仅本地连接" - --#: ../panels/network/connection-editor/ce-page-ip4.c:953 -+#: ../panels/network/connection-editor/ce-page-ip4.c:967 - #: ../panels/network/network-wifi.ui.h:48 - msgid "IPv4" - msgstr "IPv4" -@@ -2208,7 +2187,7 @@ - msgid "Automatic, DHCP only" - msgstr "自动,仅 DHCP" - --#: ../panels/network/connection-editor/ce-page-ip6.c:919 -+#: ../panels/network/connection-editor/ce-page-ip6.c:937 - #: ../panels/network/network-wifi.ui.h:49 - msgid "IPv6" - msgstr "IPv6" -@@ -2376,7 +2355,7 @@ - msgstr "防火墙区域(_Z)" - - #: ../panels/network/connection-editor/firewall-helpers.c:48 --#: ../panels/network/connection-editor/firewall-helpers.c:112 -+#: ../panels/network/connection-editor/firewall-helpers.c:113 - msgctxt "Firewall zone" - msgid "Default" - msgstr "默认" -@@ -2432,7 +2411,6 @@ - msgstr "无配置" - - #: ../panels/network/connection-editor/net-connection-editor.c:577 --#: ../panels/network/network.ui.h:1 ../panels/network/network-vpn.ui.h:1 - msgid "VPN" - msgstr "VPN" - -@@ -2503,8 +2481,7 @@ - "connection information\n" - "\n" - "Error: %s." --msgstr "" --"文件“%s”无法读取或者不包含可以识别的 VPN 连接信息\n" -+msgstr "文件“%s”无法读取或者不包含可以识别的 VPN 连接信息\n" - "\n" - "错误:%s。" - -@@ -2513,7 +2490,7 @@ - msgstr "选择要导入的文件" - - #: ../panels/network/connection-editor/vpn-helpers.c:246 --#: ../panels/printers/cc-printers-panel.c:1948 -+#: ../panels/printers/cc-printers-panel.c:1950 - #: ../panels/sharing/cc-sharing-panel.c:492 - #: ../panels/user-accounts/um-photo-dialog.c:223 - msgid "_Open" -@@ -2539,12 +2516,10 @@ - - #: ../panels/network/connection-editor/vpn-helpers.c:336 - #, c-format --msgid "" --"The VPN connection '%s' could not be exported to %s.\n" -+msgid "The VPN connection '%s' could not be exported to %s.\n" - "\n" - "Error: %s." --msgstr "" --"无法导出 VPN 连接“%s”到 %s。\n" -+msgstr "无法导出 VPN 连接“%s”到 %s。\n" - "\n" - "错误:%s。" - -@@ -2587,12 +2562,11 @@ - #. Translators: those are keywords for the network control-center panel - #: ../panels/network/gnome-network-panel.desktop.in.in.h:4 - msgid "" --"Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;" --"vlan;bridge;bond;DNS;" -+"Network;Wireless;Wi-" -+"Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;vlan;bridge;bond;DNS;" - msgstr "" --"Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;" --"vlan;bridge;bond;DNS;网络;无线;无线保真;无线;互联网协议;局域网;代理;广域网;宽" --"带;调制解调器;蓝牙;虚拟专用网;虚拟局域网;桥接;绑定;域名系统;" -+"Network;Wireless;Wi-" -+"Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;vlan;bridge;bond;DNS;网络;无线;无线保真;无线;互联网协议;局域网;代理;广域网;宽带;调制解调器;蓝牙;虚拟专用网;虚拟局域网;桥接;绑定;域名系统;" - - #: ../panels/network/net-device-bond.c:77 - msgid "Bond slaves" -@@ -2639,7 +2613,7 @@ - #. * details window for ethernet, if there is only a single - #. * profile. It is also used to display ethernet in the - #. * device list. --#. -+#. - #: ../panels/network/net-device-ethernet.c:288 - #: ../panels/network/network-ethernet.ui.h:1 - #: ../panels/network/network-simple.ui.h:1 -@@ -2651,7 +2625,7 @@ - #: ../panels/network/network-ethernet.ui.h:3 - #: ../panels/network/network-mobile.ui.h:8 - #: ../panels/network/network-simple.ui.h:8 --#: ../panels/network/network-vpn.ui.h:8 -+#: ../panels/network/network-vpn.ui.h:7 - msgid "Options…" - msgstr "选项…" - -@@ -2714,7 +2688,7 @@ - - #: ../panels/network/net-device-wifi.c:1749 - #: ../panels/region/input-options.ui.h:2 ../panels/wacom/button-mapping.ui.h:2 --#: ../panels/wacom/cc-wacom-page.c:533 -+#: ../panels/wacom/cc-wacom-page.c:525 - #: ../panels/wacom/gnome-wacom-properties.ui.h:4 - msgid "_Close" - msgstr "关闭(_C)" -@@ -2755,17 +2729,17 @@ - msgid "Provider" - msgstr "提供商" - --#: ../panels/network/network-proxy.ui.h:1 ../panels/network/network.ui.h:2 -+#: ../panels/network/network-proxy.ui.h:1 - msgctxt "proxy method" - msgid "None" - msgstr "无" - --#: ../panels/network/network-proxy.ui.h:2 ../panels/network/network.ui.h:3 -+#: ../panels/network/network-proxy.ui.h:2 - msgctxt "proxy method" - msgid "Manual" - msgstr "手动" - --#: ../panels/network/network-proxy.ui.h:3 ../panels/network/network.ui.h:4 -+#: ../panels/network/network-proxy.ui.h:3 - msgctxt "proxy method" - msgid "Automatic" - msgstr "自动" -@@ -2818,32 +2792,32 @@ - msgid "Turn device off" - msgstr "设备关闭" - --#: ../panels/network/network.ui.h:5 -+#: ../panels/network/network.ui.h:1 - msgid "Add Device" - msgstr "添加设备" - --#: ../panels/network/network.ui.h:6 -+#: ../panels/network/network.ui.h:2 - msgid "Remove Device" - msgstr "移除设备" - --#: ../panels/network/network-vpn.ui.h:2 -+#: ../panels/network/network-vpn.ui.h:1 - msgid "VPN Type" - msgstr "VPN 类型" - --#: ../panels/network/network-vpn.ui.h:4 -+#: ../panels/network/network-vpn.ui.h:3 - msgid "Group Name" - msgstr "组名称" - --#: ../panels/network/network-vpn.ui.h:5 -+#: ../panels/network/network-vpn.ui.h:4 - msgid "Group Password" - msgstr "组密码" - --#: ../panels/network/network-vpn.ui.h:6 -+#: ../panels/network/network-vpn.ui.h:5 - #: ../panels/printers/authentication-dialog.ui.h:4 - msgid "Username" - msgstr "用户名" - --#: ../panels/network/network-vpn.ui.h:7 -+#: ../panels/network/network-vpn.ui.h:6 - msgid "Turn VPN connection off" - msgstr "关闭 VPN 连接" - -@@ -3276,9 +3250,7 @@ - "Not using a Certificate Authority (CA) certificate can result in connections " - "to insecure, rogue Wi-Fi networks. Would you like to choose a Certificate " - "Authority certificate?" --msgstr "" --"不使用认证机构(CA)认证可能会造成连接不安全,危害 Wi-Fi 网络。您要选择一个认证" --"机构进行认证吗?" -+msgstr "不使用认证机构(CA)认证可能会造成连接不安全,危害 Wi-Fi 网络。您要选择一个认证机构进行认证吗?" - - #: ../panels/network/wireless-security/eap-method.c:281 - msgid "Ignore" -@@ -3410,8 +3382,7 @@ - "\n" - "(You can password-protect your private key with openssl)" - msgstr "" --"选择的私钥似乎没有密码进行保护。这可能会让您的私有证书被攻破。请选择一个有密" --"码保护的私钥。\n" -+"选择的私钥似乎没有密码进行保护。这可能会让您的私有证书被攻破。请选择一个有密码保护的私钥。\n" - "\n" - "(您可以使用 openssl 来对私钥进行密码保护)" - -@@ -3559,7 +3530,7 @@ - msgstr "在锁定屏幕中显示细节" - - #: ../panels/notifications/cc-notifications-panel.c:185 --#: ../panels/power/cc-power-panel.c:1690 ../panels/power/cc-power-panel.c:1697 -+#: ../panels/power/cc-power-panel.c:1710 ../panels/power/cc-power-panel.c:1717 - #: ../panels/privacy/cc-privacy-panel.c:84 - #: ../panels/privacy/cc-privacy-panel.c:124 - #: ../panels/universal-access/cc-ua-panel.c:257 -@@ -3579,8 +3550,7 @@ - #. Translators: those are keywords for the notifications control-center panel - #: ../panels/notifications/gnome-notifications-panel.desktop.in.in.h:4 - msgid "Notifications;Banner;Message;Tray;Popup;" --msgstr "" --"Notifications;Banner;Message;Tray;Popup;通知;横幅;条幅;黑条;消息;托盘;弹出;" -+msgstr "Notifications;Banner;Message;Tray;Popup;通知;横幅;条幅;黑条;消息;托盘;弹出;" - - #: ../panels/notifications/notifications.ui.h:1 - msgid "Show Pop Up Banners" -@@ -3664,12 +3634,9 @@ - #. For ReadItLater and Pocket, see http://en.wikipedia.org/wiki/Pocket_(application) - #: ../panels/online-accounts/gnome-online-accounts-panel.desktop.in.in.h:4 - msgid "" --"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;" --"Kerberos;IMAP;SMTP;Pocket;ReadItLater;" -+"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;Kerberos;IMAP;SMTP;Pocket;ReadItLater;" - msgstr "" --"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;" --"Kerberos;IMAP;SMTP;Pocket;ReadItLater;谷歌;脸谱;脸书;推特;雅虎;微博;网络;在" --"线;聊天;日历;邮件;联系人;云存储;稍后阅读;" -+"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;Kerberos;IMAP;SMTP;Pocket;ReadItLater;谷歌;脸谱;脸书;推特;雅虎;微博;网络;在线;聊天;日历;邮件;联系人;云存储;稍后阅读;" - - #: ../panels/online-accounts/online-accounts.ui.h:1 - msgid "No online accounts configured" -@@ -3688,20 +3655,19 @@ - msgid "" - "Adding an account allows your applications to access it for documents, mail, " - "contacts, calendar, chat and more." --msgstr "" --"添加一个账户,让您的应用程序访问账户的文档、邮件、联系人、日历、聊天等等。" -+msgstr "添加一个账户,让您的应用程序访问账户的文档、邮件、联系人、日历、聊天等等。" - --#: ../panels/power/cc-power-panel.c:183 -+#: ../panels/power/cc-power-panel.c:192 - msgid "Unknown time" - msgstr "未知时间" - --#: ../panels/power/cc-power-panel.c:189 -+#: ../panels/power/cc-power-panel.c:198 - #, c-format - msgid "%i minute" - msgid_plural "%i minutes" - msgstr[0] "%i 分钟" - --#: ../panels/power/cc-power-panel.c:201 -+#: ../panels/power/cc-power-panel.c:210 - #, c-format - msgid "%i hour" - msgid_plural "%i hours" -@@ -3709,224 +3675,224 @@ - - #. TRANSLATOR: "%i %s %i %s" are "%i hours %i minutes" - #. * Swap order with "%2$s %2$i %1$s %1$i if needed --#: ../panels/power/cc-power-panel.c:209 -+#: ../panels/power/cc-power-panel.c:218 - #, c-format - msgid "%i %s %i %s" - msgstr "%i %s %i %s" - --#: ../panels/power/cc-power-panel.c:210 -+#: ../panels/power/cc-power-panel.c:219 - msgid "hour" - msgid_plural "hours" - msgstr[0] "时" - --#: ../panels/power/cc-power-panel.c:211 -+#: ../panels/power/cc-power-panel.c:220 - msgid "minute" - msgid_plural "minutes" - msgstr[0] "分" - - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" --#: ../panels/power/cc-power-panel.c:230 -+#: ../panels/power/cc-power-panel.c:239 - #, c-format - msgid "%s until fully charged" - msgstr "%s 后充满" - - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" --#: ../panels/power/cc-power-panel.c:237 -+#: ../panels/power/cc-power-panel.c:246 - #, c-format - msgid "Caution: %s remaining" - msgstr "注意:剩余 %s" - - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" --#: ../panels/power/cc-power-panel.c:242 -+#: ../panels/power/cc-power-panel.c:251 - #, c-format - msgid "%s remaining" - msgstr "剩余 %s" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:247 ../panels/power/cc-power-panel.c:275 -+#: ../panels/power/cc-power-panel.c:256 ../panels/power/cc-power-panel.c:284 - msgid "Fully charged" - msgstr "已充满" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:251 ../panels/power/cc-power-panel.c:279 -+#: ../panels/power/cc-power-panel.c:260 ../panels/power/cc-power-panel.c:288 - msgid "Empty" - msgstr "电池已空" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:266 -+#: ../panels/power/cc-power-panel.c:275 - msgid "Charging" - msgstr "正在充电" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:271 -+#: ../panels/power/cc-power-panel.c:280 - msgid "Discharging" - msgstr "正在放电" - --#: ../panels/power/cc-power-panel.c:396 -+#: ../panels/power/cc-power-panel.c:405 - msgctxt "Battery name" - msgid "Main" - msgstr "主" - --#: ../panels/power/cc-power-panel.c:398 -+#: ../panels/power/cc-power-panel.c:407 - msgctxt "Battery name" - msgid "Extra" - msgstr "附加" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:470 -+#: ../panels/power/cc-power-panel.c:479 - msgid "Wireless mouse" - msgstr "无线鼠标" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:473 -+#: ../panels/power/cc-power-panel.c:482 - msgid "Wireless keyboard" - msgstr "无线键盘" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:476 -+#: ../panels/power/cc-power-panel.c:485 - msgid "Uninterruptible power supply" - msgstr "不间断电源(UPS)" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:479 -+#: ../panels/power/cc-power-panel.c:488 - msgid "Personal digital assistant" - msgstr "个人数字助理(PDA)" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:482 -+#: ../panels/power/cc-power-panel.c:491 - msgid "Cellphone" - msgstr "手机" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:485 -+#: ../panels/power/cc-power-panel.c:494 - msgid "Media player" - msgstr "媒体播放器" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:488 -+#: ../panels/power/cc-power-panel.c:497 - msgid "Tablet" - msgstr "手写板" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:491 -+#: ../panels/power/cc-power-panel.c:500 - msgid "Computer" - msgstr "计算机" - - #. TRANSLATORS: secondary battery, misc --#: ../panels/power/cc-power-panel.c:494 ../panels/power/cc-power-panel.c:717 --#: ../panels/power/cc-power-panel.c:2019 -+#: ../panels/power/cc-power-panel.c:503 ../panels/power/cc-power-panel.c:726 -+#: ../panels/power/cc-power-panel.c:2046 - msgid "Battery" - msgstr "电池" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:540 -+#: ../panels/power/cc-power-panel.c:549 - msgctxt "Battery power" - msgid "Charging" - msgstr "正在充电" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:547 -+#: ../panels/power/cc-power-panel.c:556 - msgctxt "Battery power" - msgid "Caution" - msgstr "警告" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:552 -+#: ../panels/power/cc-power-panel.c:561 - msgctxt "Battery power" - msgid "Low" - msgstr "低" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:557 -+#: ../panels/power/cc-power-panel.c:566 - msgctxt "Battery power" - msgid "Good" - msgstr "充足" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:562 -+#: ../panels/power/cc-power-panel.c:571 - msgctxt "Battery power" - msgid "Fully charged" - msgstr "已充满" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:566 -+#: ../panels/power/cc-power-panel.c:575 - msgctxt "Battery power" - msgid "Empty" - msgstr "空" - --#: ../panels/power/cc-power-panel.c:715 -+#: ../panels/power/cc-power-panel.c:724 - msgid "Batteries" - msgstr "电池组" - --#: ../panels/power/cc-power-panel.c:1117 -+#: ../panels/power/cc-power-panel.c:1126 - msgid "When _idle" - msgstr "闲置时(_I)" - --#: ../panels/power/cc-power-panel.c:1445 -+#: ../panels/power/cc-power-panel.c:1454 - msgid "Power Saving" - msgstr "省电" - --#: ../panels/power/cc-power-panel.c:1473 -+#: ../panels/power/cc-power-panel.c:1489 - msgid "_Screen brightness" - msgstr "屏幕亮度(_S)" - --#: ../panels/power/cc-power-panel.c:1479 -+#: ../panels/power/cc-power-panel.c:1495 - msgid "_Keyboard brightness" - msgstr "键盘亮度(_K)" - --#: ../panels/power/cc-power-panel.c:1489 -+#: ../panels/power/cc-power-panel.c:1505 - msgid "_Dim screen when inactive" - msgstr "无操作时屏幕变暗(_D)" - --#: ../panels/power/cc-power-panel.c:1514 -+#: ../panels/power/cc-power-panel.c:1530 - msgid "_Blank screen" - msgstr "空白屏幕(_B)" - --#: ../panels/power/cc-power-panel.c:1551 -+#: ../panels/power/cc-power-panel.c:1567 - msgid "_Wi-Fi" - msgstr "_Wi-Fi" - --#: ../panels/power/cc-power-panel.c:1556 -+#: ../panels/power/cc-power-panel.c:1572 - msgid "Turns off wireless devices" - msgstr "关闭无线设备" - --#: ../panels/power/cc-power-panel.c:1581 -+#: ../panels/power/cc-power-panel.c:1597 - msgid "_Mobile broadband" - msgstr "移动宽带(_M)" - --#: ../panels/power/cc-power-panel.c:1586 -+#: ../panels/power/cc-power-panel.c:1602 - msgid "Turns off mobile broadband (3G, 4G, WiMax, etc.) devices" - msgstr "关闭移动宽带(3G、4G、WiMax 等)设备" - --#: ../panels/power/cc-power-panel.c:1635 -+#: ../panels/power/cc-power-panel.c:1652 - msgid "_Bluetooth" - msgstr "蓝牙(_B)" - --#: ../panels/power/cc-power-panel.c:1686 -+#: ../panels/power/cc-power-panel.c:1706 - msgid "When on battery power" - msgstr "电池供电时" - --#: ../panels/power/cc-power-panel.c:1688 -+#: ../panels/power/cc-power-panel.c:1708 - msgid "When plugged in" - msgstr "电源插入时" - --#: ../panels/power/cc-power-panel.c:1818 -+#: ../panels/power/cc-power-panel.c:1838 - msgid "Suspend & Power Off" - msgstr "挂起和关机" - --#: ../panels/power/cc-power-panel.c:1851 -+#: ../panels/power/cc-power-panel.c:1878 - msgid "_Automatic suspend" - msgstr "自动挂起(_A)" - --#: ../panels/power/cc-power-panel.c:1875 -+#: ../panels/power/cc-power-panel.c:1902 - msgid "When battery power is _critical" - msgstr "电量严重不足时(_C)" - --#: ../panels/power/cc-power-panel.c:1930 -+#: ../panels/power/cc-power-panel.c:1957 - msgid "Power Off" - msgstr "电源关闭" - --#: ../panels/power/cc-power-panel.c:2066 -+#: ../panels/power/cc-power-panel.c:2100 - msgid "Devices" - msgstr "设备" - -@@ -3943,8 +3909,7 @@ - msgid "" - "Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;" - msgstr "" --"Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;" --"电源;睡眠;挂起;休眠;电池;亮度;暗;空白;显示器;空闲;" -+"Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;电源;睡眠;挂起;休眠;电池;亮度;暗;空白;显示器;空闲;" - - #: ../panels/power/power.ui.h:1 - msgid "Hibernate" -@@ -4185,44 +4150,44 @@ - msgstr[0] "%u 项活动任务" - - #. Translators: Addition of the new printer failed. --#: ../panels/printers/cc-printers-panel.c:1777 -+#: ../panels/printers/cc-printers-panel.c:1779 - msgid "Failed to add new printer." - msgstr "添加新打印机失败。" - --#: ../panels/printers/cc-printers-panel.c:1944 -+#: ../panels/printers/cc-printers-panel.c:1946 - msgid "Select PPD File" - msgstr "选择 PPD 文件" - --#: ../panels/printers/cc-printers-panel.c:1953 -+#: ../panels/printers/cc-printers-panel.c:1955 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "PostScript 打印机描述文件(*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD.GZ)" - --#: ../panels/printers/cc-printers-panel.c:2258 -+#: ../panels/printers/cc-printers-panel.c:2260 - msgid "No suitable driver found" - msgstr "未找到合适的驱动" - --#: ../panels/printers/cc-printers-panel.c:2327 -+#: ../panels/printers/cc-printers-panel.c:2329 - msgid "Searching for preferred drivers…" - msgstr "正在搜索首选的驱动…" - --#: ../panels/printers/cc-printers-panel.c:2342 -+#: ../panels/printers/cc-printers-panel.c:2344 - msgid "Select from database…" - msgstr "从数据库选择…" - --#: ../panels/printers/cc-printers-panel.c:2351 -+#: ../panels/printers/cc-printers-panel.c:2353 - msgid "Provide PPD File…" - msgstr "提供 PPD 文件…" - - #. Translators: Name of job which makes printer to print test page --#: ../panels/printers/cc-printers-panel.c:2502 --#: ../panels/printers/cc-printers-panel.c:2525 -+#: ../panels/printers/cc-printers-panel.c:2504 -+#: ../panels/printers/cc-printers-panel.c:2527 - msgid "Test page" - msgstr "测试页" - - #. Translators: The XML file containing user interface can not be loaded --#: ../panels/printers/cc-printers-panel.c:2933 -+#: ../panels/printers/cc-printers-panel.c:2935 - #, c-format - msgid "Could not load ui: %s" - msgstr "无法装入界面:%s" -@@ -4238,9 +4203,7 @@ - #. Translators: those are keywords for the printing control-center panel - #: ../panels/printers/gnome-printers-panel.desktop.in.in.h:4 - msgid "Printer;Queue;Print;Paper;Ink;Toner;" --msgstr "" --"Printer;Queue;Print;Paper;Ink;Toner;打印机;队列;打印;纸张;墨水;墨粉;硒鼓;墨" --"盒;" -+msgstr "Printer;Queue;Print;Paper;Ink;Toner;打印机;队列;打印;纸张;墨水;墨粉;硒鼓;墨盒;" - - #. Translators: This dialog contains list of active print jobs of the selected printer - #: ../panels/printers/jobs-dialog.ui.h:2 -@@ -4638,8 +4601,7 @@ - - #. Translators: The CUPS server is not running (we can not connect to it). - #: ../panels/printers/printers.ui.h:26 --msgid "" --"Sorry! The system printing service\n" -+msgid "Sorry! The system printing service\n" - "doesn't seem to be available." - msgstr "对不起,系统打印服务似乎不可用。" - -@@ -4694,11 +4656,9 @@ - #. Translators: those are keywords for the privacy control-center panel - #: ../panels/privacy/gnome-privacy-panel.desktop.in.in.h:4 - msgid "" --"screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;" --"network;identity;" -+"screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;network;identity;" - msgstr "" --"screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;" --"network;identity;屏幕;锁定;诊断;崩溃;私有;最近;临时;索引;名称;网络;认证;" -+"screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;network;identity;屏幕;锁定;诊断;崩溃;私有;最近;临时;索引;名称;网络;认证;" - - #: ../panels/privacy/privacy.ui.h:1 - msgid "Screen Turns Off" -@@ -4803,14 +4763,13 @@ - #: ../panels/privacy/privacy.ui.h:37 - msgid "" - "Sending us information about which software you use helps us provide you " --"with more accurate recommendations. It also helps us to improve our " --"software.\n" -+"with more accurate recommendations. It also helps us to improve our software." -+"\n" - "\n" - "All the information we collect is made anonymous, and we will never share " - "your data with third parties." - msgstr "" --"向我们发送使用软件的情况有助于我们向您提供更准确的推荐,也有助于改进我们的软" --"件。\n" -+"向我们发送使用软件的情况有助于我们向您提供更准确的推荐,也有助于改进我们的软件。\n" - "\n" - "我们收集的信息都是匿名的,并且不会将您的数据透露给他人。" - -@@ -4823,14 +4782,12 @@ - msgstr "隐私政策" - - #: ../panels/privacy/privacy.ui.h:42 --#, fuzzy --#| msgid "Location: %s" - msgid "_Location Services" --msgstr "位置:%s" -+msgstr "位置服务(_L)" - - #: ../panels/privacy/privacy.ui.h:43 - msgid "Used to determine your geographical location" --msgstr "" -+msgstr "用于确定您的地理位置" - - #: ../panels/region/cc-format-chooser.c:119 - msgctxt "measurement format" -@@ -4850,34 +4807,34 @@ - msgid "No input sources found" - msgstr "未找到输入源" - --#: ../panels/region/cc-input-chooser.c:1076 -+#: ../panels/region/cc-input-chooser.c:1084 - msgctxt "Input Source" - msgid "Other" - msgstr "其他输入源" - --#: ../panels/region/cc-region-panel.c:239 --#: ../panels/user-accounts/um-user-panel.c:892 -+#: ../panels/region/cc-region-panel.c:243 -+#: ../panels/user-accounts/um-user-panel.c:1113 - msgid "Your session needs to be restarted for changes to take effect" - msgstr "修改需要重启会话才能生效" - --#: ../panels/region/cc-region-panel.c:243 --#: ../panels/user-accounts/um-user-panel.c:896 -+#: ../panels/region/cc-region-panel.c:247 -+#: ../panels/user-accounts/um-user-panel.c:1117 - msgid "Restart Now" - msgstr "现在重启" - --#: ../panels/region/cc-region-panel.c:862 -+#: ../panels/region/cc-region-panel.c:867 - msgid "No input source selected" - msgstr "未选择输入源" - --#: ../panels/region/cc-region-panel.c:1092 -+#: ../panels/region/cc-region-panel.c:1097 - msgid "Sorry" - msgstr "抱歉" - --#: ../panels/region/cc-region-panel.c:1094 -+#: ../panels/region/cc-region-panel.c:1099 - msgid "Input methods can't be used on the login screen" - msgstr "输入法不能在登录屏幕使用" - --#: ../panels/region/cc-region-panel.c:1731 -+#: ../panels/region/cc-region-panel.c:1739 - msgid "Login Screen" - msgstr "登录屏幕" - -@@ -5010,7 +4967,7 @@ - msgid "_OK" - msgstr "确定(_O)" - --#: ../panels/search/cc-search-panel.c:176 -+#: ../panels/search/cc-search-panel.c:177 - msgid "No applications found" - msgstr "未找到应用" - -@@ -5026,8 +4983,7 @@ - #. Translators: those are keywords for the search control-center panel - #: ../panels/search/gnome-search-panel.desktop.in.in.h:4 - msgid "Search;Find;Index;Hide;Privacy;Results;" --msgstr "" --"Search;Find;Index;Hide;Privacy;Results;搜索;查找;寻找;索引;隐藏;隐私;结果;" -+msgstr "Search;Find;Index;Hide;Privacy;Results;搜索;查找;寻找;索引;隐藏;隐私;结果;" - - #: ../panels/search/search-locations-dialog.ui.h:1 - msgid "Search Locations" -@@ -5070,7 +5026,7 @@ - msgid "Choose a Folder" - msgstr "选择文件夹" - --#: ../panels/sharing/cc-sharing-panel.c:916 -+#: ../panels/sharing/cc-sharing-panel.c:917 - msgid "Copy" - msgstr "复制" - -@@ -5085,12 +5041,9 @@ - #. Translators: those are keywords for the sharing control-center panel - #: ../panels/sharing/gnome-sharing-panel.desktop.in.in.h:4 - msgid "" --"share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;" --"pictures;photos;movies;server;renderer;" -+"share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;pictures;photos;movies;server;renderer;" - msgstr "" --"share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;" --"pictures;photos;movies;server;renderer;共享;主机;名称;远程;桌面;蓝牙;媒体;音" --"频;视频;图片;照片;电影;服务器;渲染;" -+"share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;pictures;photos;movies;server;renderer;共享;主机;名称;远程;桌面;蓝牙;媒体;音频;视频;图片;照片;电影;服务器;渲染;" - - #: ../panels/sharing/org.gnome.controlcenter.remote-login-helper.policy.in.in.h:1 - msgid "Enable or disable remote login" -@@ -5101,13 +5054,13 @@ - msgstr "启用或禁用远程登录需要认证" - - #. Label --#: ../panels/sharing/cc-sharing-networks.c:299 -+#: ../panels/sharing/cc-sharing-networks.c:303 - msgid "No networks selected for sharing" - msgstr "未选择要共享的网络" - --#. -+#. - #. * vim: sw=2 ts=8 cindent noai bs=2 --#. -+#. - #: ../panels/sharing/networks.ui.h:1 - msgid "Networks" - msgstr "网络" -@@ -5159,9 +5112,7 @@ - msgid "" - "Personal File Sharing allows you to share your Public folder with others on " - "your current network using: dav://%s" --msgstr "" --"个人网络共享允许您与当前网络中的其他人共享自己的共享文件夹,使用地址:dav://%s" -+msgstr "个人网络共享允许您与当前网络中的其他人共享自己的共享文件夹,使用地址:dav://%s" - - #: ../panels/sharing/sharing.ui.h:13 - msgid "Require Password" -@@ -5172,8 +5123,7 @@ - msgid "" - "Allow remote users to connect using the Secure Shell command:\n" - "ssh %s" --msgstr "" --"允许远程用户使用安全 Shell 命令连接:\n" -+msgstr "允许远程用户使用安全 Shell 命令连接:\n" - "ssh %s" - - #: ../panels/sharing/sharing.ui.h:19 -@@ -5227,8 +5177,7 @@ - #: ../panels/sound/data/gnome-sound-panel.desktop.in.in.h:4 - msgid "Card;Microphone;Volume;Fade;Balance;Bluetooth;Headset;Audio;" - msgstr "" --"声卡;麦克风;话筒;音量;淡入淡出;均衡;蓝牙;耳机;耳麦;Card;Microphone;Volume;" --"Fade;Balance;Bluetooth;Headset;" -+"声卡;麦克风;话筒;音量;淡入淡出;均衡;蓝牙;耳机;耳麦;Card;Microphone;Volume;Fade;Balance;Bluetooth;Headset;" - - #. Translators: This is the name of an audio file that sounds like the bark of a dog. - #. You might want to translate it into the equivalent words of your language. -@@ -5339,65 +5288,65 @@ - msgid "Peak detect" - msgstr "峰值检测" - --#: ../panels/sound/gvc-mixer-dialog.c:1509 --#: ../panels/sound/gvc-sound-theme-chooser.c:594 -+#: ../panels/sound/gvc-mixer-dialog.c:1516 -+#: ../panels/sound/gvc-sound-theme-chooser.c:564 - msgid "Name" - msgstr "名称" - --#: ../panels/sound/gvc-mixer-dialog.c:1528 -+#: ../panels/sound/gvc-mixer-dialog.c:1535 - msgid "Device" - msgstr "设备" - --#: ../panels/sound/gvc-mixer-dialog.c:1591 -+#: ../panels/sound/gvc-mixer-dialog.c:1598 - #, c-format - msgid "Speaker Testing for %s" - msgstr "%s 扬声器测试" - --#: ../panels/sound/gvc-mixer-dialog.c:1649 -+#: ../panels/sound/gvc-mixer-dialog.c:1656 - msgid "_Output volume:" - msgstr "输出音量(_O):" - --#: ../panels/sound/gvc-mixer-dialog.c:1663 -+#: ../panels/sound/gvc-mixer-dialog.c:1670 - msgid "Output" - msgstr "输出" - --#: ../panels/sound/gvc-mixer-dialog.c:1668 -+#: ../panels/sound/gvc-mixer-dialog.c:1675 - msgid "C_hoose a device for sound output:" - msgstr "选择音频输出设备(_H):" - --#: ../panels/sound/gvc-mixer-dialog.c:1693 -+#: ../panels/sound/gvc-mixer-dialog.c:1700 - msgid "Settings for the selected device:" - msgstr "选中设备的设置:" - --#: ../panels/sound/gvc-mixer-dialog.c:1704 -+#: ../panels/sound/gvc-mixer-dialog.c:1711 - msgid "Input" - msgstr "输入" - --#: ../panels/sound/gvc-mixer-dialog.c:1711 -+#: ../panels/sound/gvc-mixer-dialog.c:1718 - msgid "_Input volume:" - msgstr "输入音量(_I):" - --#: ../panels/sound/gvc-mixer-dialog.c:1734 -+#: ../panels/sound/gvc-mixer-dialog.c:1741 - msgid "Input level:" - msgstr "输入等级:" - --#: ../panels/sound/gvc-mixer-dialog.c:1762 -+#: ../panels/sound/gvc-mixer-dialog.c:1769 - msgid "C_hoose a device for sound input:" - msgstr "选择音频输入设备(_H):" - --#: ../panels/sound/gvc-mixer-dialog.c:1789 -+#: ../panels/sound/gvc-mixer-dialog.c:1796 - msgid "Sound Effects" - msgstr "声音效果" - --#: ../panels/sound/gvc-mixer-dialog.c:1796 -+#: ../panels/sound/gvc-mixer-dialog.c:1803 - msgid "_Alert volume:" - msgstr "警告音量(_A):" - --#: ../panels/sound/gvc-mixer-dialog.c:1809 -+#: ../panels/sound/gvc-mixer-dialog.c:1816 - msgid "Applications" - msgstr "应用程序" - --#: ../panels/sound/gvc-mixer-dialog.c:1813 -+#: ../panels/sound/gvc-mixer-dialog.c:1820 - msgid "No application is currently playing or recording audio." - msgstr "没有程序正在播放或录制音频。" - -@@ -5417,15 +5366,15 @@ - msgid "Testing event sound" - msgstr "测试事件声音" - --#: ../panels/sound/gvc-sound-theme-chooser.c:584 -+#: ../panels/sound/gvc-sound-theme-chooser.c:554 - msgid "Default" - msgstr "默认" - --#: ../panels/sound/gvc-sound-theme-chooser.c:585 -+#: ../panels/sound/gvc-sound-theme-chooser.c:555 - msgid "From theme" - msgstr "来自主题" - --#: ../panels/sound/gvc-sound-theme-chooser.c:769 -+#: ../panels/sound/gvc-sound-theme-chooser.c:739 - msgid "C_hoose an alert sound:" - msgstr "选择警告声音(_H):" - -@@ -5453,12 +5402,11 @@ - #. Translators: those are keywords for the universal access control-center panel - #: ../panels/universal-access/gnome-universal-access-panel.desktop.in.in.h:4 - msgid "" --"Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;" --"AccessX;Sticky;Keys;Slow;Bounce;Mouse;" -+"Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;AccessX;Sticky;Keys;Slow;Bounce;Mouse;" - msgstr "" --"Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen Reader;text;font;size;" --"AccessX;Sticky Keys;Slow Keys;Bounce Keys;Mouse Keys;键盘;辅助功能;对比度;缩" --"放;屏幕读取器;文本;字体;大小;粘滞键;慢速键;回弹键;鼠标;" -+"Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen " -+"Reader;text;font;size;AccessX;Sticky Keys;Slow Keys;Bounce Keys;Mouse " -+"Keys;键盘;辅助功能;对比度;缩放;屏幕读取器;文本;字体;大小;粘滞键;慢速键;回弹键;鼠标;" - - #: ../panels/universal-access/uap.ui.h:1 - msgid "_Always Show Universal Access Menu" -@@ -5573,8 +5521,8 @@ - msgstr "若同时按下两个键则禁用(_D)" - - #: ../panels/universal-access/uap.ui.h:31 --msgid "Beep when a _modifer key is pressed" --msgstr "当按下修饰键时发出蜂鸣声(_M)" -+msgid "Beep when a _modifier key is pressed" -+msgstr "按修饰键时发出哔的一声(_m)" - - #: ../panels/universal-access/uap.ui.h:32 - msgid "S_low Keys" -@@ -5934,11 +5882,9 @@ - msgstr "域(_D)" - - #: ../panels/user-accounts/data/account-dialog.ui.h:13 --msgid "" --"Go online to add\n" -+msgid "Go online to add\n" - "enterprise login accounts." --msgstr "" --"请联网以添加\n" -+msgstr "请联网以添加\n" - "企业登录帐号。" - - #: ../panels/user-accounts/data/account-dialog.ui.h:15 -@@ -5964,8 +5910,7 @@ - "In order to use enterprise logins, this computer needs to be\n" - "enrolled in the domain. Please have your network administrator\n" - "type their domain password here." --msgstr "" --"要想使用企业登录,需要在域中\n" -+msgstr "要想使用企业登录,需要在域中\n" - "注册该计算机。请网络管理员在此\n" - "输入域密码。" - -@@ -6010,7 +5955,7 @@ - msgstr "右手小指" - - #: ../panels/user-accounts/data/account-fingerprint.ui.h:9 --#: ../panels/user-accounts/um-fingerprint-dialog.c:687 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:689 - msgid "Enable Fingerprint Login" - msgstr "启用指纹登录" - -@@ -6043,9 +5988,7 @@ - #. Translators: those are keywords for the user accounts control-center panel - #: ../panels/user-accounts/data/gnome-user-accounts-panel.desktop.in.in.h:4 - msgid "Login;Name;Fingerprint;Avatar;Logo;Face;Password;" --msgstr "" --"登录;名称;指纹;头像;标志;密码;Login;Name;Fingerprint;Avatar;Logo;Face;" --"Password;" -+msgstr "登录;名称;指纹;头像;标志;密码;Login;Name;Fingerprint;Avatar;Logo;Face;Password;" - - #: ../panels/user-accounts/data/history-dialog.ui.h:1 - msgid "Login History" -@@ -6315,19 +6258,15 @@ - msgstr "加入域失败" - - #: ../panels/user-accounts/um-account-dialog.c:1035 --msgid "" --"That login name didn't work.\n" -+msgid "That login name didn't work.\n" - "Please try again." --msgstr "" --"该登录名不能用。\n" -+msgstr "该登录名不能用。\n" - "请重试。" - - #: ../panels/user-accounts/um-account-dialog.c:1042 --msgid "" --"That login password didn't work.\n" -+msgid "That login password didn't work.\n" - "Please try again." --msgstr "" --"登录密码不能用。\n" -+msgstr "登录密码不能用。\n" - "请重试。" - - #: ../panels/user-accounts/um-account-dialog.c:1050 -@@ -6369,15 +6308,15 @@ - "disabled?" - msgstr "您想要想删除已登记的指纹吗?这样做将禁用指纹登录。" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:444 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:446 - msgid "Done!" - msgstr "完成!" - - #. translators: - #. * The variable is the name of the device, for example: - #. * "Could you not access "Digital Persona U.are.U 4000/4000B" device --#: ../panels/user-accounts/um-fingerprint-dialog.c:505 --#: ../panels/user-accounts/um-fingerprint-dialog.c:547 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:507 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:549 - #, c-format - msgid "Could not access '%s' device" - msgstr "无法访问“%s”设备" -@@ -6385,16 +6324,16 @@ - #. translators: - #. * The variable is the name of the device, for example: - #. * "Could you not access "Digital Persona U.are.U 4000/4000B" device --#: ../panels/user-accounts/um-fingerprint-dialog.c:588 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:590 - #, c-format - msgid "Could not start finger capture on '%s' device" - msgstr "无法在“%s”设备上启动指纹采集" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:638 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:640 - msgid "Could not access any fingerprint readers" - msgstr "无法访问指纹读取器" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:639 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:641 - msgid "Please contact your system administrator for help." - msgstr "请联系系统管理员以寻求帮助。" - -@@ -6402,19 +6341,19 @@ - #. * The variable is the name of the device, for example: - #. * "To enable fingerprint login, you need to save one of your fingerprints, using the - #. * 'Digital Persona U.are.U 4000/4000B' device." --#. --#: ../panels/user-accounts/um-fingerprint-dialog.c:721 -+#. -+#: ../panels/user-accounts/um-fingerprint-dialog.c:723 - #, c-format - msgid "" - "To enable fingerprint login, you need to save one of your fingerprints, " - "using the '%s' device." --msgstr "要启用指纹登录,你需要使用“%s”设备来保存您的一个指纹。" -+msgstr "要启用指纹登录,您需要使用“%s”设备来保存您的一个指纹。" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:728 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:730 - msgid "Selecting finger" - msgstr "选择手指" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:729 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:731 - msgid "Enrolling fingerprints" - msgstr "加入指纹识别" - -@@ -6454,7 +6393,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/um-history-dialog.c:175 --#: ../panels/user-accounts/um-user-panel.c:631 -+#: ../panels/user-accounts/um-user-panel.c:844 - msgctxt "login date-time" - msgid "%k:%M" - msgstr "%k:%M" -@@ -6462,7 +6401,7 @@ - #. Translators: This indicates a login date-time. - #. The first %s is a date, and the second %s a time. - #: ../panels/user-accounts/um-history-dialog.c:178 --#: ../panels/user-accounts/um-user-panel.c:635 -+#: ../panels/user-accounts/um-user-panel.c:848 - #, c-format - msgctxt "login date-time" - msgid "%s, %s" -@@ -6537,110 +6476,119 @@ - msgid "Couldn't connect to the %s domain: %s" - msgstr "无法连接到 %s 域:%s" - --#: ../panels/user-accounts/um-user-panel.c:198 -+#: ../panels/user-accounts/um-user-panel.c:239 - msgid "Other Accounts" - msgstr "其他账户" - --#: ../panels/user-accounts/um-user-panel.c:417 -+#: ../panels/user-accounts/um-user-panel.c:453 - msgid "Failed to delete user" - msgstr "删除用户失败" - --#: ../panels/user-accounts/um-user-panel.c:482 -+#: ../panels/user-accounts/um-user-panel.c:513 -+#: ../panels/user-accounts/um-user-panel.c:569 -+#: ../panels/user-accounts/um-user-panel.c:621 -+msgid "Failed to revoke remotely managed user" -+msgstr "撤销远程管理的用户失败" -+ -+#: ../panels/user-accounts/um-user-panel.c:677 - msgid "You cannot delete your own account." - msgstr "您不能删除自己的账户。" - --#: ../panels/user-accounts/um-user-panel.c:491 -+#: ../panels/user-accounts/um-user-panel.c:686 - #, c-format - msgid "%s is still logged in" - msgstr "%s 仍在登录状态" - --#: ../panels/user-accounts/um-user-panel.c:495 -+#: ../panels/user-accounts/um-user-panel.c:690 - msgid "" - "Deleting a user while they are logged in can leave the system in an " - "inconsistent state." - msgstr "在用户已登录时删除账户可能导致系统处于不一致状态。" - --#: ../panels/user-accounts/um-user-panel.c:504 -+#: ../panels/user-accounts/um-user-panel.c:699 - #, c-format - msgid "Do you want to keep %s's files?" - msgstr "您想要保留 %s 的文件吗?" - --#: ../panels/user-accounts/um-user-panel.c:508 -+#: ../panels/user-accounts/um-user-panel.c:703 - msgid "" - "It is possible to keep the home directory, mail spool and temporary files " - "around when deleting a user account." - msgstr "删除用户时可以保留用户主目录、电子邮件目录和临时文件。" - --#: ../panels/user-accounts/um-user-panel.c:511 -+#: ../panels/user-accounts/um-user-panel.c:706 - msgid "_Delete Files" - msgstr "删除文件(_D)" - --#: ../panels/user-accounts/um-user-panel.c:512 -+#: ../panels/user-accounts/um-user-panel.c:707 - msgid "_Keep Files" - msgstr "保留文件(_K)" - --#: ../panels/user-accounts/um-user-panel.c:564 -+#: ../panels/user-accounts/um-user-panel.c:721 -+#, c-format -+msgid "Are you sure you want to permanently delete %s's account?" -+msgstr "您确定要永远删除 %s 的账户吗?" -+ -+#: ../panels/user-accounts/um-user-panel.c:725 -+msgid "_Delete" -+msgstr "删除(_D)" -+ -+#: ../panels/user-accounts/um-user-panel.c:777 - msgctxt "Password mode" - msgid "Account disabled" - msgstr "账户已禁用" - --#: ../panels/user-accounts/um-user-panel.c:572 -+#: ../panels/user-accounts/um-user-panel.c:785 - msgctxt "Password mode" - msgid "To be set at next login" - msgstr "下次登录时设置" - --#: ../panels/user-accounts/um-user-panel.c:575 -+#: ../panels/user-accounts/um-user-panel.c:788 - msgctxt "Password mode" - msgid "None" - msgstr "无" - --#: ../panels/user-accounts/um-user-panel.c:624 -+#: ../panels/user-accounts/um-user-panel.c:837 - msgid "Logged in" - msgstr "已登录" - --#: ../panels/user-accounts/um-user-panel.c:1071 -+#: ../panels/user-accounts/um-user-panel.c:1297 - msgid "Failed to contact the accounts service" - msgstr "联系账户服务失败" - --#: ../panels/user-accounts/um-user-panel.c:1073 -+#: ../panels/user-accounts/um-user-panel.c:1299 - msgid "Please make sure that the AccountService is installed and enabled." - msgstr "请确定 AccountService 已经正确安装并启用。" - --#: ../panels/user-accounts/um-user-panel.c:1114 --msgid "" --"To make changes,\n" -+#: ../panels/user-accounts/um-user-panel.c:1340 -+msgid "To make changes,\n" - "click the * icon first" --msgstr "" --"要进行更改,\n" -+msgstr "要进行更改,\n" - "请先点击 * 图标" - --#: ../panels/user-accounts/um-user-panel.c:1152 -+#: ../panels/user-accounts/um-user-panel.c:1378 - msgid "Create a user account" - msgstr "创建用户账户" - --#: ../panels/user-accounts/um-user-panel.c:1163 --#: ../panels/user-accounts/um-user-panel.c:1475 --msgid "" --"To create a user account,\n" -+#: ../panels/user-accounts/um-user-panel.c:1389 -+#: ../panels/user-accounts/um-user-panel.c:1702 -+msgid "To create a user account,\n" - "click the * icon first" --msgstr "" --"要创建用户账户,\n" -+msgstr "要创建用户账户,\n" - "请先点击 * 图标" - --#: ../panels/user-accounts/um-user-panel.c:1173 -+#: ../panels/user-accounts/um-user-panel.c:1399 - msgid "Delete the selected user account" - msgstr "删除选中的用户账户" - --#: ../panels/user-accounts/um-user-panel.c:1185 --#: ../panels/user-accounts/um-user-panel.c:1480 --msgid "" --"To delete the selected user account,\n" -+#: ../panels/user-accounts/um-user-panel.c:1411 -+#: ../panels/user-accounts/um-user-panel.c:1707 -+msgid "To delete the selected user account,\n" - "click the * icon first" --msgstr "" --"要删除选中的用户账户,\n" -+msgstr "要删除选中的用户账户,\n" - "请先点击 * 图标" - --#: ../panels/user-accounts/um-user-panel.c:1389 -+#: ../panels/user-accounts/um-user-panel.c:1616 - msgid "My Account" - msgstr "我的账户" - -@@ -6690,9 +6638,7 @@ - msgid "" - "To edit a shortcut, choose the \"Send Keystroke\" action, press the keyboard " - "shortcut button and hold down the new keys or press Backspace to clear." --msgstr "" --"要编辑快捷键,请选择“发送按键”动作,按下键盘快捷键,然后输入新按键组合,或按 " --"Backspace 清除。" -+msgstr "要编辑快捷键,请选择“发送按键”动作,按下键盘快捷键,然后输入新按键组合,或按 Backspace 清除。" - - #: ../panels/wacom/calibrator/calibrator-gui.c:83 - msgid "" -@@ -6753,11 +6699,11 @@ - msgid "%d of %d" - msgstr "%d/%d" - --#: ../panels/wacom/cc-wacom-page.c:530 -+#: ../panels/wacom/cc-wacom-page.c:522 - msgid "Display Mapping" - msgstr "显示映射" - --#: ../panels/wacom/cc-wacom-stylus-page.c:372 -+#: ../panels/wacom/cc-wacom-stylus-page.c:376 - msgid "Button" - msgstr "按键" - -@@ -7021,8 +6967,7 @@ - msgid "" - "%s\n" - "Run '%s --help' to see a full list of available command line options.\n" --msgstr "" --"%s\n" -+msgstr "%s\n" - "运行 “%s --help” 查看所有可用的命令行选项。\n" - - #: ../shell/cc-application.c:193 -@@ -7037,22 +6982,22 @@ - msgid "Quit" - msgstr "退出" - --#: ../shell/cc-window.c:61 ../shell/cc-window.c:1490 -+#: ../shell/cc-window.c:61 ../shell/cc-window.c:1493 - msgid "All Settings" - msgstr "全部设置" - - #. Add categories --#: ../shell/cc-window.c:876 -+#: ../shell/cc-window.c:879 - msgctxt "category" - msgid "Personal" - msgstr "个人" - --#: ../shell/cc-window.c:877 -+#: ../shell/cc-window.c:880 - msgctxt "category" - msgid "Hardware" - msgstr "硬件" - --#: ../shell/cc-window.c:878 -+#: ../shell/cc-window.c:881 - msgctxt "category" - msgid "System" - msgstr "系统" -@@ -7060,1641 +7005,3 @@ - #: ../shell/gnome-control-center.desktop.in.in.h:2 - msgid "Preferences;Settings;" - msgstr "Preferences;Settings;首选项;设置;" -- --#~ msgid "Immediately" --#~ msgstr "立即" -- --#~ msgid "Share Media On This Network" --#~ msgstr "在网络上共享媒体" -- --#~ msgid "Shared Folders" --#~ msgstr "共享文件夹" -- --#~ msgid "column" --#~ msgstr "列" -- --#~ msgid "Remove Folder" --#~ msgstr "移除文件夹" -- --#~ msgid "Share Public Folder On This Network" --#~ msgstr "在网络上共享公共文件夹" -- --#~ msgid "Flickr" --#~ msgstr "Flickr" -- --#~ msgid "Install Updates" --#~ msgstr "安装更新" -- --#~ msgid "System Up-To-Date" --#~ msgstr "系统已是最新" -- --#~ msgid "Search for network printers or filter result" --#~ msgstr "搜索网络打印机或过滤结果" -- --#~ msgid "_Default" --#~ msgstr "默认(_D)" -- --#~ msgid "Remote View" --#~ msgstr "远程查看" -- --#~ msgid "Approve All Connections" --#~ msgstr "允许所有连接" -- --#~ msgid "Set Up New Device" --#~ msgstr "设置新设备" -- --#~ msgid "Connection" --#~ msgstr "连接" -- --#~ msgid "Paired" --#~ msgstr "已配对" -- --#~ msgid "Type" --#~ msgstr "类型" -- --#~ msgid "Mouse & Touchpad Settings" --#~ msgstr "鼠标和触摸板设置" -- --#~ msgid "Sound Settings" --#~ msgstr "声音设置" -- --#~ msgid "Keyboard Settings" --#~ msgstr "键盘设置" -- --#~ msgid "Send Files…" --#~ msgstr "发送文件…" -- --#~ msgid "Visibility" --#~ msgstr "可见性" -- --#~ msgid "Visibility of “%s”" --#~ msgstr "“%s”的可见性" -- --#~ msgid "Remove '%s' from the list of devices?" --#~ msgstr "将“%s”从设备列表中移除吗?" -- --#~ msgid "" --#~ "If you remove the device, you will have to set it up again before next " --#~ "use." --#~ msgstr "如果您移除该设备,下次使用前您需要重新设置它。" -- --#~ msgid "Share Public Folder" --#~ msgstr "共享公共(Public)文件夹" -- --#~ msgid "Only share with Trusted Devices" --#~ msgstr "只共享信任的设备" -- --#~ msgid "Device type:" --#~ msgstr "设备类型:" -- --#~ msgid "Manufacturer:" --#~ msgstr "厂商:" -- --#~ msgid "Model:" --#~ msgstr "型号:" -- --#~ msgid "" --#~ "Image files can be dragged on this window to auto-complete the above " --#~ "fields." --#~ msgstr "可以将图像文件拖放到此窗口来自动填写以上字段。" -- --#~ msgid "Switch between AM and PM." --#~ msgstr "在上午(AM)和下午(PM)间切换。" -- --#~ msgid "Show your primary display on this screen also" --#~ msgstr "在该显示屏上也显示主显示屏内容" -- --#~ msgid "Combine" --#~ msgstr "组合" -- --#~ msgid "Join with the primary display to create an extra space" --#~ msgstr "与主显示屏合在一起以增加额外显示空间" -- --#~ msgid "Refresh Rate" --#~ msgstr "刷新率" -- --#~ msgid "Mouse Preferences" --#~ msgstr "鼠标首选项" -- --#~ msgid "Select the interface to use for the new service" --#~ msgstr "选择用于新服务的接口" -- --#~ msgid "C_reate…" --#~ msgstr "创建(_R)..." -- --#~ msgid "_Interface" --#~ msgstr "接口(_I)" -- --#~ msgid "Estimated battery capacity: %s" --#~ msgstr "估计电池容量:%s" -- --#~ msgctxt "Language" --#~ msgid "None" --#~ msgstr "无" -- --#~ msgid "Changing photo for:" --#~ msgstr "更换照片:" -- --#~ msgid "" --#~ "Choose a picture that will be shown at the login screen for this account." --#~ msgstr "选择一个在登录屏幕上和此账户一同显示的图片。" -- --#~ msgid "Gallery" --#~ msgstr "相册" -- --#~ msgid "Take a photograph" --#~ msgstr "照相" -- --#~ msgid "Browse" --#~ msgstr "浏览" -- --#~ msgid "Photograph" --#~ msgstr "照片" -- --#~ msgid "Account Information" --#~ msgstr "账户信息" -- --#~ msgid "_Region:" --#~ msgstr "地区(_R):" -- --#~ msgid "_City:" --#~ msgstr "城市(_C):" -- --#~ msgid "_Network Time" --#~ msgstr "网络时间(_N)" -- --#~ msgid ":" --#~ msgstr ":" -- --#~ msgid "Set the time one hour ahead." --#~ msgstr "将时间向前调一小时。" -- --#~ msgid "Set the time one hour back." --#~ msgstr "将时间向后调一小时。" -- --#~ msgid "Set the time one minute ahead." --#~ msgstr "将时间向前调一分钟。" -- --#~ msgid "Set the time one minute back." --#~ msgstr "将时间向后调一分钟。" -- --#~ msgid "AM/PM" --#~ msgstr "上午/下午" -- --#~ msgctxt "display panel, rotation" --#~ msgid "Normal" --#~ msgstr "正常" -- --#~ msgctxt "display panel, rotation" --#~ msgid "Counterclockwise" --#~ msgstr "逆时针" -- --#~ msgctxt "display panel, rotation" --#~ msgid "Clockwise" --#~ msgstr "顺时针" -- --#~ msgctxt "display panel, rotation" --#~ msgid "180 Degrees" --#~ msgstr "180 度" -- --#~ msgid "Monitor" --#~ msgstr "显示器" -- --#~ msgid "Drag to change primary display." --#~ msgstr "拖拽以更改主显示设备。" -- --#~ msgid "" --#~ "Select a monitor to change its properties; drag it to rearrange its " --#~ "placement." --#~ msgstr "选择一台显示器来更改它的属性;拖动它来排列位置。" -- --#~ msgid "%a %R" --#~ msgstr "%a %R" -- --#~ msgid "Failed to apply configuration: %s" --#~ msgstr "应用配置失败:%s" -- --#~ msgid "Could not save the monitor configuration" --#~ msgstr "无法保存显示器配置" -- --#~ msgid "_Resolution" --#~ msgstr "分辨率(_R)" -- --#~ msgid "R_otation" --#~ msgstr "旋转(_O)" -- --#~ msgid "_Mirror displays" --#~ msgstr "镜像显示(_M)" -- --#~ msgid "Note: may limit resolution options" --#~ msgstr "提醒:可能会限制分辨率选项" -- --#~ msgid "_Detect Displays" --#~ msgstr "检测显示(_D)" -- --#~ msgid "Hidden" --#~ msgstr "隐藏" -- --#~ msgid "Visible" --#~ msgstr "可见" -- --#~ msgid "Name & Visibility" --#~ msgstr "名称及可见性" -- --#~ msgid "Control how you appear on the screen and the network." --#~ msgstr "控制如何如何在屏幕和网络上显示您。" -- --#~ msgid "Display _full name in top bar" --#~ msgstr "在顶栏显示全名(_F)" -- --#~ msgid "Display full name in _lock screen" --#~ msgstr "在锁屏时显示全名(_L)" -- --#~ msgid "_Stealth Mode" --#~ msgstr "隐私模式(_S)" -- --#~ msgid "Show Status When _Inactive" --#~ msgstr "不活动时显示状态(_I)" -- --#~ msgid "_Confirm Password" --#~ msgstr "确认密码(_C)" -- --#~ msgid "_Login Name" --#~ msgstr "登录名(_L)" -- --#~ msgid "Login _Password" --#~ msgstr "登录密码(_P)" -- --#~ msgid "C_onfirm New Password" --#~ msgstr "确认新密码(_O)" -- --#~ msgid "Passwords do not match" --#~ msgstr "密码不匹配" -- --#~ msgid "" --#~ "Login not recognized.\n" --#~ "Please try again." --#~ msgstr "" --#~ "登录未被识别。\n" --#~ "请重试。" -- --#~ msgid "Domain not found." --#~ msgstr "未找到该域" -- --#~ msgid "Wrong password" --#~ msgstr "密码错误" -- --#~ msgid "No shortcut set" --#~ msgstr "未设置快捷键" -- --#~ msgctxt "universal access, contrast" --#~ msgid "Normal" --#~ msgstr "普通" -- --#~ msgctxt "universal access, contrast" --#~ msgid "High/Inverse" --#~ msgstr "高/反色" -- --#~ msgid "On screen keyboard" --#~ msgstr "屏幕键盘" -- --#~ msgid "OnBoard" --#~ msgstr "屏幕键盘" -- --#~ msgid "75%" --#~ msgstr "75%" -- --#~ msgid "100%" --#~ msgstr "100%" -- --#~ msgctxt "universal access, text size" --#~ msgid "Normal" --#~ msgstr "正常" -- --#~ msgid "125%" --#~ msgstr "125%" -- --#~ msgid "150%" --#~ msgstr "150%" -- --#~ msgctxt "universal access, text size" --#~ msgid "Larger" --#~ msgstr "较大" -- --#~ msgid "Beep on Caps and Num Lock" --#~ msgstr "按 Caps 或 Num Lock 键时蜂鸣" -- --#~ msgid "Turn on or off:" --#~ msgstr "打开或关闭:" -- --#~ msgctxt "universal access, zoom" --#~ msgid "Zoom" --#~ msgstr "缩放" -- --#~ msgid "Zoom in:" --#~ msgstr "放大:" -- --#~ msgid "Zoom out:" --#~ msgstr "缩小:" -- --#~ msgid "Closed Captioning" --#~ msgstr "闭合注释" -- --#~ msgid "Display a textual description of speech and sounds" --#~ msgstr "显示语音和声音的文字描述。" -- --#~ msgid "On Screen Keyboard" --#~ msgstr "屏幕键盘" -- --#~ msgctxt "universal access, delay" --#~ msgid "Short" --#~ msgstr "短" -- --#~ msgctxt "universal access, delay" --#~ msgid "Long" --#~ msgstr "长" -- --#~ msgid "Beep when a key is" --#~ msgstr "发出蜂鸣声当使用键" -- --#~ msgid "pressed" --#~ msgstr "已按下" -- --#~ msgid "accepted" --#~ msgstr "已接受" -- --#~ msgid "rejected" --#~ msgstr "已拒绝" -- --#~ msgid "Acc_eptance delay:" --#~ msgstr "可接受延迟(_E):" -- --#~ msgid "Control the pointer using the keypad" --#~ msgstr "使用小键盘控制鼠标指针。" -- --#~ msgid "Video Mouse" --#~ msgstr "动态鼠标" -- --#~ msgid "Control the pointer using the video camera." --#~ msgstr "使用摄像头控制鼠标指针" -- --#~ msgctxt "universal access, threshold" --#~ msgid "Small" --#~ msgstr "小" -- --#~ msgctxt "universal access, threshold" --#~ msgid "Large" --#~ msgstr "大" -- --#~ msgid "Mouse Settings" --#~ msgstr "鼠标设置" -- --#~ msgid "Previous Week" --#~ msgstr "上一周" -- --#~ msgid "Next Week" --#~ msgstr "下一周" -- --#~ msgid "Next week" --#~ msgstr "下一周" -- --#~ msgctxt "Password hint" --#~ msgid "Try to add more characters." --#~ msgstr "请试着添加更多字符。" -- --#~ msgid "Switch Modes" --#~ msgstr "模式切换" -- --#~ msgid "Action" --#~ msgstr "动作" -- --#~ msgid "Export" --#~ msgstr "导出" -- --#~ msgid "Left Shift" --#~ msgstr "左 Shift" -- --#~ msgid "Left Alt" --#~ msgstr "左 Alt" -- --#~ msgid "Left Ctrl" --#~ msgstr "左 Ctrl" -- --#~ msgid "Right Shift" --#~ msgstr "右 Shift" -- --#~ msgid "Right Alt" --#~ msgstr "右 Alt" -- --#~ msgid "Right Ctrl" --#~ msgstr "右 Ctrl" -- --#~ msgid "Left Alt+Shift" --#~ msgstr "左 Alt+Shift" -- --#~ msgid "Left Ctrl+Shift" --#~ msgstr "左 Ctrl+Shift" -- --#~ msgid "Right Ctrl+Shift" --#~ msgstr "右 Ctrl+Shift" -- --#~ msgid "Alt+Shift" --#~ msgstr "Ctrl+Alt+Shift+Space" -- --#~ msgid "Ctrl+Shift" --#~ msgstr "Ctrl+Alt+Shift+Space" -- --#~ msgid "Alt+Ctrl" --#~ msgstr "Alt+Ctrl" -- --#~ msgid "Caps" --#~ msgstr "Caps" -- --#~ msgid "Shift+Caps" --#~ msgstr "Shift+Caps" -- --#~ msgid "Alt+Caps" --#~ msgstr "Alt+Caps" -- --#~ msgctxt "mouse, speed" --#~ msgid "Slow" --#~ msgstr "慢" -- --#~ msgctxt "mouse, speed" --#~ msgid "Fast" --#~ msgstr "快" -- --#~ msgid "C_ontent sticks to fingers" --#~ msgstr "内容追随手指(_O)" -- --#~ msgid "_Options…" --#~ msgstr "选项(_O)…" -- --#~ msgid "_Automatic Suspend" --#~ msgstr "自动挂起" -- --#~ msgid "Add account" --#~ msgstr "添加账户" -- --#~ msgid "_Local Account" --#~ msgstr "本地账户(_L)" -- --#~ msgid "Tip: Enterprise domain or realm name" --#~ msgstr "提示:企业域或 realm 名" -- --#~ msgid "C_ontinue" --#~ msgstr "继续(_O)" -- --#~ msgid "Choose password at next login" --#~ msgstr "下次登录时更改密码" -- --#~ msgid "Log in without a password" --#~ msgstr "不使用密码登录" -- --#~ msgid "Disable this account" --#~ msgstr "禁用此账户" -- --#~ msgid "Enable this account" --#~ msgstr "启用此账户" -- --#~ msgid "Generate a password" --#~ msgstr "生成密码" -- --#~ msgid "_Action" --#~ msgstr "动作(_A)" -- --#~ msgid "_Show password" --#~ msgstr "显示密码(_S)" -- --#~ msgid "How to choose a strong password" --#~ msgstr "如何选择一个好密码" -- --#~ msgctxt "Password strength" --#~ msgid "Too short" --#~ msgstr "太短" -- --#~ msgctxt "Password strength" --#~ msgid "Not good enough" --#~ msgstr "不够好" -- --#~ msgctxt "Password strength" --#~ msgid "Weak" --#~ msgstr "弱" -- --#~ msgctxt "Password strength" --#~ msgid "Fair" --#~ msgstr "一般" -- --#~ msgctxt "Password strength" --#~ msgid "Good" --#~ msgstr "好" -- --#~ msgctxt "Password strength" --#~ msgid "Strong" --#~ msgstr "强" -- --#~ msgid "_Generate a password" --#~ msgstr "生成密码(_G)" -- --#~ msgid "You need to enter a new password" --#~ msgstr "您需要输入一个新密码" -- --#~ msgid "The new password is not strong enough" --#~ msgstr "新密码不够强" -- --#~ msgid "You need to confirm the password" --#~ msgstr "你需要重新输入密码以便确认" -- --#~ msgid "You need to enter your current password" --#~ msgstr "您需要输入当前密码" -- --#~ msgid "The current password is not correct" --#~ msgstr "当前密码错误" -- --#~ msgid "Right Alt+Shift" --#~ msgstr "右 Alt+Shift" -- --#~ msgid "Left+Right Shift" --#~ msgstr "左+右 Shift" -- --#~ msgid "Left+Right Ctrl" --#~ msgstr "左+右 Ctrl" -- --#~ msgid "Ctrl+Caps" --#~ msgstr "Ctrl+Caps" -- --#~ msgid "blablabla" --#~ msgstr "blablabla" -- --#~ msgid "" --#~ "Address\n" --#~ "section\n" --#~ "goes\n" --#~ "here" --#~ msgstr "" --#~ "网络\n" --#~ "部分\n" --#~ "放在\n" --#~ "这里" -- --#~ msgid "" --#~ "DNS\n" --#~ "section\n" --#~ "goes\n" --#~ "here" --#~ msgstr "" --#~ "DNS\n" --#~ "部分\n" --#~ "放在\n" --#~ "这里" -- --#~ msgid "" --#~ "Routes\n" --#~ "section\n" --#~ "goes\n" --#~ "here" --#~ msgstr "" --#~ "路由\n" --#~ "部分\n" --#~ "放在\n" --#~ "这里" -- --#~ msgid "00:24:16:31:8G:7A" --#~ msgstr "00:24:16:31:8G:7A" -- --#~| msgid "None" --#~ msgctxt "Input source" --#~ msgid "None" --#~ msgstr "无" -- --#~ msgid "Change the background" --#~ msgstr "更改背景图像" -- --#~ msgid "Configure Bluetooth settings" --#~ msgstr "配置蓝牙设置" -- --#~ msgid "Browse Files..." --#~ msgstr "浏览文件..." -- --#~ msgctxt "Power" --#~ msgid "Bluetooth" --#~ msgstr "蓝牙" -- --#~ msgid "Create virtual device" --#~ msgstr "创建虚拟设备" -- --#~ msgid "Available Profiles for Displays" --#~ msgstr "可用的显示配置" -- --#~ msgid "Available Profiles for Scanners" --#~ msgstr "可用的扫描仪配置" -- --#~ msgid "Available Profiles for Printers" --#~ msgstr "可用的打印机配置" -- --#~ msgid "Available Profiles for Cameras" --#~ msgstr "可用的相机配置" -- --#~ msgid "Available Profiles for Webcams" --#~ msgstr "可用的摄像头配置" -- --#~ msgid "%i year" --#~ msgid_plural "%i years" --#~ msgstr[0] "%i 年" -- --#~ msgid "%i month" --#~ msgid_plural "%i months" --#~ msgstr[0] "%i 个月" -- --#~ msgid "%i week" --#~ msgid_plural "%i weeks" --#~ msgstr[0] "%i 周" -- --#~ msgid "Less than 1 week" --#~ msgstr "不到一周" -- --#~ msgid "This device is not color managed." --#~ msgstr "此设备没有进行色彩管理。" -- --#~ msgid "This device is using manufacturing calibrated data." --#~ msgstr "此设备正在使用出厂校准数据。" -- --#~ msgid "" --#~ "This device does not have a profile suitable for whole-screen color " --#~ "correction." --#~ msgstr "此设备没有一份适于全屏色彩修正的配置。" -- --#~ msgid "Not specified" --#~ msgstr "未指定" -- --#~ msgid "No devices supporting color management detected" --#~ msgstr "没有检测到支持色彩管理的设备" -- --#~ msgid "Add device" --#~ msgstr "添加设备" -- --#~ msgid "Add a virtual device" --#~ msgstr "添加一个虚拟设备" -- --#~ msgid "Remove a device" --#~ msgstr "移除设备" -- --#~ msgid "Color management settings" --#~ msgstr "色彩管理设置" -- --#~ msgid "English" --#~ msgstr "英语" -- --#~ msgid "British English" --#~ msgstr "英国英语" -- --#~ msgid "German" --#~ msgstr "德语" -- --#~ msgid "French" --#~ msgstr "法语" -- --#~ msgid "Spanish" --#~ msgstr "西班牙语" -- --#~ msgid "Chinese (simplified)" --#~ msgstr "简体中文" -- --#~ msgid "Russian" --#~ msgstr "俄语" -- --#~ msgid "Arabic" --#~ msgstr "阿拉伯语" -- --#~ msgid "Unspecified" --#~ msgstr "未指定" -- --#~ msgid "Select a language" --#~ msgstr "选择一种语言" -- --#~ msgid "_Select" --#~ msgstr "选择(_S)" -- --#~ msgid "Date and Time preferences panel" --#~ msgstr "日期和时间首选项面板" -- --#~ msgid "%d x %d" --#~ msgstr "%d x %d" -- --#~ msgid "VESA: %s" --#~ msgstr "VESA:%s" -- --#~ msgid "Unknown model" --#~ msgstr "未知型号" -- --#~ msgid "The next login will attempt to use the standard experience." --#~ msgstr "下次登录将尝试提供标准用户体验。" -- --#~ msgid "" --#~ "The next login will use the fallback mode intended for unsupported " --#~ "graphics hardware." --#~ msgstr "下次登录将使用为不支持的显示硬件而设计的备用模式。" -- --#~ msgctxt "Experience" --#~ msgid "Fallback" --#~ msgstr "备用" -- --#~ msgid "System Information" --#~ msgstr "系统信息" -- --#~ msgid "OS type" --#~ msgstr "操作系统类型" -- --#~ msgid "_Other Media..." --#~ msgstr "其他媒体(_O)..." -- --#~ msgid "Experience" --#~ msgstr "用户体验" -- --#~ msgid "Forced _Fallback Mode" --#~ msgstr "强制使用备用模式(_F)" -- --#~ msgid "Change keyboard settings" --#~ msgstr "更改键盘设置" -- --#~ msgid "Layout Settings" --#~ msgstr "布局设置" -- --#~ msgid "Set your mouse and touchpad preferences" --#~ msgstr "设置您的鼠标和触摸板首选项" -- --#~ msgid "Network settings" --#~ msgstr "网络设置" -- --#~ msgid "Out of range" --#~ msgstr "超出范围" -- --#~ msgid "_Options..." --#~ msgstr "选项(_O)..." -- --#~ msgid "C_reate..." --#~ msgstr "创建(_R)..." -- --#~ msgid "_Configure..." --#~ msgstr "配置(_C)..." -- --#~ msgid "_Disconnect" --#~ msgstr "断开连接(_D)" -- --#~ msgid "_Connect" --#~ msgstr "连接(_C)" -- --#~ msgid "_Settings..." --#~ msgstr "设置(_S)..." -- --#~ msgid "Disconnected" --#~ msgstr "已断开" -- --#~ msgid "Carrier/link changed" --#~ msgstr "载波/连接已更改" -- --#~ msgid "Expired credentials. Please log in again." --#~ msgstr "证书过期。请重新登录。" -- --#~ msgid "_Log In" --#~ msgstr "登录(_L)" -- --#~ msgid "Manage online accounts" --#~ msgstr "管理在线账户" -- --#~ msgid "Caution low battery, %s remaining" --#~ msgstr "电池电量低,剩余 %s" -- --#~ msgid "Using battery power - %s remaining" --#~ msgstr "使用电池 - 剩余 %s" -- --#~ msgid "Using battery power" --#~ msgstr "使用电池" -- --#~ msgid "Charging - fully charged" --#~ msgstr "充电完成" -- --#~ msgid "Using UPS power - %s remaining" --#~ msgstr "使用 UPS - 剩余 %s" -- --#~ msgid "Caution low UPS" --#~ msgstr "UPS 电量低" -- --#~ msgid "Using UPS power" --#~ msgstr "使用 UPS" -- --#~ msgid "Your secondary battery is fully charged" --#~ msgstr "您的辅电池已充满" -- --#~ msgid "Your secondary battery is empty" --#~ msgstr "您的辅电池已空" -- --#~ msgctxt "Battery power" --#~ msgid "Charging - fully charged" --#~ msgstr "充电 -已充满" -- --#~ msgid "" --#~ "Tip: screen brightness affects how much power is " --#~ "used" --#~ msgstr "提示:屏幕亮度影响电量使用" -- --#~ msgid "Power management settings" --#~ msgstr "电源管理设置" -- --#~ msgid "Don't suspend" --#~ msgstr "不要挂起" -- --#~ msgid "Suspend when inactive for" --#~ msgstr "在此时间内无操作则挂起:" -- --#~ msgctxt "printer state" --#~ msgid "Paused" --#~ msgstr "已暂停" -- --#~ msgid "Change printer settings" --#~ msgstr "更改打印机设置" -- --#~ msgid "Manufacturers" --#~ msgstr "厂商" -- --#~ msgid "Drivers" --#~ msgstr "驱动" -- --#~ msgid "_Show" --#~ msgstr "显示(_S)" -- --#~ msgid "Change your region and language settings" --#~ msgstr "更改您的区域和语言设置" -- --#~ msgid "Choose an input source" --#~ msgstr "选择一个输入源" -- --#~ msgid "Select an input source to add" --#~ msgstr "选择一个要添加的输入源" -- --#~ msgid "" --#~ "The login screen, system accounts and new user accounts use the system-" --#~ "wide Region and Language settings." --#~ msgstr "登录屏幕、系统账户和新用户均使用系统的“区域和语言”设置。" -- --#~ msgid "" --#~ "The login screen, system accounts and new user accounts use the system-" --#~ "wide Region and Language settings. You may change the system settings to " --#~ "match yours." --#~ msgstr "" --#~ "登录屏幕、系统账户和新用户均使用系统的“区域和语言”设置。您可以在那里按需修" --#~ "改相关系统设置。" -- --#~ msgid "Copy Settings" --#~ msgstr "复制设置" -- --#~ msgid "Copy Settings..." --#~ msgstr "复制设置..." -- --#~ msgid "Region and Language" --#~ msgstr "区域和语言" -- --#~ msgid "" --#~ "Select a display language (change will be applied next time you log in)" --#~ msgstr "选择界面语言(将在下次登录时应用)" -- --#~ msgid "Add Language" --#~ msgstr "添加语言" -- --#~ msgid "Install languages..." --#~ msgstr "安装语言..." -- --#~ msgid "Select a region (change will be applied the next time you log in)" --#~ msgstr "选择一个地区(将在下次登录时应用更改)" -- --#~ msgid "Add Region" --#~ msgstr "添加地区" -- --#~ msgid "Currency" --#~ msgstr "货币" -- --#~ msgid "Examples" --#~ msgstr "示例" -- --#~ msgid "Select keyboards or other input sources" --#~ msgstr "选择键盘或其他输入源" -- --#~ msgid "Remove Input Source" --#~ msgstr "移除输入源" -- --#~ msgid "Move Input Source Up" --#~ msgstr "上移输入源" -- --#~ msgid "Show Keyboard Layout" --#~ msgstr "显示键盘布局" -- --#~ msgid "Ctrl+Alt+Space" --#~ msgstr "Ctrl+Alt+Space" -- --#~ msgid "Shortcut Settings" --#~ msgstr "快捷键设置" -- --#~ msgid "Display language:" --#~ msgstr "显示语言:" -- --#~ msgid "Input source:" --#~ msgstr "输入源:" -- --#~ msgid "Format:" --#~ msgstr "格式:" -- --#~ msgid "Your settings" --#~ msgstr "我的设置" -- --#~ msgid "System settings" --#~ msgstr "系统设置" -- --#~ msgid "Brightness & Lock" --#~ msgstr "亮度和锁屏" -- --#~ msgid "Screen brightness and lock settings" --#~ msgstr "配置屏幕亮度和锁定" -- --#~ msgid "Brightness;Lock;Dim;Blank;Monitor;" --#~ msgstr "亮度;锁定;渐暗;空白;显示器;Brightness;Lock;Dim;Blank;Monitor;" -- --#~ msgid "_Dim screen to save power" --#~ msgstr "调暗屏幕以省电(_D)" -- --#~ msgid "Don't lock when at home" --#~ msgstr "在家时不锁定屏幕" -- --#~ msgid "Locations..." --#~ msgstr "位置..." -- --#~ msgid "Lock" --#~ msgstr "锁定" -- --#~ msgid "Enable debugging code" --#~ msgstr "启用调试代码" -- --#~ msgid "Version of this application" --#~ msgstr "此应用程序的版本" -- --#~ msgid " — GNOME Volume Control Applet" --#~ msgstr " — GNOME 音量控制小程序" -- --#~ msgid "Show desktop volume control" --#~ msgstr "显示桌面音量控制" -- --#~ msgid "Sound Output Volume" --#~ msgstr "输出音量" -- --#~ msgid "Microphone Volume" --#~ msgstr "话筒音量" -- --#~ msgid "Failed to start Sound Preferences: %s" --#~ msgstr "声音首选项启动失败:%s" -- --#~ msgid "_Mute" --#~ msgstr "静音(_M)" -- --#~ msgid "_Sound Preferences" --#~ msgstr "声音首选项(_S)" -- --#~ msgid "Muted" --#~ msgstr "已静音" -- --#~ msgid "Universal Access Preferences" --#~ msgstr "通用辅助功能首选项" -- --#~ msgid "Options..." --#~ msgstr "选项..." -- --#~ msgid "User Accounts" --#~ msgstr "用户账户" -- --#~ msgid "_Hint" --#~ msgstr "提示(_H)" -- --#~ msgid "" --#~ "This hint may be displayed at the login screen. It will be visible to " --#~ "all users of this system. Do not include the password here." --#~ msgstr "" --#~ "这个提示可能显示在登录屏幕。它将对此系统的所有用户可见。请 不要 把" --#~ "密码写在这里。" -- --#~ msgid "Fair" --#~ msgstr "一般" -- --#~ msgid "Browse for more pictures..." --#~ msgstr "浏览更多图片..." -- --#~ msgid "No user with the name '%s' exists." --#~ msgstr "名为“%s”的用户不存在。" -- --#~ msgid "This user does not exist." --#~ msgstr "该用户不存在。" -- --#~ msgid "Set your Wacom tablet preferences" --#~ msgstr "设置您的 Wacom 手写板首选项" -- --#~ msgid "Map Buttons..." --#~ msgstr "按键映射..." -- --#~ msgid "Calibrate..." --#~ msgstr "校准..." -- --#~ msgid "Control Center" --#~ msgstr "控制中心" -- --#~ msgid "Network;Wireless;IP;LAN;Proxy;" --#~ msgstr "Network;Wireless;IP;LAN;Proxy;网络;无线;上网;局域网;代理;" -- --#~ msgid "Wireless Hotspot" --#~ msgstr "无线热点" -- --#~ msgid "Wireless" --#~ msgstr "无线" -- --#~ msgid "Mesh" --#~ msgstr "网格" -- --#~ msgid "Remove Language" --#~ msgstr "移除语言" -- --#~ msgctxt "Zoom Grayscale" --#~ msgid "Color" --#~ msgstr "色彩" -- --#~ msgctxt "Zoom Grayscale" --#~ msgid "None" --#~ msgstr "无" -- --#~ msgid "- System Settings" --#~ msgstr "- 系统设置" -- --#~ msgid "System Settings" --#~ msgstr "系统设置" -- --#~ msgid "Security Key" --#~ msgstr "安全密钥" -- --#~ msgid "Subnet Mask" --#~ msgstr "子网掩码" -- --#~ msgid "_Search by Address" --#~ msgstr "按地址搜索(_S)" -- --#~ msgid "Getting devices..." --#~ msgstr "正在获取设备..." -- --#~ msgid "" --#~ "FirewallD is not running. Network printer detection needs services mdns, " --#~ "ipp, ipp-client and samba-client enabled on firewall." --#~ msgstr "" --#~ "FirewallD 未运行。网络打印机功能需要防火墙允许 mdns、ipp、ipp-client 和 " --#~ "samba-client 服务。" -- --#~ msgctxt "printer type" --#~ msgid "Local" --#~ msgstr "本地" -- --#~ msgctxt "printer type" --#~ msgid "Network" --#~ msgstr "网络" -- --#~ msgid "Device types" --#~ msgstr "设备类型" -- --#~ msgid "Automatic configuration" --#~ msgstr "自动配置" -- --#~ msgid "Opening firewall for mDNS connections" --#~ msgstr "为 mDNS 连接打开防火墙" -- --#~ msgid "Opening firewall for Samba connections" --#~ msgstr "为 Samba 连接打开防火墙" -- --#~ msgid "Opening firewall for IPP connections" --#~ msgstr "为 IPP 连接打开防火墙" -- --#~ msgid "Add wallpaper" --#~ msgstr "添加壁纸" -- --#~ msgid "Remove wallpaper" --#~ msgstr "移除壁纸" -- --#~ msgid "Swap colors" --#~ msgstr "交换颜色" -- --#~ msgid "Horizontal Gradient" --#~ msgstr "水平渐变" -- --#~ msgid "Vertical Gradient" --#~ msgstr "竖直渐变" -- --#~ msgid "Solid Color" --#~ msgstr "纯色" -- --#~ msgid "Colors & Gradients" --#~ msgstr "颜色和渐变" -- --#~ msgid "Acti_on:" --#~ msgstr "动作(_O):" -- --#~ msgid "Take a screenshot" --#~ msgstr "对屏幕截图" -- --#~ msgid "Shortcut" --#~ msgstr "快捷键" -- --#~ msgid "_Right-handed" --#~ msgstr "惯用右手(_R)" -- --#~ msgid "_Left-handed" --#~ msgstr "惯用左手(_L)" -- --#~ msgid "Sh_ow position of pointer when the Control key is pressed" --#~ msgstr "按下 Ctrl 键时显示指针位置(_O)" -- --#~ msgid "A_cceleration:" --#~ msgstr "加速(_C):" -- --#~ msgid "_Sensitivity:" --#~ msgstr "灵敏度(_S):" -- --#~ msgid "Drag and Drop" --#~ msgstr "拖放" -- --#~ msgid "Thr_eshold:" --#~ msgstr "阈值(_E):" -- --#~ msgid "Drag Threshold" --#~ msgstr "拖动阈值" -- --#~ msgid "Double-Click Timeout" --#~ msgstr "双击超时" -- --#~ msgid "_Timeout:" --#~ msgstr "超时(_T):" -- --#~ msgid "To test your settings, try to double-click on the face." --#~ msgstr "要测试您的设置,请试着双击右侧的小脸。" -- --#~ msgid "Enable _mouse clicks with touchpad" --#~ msgstr "启用触摸板的鼠标点击(_M)" -- --#~ msgid "Scrolling" --#~ msgstr "滚动" -- --#~ msgid "_Disabled" --#~ msgstr "禁用(_D)" -- --#~ msgid "Create the hotspot anyway?" --#~ msgstr "仍然创建热点?" -- --#~ msgid "Disconnect from %s and create a new hotspot?" --#~ msgstr "从 %s 断开并创建一个新热点?" -- --#~ msgid "This is your only connection to the internet." --#~ msgstr "这是您惟一的互联网连接。" -- --#~ msgid "Create _Hotspot" --#~ msgstr "创建热点(_H)" -- --#~ msgid "_Back" --#~ msgstr "后退(_B)" -- --#~ msgid "Printer Options" --#~ msgstr "打印机选项" -- --#~ msgid "Allowed users" --#~ msgstr "允许的用户" -- --#~ msgid "C_hoose a device to configure:" --#~ msgstr "选择要配置的设备(_H):" -- --#~ msgid "Dasher" --#~ msgstr "Dasher" -- --#~ msgid "Nomon" --#~ msgstr "Nomon" -- --#~ msgid "Caribou" --#~ msgstr "Caribou" -- --#~ msgid "Account _type" --#~ msgstr "账户类型(_T)" -- --#~ msgctxt "Wireless access point" --#~ msgid "Other..." --#~ msgstr "其他..." -- --#~ msgid "_Network Name" --#~ msgstr "网络名称(_N)" -- --#~ msgid "_Stop Hotspot..." --#~ msgstr "停止热点(_S)..." -- --#~ msgid "Disable VPN" --#~ msgstr "禁用 VPN" -- --#~ msgid "HTTP Port" --#~ msgstr "HTTP 端口" -- --#~ msgid "HTTPS Port" --#~ msgstr "HTTPS 端口" -- --#~ msgid "FTP Port" --#~ msgstr "FTP 端口" -- --#~ msgid "Select an account" --#~ msgstr "选择一个账户" -- --#~ msgid "To add a new account, first select the account type" --#~ msgstr "要添加一个新账户,请先选择账户类型" -- --#~ msgid "_Add..." --#~ msgstr "添加(_A)..." -- --#~ msgid "Tip:" --#~ msgstr "提示:" -- --#~ msgid "Brightness Settings" --#~ msgstr "亮度设置" -- --#~ msgid "affect how much power is used" --#~ msgstr "影响使用多少电能" -- --#~ msgid "Add Layout" --#~ msgstr "添加布局" -- --#~ msgid "Remove Layout" --#~ msgstr "移除布局" -- --#~ msgid "Preview Layout" --#~ msgstr "预览布局" -- --#~ msgid "New windows use the default layout" --#~ msgstr "新窗口使用默认布局" -- --#~ msgid "New windows use the previous window's layout" --#~ msgstr "新窗口中使用前一窗口的布局" -- --#~ msgid "View and edit keyboard layout options" --#~ msgstr "查看并编辑键盘布局选项" -- --#~ msgid "Reset to De_faults" --#~ msgstr "重置为默认值(_F)" -- --#~ msgid "" --#~ "Replace the current keyboard layout settings with the\n" --#~ "default settings" --#~ msgstr "使用默认设置替换当前键盘布局" -- --#~ msgid "Layouts" --#~ msgstr "布局" -- --#~ msgid "Layout" --#~ msgstr "布局" -- --#~ msgid "1/4 Screen" --#~ msgstr "1/4 屏幕" -- --#~ msgid "1/2 Screen" --#~ msgstr "1/2 屏幕" -- --#~ msgid "3/4 Screen" --#~ msgstr "3/4 屏幕" -- --#~ msgid "Create new account" --#~ msgstr "创建新账户" -- --#~ msgid "_Account Type" --#~ msgstr "账户类型(_A)" -- --#~ msgid "Cr_eate" --#~ msgstr "创建(_E)" -- --#~ msgid "Choose a generated password" --#~ msgstr "使用自动生成的密码" -- --#~ msgid "More choices..." --#~ msgstr "更多选项..." -- --#~ msgid "Change contrast:" --#~ msgstr "改变对比度:" -- --#~ msgid "_Text size:" --#~ msgstr "文字大小(_T):" -- --#~ msgid "Increase size:" --#~ msgstr "增加尺寸:" -- --#~ msgid "Decrease size:" --#~ msgstr "减少大小:" -- --#~ msgctxt "universal access, seeing" --#~ msgid "Display" --#~ msgstr "显示" -- --#~ msgctxt "universal access, seeing" --#~ msgid "Zoom" --#~ msgstr "缩放" -- --#~ msgid "Type here to test settings" --#~ msgstr "在此输入字符以测试设置" -- --#~ msgid "Wacom Graphics Tablet" --#~ msgstr "Wacom 图形手写板" -- --#~ msgid "Battery discharging" --#~ msgstr "电池放电中" -- --#~ msgid "%s until charged (%.0lf%%)" --#~ msgstr "还需 %s 充满(%.0lf%%)" -- --#~ msgid "%s until empty (%.0lf%%)" --#~ msgstr "还有 %s 耗尽(%.0lf%%)" -- --#~ msgid "%.0lf%% charged" --#~ msgstr "已充电 %.0lf%%" -- --#~ msgid "Could not get session bus while applying display configuration" --#~ msgstr "应用显示配置时无法获得会话总线" -- --#~ msgid "System Info" --#~ msgstr "系统信息" -- --#~ msgid "_Photos:" --#~ msgstr "照片(_P):" -- --#~ msgid "Speed" --#~ msgstr "速度" -- --#~ msgid "Unlock" --#~ msgstr "解锁" -- --#~ msgid "Always" --#~ msgstr "总是" -- --#~ msgid "Centered" --#~ msgstr "居中" -- --#~ msgid "Color and Opacity" --#~ msgstr "颜色和透明度" -- --#~ msgid "Image moves with the mouse pointer" --#~ msgstr "图像随鼠标指针移动" -- --#~ msgid "Image scrolls at screen edges" --#~ msgstr "图像在屏幕边缘处滚动显示" -- --#~ msgid "Moveable lens - magnified view follows mouse movements" --#~ msgstr "可移动镜头 - 放大视图跟随鼠标移动" -- --#~ msgid "Position of magnified view on screen" --#~ msgstr "放大视图在屏幕上的位置" -- --#~ msgid "Push" --#~ msgstr "推动" -- --#~ msgid "Show" --#~ msgstr "显示" -- --#, fuzzy --#~ msgid "Show crosshairs intersection" --#~ msgstr "显示十字光标交叉线" -- --#~ msgid "To keep the pointer centered" --#~ msgstr "保持光标居中" -- --#~ msgid "To keep the pointer visible" --#~ msgstr "保持指针可见" -- --#~ msgid "Toggle contrast" --#~ msgstr "切换对比度" -- --#~ msgid "Toggle magnifier" --#~ msgstr "切换放大镜" -- --#~ msgid "Toggle screen reader" --#~ msgstr "切换屏幕阅读器" -- --#~ msgid "Accelerator key" --#~ msgstr "加速键" -- --#~ msgid "Accelerator modifiers" --#~ msgstr "加速键修饰键" -- --#~ msgid "Accelerator keycode" --#~ msgstr "加速键键码" -- --#~ msgid "Accel Mode" --#~ msgstr "加速模式" -- --#~ msgid "The type of accelerator." --#~ msgstr "加速键类型。" -- --#~ msgid "Error saving the new shortcut" --#~ msgstr "保存新快捷键出错" -- --#~ msgid "Too many custom shortcuts" --#~ msgstr "自定义快捷键过多" -- --#~ msgid "Media and Autorun" --#~ msgstr "介质和自动运行" -- --#~ msgid "Configure media and autorun preferences" --#~ msgstr "配置介质和自动运行首选项" -- --#~ msgid "cd;dvd;usb;audio;video;disc;" --#~ msgstr "cd;dvd;usb;audio;video;disc;音频;视频;光盘;" -- --#~ msgid "Ask me" --#~ msgstr "询问我" -- --#~ msgid "Shutdown" --#~ msgstr "关闭" -- --#~ msgid "Suspend" --#~ msgstr "挂起" -- --#~ msgid "" --#~ "Only profiles that are compatible with the device will be listed above." --#~ msgstr "只有与该设备兼容的配置才会在上方列出。" -- --#~ msgid "_Turn off after:" --#~ msgstr "定时关闭(_T):" -- --#~ msgid "Mute" --#~ msgstr "静音" -- --#~ msgid "Key" --#~ msgstr "键" -- --#~ msgid "GConf key to which this property editor is attached" --#~ msgstr "本属性编辑器关联的 GConf 键" -- --#~ msgid "Callback" --#~ msgstr "回调" -- --#~ msgid "Issue this callback when the value associated with key gets changed" --#~ msgstr "当和键关联的值改变时执行该回调" -- --#~ msgid "Change set" --#~ msgstr "改动集" -- --#~ msgid "" --#~ "GConf change set containing data to be forwarded to the gconf client on " --#~ "apply" --#~ msgstr "包含要在应用修改时传递给 gconf 客户端的数据的 GConf 改动集合" -- --#~ msgid "Conversion to widget callback" --#~ msgstr "转换到部件时的回调" -- --#~ msgid "" --#~ "Callback to be issued when data are to be converted from GConf to the " --#~ "widget" --#~ msgstr "当数据从 GConf 转换到部件时使用的回调" -- --#~ msgid "Conversion from widget callback" --#~ msgstr "从部件转换时的回调" -- --#~ msgid "" --#~ "Callback to be issued when data are to be converted to GConf from the " --#~ "widget" --#~ msgstr "当数据从部件转换到 GConf 时使用的回调" -- --#~ msgid "UI Control" --#~ msgstr "用户界面控件" -- --#~ msgid "Object that controls the property (normally a widget)" --#~ msgstr "控制属性的对象 (通常为部件)" -- --#~ msgid "Property editor object data" --#~ msgstr "属性编辑器对象数据" -- --#~ msgid "Custom data required by the specific property editor" --#~ msgstr "特定的属性编辑器所需要的自定义数据" -- --#~ msgid "Property editor data freeing callback" --#~ msgstr "属性编辑器数据释放回调函数" -- --#~ msgid "" --#~ "Callback to be issued when property editor object data is to be freed" --#~ msgstr "要在属性编辑器对象数据被释放时调用的回调函数" -- --#~ msgid "" --#~ "Couldn't find the file '%s'.\n" --#~ "\n" --#~ "Please make sure it exists and try again, or choose a different " --#~ "background picture." --#~ msgstr "" --#~ "找不到文件“%s”。\n" --#~ "\n" --#~ "请确定该文件存在后重试,或选择另一背景图片。" -- --#~ msgid "" --#~ "I don't know how to open the file '%s'.\n" --#~ "Perhaps it's a kind of picture that is not yet supported.\n" --#~ "\n" --#~ "Please select a different picture instead." --#~ msgstr "" --#~ "不知道怎样打开文件“%s”。\n" --#~ "可能是尚未支持的图片类型。\n" --#~ "\n" --#~ "请选择其他图片。" -- --#~ msgid "Please select an image." --#~ msgstr "请选择一幅图片。" -- --#~ msgid "Create a user" --#~ msgstr "创建用户" -- --#~ msgid "Upside-down" --#~ msgstr "上下颠倒" -- --#~ msgid "On AC _power:" --#~ msgstr "使用交流电源(_P):" -- --#~ msgid "Put the computer to sleep when inactive:" --#~ msgstr "计算机从无活动转入睡眠的等待时间:" -- --#~ msgid "24-_Hour Time" --#~ msgstr "24 小时格式(_H)" -- --#~ msgid "Updates Available" --#~ msgstr "有可用更新" -- --#~ msgid "When the _sleep button is pressed:" --#~ msgstr "按下睡眠按钮时(_S):" -- --#~ msgid "When the p_ower button is pressed:" --#~ msgstr "按下电源按钮时(_O):" -- --#~ msgid "Keyboard;Mouse;a11y;Accessibility;" --#~ msgstr "键盘;鼠标;a11y;辅助功能;" -- --#~ msgid "%.1f KB" --#~ msgstr "%.1f KB" -- --#~ msgid "%.1f MB" --#~ msgstr "%.1f MB" -- --#~ msgid "%.1f GB" --#~ msgstr "%.1f GB" -- --#~ msgid "%.1f TB" --#~ msgstr "%.1f TB" -- --#~ msgid "%.1f PB" --#~ msgstr "%.1f PB" -- --#~ msgid "%.1f EB" --#~ msgstr "%.1f EB" -- --#~ msgctxt "universal access, contrast" --#~ msgid "High/Inverse" --#~ msgstr "高/反色" -- --#~ msgctxt "universal access, contrast" --#~ msgid "High" --#~ msgstr "" -- --#~ msgctxt "universal access, contrast" --#~ msgid "Low" --#~ msgstr "" -- --#~ msgctxt "universal access, contrast" --#~ msgid "Normal" --#~ msgstr "正常" -- --#~ msgid "Locked" --#~ msgstr "已锁定" -- --#~ msgid "" --#~ "Dialog is unlocked.\n" --#~ "Click to prevent further changes" --#~ msgstr "" --#~ "会话已解锁。\n" --#~ "点击以阻止其他更改" -- --#~ msgid "" --#~ "Dialog is locked.\n" --#~ "Click to make changes" --#~ msgstr "" --#~ "会话已锁定。\n" --#~ "点击以进行更改" -- --#~ msgid "" --#~ "System policy prevents changes.\n" --#~ "Contact your system administrator" --#~ msgstr "" --#~ "系统策略阻止更改。\n" --#~ "请联系系统管理员" -- --#~ msgid "Photos" --#~ msgstr "照片" -- --#~ msgid "---" --#~ msgstr "---" -- --#~ msgid "Use default layout in new windows" --#~ msgstr "新窗口使用默认布局" -diff -urN gnome-control-center-3.14.5/po/zh_TW.po gnome-control-center-3.14.5_localized/po/zh_TW.po ---- gnome-control-center-3.14.5/po/zh_TW.po 2015-04-30 17:35:48.000000000 +0530 -+++ gnome-control-center-3.14.5_localized/po/zh_TW.po 2016-03-12 12:08:52.154000000 +0530 -@@ -8,22 +8,22 @@ - # Woodman Tuen , 2004-07. - # Chao-Hsiung Liao , 2010. - # Wei-Lun Chao , 2010. --# -+# ccheng , 2016. #zanata -+# pnemade , 2016. #zanata - msgid "" - msgstr "" --"Project-Id-Version: gnome-control-center 3.3.91\n" --"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" --"control-center&keywords=I18N+L10N&component=general\n" --"POT-Creation-Date: 2014-08-23 18:31+0000\n" --"PO-Revision-Date: 2014-08-24 16:30+0800\n" --"Last-Translator: Chao-Hsiung Liao \n" --"Language-Team: Chinese (Taiwan) \n" --"Language: zh_TW\n" -+"Project-Id-Version: PACKAGE VERSION\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2016-02-10 09:57+0530\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"PO-Revision-Date: 2016-03-04 04:14+0000\n" -+"Last-Translator: ccheng \n" -+"Language-Team: Chinese (Taiwan) \n" -+"Language: zh-TW\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Poedit 1.6.5\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../panels/background/background.ui.h:1 - #: ../panels/background/gnome-background-panel.desktop.in.in.h:1 -@@ -70,54 +70,56 @@ - msgid "Span" - msgstr "合併" - -+#: ../panels/background/cc-background-chooser-dialog.c:438 -+msgid "Wallpapers" -+msgstr "桌布" -+ -+#: ../panels/background/cc-background-chooser-dialog.c:447 -+msgid "Colors" -+msgstr "顏色" -+ - #. translators: This is the title of the wallpaper chooser dialog. --#: ../panels/background/cc-background-chooser-dialog.c:442 -+#: ../panels/background/cc-background-chooser-dialog.c:485 - msgid "Select Background" - msgstr "選擇背景" - --#: ../panels/background/cc-background-chooser-dialog.c:463 --msgid "Wallpapers" --msgstr "桌布" -- --#: ../panels/background/cc-background-chooser-dialog.c:472 -+#: ../panels/background/cc-background-chooser-dialog.c:514 - msgid "Pictures" - msgstr "圖片" - --#: ../panels/background/cc-background-chooser-dialog.c:481 --msgid "Colors" --msgstr "顏色" -- - #. translators: No pictures were found --#: ../panels/background/cc-background-chooser-dialog.c:540 -+#: ../panels/background/cc-background-chooser-dialog.c:546 - msgid "No Pictures Found" - msgstr "找不到圖片" - - #. translators: "Home" is used in place of the Pictures - #. * directory in the string below when XDG_PICTURES_DIR is - #. * undefined --#: ../panels/background/cc-background-chooser-dialog.c:558 -+#: ../panels/background/cc-background-chooser-dialog.c:564 - #: ../panels/search/cc-search-locations-dialog.c:274 - msgid "Home" - msgstr "家" - - #. translators: %s here is the name of the Pictures directory, the string should be translated in - #. * the context "You can add images to your Pictures folder and they will show up here" --#: ../panels/background/cc-background-chooser-dialog.c:570 -+#: ../panels/background/cc-background-chooser-dialog.c:576 - #, c-format - msgid "You can add images to your %s folder and they will show up here" - msgstr "您可以將影像加入您的%s資料夾,它們會顯示在這裡" - --#: ../panels/background/cc-background-chooser-dialog.c:592 -+#: ../panels/background/cc-background-chooser-dialog.c:583 - #: ../panels/color/cc-color-panel.c:224 ../panels/color/cc-color-panel.c:961 --#: ../panels/common/language-chooser.ui.h:3 --#: ../panels/display/cc-display-panel.c:1537 --#: ../panels/display/cc-display-panel.c:1976 -+#: ../panels/color/color.ui.h:29 ../panels/common/language-chooser.ui.h:3 -+#: ../panels/display/cc-display-panel.c:1540 -+#: ../panels/display/cc-display-panel.c:1985 - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:2 -+#: ../panels/network/connection-editor/connection-editor.ui.h:1 - #: ../panels/network/connection-editor/vpn-helpers.c:245 - #: ../panels/network/connection-editor/vpn-helpers.c:374 --#: ../panels/network/net-device-wifi.c:1240 --#: ../panels/network/net-device-wifi.c:1448 --#: ../panels/printers/cc-printers-panel.c:1947 -+#: ../panels/network/net-device-wifi.c:1247 -+#: ../panels/network/net-device-wifi.c:1440 -+#: ../panels/network/network-wifi.ui.h:1 -+#: ../panels/printers/cc-printers-panel.c:1949 - #: ../panels/printers/new-printer-dialog.ui.h:2 - #: ../panels/privacy/cc-privacy-panel.c:468 - #: ../panels/region/format-chooser.ui.h:3 -@@ -126,31 +128,32 @@ - #: ../panels/sharing/cc-sharing-panel.c:491 - #: ../panels/user-accounts/data/account-dialog.ui.h:17 - #: ../panels/user-accounts/data/password-dialog.ui.h:2 --#: ../panels/user-accounts/um-fingerprint-dialog.c:267 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:264 - #: ../panels/user-accounts/um-photo-dialog.c:95 - #: ../panels/user-accounts/um-photo-dialog.c:222 --#: ../panels/user-accounts/um-user-panel.c:513 -+#: ../panels/user-accounts/um-user-panel.c:708 -+#: ../panels/user-accounts/um-user-panel.c:726 - msgid "_Cancel" - msgstr "取消(_C)" - --#: ../panels/background/cc-background-chooser-dialog.c:593 -+#: ../panels/background/cc-background-chooser-dialog.c:584 - #: ../panels/printers/ppd-selection-dialog.ui.h:3 - #: ../panels/user-accounts/um-photo-dialog.c:97 - msgid "Select" - msgstr "選取" - --#: ../panels/background/cc-background-item.c:197 -+#: ../panels/background/cc-background-item.c:203 - msgid "multiple sizes" - msgstr "多重尺寸" - - #. translators: 100 × 100px - #. * Note that this is not an "x", but U+00D7 MULTIPLICATION SIGN --#: ../panels/background/cc-background-item.c:201 -+#: ../panels/background/cc-background-item.c:207 - #, c-format - msgid "%d × %d" - msgstr "%d × %d" - --#: ../panels/background/cc-background-item.c:327 -+#: ../panels/background/cc-background-item.c:333 - msgid "No Desktop Background" - msgstr "無桌面背景" - -@@ -534,9 +537,7 @@ - "Calibration will produce a profile that you can use to color manage your " - "screen. The longer you spend on calibration, the better the quality of the " - "color profile." --msgstr "" --"校準動作會產生描述檔讓您可以用來管理螢幕的顏色。您花在校準的時間愈長,顏色描" --"述檔的品質就愈好。" -+msgstr "校準動作會產生描述檔讓您可以用來管理螢幕的顏色。您花在校準的時間愈長,顏色描述檔的品質就愈好。" - - #: ../panels/color/color.ui.h:3 - msgid "" -@@ -587,8 +588,7 @@ - msgid "" - "Please set the display to a brightness that is typical for you. Color " - "management will be most accurate at this brightness level." --msgstr "" --"請將顯示器的亮度設定為您常用的狀態。顏色管理會以這個亮度等級調整到最正確。" -+msgstr "請將顯示器的亮度設定為您常用的狀態。顏色管理會以這個亮度等級調整到最正確。" - - #: ../panels/color/color.ui.h:16 - msgid "" -@@ -636,15 +636,15 @@ - - #: ../panels/color/color.ui.h:26 - msgid "" --"You may find these instructions on how to use the profile on GNU/Linux, Apple OS X and Microsoft Windows systems useful." -+"You may find these instructions on how to use the profile on GNU/Linux, Apple OS X and Microsoft Windows systems useful." - msgstr "" --"您可以找到如何在 GNU/LinuxApple OS " --"XMicrosoft Windows 系統上使用描述檔的指引。" -+"您可以找到如何在 GNU/LinuxApple OS XMicrosoft Windows 系統上使用描述檔的指引。" - - #: ../panels/color/color.ui.h:27 --#: ../panels/user-accounts/um-fingerprint-dialog.c:740 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:732 - msgid "Summary" - msgstr "摘要" - -@@ -652,146 +652,155 @@ - msgid "Import File…" - msgstr "載入檔案…" - --#: ../panels/color/color.ui.h:29 -+#: ../panels/color/color.ui.h:30 -+#: ../panels/keyboard/gnome-keyboard-panel.ui.h:3 -+#: ../panels/network/connection-editor/net-connection-editor.c:512 -+#: ../panels/printers/new-printer-dialog.ui.h:3 -+#: ../panels/region/input-chooser.ui.h:3 -+#: ../panels/user-accounts/um-account-dialog.c:1469 -+msgid "_Add" -+msgstr "加入(_A)" -+ -+#: ../panels/color/color.ui.h:31 - msgid "" - "Problems detected. The profile may not work correctly. Show " - "details." - msgstr "偵測到問題。描述檔可能無法正常運作。顯示詳細資料。" - --#: ../panels/color/color.ui.h:30 -+#: ../panels/color/color.ui.h:32 - msgid "Each device needs an up to date color profile to be color managed." - msgstr "每個裝置需要最新的色彩描述檔才能被管理顏色。" - --#: ../panels/color/color.ui.h:31 -+#: ../panels/color/color.ui.h:33 - msgid "Learn more" - msgstr "了解更多" - --#: ../panels/color/color.ui.h:32 -+#: ../panels/color/color.ui.h:34 - msgid "Learn more about color management" - msgstr "了解更多關於顏色管理的資訊" - --#: ../panels/color/color.ui.h:33 -+#: ../panels/color/color.ui.h:35 - msgid "Set for all users" - msgstr "所有使用者皆可用" - --#: ../panels/color/color.ui.h:34 -+#: ../panels/color/color.ui.h:36 - msgid "Set this profile for all users on this computer" - msgstr "將這個描述檔給電腦上所有使用者" - --#: ../panels/color/color.ui.h:35 -+#: ../panels/color/color.ui.h:37 - msgid "Enable" - msgstr "啟用" - --#: ../panels/color/color.ui.h:36 -+#: ../panels/color/color.ui.h:38 - msgid "Add profile" - msgstr "加入描述檔" - --#: ../panels/color/color.ui.h:37 --#: ../panels/wacom/gnome-wacom-properties.ui.h:10 -+#: ../panels/color/color.ui.h:39 -+#: ../panels/wacom/gnome-wacom-properties.ui.h:11 - msgid "Calibrate…" - msgstr "校準…" - --#: ../panels/color/color.ui.h:38 -+#: ../panels/color/color.ui.h:40 - msgid "Calibrate the device" - msgstr "校準裝置" - --#: ../panels/color/color.ui.h:39 -+#: ../panels/color/color.ui.h:41 - msgid "Remove profile" - msgstr "移除描述檔" - --#: ../panels/color/color.ui.h:40 -+#: ../panels/color/color.ui.h:42 - msgid "View details" - msgstr "檢視詳細資料" - --#: ../panels/color/color.ui.h:41 -+#: ../panels/color/color.ui.h:43 - msgid "Unable to detect any devices that can be color managed" - msgstr "無法偵測到任何能被管理顏色的裝置" - --#: ../panels/color/color.ui.h:42 -+#: ../panels/color/color.ui.h:44 - msgid "LCD" - msgstr "LCD" - --#: ../panels/color/color.ui.h:43 -+#: ../panels/color/color.ui.h:45 - msgid "LED" - msgstr "LED" - --#: ../panels/color/color.ui.h:44 -+#: ../panels/color/color.ui.h:46 - msgid "CRT" - msgstr "CRT" - --#: ../panels/color/color.ui.h:45 -+#: ../panels/color/color.ui.h:47 - msgid "Projector" - msgstr "投影機" - --#: ../panels/color/color.ui.h:46 -+#: ../panels/color/color.ui.h:48 - msgid "Plasma" - msgstr "電漿" - --#: ../panels/color/color.ui.h:47 -+#: ../panels/color/color.ui.h:49 - msgid "LCD (CCFL backlight)" - msgstr "LCD (CCFL 背光)" - --#: ../panels/color/color.ui.h:48 -+#: ../panels/color/color.ui.h:50 - msgid "LCD (RGB LED backlight)" - msgstr "LCD (RGB LED 背光)" - --#: ../panels/color/color.ui.h:49 -+#: ../panels/color/color.ui.h:51 - msgid "LCD (white LED backlight)" - msgstr "LCD (白色 LED 背光)" - --#: ../panels/color/color.ui.h:50 -+#: ../panels/color/color.ui.h:52 - msgid "Wide gamut LCD (CCFL backlight)" - msgstr "廣色域 LCD (CCFL 背光)" - --#: ../panels/color/color.ui.h:51 -+#: ../panels/color/color.ui.h:53 - msgid "Wide gamut LCD (RGB LED backlight)" - msgstr "廣色域 LCD (RGB LED 背光)" - --#: ../panels/color/color.ui.h:52 -+#: ../panels/color/color.ui.h:54 - msgctxt "Calibration quality" - msgid "High" - msgstr "高" - --#: ../panels/color/color.ui.h:53 -+#: ../panels/color/color.ui.h:55 - msgid "40 minutes" - msgstr "40 分鐘" - --#: ../panels/color/color.ui.h:54 -+#: ../panels/color/color.ui.h:56 - msgctxt "Calibration quality" - msgid "Medium" - msgstr "中" - --#: ../panels/color/color.ui.h:55 ../panels/power/power.ui.h:4 -+#: ../panels/color/color.ui.h:57 ../panels/power/power.ui.h:4 - #: ../panels/privacy/privacy.ui.h:7 - msgid "30 minutes" - msgstr "30 分鐘" - --#: ../panels/color/color.ui.h:56 -+#: ../panels/color/color.ui.h:58 - msgctxt "Calibration quality" - msgid "Low" - msgstr "低" - --#: ../panels/color/color.ui.h:57 ../panels/power/power.ui.h:3 -+#: ../panels/color/color.ui.h:59 ../panels/power/power.ui.h:3 - msgid "15 minutes" - msgstr "15 分鐘" - --#: ../panels/color/color.ui.h:58 -+#: ../panels/color/color.ui.h:60 - msgid "Native to display" - msgstr "原生顯示" - --#: ../panels/color/color.ui.h:59 -+#: ../panels/color/color.ui.h:61 - msgid "D50 (Printing and publishing)" - msgstr "D50 (列印與出版)" - --#: ../panels/color/color.ui.h:60 -+#: ../panels/color/color.ui.h:62 - msgid "D55" - msgstr "D55" - --#: ../panels/color/color.ui.h:61 -+#: ../panels/color/color.ui.h:63 - msgid "D65 (Photography and graphics)" - msgstr "D65 (攝影與繪圖)" - --#: ../panels/color/color.ui.h:62 -+#: ../panels/color/color.ui.h:64 - msgid "D75" - msgstr "D75" - -@@ -807,9 +816,7 @@ - #. Translators: those are keywords for the color control-center panel - #: ../panels/color/gnome-color-panel.desktop.in.in.h:4 - msgid "Color;ICC;Profile;Calibrate;Printer;Display;" --msgstr "" --"Color;ICC;Profile;Calibrate;Printer;Display;顏色;色彩描述檔;校準;印表機;顯示" --"器;" -+msgstr "Color;ICC;Profile;Calibrate;Printer;Display;顏色;色彩描述檔;校準;印表機;顯示器;" - - #. Add some common regions - #: ../panels/common/cc-common-language.c:684 -@@ -1039,23 +1046,23 @@ - msgid "To change time or date settings, you need to authenticate." - msgstr "要改變時刻或日期設定值,您需要通過核對。" - --#: ../panels/display/cc-display-panel.c:487 -+#: ../panels/display/cc-display-panel.c:490 - msgid "Lid Closed" - msgstr "上蓋已經關閉" - - #. translators: "Mirrored" describes when both displays show the same view --#: ../panels/display/cc-display-panel.c:490 -+#: ../panels/display/cc-display-panel.c:493 - msgid "Mirrored" - msgstr "鏡射顯示器" - --#: ../panels/display/cc-display-panel.c:492 --#: ../panels/display/cc-display-panel.c:2145 -+#: ../panels/display/cc-display-panel.c:495 -+#: ../panels/display/cc-display-panel.c:2155 - msgid "Primary" - msgstr "主要" - --#: ../panels/display/cc-display-panel.c:494 -+#: ../panels/display/cc-display-panel.c:497 - #: ../panels/notifications/cc-notifications-panel.c:185 --#: ../panels/power/cc-power-panel.c:1684 ../panels/power/cc-power-panel.c:1695 -+#: ../panels/power/cc-power-panel.c:1704 ../panels/power/cc-power-panel.c:1715 - #: ../panels/privacy/cc-privacy-panel.c:84 - #: ../panels/privacy/cc-privacy-panel.c:124 - #: ../panels/universal-access/cc-ua-panel.c:257 -@@ -1065,80 +1072,81 @@ - msgid "Off" - msgstr "關閉" - --#: ../panels/display/cc-display-panel.c:497 -+#: ../panels/display/cc-display-panel.c:500 - msgid "Secondary" - msgstr "次要" - --#: ../panels/display/cc-display-panel.c:1533 -+#: ../panels/display/cc-display-panel.c:1536 - msgid "Arrange Combined Displays" - msgstr "排列顯示器的組合方式" - --#: ../panels/display/cc-display-panel.c:1539 --#: ../panels/display/cc-display-panel.c:1979 --#: ../panels/network/connection-editor/connection-editor.ui.h:1 -+#: ../panels/display/cc-display-panel.c:1542 -+#: ../panels/display/cc-display-panel.c:1988 -+#: ../panels/network/connection-editor/connection-editor.ui.h:2 -+#: ../panels/network/network-wifi.ui.h:2 - msgid "_Apply" - msgstr "套用(_A)" - --#: ../panels/display/cc-display-panel.c:1560 -+#: ../panels/display/cc-display-panel.c:1563 - msgid "Drag displays to rearrange them" - msgstr "拖拉顯示器以重新排列他們" - --#: ../panels/display/cc-display-panel.c:2081 -+#: ../panels/display/cc-display-panel.c:2090 - msgid "Size" - msgstr "尺寸" - - #. aspect ratio --#: ../panels/display/cc-display-panel.c:2094 -+#: ../panels/display/cc-display-panel.c:2103 - msgid "Aspect Ratio" - msgstr "長寬比" - --#: ../panels/display/cc-display-panel.c:2115 -+#: ../panels/display/cc-display-panel.c:2125 - #: ../panels/printers/pp-options-dialog.c:85 - msgid "Resolution" - msgstr "解析度" - --#: ../panels/display/cc-display-panel.c:2146 -+#: ../panels/display/cc-display-panel.c:2156 - msgid "Show the top bar and Activities Overview on this display" - msgstr "在這個顯示器顯示頂端列與活動概覽" - --#: ../panels/display/cc-display-panel.c:2152 -+#: ../panels/display/cc-display-panel.c:2162 - msgid "Secondary Display" - msgstr "次要顯示器" - --#: ../panels/display/cc-display-panel.c:2153 -+#: ../panels/display/cc-display-panel.c:2163 - msgid "Join this display with another to create an extra workspace" - msgstr "將這個顯示器與另一個顯示器結合以建立額外的工作區" - --#: ../panels/display/cc-display-panel.c:2160 -+#: ../panels/display/cc-display-panel.c:2170 - msgid "Presentation" - msgstr "展示" - --#: ../panels/display/cc-display-panel.c:2161 -+#: ../panels/display/cc-display-panel.c:2171 - msgid "Show slideshows and media only" - msgstr "只顯示投影片與媒體" - - #. translators: "Mirror" describes when both displays show the same view --#: ../panels/display/cc-display-panel.c:2166 -+#: ../panels/display/cc-display-panel.c:2176 - msgid "Mirror" - msgstr "鏡射" - --#: ../panels/display/cc-display-panel.c:2167 -+#: ../panels/display/cc-display-panel.c:2177 - msgid "Show your existing view on both displays" - msgstr "在兩個顯示器顯示您現有的檢視" - --#: ../panels/display/cc-display-panel.c:2173 -+#: ../panels/display/cc-display-panel.c:2183 - msgid "Turn Off" - msgstr "關閉" - --#: ../panels/display/cc-display-panel.c:2174 -+#: ../panels/display/cc-display-panel.c:2184 - msgid "Don't use this display" - msgstr "不使用這個顯示器" - --#: ../panels/display/cc-display-panel.c:2383 -+#: ../panels/display/cc-display-panel.c:2388 - msgid "Could not get screen information" - msgstr "無法取得螢幕資訊" - --#: ../panels/display/cc-display-panel.c:2414 -+#: ../panels/display/cc-display-panel.c:2419 - msgid "_Arrange Combined Displays" - msgstr "排列組合的顯示器(_A)" - -@@ -1154,8 +1162,7 @@ - #: ../panels/display/gnome-display-panel.desktop.in.in.h:4 - msgid "Panel;Projector;xrandr;Screen;Resolution;Refresh;Monitor;" - msgstr "" --"Panel;Projector;xrandr;Screen;Resolution;Refresh;Monitor;面板;投影機;螢幕;解" --"析度;重新整理;螢幕;" -+"Panel;Projector;xrandr;Screen;Resolution;Refresh;Monitor;面板;投影機;螢幕;解析度;重新整理;螢幕;" - - #: ../panels/info/cc-info-panel.c:384 - msgid "Wayland" -@@ -1166,49 +1173,45 @@ - msgid "Unknown" - msgstr "不明" - --#: ../panels/info/cc-info-panel.c:472 --#, c-format --msgid "%s %d-bit" --msgstr "%s %d 位元" -- --#: ../panels/info/cc-info-panel.c:474 -+#. translators: This is the the type of OS architecture, eg: "64-bit" or "32-bit" -+#: ../panels/info/cc-info-panel.c:513 - #, c-format - msgid "%d-bit" - msgstr "%d 位元" - --#: ../panels/info/cc-info-panel.c:1154 -+#: ../panels/info/cc-info-panel.c:1191 - msgid "Ask what to do" - msgstr "詢問要做什麼" - --#: ../panels/info/cc-info-panel.c:1158 -+#: ../panels/info/cc-info-panel.c:1195 - msgid "Do nothing" - msgstr "不做任何事" - --#: ../panels/info/cc-info-panel.c:1162 -+#: ../panels/info/cc-info-panel.c:1199 - msgid "Open folder" - msgstr "開啟資料夾" - --#: ../panels/info/cc-info-panel.c:1253 -+#: ../panels/info/cc-info-panel.c:1290 - msgid "Other Media" - msgstr "其他媒體" - --#: ../panels/info/cc-info-panel.c:1284 -+#: ../panels/info/cc-info-panel.c:1321 - msgid "Select an application for audio CDs" - msgstr "選擇播放音樂 CD 的應用程式" - --#: ../panels/info/cc-info-panel.c:1285 -+#: ../panels/info/cc-info-panel.c:1322 - msgid "Select an application for video DVDs" - msgstr "選擇播放影片 DVD 的應用程式" - --#: ../panels/info/cc-info-panel.c:1286 -+#: ../panels/info/cc-info-panel.c:1323 - msgid "Select an application to run when a music player is connected" - msgstr "選擇當音樂播放器連接時要執行的應用程式" - --#: ../panels/info/cc-info-panel.c:1287 -+#: ../panels/info/cc-info-panel.c:1324 - msgid "Select an application to run when a camera is connected" - msgstr "選擇當攝影機連接時要執行的應用程式" - --#: ../panels/info/cc-info-panel.c:1288 -+#: ../panels/info/cc-info-panel.c:1325 - msgid "Select an application for software CDs" - msgstr "選擇軟體 CD 要用的應用程式" - -@@ -1216,80 +1219,80 @@ - #. * strings, just here to fix capitalization of the English originals. - #. * If the shared-mime-info translation works for your language, - #. * simply leave these untranslated. --#. --#: ../panels/info/cc-info-panel.c:1300 -+#. -+#: ../panels/info/cc-info-panel.c:1337 - msgid "audio DVD" - msgstr "音樂 DVD" - --#: ../panels/info/cc-info-panel.c:1301 -+#: ../panels/info/cc-info-panel.c:1338 - msgid "blank Blu-ray disc" - msgstr "空白 Blu-ray 光碟" - --#: ../panels/info/cc-info-panel.c:1302 -+#: ../panels/info/cc-info-panel.c:1339 - msgid "blank CD disc" - msgstr "空白 CD 光碟" - --#: ../panels/info/cc-info-panel.c:1303 -+#: ../panels/info/cc-info-panel.c:1340 - msgid "blank DVD disc" - msgstr "空白 DVD 光碟" - --#: ../panels/info/cc-info-panel.c:1304 -+#: ../panels/info/cc-info-panel.c:1341 - msgid "blank HD DVD disc" - msgstr "空白 HD DVD 光碟" - --#: ../panels/info/cc-info-panel.c:1305 -+#: ../panels/info/cc-info-panel.c:1342 - msgid "Blu-ray video disc" - msgstr "Blu-Ray 影片光碟" - --#: ../panels/info/cc-info-panel.c:1306 -+#: ../panels/info/cc-info-panel.c:1343 - msgid "e-book reader" - msgstr "電子書閱讀器" - --#: ../panels/info/cc-info-panel.c:1307 -+#: ../panels/info/cc-info-panel.c:1344 - msgid "HD DVD video disc" - msgstr "HD DVD 影片光碟" - --#: ../panels/info/cc-info-panel.c:1308 -+#: ../panels/info/cc-info-panel.c:1345 - msgid "Picture CD" - msgstr "照片 CD" - --#: ../panels/info/cc-info-panel.c:1309 -+#: ../panels/info/cc-info-panel.c:1346 - msgid "Super Video CD" - msgstr "SVCD" - --#: ../panels/info/cc-info-panel.c:1310 -+#: ../panels/info/cc-info-panel.c:1347 - msgid "Video CD" - msgstr "影片 CD" - --#: ../panels/info/cc-info-panel.c:1311 -+#: ../panels/info/cc-info-panel.c:1348 - msgid "Windows software" - msgstr "Windows 軟體" - --#: ../panels/info/cc-info-panel.c:1434 --#: ../panels/keyboard/keyboard-shortcuts.c:1917 -+#: ../panels/info/cc-info-panel.c:1471 -+#: ../panels/keyboard/keyboard-shortcuts.c:1932 - msgid "Section" - msgstr "節" - --#: ../panels/info/cc-info-panel.c:1443 ../panels/info/info.ui.h:14 -+#: ../panels/info/cc-info-panel.c:1480 ../panels/info/info.ui.h:13 - msgid "Overview" - msgstr "概覽" - --#: ../panels/info/cc-info-panel.c:1449 ../panels/info/info.ui.h:21 -+#: ../panels/info/cc-info-panel.c:1486 ../panels/info/info.ui.h:20 - msgid "Default Applications" - msgstr "預設應用程式" - --#: ../panels/info/cc-info-panel.c:1454 ../panels/info/info.ui.h:29 -+#: ../panels/info/cc-info-panel.c:1491 ../panels/info/info.ui.h:28 - msgid "Removable Media" - msgstr "可移除式媒體" - --#: ../panels/info/cc-info-panel.c:1479 -+#: ../panels/info/cc-info-panel.c:1516 - #, c-format - msgid "Version %s" - msgstr "版本 %s" - - #: ../panels/info/gnome-info-panel.desktop.in.in.h:1 - #: ../panels/network/connection-editor/ce-page-details.c:240 --#: ../panels/network/network-wifi.ui.h:44 -+#: ../panels/network/network-wifi.ui.h:46 - msgid "Details" - msgstr "詳細資料" - -@@ -1300,12 +1303,9 @@ - #. sure that you use the same "translation" for those keywords - #: ../panels/info/gnome-info-panel.desktop.in.in.h:4 - msgid "" --"device;system;information;memory;processor;version;default;application;" --"preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" -+"device;system;information;memory;processor;version;default;application;preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;" - msgstr "" --"device;system;information;memory;processor;version;default;application;" --"preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;裝置;系統;資訊;" --"記憶體;處理器;版本;預設;應用程式;首選;音訊;視訊;光碟;可移除;媒體;自動執行;" -+"device;system;information;memory;processor;version;default;application;preferred;cd;dvd;usb;audio;video;disc;removable;media;autorun;裝置;系統;資訊;記憶體;處理器;版本;預設;應用程式;首選;音訊;視訊;光碟;可移除;媒體;自動執行;" - - #: ../panels/info/info.ui.h:1 - msgid "Select how other media should be handled" -@@ -1331,80 +1331,79 @@ - msgid "Processor" - msgstr "處理器" - --#. To translators: this field contains the distro name, version and type --#: ../panels/info/info.ui.h:8 --msgid "Base system" --msgstr "基礎系統" -+#: ../panels/info/info.ui.h:7 -+msgid "OS Type" -+msgstr "作業系統類型" - --#: ../panels/info/info.ui.h:9 -+#: ../panels/info/info.ui.h:8 - msgid "Disk" - msgstr "磁碟" - --#: ../panels/info/info.ui.h:10 -+#: ../panels/info/info.ui.h:9 - msgid "Calculating…" - msgstr "正在計算…" - --#: ../panels/info/info.ui.h:11 -+#: ../panels/info/info.ui.h:10 - msgid "Graphics" - msgstr "繪圖" - --#: ../panels/info/info.ui.h:12 -+#: ../panels/info/info.ui.h:11 - msgid "Virtualization" - msgstr "虛擬化" - --#: ../panels/info/info.ui.h:13 -+#: ../panels/info/info.ui.h:12 - msgid "Check for updates" - msgstr "檢查更新" - --#: ../panels/info/info.ui.h:15 -+#: ../panels/info/info.ui.h:14 - msgid "_Web" - msgstr "網頁(_W)" - --#: ../panels/info/info.ui.h:16 -+#: ../panels/info/info.ui.h:15 - msgid "_Mail" - msgstr "郵件(_M)" - --#: ../panels/info/info.ui.h:17 -+#: ../panels/info/info.ui.h:16 - msgid "_Calendar" - msgstr "日曆(_C)" - --#: ../panels/info/info.ui.h:18 -+#: ../panels/info/info.ui.h:17 - msgid "M_usic" - msgstr "音樂(_U)" - --#: ../panels/info/info.ui.h:19 -+#: ../panels/info/info.ui.h:18 - msgid "_Video" - msgstr "影片(_V)" - --#: ../panels/info/info.ui.h:20 -+#: ../panels/info/info.ui.h:19 - msgid "_Photos" - msgstr "相片(_P)" - --#: ../panels/info/info.ui.h:22 -+#: ../panels/info/info.ui.h:21 - msgid "Select how media should be handled" - msgstr "選擇要如何處理媒體" - --#: ../panels/info/info.ui.h:23 -+#: ../panels/info/info.ui.h:22 - msgid "CD _audio" - msgstr "CD 音樂(_A)" - --#: ../panels/info/info.ui.h:24 -+#: ../panels/info/info.ui.h:23 - msgid "_DVD video" - msgstr "_DVD 影片" - --#: ../panels/info/info.ui.h:25 -+#: ../panels/info/info.ui.h:24 - msgid "_Music player" - msgstr "音樂播放器(_M)" - --#: ../panels/info/info.ui.h:26 -+#: ../panels/info/info.ui.h:25 - msgid "_Software" - msgstr "軟體(_S)" - --#: ../panels/info/info.ui.h:27 -+#: ../panels/info/info.ui.h:26 - msgid "_Other Media…" - msgstr "其他(_O)…" - --#: ../panels/info/info.ui.h:28 -+#: ../panels/info/info.ui.h:27 - msgid "_Never prompt or start programs on media insertion" - msgstr "插入媒體時永遠不提示或啟動程式(_N)" - -@@ -1474,7 +1473,7 @@ - msgid "Launch help browser" - msgstr "執行說明文件瀏覽器" - --#: ../panels/keyboard/01-launchers.xml.in.h:3 ../shell/cc-window.c:1601 -+#: ../panels/keyboard/01-launchers.xml.in.h:3 ../shell/cc-window.c:1604 - #: ../shell/gnome-control-center.desktop.in.in.h:1 - msgid "Settings" - msgstr "設定值" -@@ -1588,18 +1587,17 @@ - #. * The device has been disabled - #: ../panels/keyboard/cc-keyboard-option.c:276 - #: ../panels/keyboard/cc-keyboard-option.c:395 --#: ../panels/keyboard/keyboard-shortcuts.c:1217 --#: ../panels/network/network-wifi.ui.h:29 -+#: ../panels/keyboard/keyboard-shortcuts.c:1218 -+#: ../panels/network/network-wifi.ui.h:31 - #: ../panels/sound/gvc/gvc-mixer-control.c:1830 - #: ../panels/user-accounts/um-fingerprint-dialog.c:213 --#: ../panels/user-accounts/um-fingerprint-dialog.c:214 - msgid "Disabled" - msgstr "已停用" - - #. Translators: This key is also known as 'third level - #. * chooser'. AltGr is often used for this purpose. See - #. * https://live.gnome.org/Design/SystemSettings/RegionAndLanguage --#. -+#. - #: ../panels/keyboard/cc-keyboard-option.c:354 - msgid "Alternative Characters Key" - msgstr "替代的字元鍵" -@@ -1607,7 +1605,7 @@ - #. Translators: The Compose key is used to initiate key - #. * sequences that are combined to form a single character. - #. * See http://en.wikipedia.org/wiki/Compose_key --#. -+#. - #: ../panels/keyboard/cc-keyboard-option.c:363 - msgid "Compose Key" - msgstr "組合鍵" -@@ -1633,14 +1631,6 @@ - msgid "Custom Shortcut" - msgstr "自訂捷徑鍵" - --#: ../panels/keyboard/gnome-keyboard-panel.ui.h:3 --#: ../panels/network/connection-editor/net-connection-editor.c:512 --#: ../panels/printers/new-printer-dialog.ui.h:3 --#: ../panels/region/input-chooser.ui.h:3 --#: ../panels/user-accounts/um-account-dialog.c:1469 --msgid "_Add" --msgstr "加入(_A)" -- - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:4 - msgid "_Name:" - msgstr "名稱(_N):" -@@ -1722,69 +1712,63 @@ - msgid "" - "To edit a shortcut, click the row and hold down the new keys or press " - "Backspace to clear." --msgstr "" --"要編輯捷徑鍵,點選相應的列並按下新的按鍵組合,或以 Backspace 鍵來清除。" -+msgstr "要編輯捷徑鍵,點選相應的列並按下新的按鍵組合,或以 Backspace 鍵來清除。" - - #: ../panels/keyboard/gnome-keyboard-panel.ui.h:24 - msgid "Shortcuts" - msgstr "快捷鍵" - --#: ../panels/keyboard/keyboard-shortcuts.c:634 --#: ../panels/keyboard/keyboard-shortcuts.c:642 -+#: ../panels/keyboard/keyboard-shortcuts.c:635 -+#: ../panels/keyboard/keyboard-shortcuts.c:643 - msgid "Custom Shortcuts" - msgstr "自訂捷徑鍵" - --#: ../panels/keyboard/keyboard-shortcuts.c:859 -+#: ../panels/keyboard/keyboard-shortcuts.c:860 - msgid "" - msgstr "<行動設定不詳>" - --#: ../panels/keyboard/keyboard-shortcuts.c:1356 -+#: ../panels/keyboard/keyboard-shortcuts.c:1357 - #, c-format - msgid "" - "The shortcut \"%s\" cannot be used because it will become impossible to type " - "using this key.\n" - "Please try with a key such as Control, Alt or Shift at the same time." --msgstr "" --"捷徑“%s”無法使用,原因是會無法按下此按鍵。\n" -+msgstr "捷徑“%s”無法使用,原因是會無法按下此按鍵。\n" - "請試用其它的按鍵:如同時使用 Control,Alt 或 Shift。" - --#: ../panels/keyboard/keyboard-shortcuts.c:1386 -+#: ../panels/keyboard/keyboard-shortcuts.c:1387 - #, c-format --msgid "" --"The shortcut \"%s\" is already used for\n" -+msgid "The shortcut \"%s\" is already used for\n" - "\"%s\"" --msgstr "" --"捷徑鍵“%s”己經使用於:\n" -+msgstr "捷徑鍵“%s”己經使用於:\n" - "“%s”" - --#: ../panels/keyboard/keyboard-shortcuts.c:1391 -+#: ../panels/keyboard/keyboard-shortcuts.c:1392 - #, c-format - msgid "" - "If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be disabled." -+"" - msgstr "如果您重新指派捷徑鍵為「%s」,「%s」的捷徑鍵就會停用。" - --#: ../panels/keyboard/keyboard-shortcuts.c:1397 -+#: ../panels/keyboard/keyboard-shortcuts.c:1398 - msgid "_Reassign" - msgstr "重新指派(_R)" - --#: ../panels/keyboard/keyboard-shortcuts.c:1429 -+#: ../panels/keyboard/keyboard-shortcuts.c:1439 - #, c-format - msgid "" - "The \"%s\" shortcut has an associated \"%s\" shortcut. Do you want to " - "automatically set it to \"%s\"?" - msgstr "捷徑鍵「%s」已指派「%s」捷徑。您想要自動將它設定為「%s」嗎?" - --#: ../panels/keyboard/keyboard-shortcuts.c:1435 -+#: ../panels/keyboard/keyboard-shortcuts.c:1449 - #, c-format --#| msgid "" --#| "If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be " --#| "disabled." - msgid "" - "\"%s\" is currently associated with \"%s\", this shortcut will be disabled " - "if you move forward." - msgstr "「%s」目前指派為「%s」,如果您繼續這個捷徑鍵就會停用。" - --#: ../panels/keyboard/keyboard-shortcuts.c:1441 -+#: ../panels/keyboard/keyboard-shortcuts.c:1456 - msgid "_Assign" - msgstr "指派(_R)" - -@@ -1809,8 +1793,7 @@ - #: ../panels/mouse/gnome-mouse-panel.desktop.in.in.h:4 - msgid "Trackpad;Pointer;Click;Tap;Double;Button;Trackball;Scroll;" - msgstr "" --"Trackpad;Pointer;Click;Tap;Double;Button;Trackball;Scroll;觸控板;指標;點擊;輕" --"觸;雙擊;按鈕;軌跡球;捲動;" -+"Trackpad;Pointer;Click;Tap;Double;Button;Trackball;Scroll;觸控板;指標;點擊;輕觸;雙擊;按鈕;軌跡球;捲動;" - - #: ../panels/mouse/gnome-mouse-properties.ui.h:1 - msgid "General" -@@ -1932,26 +1915,26 @@ - - #. TRANSLATORS: this is to disable the radio hardware in the - #. * network panel --#: ../panels/network/cc-network-panel.c:366 -+#: ../panels/network/cc-network-panel.c:369 - msgid "Air_plane Mode" - msgstr "飛安模式(_P)" - --#: ../panels/network/cc-network-panel.c:965 -+#: ../panels/network/cc-network-panel.c:978 - msgid "Network proxy" - msgstr "網路代理伺服器" - - #. Translators: this is the title of the connection details - #. * window for vpn connections, it is also used to display - #. * vpn connections in the device list. --#. --#: ../panels/network/cc-network-panel.c:1144 ../panels/network/net-vpn.c:278 -+#. -+#: ../panels/network/cc-network-panel.c:1155 ../panels/network/net-vpn.c:278 - #: ../panels/network/net-vpn.c:431 - #, c-format - msgid "%s VPN" - msgstr "%s VPN" - - #. TRANSLATORS: the user is running a NM that is not API compatible --#: ../panels/network/cc-network-panel.c:1289 -+#: ../panels/network/cc-network-panel.c:1302 - msgid "The system network services are not compatible with this version." - msgstr "系統網路服務與這個版本不相容。" - -@@ -1987,7 +1970,7 @@ - #: ../panels/network/connection-editor/ce-page-8021x-security.c:108 - #: ../panels/network/connection-editor/ce-page-security.c:455 - #: ../panels/network/connection-editor/details-page.ui.h:3 --#: ../panels/network/network-wifi.ui.h:4 -+#: ../panels/network/network-wifi.ui.h:6 - msgid "Security" - msgstr "安全性" - -@@ -1997,34 +1980,34 @@ - - #. TRANSLATORS: this WEP WiFi security - #: ../panels/network/connection-editor/ce-page-details.c:52 --#: ../panels/network/net-device-wifi.c:217 --#: ../panels/network/net-device-wifi.c:378 -+#: ../panels/network/net-device-wifi.c:218 -+#: ../panels/network/net-device-wifi.c:382 - msgid "WEP" - msgstr "WEP" - - #. TRANSLATORS: this WPA WiFi security - #: ../panels/network/connection-editor/ce-page-details.c:56 --#: ../panels/network/net-device-wifi.c:221 --#: ../panels/network/net-device-wifi.c:383 --#: ../panels/network/network-wifi.ui.h:17 -+#: ../panels/network/net-device-wifi.c:222 -+#: ../panels/network/net-device-wifi.c:387 -+#: ../panels/network/network-wifi.ui.h:19 - msgid "WPA" - msgstr "WPA" - - #. TRANSLATORS: this WPA WiFi security - #: ../panels/network/connection-editor/ce-page-details.c:60 --#: ../panels/network/net-device-wifi.c:225 -+#: ../panels/network/net-device-wifi.c:226 - msgid "WPA2" - msgstr "WPA2" - - #. TRANSLATORS: this Enterprise WiFi security - #: ../panels/network/connection-editor/ce-page-details.c:65 --#: ../panels/network/net-device-wifi.c:230 -+#: ../panels/network/net-device-wifi.c:231 - msgid "Enterprise" - msgstr "企業版" - - #: ../panels/network/connection-editor/ce-page-details.c:70 --#: ../panels/network/net-device-wifi.c:235 --#: ../panels/network/net-device-wifi.c:368 -+#: ../panels/network/net-device-wifi.c:236 -+#: ../panels/network/net-device-wifi.c:372 - msgctxt "Wifi security" - msgid "None" - msgstr "沒有" -@@ -2046,7 +2029,7 @@ - - #: ../panels/network/connection-editor/ce-page-details.c:106 - #: ../panels/network/net-device-ethernet.c:126 --#: ../panels/network/net-device-wifi.c:472 -+#: ../panels/network/net-device-wifi.c:476 - #, c-format - msgid "%i day ago" - msgid_plural "%i days ago" -@@ -2055,37 +2038,37 @@ - #. Translators: network device speed - #: ../panels/network/connection-editor/ce-page-details.c:155 - #: ../panels/network/net-device-ethernet.c:54 --#: ../panels/network/net-device-wifi.c:529 -+#: ../panels/network/net-device-wifi.c:533 - #, c-format - msgid "%d Mb/s" - msgstr "%d Mb/s" - - #: ../panels/network/connection-editor/ce-page-details.c:181 --#: ../panels/network/net-device-wifi.c:558 -+#: ../panels/network/net-device-wifi.c:562 - msgctxt "Signal strength" - msgid "None" - msgstr "沒有" - - #: ../panels/network/connection-editor/ce-page-details.c:183 --#: ../panels/network/net-device-wifi.c:560 -+#: ../panels/network/net-device-wifi.c:564 - msgctxt "Signal strength" - msgid "Weak" - msgstr "太弱" - - #: ../panels/network/connection-editor/ce-page-details.c:185 --#: ../panels/network/net-device-wifi.c:562 -+#: ../panels/network/net-device-wifi.c:566 - msgctxt "Signal strength" - msgid "Ok" - msgstr "確定" - - #: ../panels/network/connection-editor/ce-page-details.c:187 --#: ../panels/network/net-device-wifi.c:564 -+#: ../panels/network/net-device-wifi.c:568 - msgctxt "Signal strength" - msgid "Good" - msgstr "良好" - - #: ../panels/network/connection-editor/ce-page-details.c:189 --#: ../panels/network/net-device-wifi.c:566 -+#: ../panels/network/net-device-wifi.c:570 - msgctxt "Signal strength" - msgid "Excellent" - msgstr "很好" -@@ -2093,7 +2076,7 @@ - #: ../panels/network/connection-editor/ce-page-ethernet.c:226 - #: ../panels/network/connection-editor/ce-page-vpn.c:204 - #: ../panels/network/connection-editor/ce-page-wifi.c:270 --#: ../panels/network/network-wifi.ui.h:45 -+#: ../panels/network/network-wifi.ui.h:47 - msgid "Identity" - msgstr "身分" - -@@ -2113,7 +2096,7 @@ - #: ../panels/network/connection-editor/ce-page-ip4.c:465 - #: ../panels/network/connection-editor/ce-page-ip6.c:205 - #: ../panels/network/connection-editor/ce-page-ip6.c:473 --#: ../panels/network/network-vpn.ui.h:3 -+#: ../panels/network/network-vpn.ui.h:2 - msgid "Gateway" - msgstr "通訊閘" - -@@ -2150,13 +2133,13 @@ - msgstr "刪除路由" - - #: ../panels/network/connection-editor/ce-page-ip4.c:615 --#: ../panels/network/network-wifi.ui.h:25 -+#: ../panels/network/network-wifi.ui.h:27 - msgid "Automatic (DHCP)" - msgstr "自動 (DHCP)" - - #: ../panels/network/connection-editor/ce-page-ip4.c:619 - #: ../panels/network/connection-editor/ce-page-ip6.c:621 --#: ../panels/network/network-wifi.ui.h:24 -+#: ../panels/network/network-wifi.ui.h:26 - msgid "Manual" - msgstr "手動" - -@@ -2165,8 +2148,8 @@ - msgid "Link-Local Only" - msgstr "只有本機連線" - --#: ../panels/network/connection-editor/ce-page-ip4.c:953 --#: ../panels/network/network-wifi.ui.h:46 -+#: ../panels/network/connection-editor/ce-page-ip4.c:967 -+#: ../panels/network/network-wifi.ui.h:48 - msgid "IPv4" - msgstr "IPv4" - -@@ -2187,13 +2170,13 @@ - msgid "Automatic, DHCP only" - msgstr "自動,僅使用 DHCP" - --#: ../panels/network/connection-editor/ce-page-ip6.c:919 --#: ../panels/network/network-wifi.ui.h:47 -+#: ../panels/network/connection-editor/ce-page-ip6.c:937 -+#: ../panels/network/network-wifi.ui.h:49 - msgid "IPv6" - msgstr "IPv6" - - #: ../panels/network/connection-editor/ce-page-reset.c:91 --#: ../panels/network/network-wifi.ui.h:49 -+#: ../panels/network/network-wifi.ui.h:51 - msgid "Reset" - msgstr "重設" - -@@ -2228,19 +2211,19 @@ - msgstr "WPA & WPA2 企業版" - - #: ../panels/network/connection-editor/details-page.ui.h:1 --#: ../panels/network/network-wifi.ui.h:2 -+#: ../panels/network/network-wifi.ui.h:4 - msgid "Signal Strength" - msgstr "信號強度" - - #: ../panels/network/connection-editor/details-page.ui.h:2 --#: ../panels/network/network-wifi.ui.h:3 -+#: ../panels/network/network-wifi.ui.h:5 - msgid "Link speed" - msgstr "連線速度" - - #: ../panels/network/connection-editor/details-page.ui.h:4 - #: ../panels/network/net-device-ethernet.c:159 - #: ../panels/network/network-simple.ui.h:3 --#: ../panels/network/network-wifi.ui.h:5 ../panels/network/panel-common.c:693 -+#: ../panels/network/network-wifi.ui.h:7 ../panels/network/panel-common.c:693 - msgid "IPv4 Address" - msgstr "IPv4 位址" - -@@ -2249,14 +2232,14 @@ - #: ../panels/network/net-device-ethernet.c:164 - #: ../panels/network/network-mobile.ui.h:4 - #: ../panels/network/network-simple.ui.h:4 --#: ../panels/network/network-wifi.ui.h:6 ../panels/network/panel-common.c:694 -+#: ../panels/network/network-wifi.ui.h:8 ../panels/network/panel-common.c:694 - msgid "IPv6 Address" - msgstr "IPv6 位址" - - #: ../panels/network/connection-editor/details-page.ui.h:6 - #: ../panels/network/net-device-ethernet.c:167 - #: ../panels/network/network-simple.ui.h:2 --#: ../panels/network/network-wifi.ui.h:7 -+#: ../panels/network/network-wifi.ui.h:9 - msgid "Hardware Address" - msgstr "硬體位址" - -@@ -2264,7 +2247,7 @@ - #: ../panels/network/net-device-ethernet.c:171 - #: ../panels/network/network-mobile.ui.h:5 - #: ../panels/network/network-simple.ui.h:5 --#: ../panels/network/network-wifi.ui.h:8 -+#: ../panels/network/network-wifi.ui.h:10 - msgid "Default Route" - msgstr "預設路由" - -@@ -2274,7 +2257,7 @@ - #: ../panels/network/net-device-ethernet.c:173 - #: ../panels/network/network-mobile.ui.h:6 - #: ../panels/network/network-simple.ui.h:6 --#: ../panels/network/network-wifi.ui.h:9 -+#: ../panels/network/network-wifi.ui.h:11 - msgid "DNS" - msgstr "DNS" - -@@ -2321,7 +2304,7 @@ - - #: ../panels/network/connection-editor/ethernet-page.ui.h:11 - #: ../panels/network/connection-editor/wifi-page.ui.h:4 --#: ../panels/network/network-wifi.ui.h:36 -+#: ../panels/network/network-wifi.ui.h:38 - msgid "_MAC Address" - msgstr "_MAC 位址" - -@@ -2355,7 +2338,7 @@ - msgstr "防火牆地帶(_Z)" - - #: ../panels/network/connection-editor/firewall-helpers.c:48 --#: ../panels/network/connection-editor/firewall-helpers.c:112 -+#: ../panels/network/connection-editor/firewall-helpers.c:113 - msgctxt "Firewall zone" - msgid "Default" - msgstr "預設" -@@ -2365,13 +2348,13 @@ - msgstr "這個地帶定義了連線的信任等級" - - #: ../panels/network/connection-editor/ip4-page.ui.h:1 --#: ../panels/network/network-wifi.ui.h:22 -+#: ../panels/network/network-wifi.ui.h:24 - msgid "IPv_4" - msgstr "IPv_4" - - #: ../panels/network/connection-editor/ip4-page.ui.h:2 - #: ../panels/network/connection-editor/ip6-page.ui.h:2 --#: ../panels/network/network-wifi.ui.h:23 -+#: ../panels/network/network-wifi.ui.h:25 - msgid "_Addresses" - msgstr "位址(_A)" - -@@ -2382,7 +2365,7 @@ - - #: ../panels/network/connection-editor/ip4-page.ui.h:6 - #: ../panels/network/connection-editor/ip6-page.ui.h:6 --#: ../panels/network/network-wifi.ui.h:30 -+#: ../panels/network/network-wifi.ui.h:32 - msgid "Routes" - msgstr "路由" - -@@ -2393,12 +2376,12 @@ - - #: ../panels/network/connection-editor/ip4-page.ui.h:8 - #: ../panels/network/connection-editor/ip6-page.ui.h:8 --#: ../panels/network/network-wifi.ui.h:32 -+#: ../panels/network/network-wifi.ui.h:34 - msgid "Use this connection _only for resources on its network" - msgstr "只在使用這個連線的網路資源時才使用此連線(_U)" - - #: ../panels/network/connection-editor/ip6-page.ui.h:1 --#: ../panels/network/network-wifi.ui.h:34 -+#: ../panels/network/network-wifi.ui.h:36 - msgid "IPv_6" - msgstr "IPv_6" - -@@ -2411,7 +2394,6 @@ - msgstr "新增設定組合" - - #: ../panels/network/connection-editor/net-connection-editor.c:577 --#: ../panels/network/network.ui.h:1 ../panels/network/network-vpn.ui.h:1 - msgid "VPN" - msgstr "VPN" - -@@ -2444,13 +2426,13 @@ - msgstr "加入網路連線" - - #: ../panels/network/connection-editor/reset-page.ui.h:1 --#: ../panels/network/network-wifi.ui.h:39 -+#: ../panels/network/network-wifi.ui.h:41 - msgid "_Reset" - msgstr "重設(_R)" - - #: ../panels/network/connection-editor/reset-page.ui.h:2 --#: ../panels/network/net-device-wifi.c:1449 --#: ../panels/network/network-wifi.ui.h:40 -+#: ../panels/network/net-device-wifi.c:1441 -+#: ../panels/network/network-wifi.ui.h:42 - msgid "_Forget" - msgstr "遺忘(_F)" - -@@ -2467,7 +2449,7 @@ - msgstr "移除這個網路的相關詳細資料並且不再嘗試自動連線" - - #: ../panels/network/connection-editor/security-page.ui.h:1 --#: ../panels/network/network-wifi.ui.h:14 -+#: ../panels/network/network-wifi.ui.h:16 - msgid "S_ecurity" - msgstr "安全性(_E)" - -@@ -2482,8 +2464,7 @@ - "connection information\n" - "\n" - "Error: %s." --msgstr "" --"檔案「%s」無法讀取或未包含可辨識的 VPN 連線資訊\n" -+msgstr "檔案「%s」無法讀取或未包含可辨識的 VPN 連線資訊\n" - "\n" - "錯誤:%s。" - -@@ -2492,7 +2473,7 @@ - msgstr "選擇要匯入的檔案" - - #: ../panels/network/connection-editor/vpn-helpers.c:246 --#: ../panels/printers/cc-printers-panel.c:1948 -+#: ../panels/printers/cc-printers-panel.c:1950 - #: ../panels/sharing/cc-sharing-panel.c:492 - #: ../panels/user-accounts/um-photo-dialog.c:223 - msgid "_Open" -@@ -2518,12 +2499,10 @@ - - #: ../panels/network/connection-editor/vpn-helpers.c:336 - #, c-format --msgid "" --"The VPN connection '%s' could not be exported to %s.\n" -+msgid "The VPN connection '%s' could not be exported to %s.\n" - "\n" - "Error: %s." --msgstr "" --"VPN 連線「%s」不能匯出至 %s。\n" -+msgstr "VPN 連線「%s」不能匯出至 %s。\n" - "\n" - "錯誤:%s。" - -@@ -2536,17 +2515,17 @@ - msgstr "(錯誤:無法載入 VPN 連線編輯器)" - - #: ../panels/network/connection-editor/wifi-page.ui.h:1 --#: ../panels/network/network-wifi.ui.h:12 -+#: ../panels/network/network-wifi.ui.h:14 - msgid "_SSID" - msgstr "_SSID" - - #: ../panels/network/connection-editor/wifi-page.ui.h:2 --#: ../panels/network/network-wifi.ui.h:13 -+#: ../panels/network/network-wifi.ui.h:15 - msgid "_BSSID" - msgstr "_BSSID" - - #: ../panels/network/connection-editor/wifi-page.ui.h:3 --#: ../panels/network/network-wifi.ui.h:16 -+#: ../panels/network/network-wifi.ui.h:18 - msgid "My Home Network" - msgstr "我的家用網路" - -@@ -2566,12 +2545,11 @@ - #. Translators: those are keywords for the network control-center panel - #: ../panels/network/gnome-network-panel.desktop.in.in.h:4 - msgid "" --"Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;" --"vlan;bridge;bond;DNS;" -+"Network;Wireless;Wi-" -+"Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;vlan;bridge;bond;DNS;" - msgstr "" --"Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;" --"vlan;bridge;bond;DNS;網路;無線網路;區域網路;代理伺服器;寬頻;數據機;藍牙;橋接;" --"繫結;" -+"Network;Wireless;Wi-" -+"Fi;Wifi;IP;LAN;Proxy;WAN;Broadband;Modem;Bluetooth;vpn;vlan;bridge;bond;DNS;網路;無線網路;區域網路;代理伺服器;寬頻;數據機;藍牙;橋接;繫結;" - - #: ../panels/network/net-device-bond.c:77 - msgid "Bond slaves" -@@ -2588,17 +2566,17 @@ - msgstr "橋接的連線" - - #: ../panels/network/net-device-ethernet.c:112 --#: ../panels/network/net-device-wifi.c:458 -+#: ../panels/network/net-device-wifi.c:462 - msgid "never" - msgstr "永不" - - #: ../panels/network/net-device-ethernet.c:122 --#: ../panels/network/net-device-wifi.c:468 -+#: ../panels/network/net-device-wifi.c:472 - msgid "today" - msgstr "今日" - - #: ../panels/network/net-device-ethernet.c:124 --#: ../panels/network/net-device-wifi.c:470 -+#: ../panels/network/net-device-wifi.c:474 - msgid "yesterday" - msgstr "昨日" - -@@ -2610,7 +2588,7 @@ - msgstr "IP 位址" - - #: ../panels/network/net-device-ethernet.c:178 --#: ../panels/network/network-wifi.ui.h:10 -+#: ../panels/network/network-wifi.ui.h:12 - msgid "Last used" - msgstr "最後使用的" - -@@ -2618,7 +2596,7 @@ - #. * details window for ethernet, if there is only a single - #. * profile. It is also used to display ethernet in the - #. * device list. --#. -+#. - #: ../panels/network/net-device-ethernet.c:288 - #: ../panels/network/network-ethernet.ui.h:1 - #: ../panels/network/network-simple.ui.h:1 -@@ -2626,11 +2604,11 @@ - msgstr "有線" - - #: ../panels/network/net-device-ethernet.c:356 --#: ../panels/network/net-device-wifi.c:1604 -+#: ../panels/network/net-device-wifi.c:1596 - #: ../panels/network/network-ethernet.ui.h:3 - #: ../panels/network/network-mobile.ui.h:8 - #: ../panels/network/network-simple.ui.h:8 --#: ../panels/network/network-vpn.ui.h:8 -+#: ../panels/network/network-vpn.ui.h:7 - msgid "Options…" - msgstr "選項…" - -@@ -2647,59 +2625,59 @@ - msgid "Team slaves" - msgstr "團隊從屬" - --#: ../panels/network/net-device-wifi.c:1153 -+#: ../panels/network/net-device-wifi.c:1154 - msgid "" - "If you have a connection to the Internet other than wireless, you can set up " - "a wireless hotspot to share the connection with others." --msgstr "" --"如果您有無線網路以外的方式連線到網際網路,您可以使用它來與其他人分享您的網際" --"網路連線。" -+msgstr "如果您有無線網路以外的方式連線到網際網路,您可以使用它來與其他人分享您的網際網路連線。" - --#: ../panels/network/net-device-wifi.c:1157 -+#: ../panels/network/net-device-wifi.c:1158 - #, c-format - msgid "Switching on the wireless hotspot will disconnect you from %s." - msgstr "切換無線網路熱點會讓您從 %s 斷線。" - --#: ../panels/network/net-device-wifi.c:1161 -+#: ../panels/network/net-device-wifi.c:1162 - msgid "" - "It is not possible to access the Internet through your wireless while the " - "hotspot is active." - msgstr "當熱點在使用中時是沒有辦法透過您的無線網路存取網際網路的。" - --#: ../panels/network/net-device-wifi.c:1238 -+#: ../panels/network/net-device-wifi.c:1245 - msgid "Stop hotspot and disconnect any users?" - msgstr "停止熱點並中斷任何使用者的連線?" - --#: ../panels/network/net-device-wifi.c:1241 -+#: ../panels/network/net-device-wifi.c:1248 - msgid "_Stop Hotspot" - msgstr "停止熱點(_S)" - --#: ../panels/network/net-device-wifi.c:1313 -+#: ../panels/network/net-device-wifi.c:1305 - msgid "System policy prohibits use as a Hotspot" - msgstr "系統原則禁止做為熱點" - --#: ../panels/network/net-device-wifi.c:1316 -+#: ../panels/network/net-device-wifi.c:1308 - msgid "Wireless device does not support Hotspot mode" - msgstr "無線裝置不支援熱點模式" - --#: ../panels/network/net-device-wifi.c:1445 -+#: ../panels/network/net-device-wifi.c:1437 - msgid "" - "Network details for the selected networks, including passwords and any " - "custom configuration will be lost." - msgstr "選取網路的詳細資料包含密碼及任何自訂的組態都會消失。" - --#: ../panels/network/net-device-wifi.c:1753 -+#: ../panels/network/net-device-wifi.c:1745 - #: ../panels/user-accounts/data/user-accounts-dialog.ui.h:13 - msgid "History" - msgstr "歷史紀錄" - --#: ../panels/network/net-device-wifi.c:1757 --#: ../panels/wacom/cc-wacom-page.c:533 -+#: ../panels/network/net-device-wifi.c:1749 -+#: ../panels/region/input-options.ui.h:2 ../panels/wacom/button-mapping.ui.h:2 -+#: ../panels/wacom/cc-wacom-page.c:525 -+#: ../panels/wacom/gnome-wacom-properties.ui.h:4 - msgid "_Close" - msgstr "關閉(_C)" - - #. translators: This is the label for the "Forget wireless network" functionality --#: ../panels/network/net-device-wifi.c:1765 -+#: ../panels/network/net-device-wifi.c:1757 - msgctxt "Wi-Fi Network" - msgid "_Forget" - msgstr "遺忘(_F)" -@@ -2734,17 +2712,17 @@ - msgid "Provider" - msgstr "供應商" - --#: ../panels/network/network-proxy.ui.h:1 ../panels/network/network.ui.h:2 -+#: ../panels/network/network-proxy.ui.h:1 - msgctxt "proxy method" - msgid "None" - msgstr "沒有" - --#: ../panels/network/network-proxy.ui.h:2 ../panels/network/network.ui.h:3 -+#: ../panels/network/network-proxy.ui.h:2 - msgctxt "proxy method" - msgid "Manual" - msgstr "手動" - --#: ../panels/network/network-proxy.ui.h:3 ../panels/network/network.ui.h:4 -+#: ../panels/network/network-proxy.ui.h:3 - msgctxt "proxy method" - msgid "Automatic" - msgstr "自動" -@@ -2797,44 +2775,44 @@ - msgid "Turn device off" - msgstr "關閉裝置" - --#: ../panels/network/network.ui.h:5 -+#: ../panels/network/network.ui.h:1 - msgid "Add Device" - msgstr "加入裝置" - --#: ../panels/network/network.ui.h:6 -+#: ../panels/network/network.ui.h:2 - msgid "Remove Device" - msgstr "移除裝置" - --#: ../panels/network/network-vpn.ui.h:2 -+#: ../panels/network/network-vpn.ui.h:1 - msgid "VPN Type" - msgstr "VPN 類型" - --#: ../panels/network/network-vpn.ui.h:4 -+#: ../panels/network/network-vpn.ui.h:3 - msgid "Group Name" - msgstr "群組名稱" - --#: ../panels/network/network-vpn.ui.h:5 -+#: ../panels/network/network-vpn.ui.h:4 - msgid "Group Password" - msgstr "群組密碼" - --#: ../panels/network/network-vpn.ui.h:6 -+#: ../panels/network/network-vpn.ui.h:5 - #: ../panels/printers/authentication-dialog.ui.h:4 - msgid "Username" - msgstr "使用者名稱" - --#: ../panels/network/network-vpn.ui.h:7 -+#: ../panels/network/network-vpn.ui.h:6 - msgid "Turn VPN connection off" - msgstr "關閉 VPN 連線" - --#: ../panels/network/network-wifi.ui.h:1 -+#: ../panels/network/network-wifi.ui.h:3 - msgid "Automatic _Connect" - msgstr "自動連線(_C)" - --#: ../panels/network/network-wifi.ui.h:11 -+#: ../panels/network/network-wifi.ui.h:13 - msgid "details" - msgstr "詳細資料" - --#: ../panels/network/network-wifi.ui.h:15 -+#: ../panels/network/network-wifi.ui.h:17 - #: ../panels/network/wireless-security/eap-method-leap.ui.h:2 - #: ../panels/network/wireless-security/eap-method-simple.ui.h:2 - #: ../panels/network/wireless-security/ws-leap.ui.h:2 -@@ -2844,119 +2822,119 @@ - msgid "_Password" - msgstr "密碼(_P)" - --#: ../panels/network/network-wifi.ui.h:18 -+#: ../panels/network/network-wifi.ui.h:20 - msgid "None" - msgstr "沒有" - --#: ../panels/network/network-wifi.ui.h:19 -+#: ../panels/network/network-wifi.ui.h:21 - msgid "Show P_assword" - msgstr "顯示密碼(_A)" - --#: ../panels/network/network-wifi.ui.h:20 -+#: ../panels/network/network-wifi.ui.h:22 - msgid "Make available to other users" - msgstr "允許其他使用者使用" - --#: ../panels/network/network-wifi.ui.h:21 -+#: ../panels/network/network-wifi.ui.h:23 - msgid "identity" - msgstr "身分" - --#: ../panels/network/network-wifi.ui.h:26 -+#: ../panels/network/network-wifi.ui.h:28 - msgid "Automatic (DHCP) addresses only" - msgstr "只用自動 (DHCP) 位址" - --#: ../panels/network/network-wifi.ui.h:27 -+#: ../panels/network/network-wifi.ui.h:29 - msgid "Link-local only" - msgstr "只有本機連線" - --#: ../panels/network/network-wifi.ui.h:28 -+#: ../panels/network/network-wifi.ui.h:30 - msgid "Shared with other computers" - msgstr "分享給其他電腦" - --#: ../panels/network/network-wifi.ui.h:31 -+#: ../panels/network/network-wifi.ui.h:33 - msgid "_Ignore automatically obtained routes" - msgstr "忽略自動獲得的路由(_I)" - --#: ../panels/network/network-wifi.ui.h:33 -+#: ../panels/network/network-wifi.ui.h:35 - msgid "ipv4" - msgstr "ipv4" - --#: ../panels/network/network-wifi.ui.h:35 -+#: ../panels/network/network-wifi.ui.h:37 - msgid "ipv6" - msgstr "ipv6" - --#: ../panels/network/network-wifi.ui.h:37 -+#: ../panels/network/network-wifi.ui.h:39 - msgid "_Cloned MAC Address" - msgstr "複製的 MA_C 位址" - --#: ../panels/network/network-wifi.ui.h:38 -+#: ../panels/network/network-wifi.ui.h:40 - msgid "hardware" - msgstr "硬體" - --#: ../panels/network/network-wifi.ui.h:41 -+#: ../panels/network/network-wifi.ui.h:43 - msgid "" - "Reset the settings for this connection to their defaults, but remember as a " - "preferred connection." - msgstr "重設這個網路的設定值為預設值,但將它記住為偏好的網路。" - --#: ../panels/network/network-wifi.ui.h:42 -+#: ../panels/network/network-wifi.ui.h:44 - msgid "" - "Remove all details relating to this network and do not try to automatically " - "connect to it." - msgstr "移除這個網路的所有相關詳細資料並且不再嘗試自動連線。" - --#: ../panels/network/network-wifi.ui.h:43 -+#: ../panels/network/network-wifi.ui.h:45 - msgid "reset" - msgstr "重設" - --#: ../panels/network/network-wifi.ui.h:48 -+#: ../panels/network/network-wifi.ui.h:50 - msgid "Hardware" - msgstr "硬體" - --#: ../panels/network/network-wifi.ui.h:50 -+#: ../panels/network/network-wifi.ui.h:52 - msgid "Wi-Fi Hotspot" - msgstr "Wi-Fi 熱點" - --#: ../panels/network/network-wifi.ui.h:51 -+#: ../panels/network/network-wifi.ui.h:53 - msgid "_Turn On" - msgstr "開啟(_T)" - --#: ../panels/network/network-wifi.ui.h:52 -+#: ../panels/network/network-wifi.ui.h:54 - msgid "Wi-Fi" - msgstr "Wi-Fi" - --#: ../panels/network/network-wifi.ui.h:53 -+#: ../panels/network/network-wifi.ui.h:55 - msgid "Turn Wi-Fi off" - msgstr "關閉 Wi-Fi" - --#: ../panels/network/network-wifi.ui.h:54 -+#: ../panels/network/network-wifi.ui.h:56 - msgid "_Use as Hotspot…" - msgstr "做為熱點(_U)…" - --#: ../panels/network/network-wifi.ui.h:55 -+#: ../panels/network/network-wifi.ui.h:57 - msgid "_Connect to Hidden Network…" - msgstr "連接到隱藏的網路(_C)…" - --#: ../panels/network/network-wifi.ui.h:56 -+#: ../panels/network/network-wifi.ui.h:58 - msgid "_History" - msgstr "歷史紀錄(_H)" - --#: ../panels/network/network-wifi.ui.h:57 -+#: ../panels/network/network-wifi.ui.h:59 - msgid "Switch off to connect to a Wi-Fi network" - msgstr "關閉連線到 Wi-Fi 網路" - --#: ../panels/network/network-wifi.ui.h:58 -+#: ../panels/network/network-wifi.ui.h:60 - msgid "Network Name" - msgstr "網路名稱" - --#: ../panels/network/network-wifi.ui.h:59 -+#: ../panels/network/network-wifi.ui.h:61 - msgid "Connected Devices" - msgstr "已連線的裝置" - --#: ../panels/network/network-wifi.ui.h:60 -+#: ../panels/network/network-wifi.ui.h:62 - msgid "Security type" - msgstr "安全性類型" - --#: ../panels/network/network-wifi.ui.h:61 -+#: ../panels/network/network-wifi.ui.h:63 - msgid "Security key" - msgstr "安全金鑰" - -@@ -3255,9 +3233,7 @@ - "Not using a Certificate Authority (CA) certificate can result in connections " - "to insecure, rogue Wi-Fi networks. Would you like to choose a Certificate " - "Authority certificate?" --msgstr "" --"不使用憑證中心 (CA) 的憑證會造成連線不安全、流氓 Wi-Fi 網路。是否要選擇一個憑" --"證中心的憑證?" -+msgstr "不使用憑證中心 (CA) 的憑證會造成連線不安全、流氓 Wi-Fi 網路。是否要選擇一個憑證中心的憑證?" - - #: ../panels/network/wireless-security/eap-method.c:281 - msgid "Ignore" -@@ -3389,8 +3365,7 @@ - "\n" - "(You can password-protect your private key with openssl)" - msgstr "" --"所選擇的私密金鑰似乎沒有密碼保護。 這可能會導致不安全的後果。請選擇用密碼保護" --"的私密金鑰。\n" -+"所選擇的私密金鑰似乎沒有密碼保護。 這可能會導致不安全的後果。請選擇用密碼保護的私密金鑰。\n" - "\n" - "(您可以使用 openssl 來加密您的私密金鑰)" - -@@ -3538,7 +3513,7 @@ - msgstr "在鎖定畫面中顯示詳細資料" - - #: ../panels/notifications/cc-notifications-panel.c:185 --#: ../panels/power/cc-power-panel.c:1690 ../panels/power/cc-power-panel.c:1697 -+#: ../panels/power/cc-power-panel.c:1710 ../panels/power/cc-power-panel.c:1717 - #: ../panels/privacy/cc-privacy-panel.c:84 - #: ../panels/privacy/cc-privacy-panel.c:124 - #: ../panels/universal-access/cc-ua-panel.c:257 -@@ -3642,12 +3617,9 @@ - #. For ReadItLater and Pocket, see http://en.wikipedia.org/wiki/Pocket_(application) - #: ../panels/online-accounts/gnome-online-accounts-panel.desktop.in.in.h:4 - msgid "" --"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;" --"Kerberos;IMAP;SMTP;Pocket;ReadItLater;" -+"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;Kerberos;IMAP;SMTP;Pocket;ReadItLater;" - msgstr "" --"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;" --"Kerberos;IMAP;SMTP;Pocket;ReadItLater;谷歌;臉書;推特;雅虎奇摩;網頁;線上;聊天;" --"行事曆;郵件;連絡人;" -+"Google;Facebook;Twitter;Yahoo;Web;Online;Chat;Calendar;Mail;Contact;ownCloud;Kerberos;IMAP;SMTP;Pocket;ReadItLater;谷歌;臉書;推特;雅虎奇摩;網頁;線上;聊天;行事曆;郵件;連絡人;" - - #: ../panels/online-accounts/online-accounts.ui.h:1 - msgid "No online accounts configured" -@@ -3665,21 +3637,19 @@ - msgid "" - "Adding an account allows your applications to access it for documents, mail, " - "contacts, calendar, chat and more." --msgstr "" --"加入一個帳號以允許您的應用程式存取它用於文件、郵件、連絡人、行事曆、聊天等" --"等。" -+msgstr "加入一個帳號以允許您的應用程式存取它用於文件、郵件、連絡人、行事曆、聊天等等。" - --#: ../panels/power/cc-power-panel.c:183 -+#: ../panels/power/cc-power-panel.c:192 - msgid "Unknown time" - msgstr "不明的時間" - --#: ../panels/power/cc-power-panel.c:189 -+#: ../panels/power/cc-power-panel.c:198 - #, c-format - msgid "%i minute" - msgid_plural "%i minutes" - msgstr[0] "%i 分鐘" - --#: ../panels/power/cc-power-panel.c:201 -+#: ../panels/power/cc-power-panel.c:210 - #, c-format - msgid "%i hour" - msgid_plural "%i hours" -@@ -3687,224 +3657,224 @@ - - #. TRANSLATOR: "%i %s %i %s" are "%i hours %i minutes" - #. * Swap order with "%2$s %2$i %1$s %1$i if needed --#: ../panels/power/cc-power-panel.c:209 -+#: ../panels/power/cc-power-panel.c:218 - #, c-format - msgid "%i %s %i %s" - msgstr "%i %s %i %s" - --#: ../panels/power/cc-power-panel.c:210 -+#: ../panels/power/cc-power-panel.c:219 - msgid "hour" - msgid_plural "hours" - msgstr[0] "小時" - --#: ../panels/power/cc-power-panel.c:211 -+#: ../panels/power/cc-power-panel.c:220 - msgid "minute" - msgid_plural "minutes" - msgstr[0] "分鐘" - - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" --#: ../panels/power/cc-power-panel.c:230 -+#: ../panels/power/cc-power-panel.c:239 - #, c-format - msgid "%s until fully charged" - msgstr "%s後完全充飽" - - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" --#: ../panels/power/cc-power-panel.c:237 -+#: ../panels/power/cc-power-panel.c:246 - #, c-format - msgid "Caution: %s remaining" - msgstr "注意:剩下 %s" - - #. TRANSLATORS: %1 is a time string, e.g. "1 hour 5 minutes" --#: ../panels/power/cc-power-panel.c:242 -+#: ../panels/power/cc-power-panel.c:251 - #, c-format - msgid "%s remaining" - msgstr "剩下 %s" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:247 ../panels/power/cc-power-panel.c:275 -+#: ../panels/power/cc-power-panel.c:256 ../panels/power/cc-power-panel.c:284 - msgid "Fully charged" - msgstr "已完全充飽" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:251 ../panels/power/cc-power-panel.c:279 -+#: ../panels/power/cc-power-panel.c:260 ../panels/power/cc-power-panel.c:288 - msgid "Empty" - msgstr "沒電" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:266 -+#: ../panels/power/cc-power-panel.c:275 - msgid "Charging" - msgstr "充電" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:271 -+#: ../panels/power/cc-power-panel.c:280 - msgid "Discharging" - msgstr "放電中" - --#: ../panels/power/cc-power-panel.c:396 -+#: ../panels/power/cc-power-panel.c:405 - msgctxt "Battery name" - msgid "Main" - msgstr "主要" - --#: ../panels/power/cc-power-panel.c:398 -+#: ../panels/power/cc-power-panel.c:407 - msgctxt "Battery name" - msgid "Extra" - msgstr "額外" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:470 -+#: ../panels/power/cc-power-panel.c:479 - msgid "Wireless mouse" - msgstr "無線滑鼠" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:473 -+#: ../panels/power/cc-power-panel.c:482 - msgid "Wireless keyboard" - msgstr "無線鍵盤" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:476 -+#: ../panels/power/cc-power-panel.c:485 - msgid "Uninterruptible power supply" - msgstr "不斷電系統" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:479 -+#: ../panels/power/cc-power-panel.c:488 - msgid "Personal digital assistant" - msgstr "個人數位助理" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:482 -+#: ../panels/power/cc-power-panel.c:491 - msgid "Cellphone" - msgstr "手機" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:485 -+#: ../panels/power/cc-power-panel.c:494 - msgid "Media player" - msgstr "媒體播放器" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:488 -+#: ../panels/power/cc-power-panel.c:497 - msgid "Tablet" - msgstr "繪圖板" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:491 -+#: ../panels/power/cc-power-panel.c:500 - msgid "Computer" - msgstr "電腦" - - #. TRANSLATORS: secondary battery, misc --#: ../panels/power/cc-power-panel.c:494 ../panels/power/cc-power-panel.c:717 --#: ../panels/power/cc-power-panel.c:2019 -+#: ../panels/power/cc-power-panel.c:503 ../panels/power/cc-power-panel.c:726 -+#: ../panels/power/cc-power-panel.c:2046 - msgid "Battery" - msgstr "電池" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:540 -+#: ../panels/power/cc-power-panel.c:549 - msgctxt "Battery power" - msgid "Charging" - msgstr "充電" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:547 -+#: ../panels/power/cc-power-panel.c:556 - msgctxt "Battery power" - msgid "Caution" - msgstr "注意" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:552 -+#: ../panels/power/cc-power-panel.c:561 - msgctxt "Battery power" - msgid "Low" - msgstr "低" - - #. TRANSLATORS: secondary battery --#: ../panels/power/cc-power-panel.c:557 -+#: ../panels/power/cc-power-panel.c:566 - msgctxt "Battery power" - msgid "Good" - msgstr "良好" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:562 -+#: ../panels/power/cc-power-panel.c:571 - msgctxt "Battery power" - msgid "Fully charged" - msgstr "已完全充飽" - - #. TRANSLATORS: primary battery --#: ../panels/power/cc-power-panel.c:566 -+#: ../panels/power/cc-power-panel.c:575 - msgctxt "Battery power" - msgid "Empty" - msgstr "沒電" - --#: ../panels/power/cc-power-panel.c:715 -+#: ../panels/power/cc-power-panel.c:724 - msgid "Batteries" - msgstr "電池" - --#: ../panels/power/cc-power-panel.c:1117 -+#: ../panels/power/cc-power-panel.c:1126 - msgid "When _idle" - msgstr "閒置時(_I)" - --#: ../panels/power/cc-power-panel.c:1445 -+#: ../panels/power/cc-power-panel.c:1454 - msgid "Power Saving" - msgstr "節省電源" - --#: ../panels/power/cc-power-panel.c:1473 -+#: ../panels/power/cc-power-panel.c:1489 - msgid "_Screen brightness" - msgstr "螢幕亮度(_S)" - --#: ../panels/power/cc-power-panel.c:1479 -+#: ../panels/power/cc-power-panel.c:1495 - msgid "_Keyboard brightness" - msgstr "鍵盤亮度(_K)" - --#: ../panels/power/cc-power-panel.c:1489 -+#: ../panels/power/cc-power-panel.c:1505 - msgid "_Dim screen when inactive" - msgstr "當不活動後降低螢幕亮度(_D)" - --#: ../panels/power/cc-power-panel.c:1514 -+#: ../panels/power/cc-power-panel.c:1530 - msgid "_Blank screen" - msgstr "螢幕轉黑(_B)" - --#: ../panels/power/cc-power-panel.c:1551 -+#: ../panels/power/cc-power-panel.c:1567 - msgid "_Wi-Fi" - msgstr "_Wi-Fi" - --#: ../panels/power/cc-power-panel.c:1556 -+#: ../panels/power/cc-power-panel.c:1572 - msgid "Turns off wireless devices" - msgstr "關閉無線裝置" - --#: ../panels/power/cc-power-panel.c:1581 -+#: ../panels/power/cc-power-panel.c:1597 - msgid "_Mobile broadband" - msgstr "行動寬頻(_M)" - --#: ../panels/power/cc-power-panel.c:1586 -+#: ../panels/power/cc-power-panel.c:1602 - msgid "Turns off mobile broadband (3G, 4G, WiMax, etc.) devices" - msgstr "關閉行動寬頻 (3G、4G、WiMax 等) 裝置" - --#: ../panels/power/cc-power-panel.c:1635 -+#: ../panels/power/cc-power-panel.c:1652 - msgid "_Bluetooth" - msgstr "藍牙(_B)" - --#: ../panels/power/cc-power-panel.c:1686 -+#: ../panels/power/cc-power-panel.c:1706 - msgid "When on battery power" - msgstr "使用電池電源時" - --#: ../panels/power/cc-power-panel.c:1688 -+#: ../panels/power/cc-power-panel.c:1708 - msgid "When plugged in" - msgstr "當插入電源線時" - --#: ../panels/power/cc-power-panel.c:1818 -+#: ../panels/power/cc-power-panel.c:1838 - msgid "Suspend & Power Off" - msgstr "暫停與關閉電源" - --#: ../panels/power/cc-power-panel.c:1851 -+#: ../panels/power/cc-power-panel.c:1878 - msgid "_Automatic suspend" - msgstr "自動暫停(_A)" - --#: ../panels/power/cc-power-panel.c:1875 -+#: ../panels/power/cc-power-panel.c:1902 - msgid "When battery power is _critical" - msgstr "當電池的電量極低時(_C)" - --#: ../panels/power/cc-power-panel.c:1930 -+#: ../panels/power/cc-power-panel.c:1957 - msgid "Power Off" - msgstr "關閉電源" - --#: ../panels/power/cc-power-panel.c:2066 -+#: ../panels/power/cc-power-panel.c:2100 - msgid "Devices" - msgstr "裝置" - -@@ -3921,8 +3891,7 @@ - msgid "" - "Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;" - msgstr "" --"Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;" --"電源;睡眠;暫停;休眠;電池;亮度;轉黑;顯示器;閒置;" -+"Power;Sleep;Suspend;Hibernate;Battery;Brightness;Dim;Blank;Monitor;DPMS;Idle;電源;睡眠;暫停;休眠;電池;亮度;轉黑;顯示器;閒置;" - - #: ../panels/power/power.ui.h:1 - msgid "Hibernate" -@@ -4162,44 +4131,44 @@ - msgstr[0] "%u 使用中" - - #. Translators: Addition of the new printer failed. --#: ../panels/printers/cc-printers-panel.c:1777 -+#: ../panels/printers/cc-printers-panel.c:1779 - msgid "Failed to add new printer." - msgstr "無法加入新的印表機。" - --#: ../panels/printers/cc-printers-panel.c:1944 -+#: ../panels/printers/cc-printers-panel.c:1946 - msgid "Select PPD File" - msgstr "選擇 PPD 檔案" - --#: ../panels/printers/cc-printers-panel.c:1953 -+#: ../panels/printers/cc-printers-panel.c:1955 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "PostScript 印表機描述檔 (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD.GZ)" - --#: ../panels/printers/cc-printers-panel.c:2258 -+#: ../panels/printers/cc-printers-panel.c:2260 - msgid "No suitable driver found" - msgstr "找不到合適的驅動程式" - --#: ../panels/printers/cc-printers-panel.c:2327 -+#: ../panels/printers/cc-printers-panel.c:2329 - msgid "Searching for preferred drivers…" - msgstr "正在搜尋偏好的驅動程式…" - --#: ../panels/printers/cc-printers-panel.c:2342 -+#: ../panels/printers/cc-printers-panel.c:2344 - msgid "Select from database…" - msgstr "從資料庫搜尋…" - --#: ../panels/printers/cc-printers-panel.c:2351 -+#: ../panels/printers/cc-printers-panel.c:2353 - msgid "Provide PPD File…" - msgstr "提供 PPD 檔案…" - - #. Translators: Name of job which makes printer to print test page --#: ../panels/printers/cc-printers-panel.c:2502 --#: ../panels/printers/cc-printers-panel.c:2525 -+#: ../panels/printers/cc-printers-panel.c:2504 -+#: ../panels/printers/cc-printers-panel.c:2527 - msgid "Test page" - msgstr "測試頁" - - #. Translators: The XML file containing user interface can not be loaded --#: ../panels/printers/cc-printers-panel.c:2933 -+#: ../panels/printers/cc-printers-panel.c:2935 - #, c-format - msgid "Could not load ui: %s" - msgstr "無法載入 ui:%s" -@@ -4612,11 +4581,9 @@ - - #. Translators: The CUPS server is not running (we can not connect to it). - #: ../panels/printers/printers.ui.h:26 --msgid "" --"Sorry! The system printing service\n" -+msgid "Sorry! The system printing service\n" - "doesn't seem to be available." --msgstr "" --"抱歉!系統列印服務\n" -+msgstr "抱歉!系統列印服務\n" - "似乎無法使用。" - - #: ../panels/privacy/cc-privacy-panel.c:252 ../panels/privacy/privacy.ui.h:24 -@@ -4670,11 +4637,9 @@ - #. Translators: those are keywords for the privacy control-center panel - #: ../panels/privacy/gnome-privacy-panel.desktop.in.in.h:4 - msgid "" --"screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;" --"network;identity;" -+"screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;network;identity;" - msgstr "" --"screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;" --"network;identity;螢幕;鎖定;診斷;隱私;最近使用;暫存;索引;名稱;網路;身分;" -+"screen;lock;diagnostics;crash;private;recent;temporary;tmp;index;name;network;identity;螢幕;鎖定;診斷;隱私;最近使用;暫存;索引;名稱;網路;身分;" - - #: ../panels/privacy/privacy.ui.h:1 - msgid "Screen Turns Off" -@@ -4728,9 +4693,7 @@ - msgid "" - "Remembering your history makes things easier to find again. These items are " - "never shared over the network." --msgstr "" --"記住您的歷史紀錄會讓需要再次找到某樣東西時更簡單。這些項目永遠不會透過網路分" --"享出去。" -+msgstr "記住您的歷史紀錄會讓需要再次找到某樣東西時更簡單。這些項目永遠不會透過網路分享出去。" - - #: ../panels/privacy/privacy.ui.h:21 - msgid "_Recently Used" -@@ -4781,14 +4744,13 @@ - #: ../panels/privacy/privacy.ui.h:37 - msgid "" - "Sending us information about which software you use helps us provide you " --"with more accurate recommendations. It also helps us to improve our " --"software.\n" -+"with more accurate recommendations. It also helps us to improve our software." -+"\n" - "\n" - "All the information we collect is made anonymous, and we will never share " - "your data with third parties." - msgstr "" --"傳送您所使用軟體的資訊給我們能幫助我們提供您更準確的建議。它也能協助我們改進" --"我們的軟體。\n" -+"傳送您所使用軟體的資訊給我們能幫助我們提供您更準確的建議。它也能協助我們改進我們的軟體。\n" - "\n" - "我們所收集的所有資訊都是匿名的,而且我們永遠不會將您的資料與任何第三方分享。" - -@@ -4826,34 +4788,34 @@ - msgid "No input sources found" - msgstr "找不到輸入來源" - --#: ../panels/region/cc-input-chooser.c:1076 -+#: ../panels/region/cc-input-chooser.c:1084 - msgctxt "Input Source" - msgid "Other" - msgstr "其他" - --#: ../panels/region/cc-region-panel.c:239 --#: ../panels/user-accounts/um-user-panel.c:896 -+#: ../panels/region/cc-region-panel.c:243 -+#: ../panels/user-accounts/um-user-panel.c:1113 - msgid "Your session needs to be restarted for changes to take effect" - msgstr "您的作業階段需要重新啟動以讓變更生效" - --#: ../panels/region/cc-region-panel.c:240 --#: ../panels/user-accounts/um-user-panel.c:897 -+#: ../panels/region/cc-region-panel.c:247 -+#: ../panels/user-accounts/um-user-panel.c:1117 - msgid "Restart Now" - msgstr "立刻重新啟動" - --#: ../panels/region/cc-region-panel.c:858 -+#: ../panels/region/cc-region-panel.c:867 - msgid "No input source selected" - msgstr "尚未選擇輸入來源" - --#: ../panels/region/cc-region-panel.c:1088 -+#: ../panels/region/cc-region-panel.c:1097 - msgid "Sorry" - msgstr "抱歉" - --#: ../panels/region/cc-region-panel.c:1090 -+#: ../panels/region/cc-region-panel.c:1099 - msgid "Input methods can't be used on the login screen" - msgstr "輸入法不能用在登入畫面" - --#: ../panels/region/cc-region-panel.c:1727 -+#: ../panels/region/cc-region-panel.c:1739 - msgid "Login Screen" - msgstr "登入畫面" - -@@ -4907,43 +4869,43 @@ - msgid "Input Source Options" - msgstr "輸入來源選項" - --#: ../panels/region/input-options.ui.h:2 -+#: ../panels/region/input-options.ui.h:3 - msgid "Use the _same source for all windows" - msgstr "在所有視窗中使用相同的來源(_S)" - --#: ../panels/region/input-options.ui.h:3 -+#: ../panels/region/input-options.ui.h:4 - msgid "Allow _different sources for each window" - msgstr "每個視窗使用不同的輸入來源(_D)" - --#: ../panels/region/input-options.ui.h:4 -+#: ../panels/region/input-options.ui.h:5 - msgid "Keyboard Shortcuts" - msgstr "鍵盤捷徑鍵" - --#: ../panels/region/input-options.ui.h:5 -+#: ../panels/region/input-options.ui.h:6 - msgid "Switch to previous source" - msgstr "切換至上個來源" - --#: ../panels/region/input-options.ui.h:6 -+#: ../panels/region/input-options.ui.h:7 - msgid "Super+Shift+Space" - msgstr "Super+Shift+Space" - --#: ../panels/region/input-options.ui.h:7 -+#: ../panels/region/input-options.ui.h:8 - msgid "Switch to next source" - msgstr "切換至下個來源" - --#: ../panels/region/input-options.ui.h:8 -+#: ../panels/region/input-options.ui.h:9 - msgid "Super+Space" - msgstr "Super+Space" - --#: ../panels/region/input-options.ui.h:9 -+#: ../panels/region/input-options.ui.h:10 - msgid "You can change these shortcuts in the keyboard settings" - msgstr "您可以在鍵盤設定值中改變這些捷徑鍵" - --#: ../panels/region/input-options.ui.h:10 -+#: ../panels/region/input-options.ui.h:11 - msgid "Alternative switch to next source" - msgstr "切換至下個來源的替代鍵" - --#: ../panels/region/input-options.ui.h:11 -+#: ../panels/region/input-options.ui.h:12 - msgid "Left+Right Alt" - msgstr "左+右 Alt" - -@@ -4986,7 +4948,7 @@ - msgid "_OK" - msgstr "確定(_O)" - --#: ../panels/search/cc-search-panel.c:176 -+#: ../panels/search/cc-search-panel.c:177 - msgid "No applications found" - msgstr "找不到應用程式" - -@@ -5045,7 +5007,7 @@ - msgid "Choose a Folder" - msgstr "選擇一個資料夾" - --#: ../panels/sharing/cc-sharing-panel.c:916 -+#: ../panels/sharing/cc-sharing-panel.c:917 - msgid "Copy" - msgstr "複製" - -@@ -5060,12 +5022,9 @@ - #. Translators: those are keywords for the sharing control-center panel - #: ../panels/sharing/gnome-sharing-panel.desktop.in.in.h:4 - msgid "" --"share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;" --"pictures;photos;movies;server;renderer;" -+"share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;pictures;photos;movies;server;renderer;" - msgstr "" --"share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;" --"pictures;photos;movies;server;renderer;分享;主機;名稱;遠端;桌面;藍牙;媒體;音" --"樂;視訊;圖片;相片;影片;伺服器;" -+"share;sharing;ssh;host;name;remote;desktop;bluetooth;obex;media;audio;video;pictures;photos;movies;server;renderer;分享;主機;名稱;遠端;桌面;藍牙;媒體;音樂;視訊;圖片;相片;影片;伺服器;" - - #: ../panels/sharing/org.gnome.controlcenter.remote-login-helper.policy.in.in.h:1 - msgid "Enable or disable remote login" -@@ -5076,13 +5035,13 @@ - msgstr "啟用或停用遠端登入需要核對" - - #. Label --#: ../panels/sharing/cc-sharing-networks.c:299 -+#: ../panels/sharing/cc-sharing-networks.c:303 - msgid "No networks selected for sharing" - msgstr "沒有選擇用來分享的網路" - --#. -+#. - #. * vim: sw=2 ts=8 cindent noai bs=2 --#. -+#. - #: ../panels/sharing/networks.ui.h:1 - msgid "Networks" - msgstr "網路" -@@ -5134,9 +5093,7 @@ - msgid "" - "Personal File Sharing allows you to share your Public folder with others on " - "your current network using: dav://%s" --msgstr "" --"個人檔案分享允許您使用: dav://%s 與目前網路上的其他" --"人分享您的公開資料夾" -+msgstr "個人檔案分享允許您使用: dav://%s 與目前網路上的其他人分享您的公開資料夾" - - #: ../panels/sharing/sharing.ui.h:13 - msgid "Require Password" -@@ -5147,8 +5104,7 @@ - msgid "" - "Allow remote users to connect using the Secure Shell command:\n" - "ssh %s" --msgstr "" --"允許遠端使用者使用 SSH 指令連線:\n" -+msgstr "允許遠端使用者使用 SSH 指令連線:\n" - "ssh %s" - - #: ../panels/sharing/sharing.ui.h:19 -@@ -5156,8 +5112,7 @@ - msgid "" - "Allow remote users to view or control your screen by connecting to: vnc://%s" --msgstr "" --"允許遠端使用者連線到:vnc://%s 檢視或控制您的螢幕" -+msgstr "允許遠端使用者連線到:vnc://%s 檢視或控制您的螢幕" - - #: ../panels/sharing/sharing.ui.h:20 - msgid "Allow Remote Control" -@@ -5203,8 +5158,7 @@ - #: ../panels/sound/data/gnome-sound-panel.desktop.in.in.h:4 - msgid "Card;Microphone;Volume;Fade;Balance;Bluetooth;Headset;Audio;" - msgstr "" --"Card;Microphone;Volume;Fade;Balance;Bluetooth;Headset;Audio;音效卡;麥克風;音" --"量;淡化;平衡;藍牙;耳機;音效;" -+"Card;Microphone;Volume;Fade;Balance;Bluetooth;Headset;Audio;音效卡;麥克風;音量;淡化;平衡;藍牙;耳機;音效;" - - #. Translators: This is the name of an audio file that sounds like the bark of a dog. - #. You might want to translate it into the equivalent words of your language. -@@ -5315,65 +5269,65 @@ - msgid "Peak detect" - msgstr "峰值檢測" - --#: ../panels/sound/gvc-mixer-dialog.c:1509 --#: ../panels/sound/gvc-sound-theme-chooser.c:594 -+#: ../panels/sound/gvc-mixer-dialog.c:1516 -+#: ../panels/sound/gvc-sound-theme-chooser.c:564 - msgid "Name" - msgstr "名稱" - --#: ../panels/sound/gvc-mixer-dialog.c:1528 -+#: ../panels/sound/gvc-mixer-dialog.c:1535 - msgid "Device" - msgstr "裝置" - --#: ../panels/sound/gvc-mixer-dialog.c:1591 -+#: ../panels/sound/gvc-mixer-dialog.c:1598 - #, c-format - msgid "Speaker Testing for %s" - msgstr "%s 的喇叭測試" - --#: ../panels/sound/gvc-mixer-dialog.c:1649 -+#: ../panels/sound/gvc-mixer-dialog.c:1656 - msgid "_Output volume:" - msgstr "輸出音量(_O):" - --#: ../panels/sound/gvc-mixer-dialog.c:1663 -+#: ../panels/sound/gvc-mixer-dialog.c:1670 - msgid "Output" - msgstr "輸出" - --#: ../panels/sound/gvc-mixer-dialog.c:1668 -+#: ../panels/sound/gvc-mixer-dialog.c:1675 - msgid "C_hoose a device for sound output:" - msgstr "選擇聲音輸出的裝置(_H):" - --#: ../panels/sound/gvc-mixer-dialog.c:1693 -+#: ../panels/sound/gvc-mixer-dialog.c:1700 - msgid "Settings for the selected device:" - msgstr "已選取裝置的設定值:" - --#: ../panels/sound/gvc-mixer-dialog.c:1704 -+#: ../panels/sound/gvc-mixer-dialog.c:1711 - msgid "Input" - msgstr "輸入" - --#: ../panels/sound/gvc-mixer-dialog.c:1711 -+#: ../panels/sound/gvc-mixer-dialog.c:1718 - msgid "_Input volume:" - msgstr "輸入音量(_I):" - --#: ../panels/sound/gvc-mixer-dialog.c:1734 -+#: ../panels/sound/gvc-mixer-dialog.c:1741 - msgid "Input level:" - msgstr "輸入等級:" - --#: ../panels/sound/gvc-mixer-dialog.c:1762 -+#: ../panels/sound/gvc-mixer-dialog.c:1769 - msgid "C_hoose a device for sound input:" - msgstr "選擇聲音輸入的裝置(_H):" - --#: ../panels/sound/gvc-mixer-dialog.c:1789 -+#: ../panels/sound/gvc-mixer-dialog.c:1796 - msgid "Sound Effects" - msgstr "聲音效果" - --#: ../panels/sound/gvc-mixer-dialog.c:1796 -+#: ../panels/sound/gvc-mixer-dialog.c:1803 - msgid "_Alert volume:" - msgstr "警示音量(_A):" - --#: ../panels/sound/gvc-mixer-dialog.c:1809 -+#: ../panels/sound/gvc-mixer-dialog.c:1816 - msgid "Applications" - msgstr "程式集" - --#: ../panels/sound/gvc-mixer-dialog.c:1813 -+#: ../panels/sound/gvc-mixer-dialog.c:1820 - msgid "No application is currently playing or recording audio." - msgstr "沒有應用程式目前正在播放或錄製音效。" - -@@ -5393,15 +5347,15 @@ - msgid "Testing event sound" - msgstr "測試事件聲音" - --#: ../panels/sound/gvc-sound-theme-chooser.c:584 -+#: ../panels/sound/gvc-sound-theme-chooser.c:554 - msgid "Default" - msgstr "預設值" - --#: ../panels/sound/gvc-sound-theme-chooser.c:585 -+#: ../panels/sound/gvc-sound-theme-chooser.c:555 - msgid "From theme" - msgstr "從主題" - --#: ../panels/sound/gvc-sound-theme-chooser.c:769 -+#: ../panels/sound/gvc-sound-theme-chooser.c:739 - msgid "C_hoose an alert sound:" - msgstr "選擇警示音效(_H):" - -@@ -5429,12 +5383,10 @@ - #. Translators: those are keywords for the universal access control-center panel - #: ../panels/universal-access/gnome-universal-access-panel.desktop.in.in.h:4 - msgid "" --"Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;" --"AccessX;Sticky;Keys;Slow;Bounce;Mouse;" -+"Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen;Reader;text;font;size;AccessX;Sticky;Keys;Slow;Bounce;Mouse;" - msgstr "" --"Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen Reader;text;font;size;" --"AccessX;Sticky;Keys;Slow;Bounce;Mouse;鍵盤;滑鼠;無障礙;對比;螢幕;閱讀器;文字;" --"字型;大小;相黏;遲緩;反彈;滑鼠;鍵;按鍵" -+"Keyboard;Mouse;a11y;Accessibility;Contrast;Zoom;Screen " -+"Reader;text;font;size;AccessX;Sticky;Keys;Slow;Bounce;Mouse;鍵盤;滑鼠;無障礙;對比;螢幕;閱讀器;文字;字型;大小;相黏;遲緩;反彈;滑鼠;鍵;按鍵" - - #: ../panels/universal-access/uap.ui.h:1 - msgid "_Always Show Universal Access Menu" -@@ -5549,7 +5501,7 @@ - msgstr "如果同時按下任何兩鍵則停用(_D)" - - #: ../panels/universal-access/uap.ui.h:31 --msgid "Beep when a _modifer key is pressed" -+msgid "Beep when a _modifier key is pressed" - msgstr "當按下特殊按鍵時發出聲響(_M)" - - #: ../panels/universal-access/uap.ui.h:32 -@@ -5910,11 +5862,9 @@ - msgstr "網域(_O)" - - #: ../panels/user-accounts/data/account-dialog.ui.h:13 --msgid "" --"Go online to add\n" -+msgid "Go online to add\n" - "enterprise login accounts." --msgstr "" --"請上線以加入\n" -+msgstr "請上線以加入\n" - "企業登入帳號。" - - #: ../panels/user-accounts/data/account-dialog.ui.h:15 -@@ -5940,8 +5890,7 @@ - "In order to use enterprise logins, this computer needs to be\n" - "enrolled in the domain. Please have your network administrator\n" - "type their domain password here." --msgstr "" --"為了使用企業登入,這個電腦需要\n" -+msgstr "為了使用企業登入,這個電腦需要\n" - "加入網域。請網路系統管理員在這裡\n" - "輸入網域密碼。" - -@@ -5986,7 +5935,7 @@ - msgstr "右手小指" - - #: ../panels/user-accounts/data/account-fingerprint.ui.h:9 --#: ../panels/user-accounts/um-fingerprint-dialog.c:697 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:689 - msgid "Enable Fingerprint Login" - msgstr "啟用指紋登入" - -@@ -6020,8 +5969,7 @@ - #: ../panels/user-accounts/data/gnome-user-accounts-panel.desktop.in.in.h:4 - msgid "Login;Name;Fingerprint;Avatar;Logo;Face;Password;" - msgstr "" --"Login;Name;Fingerprint;Avatar;Logo;Face;Password;登入;姓名;指紋;大頭貼;標誌;" --"臉;密碼;" -+"Login;Name;Fingerprint;Avatar;Logo;Face;Password;登入;姓名;指紋;大頭貼;標誌;臉;密碼;" - - #: ../panels/user-accounts/data/history-dialog.ui.h:1 - msgid "Login History" -@@ -6291,19 +6239,15 @@ - msgstr "無法加入網域" - - #: ../panels/user-accounts/um-account-dialog.c:1035 --msgid "" --"That login name didn't work.\n" -+msgid "That login name didn't work.\n" - "Please try again." --msgstr "" --"登入名稱沒有用。\n" -+msgstr "登入名稱沒有用。\n" - "請再試一次。" - - #: ../panels/user-accounts/um-account-dialog.c:1042 --msgid "" --"That login password didn't work.\n" -+msgid "That login password didn't work.\n" - "Please try again." --msgstr "" --"登入密碼沒有用。\n" -+msgstr "登入密碼沒有用。\n" - "請再試一次。" - - #: ../panels/user-accounts/um-account-dialog.c:1050 -@@ -6314,47 +6258,46 @@ - msgid "Unable find the domain. Maybe you misspelled it?" - msgstr "找不到網域。也許您拼錯字了?" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:137 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:138 - msgid "" - "You are not allowed to access the device. Contact your system administrator." - msgstr "您不被允許使用這個裝置。請連絡您的系統管理者。" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:139 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:140 - msgid "The device is already in use." - msgstr "該裝置已經在使用中。" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:141 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:142 - msgid "An internal error occurred." - msgstr "發生內部的錯誤。" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:217 --#: ../panels/user-accounts/um-fingerprint-dialog.c:218 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:216 - msgid "Enabled" - msgstr "已啟用" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:266 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:263 - msgid "Delete registered fingerprints?" - msgstr "是否刪除已註冊的指紋?" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:270 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:267 - msgid "_Delete Fingerprints" - msgstr "刪除指紋(_D)" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:276 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:273 - msgid "" - "Do you want to delete your registered fingerprints so fingerprint login is " - "disabled?" - msgstr "您確定要刪除已註冊的指紋嗎?這麼一來將會停用指紋登入。" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:452 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:446 - msgid "Done!" - msgstr "完成!" - - #. translators: - #. * The variable is the name of the device, for example: - #. * "Could you not access "Digital Persona U.are.U 4000/4000B" device --#: ../panels/user-accounts/um-fingerprint-dialog.c:513 --#: ../panels/user-accounts/um-fingerprint-dialog.c:555 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:507 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:549 - #, c-format - msgid "Could not access '%s' device" - msgstr "無法存取「%s」裝置" -@@ -6362,16 +6305,16 @@ - #. translators: - #. * The variable is the name of the device, for example: - #. * "Could you not access "Digital Persona U.are.U 4000/4000B" device --#: ../panels/user-accounts/um-fingerprint-dialog.c:596 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:590 - #, c-format - msgid "Could not start finger capture on '%s' device" - msgstr "無法使用「%s」裝置上的指紋捕捉" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:647 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:640 - msgid "Could not access any fingerprint readers" - msgstr "無法存取任何指紋辨識器" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:648 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:641 - msgid "Please contact your system administrator for help." - msgstr "請連絡您的系統管理員來幫忙。" - -@@ -6379,19 +6322,19 @@ - #. * The variable is the name of the device, for example: - #. * "To enable fingerprint login, you need to save one of your fingerprints, using the - #. * 'Digital Persona U.are.U 4000/4000B' device." --#. --#: ../panels/user-accounts/um-fingerprint-dialog.c:731 -+#. -+#: ../panels/user-accounts/um-fingerprint-dialog.c:723 - #, c-format - msgid "" - "To enable fingerprint login, you need to save one of your fingerprints, " - "using the '%s' device." - msgstr "要啟用指紋登入,您需要使用「%s」裝置儲存您的指紋。" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:738 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:730 - msgid "Selecting finger" - msgstr "選擇手指" - --#: ../panels/user-accounts/um-fingerprint-dialog.c:739 -+#: ../panels/user-accounts/um-fingerprint-dialog.c:731 - msgid "Enrolling fingerprints" - msgstr "登記指紋" - -@@ -6431,7 +6374,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/um-history-dialog.c:175 --#: ../panels/user-accounts/um-user-panel.c:631 -+#: ../panels/user-accounts/um-user-panel.c:844 - msgctxt "login date-time" - msgid "%k:%M" - msgstr "%k:%M" -@@ -6439,7 +6382,7 @@ - #. Translators: This indicates a login date-time. - #. The first %s is a date, and the second %s a time. - #: ../panels/user-accounts/um-history-dialog.c:178 --#: ../panels/user-accounts/um-user-panel.c:635 -+#: ../panels/user-accounts/um-user-panel.c:848 - #, c-format - msgctxt "login date-time" - msgid "%s, %s" -@@ -6514,110 +6457,119 @@ - msgid "Couldn't connect to the %s domain: %s" - msgstr "無法連接到 %s 網域:%s" - --#: ../panels/user-accounts/um-user-panel.c:198 -+#: ../panels/user-accounts/um-user-panel.c:239 - msgid "Other Accounts" - msgstr "其他帳號" - --#: ../panels/user-accounts/um-user-panel.c:417 -+#: ../panels/user-accounts/um-user-panel.c:453 - msgid "Failed to delete user" - msgstr "刪除使用者失敗" - --#: ../panels/user-accounts/um-user-panel.c:482 -+#: ../panels/user-accounts/um-user-panel.c:513 -+#: ../panels/user-accounts/um-user-panel.c:569 -+#: ../panels/user-accounts/um-user-panel.c:621 -+msgid "Failed to revoke remotely managed user" -+msgstr "遠端撤銷受管理的使用者失敗" -+ -+#: ../panels/user-accounts/um-user-panel.c:677 - msgid "You cannot delete your own account." - msgstr "您不能刪除自己的帳號。" - --#: ../panels/user-accounts/um-user-panel.c:491 -+#: ../panels/user-accounts/um-user-panel.c:686 - #, c-format - msgid "%s is still logged in" - msgstr "%s 仍在登入中" - --#: ../panels/user-accounts/um-user-panel.c:495 -+#: ../panels/user-accounts/um-user-panel.c:690 - msgid "" - "Deleting a user while they are logged in can leave the system in an " - "inconsistent state." - msgstr "在使用者登入期間刪除他會使系統處於不穩定的狀態。" - --#: ../panels/user-accounts/um-user-panel.c:504 -+#: ../panels/user-accounts/um-user-panel.c:699 - #, c-format - msgid "Do you want to keep %s's files?" - msgstr "您想要保留 %s 的檔案嗎?" - --#: ../panels/user-accounts/um-user-panel.c:508 -+#: ../panels/user-accounts/um-user-panel.c:703 - msgid "" - "It is possible to keep the home directory, mail spool and temporary files " - "around when deleting a user account." - msgstr "當刪除使用者時是可以保留家目錄、新進郵件(mail spool)和暫存檔案的。" - --#: ../panels/user-accounts/um-user-panel.c:511 -+#: ../panels/user-accounts/um-user-panel.c:706 - msgid "_Delete Files" - msgstr "刪除檔案(_D)" - --#: ../panels/user-accounts/um-user-panel.c:512 -+#: ../panels/user-accounts/um-user-panel.c:707 - msgid "_Keep Files" - msgstr "保留檔案(_K)" - --#: ../panels/user-accounts/um-user-panel.c:564 -+#: ../panels/user-accounts/um-user-panel.c:721 -+#, c-format -+msgid "Are you sure you want to permanently delete %s's account?" -+msgstr "確定要永久刪除 %s 的帳號?" -+ -+#: ../panels/user-accounts/um-user-panel.c:725 -+msgid "_Delete" -+msgstr "刪除(_D)" -+ -+#: ../panels/user-accounts/um-user-panel.c:777 - msgctxt "Password mode" - msgid "Account disabled" - msgstr "帳號已停用" - --#: ../panels/user-accounts/um-user-panel.c:572 -+#: ../panels/user-accounts/um-user-panel.c:785 - msgctxt "Password mode" - msgid "To be set at next login" - msgstr "在下次登入時設定" - --#: ../panels/user-accounts/um-user-panel.c:575 -+#: ../panels/user-accounts/um-user-panel.c:788 - msgctxt "Password mode" - msgid "None" - msgstr "沒有" - --#: ../panels/user-accounts/um-user-panel.c:624 -+#: ../panels/user-accounts/um-user-panel.c:837 - msgid "Logged in" - msgstr "已登入" - --#: ../panels/user-accounts/um-user-panel.c:1072 -+#: ../panels/user-accounts/um-user-panel.c:1297 - msgid "Failed to contact the accounts service" - msgstr "無法連接帳號服務" - --#: ../panels/user-accounts/um-user-panel.c:1074 -+#: ../panels/user-accounts/um-user-panel.c:1299 - msgid "Please make sure that the AccountService is installed and enabled." - msgstr "請確定 AccountService 已經安裝並啟用。" - --#: ../panels/user-accounts/um-user-panel.c:1115 --msgid "" --"To make changes,\n" -+#: ../panels/user-accounts/um-user-panel.c:1340 -+msgid "To make changes,\n" - "click the * icon first" --msgstr "" --"要進行變更,\n" -+msgstr "要進行變更,\n" - "請先點選 * 圖示" - --#: ../panels/user-accounts/um-user-panel.c:1153 -+#: ../panels/user-accounts/um-user-panel.c:1378 - msgid "Create a user account" - msgstr "建立新的使用者帳號" - --#: ../panels/user-accounts/um-user-panel.c:1164 --#: ../panels/user-accounts/um-user-panel.c:1453 --msgid "" --"To create a user account,\n" -+#: ../panels/user-accounts/um-user-panel.c:1389 -+#: ../panels/user-accounts/um-user-panel.c:1702 -+msgid "To create a user account,\n" - "click the * icon first" --msgstr "" --"要建立使用者帳號,\n" -+msgstr "要建立使用者帳號,\n" - "請先點選 * 圖示" - --#: ../panels/user-accounts/um-user-panel.c:1174 -+#: ../panels/user-accounts/um-user-panel.c:1399 - msgid "Delete the selected user account" - msgstr "刪除選取的使用者帳號" - --#: ../panels/user-accounts/um-user-panel.c:1186 --#: ../panels/user-accounts/um-user-panel.c:1458 --msgid "" --"To delete the selected user account,\n" -+#: ../panels/user-accounts/um-user-panel.c:1411 -+#: ../panels/user-accounts/um-user-panel.c:1707 -+msgid "To delete the selected user account,\n" - "click the * icon first" --msgstr "" --"要刪除選取的使用者帳號,\n" -+msgstr "要刪除選取的使用者帳號,\n" - "請先點選 * 圖示" - --#: ../panels/user-accounts/um-user-panel.c:1368 -+#: ../panels/user-accounts/um-user-panel.c:1616 - msgid "My Account" - msgstr "我的帳號" - -@@ -6639,9 +6591,7 @@ - msgid "" - "The username should only consist of lower and upper case letters from a-z, " - "digits and any of characters '.', '-' and '_'." --msgstr "" --"使用者名稱只能由大小寫字母英文字母 a 到 z、數字,與其他字元如「.」、「-」和" --"「_」構成。" -+msgstr "使用者名稱只能由大小寫字母英文字母 a 到 z、數字,與其他字元如「.」、「-」和「_」構成。" - - #: ../panels/user-accounts/um-utils.c:581 - msgid "This will be used to name your home folder and can't be changed." -@@ -6661,17 +6611,15 @@ - msgid "Map Buttons" - msgstr "對應按鈕" - --#: ../panels/wacom/button-mapping.ui.h:2 -+#: ../panels/wacom/button-mapping.ui.h:3 - msgid "Map buttons to functions" - msgstr "功能對應按鈕" - --#: ../panels/wacom/button-mapping.ui.h:3 -+#: ../panels/wacom/button-mapping.ui.h:4 - msgid "" - "To edit a shortcut, choose the \"Send Keystroke\" action, press the keyboard " - "shortcut button and hold down the new keys or press Backspace to clear." --msgstr "" --"要編輯捷徑鍵,選擇「傳送筆劃」動作,按下鍵盤捷徑按鈕與新的按鍵組合,或以 " --"Backspace 鍵來清除。" -+msgstr "要編輯捷徑鍵,選擇「傳送筆劃」動作,按下鍵盤捷徑按鈕與新的按鍵組合,或以 Backspace 鍵來清除。" - - #: ../panels/wacom/calibrator/calibrator-gui.c:83 - msgid "" -@@ -6732,16 +6680,16 @@ - msgid "%d of %d" - msgstr "%d / %d" - --#: ../panels/wacom/cc-wacom-page.c:530 -+#: ../panels/wacom/cc-wacom-page.c:522 - msgid "Display Mapping" - msgstr "顯示對應" - --#: ../panels/wacom/cc-wacom-stylus-page.c:372 -+#: ../panels/wacom/cc-wacom-stylus-page.c:376 - msgid "Button" - msgstr "按鈕" - - #: ../panels/wacom/gnome-wacom-panel.desktop.in.in.h:1 --#: ../panels/wacom/gnome-wacom-properties.ui.h:7 -+#: ../panels/wacom/gnome-wacom-properties.ui.h:8 - msgid "Wacom Tablet" - msgstr "Wacom 繪圖板" - -@@ -6766,39 +6714,39 @@ - msgid "Tablet Preferences" - msgstr "繪圖板偏好設定" - --#: ../panels/wacom/gnome-wacom-properties.ui.h:4 -+#: ../panels/wacom/gnome-wacom-properties.ui.h:5 - msgid "No tablet detected" - msgstr "未偵測到繪圖板" - --#: ../panels/wacom/gnome-wacom-properties.ui.h:5 -+#: ../panels/wacom/gnome-wacom-properties.ui.h:6 - msgid "Please plug in or turn on your Wacom tablet" - msgstr "請插入或開啟您的 Wacom 繪圖板" - --#: ../panels/wacom/gnome-wacom-properties.ui.h:6 -+#: ../panels/wacom/gnome-wacom-properties.ui.h:7 - msgid "Bluetooth Settings" - msgstr "藍牙設定值" - --#: ../panels/wacom/gnome-wacom-properties.ui.h:8 -+#: ../panels/wacom/gnome-wacom-properties.ui.h:9 - msgid "Map to Monitor…" - msgstr "對應至顯示器..." - --#: ../panels/wacom/gnome-wacom-properties.ui.h:9 -+#: ../panels/wacom/gnome-wacom-properties.ui.h:10 - msgid "Map Buttons…" - msgstr "對應按鈕…" - --#: ../panels/wacom/gnome-wacom-properties.ui.h:11 -+#: ../panels/wacom/gnome-wacom-properties.ui.h:12 - msgid "Adjust display resolution" - msgstr "調整顯示解析度" - --#: ../panels/wacom/gnome-wacom-properties.ui.h:12 -+#: ../panels/wacom/gnome-wacom-properties.ui.h:13 - msgid "Adjust mouse settings" - msgstr "調整滑鼠設定值" - --#: ../panels/wacom/gnome-wacom-properties.ui.h:13 -+#: ../panels/wacom/gnome-wacom-properties.ui.h:14 - msgid "Tracking Mode" - msgstr "追蹤模式" - --#: ../panels/wacom/gnome-wacom-properties.ui.h:14 -+#: ../panels/wacom/gnome-wacom-properties.ui.h:15 - msgid "Left-Handed Orientation" - msgstr "左手方向" - -@@ -6997,8 +6945,7 @@ - msgid "" - "%s\n" - "Run '%s --help' to see a full list of available command line options.\n" --msgstr "" --"%s\n" -+msgstr "%s\n" - "執行 「%s --help」以查看完整的命令列可用選項清單。\n" - - #: ../shell/cc-application.c:193 -@@ -7013,22 +6960,22 @@ - msgid "Quit" - msgstr "結束" - --#: ../shell/cc-window.c:61 ../shell/cc-window.c:1490 -+#: ../shell/cc-window.c:61 ../shell/cc-window.c:1493 - msgid "All Settings" - msgstr "所有設定值" - - #. Add categories --#: ../shell/cc-window.c:876 -+#: ../shell/cc-window.c:879 - msgctxt "category" - msgid "Personal" - msgstr "個人" - --#: ../shell/cc-window.c:877 -+#: ../shell/cc-window.c:880 - msgctxt "category" - msgid "Hardware" - msgstr "硬體" - --#: ../shell/cc-window.c:878 -+#: ../shell/cc-window.c:881 - msgctxt "category" - msgid "System" - msgstr "系統" -@@ -7036,788 +6983,3 @@ - #: ../shell/gnome-control-center.desktop.in.in.h:2 - msgid "Preferences;Settings;" - msgstr "Preferences;Settings;偏好設定;設定值;" -- --#~ msgid "Share Media On This Network" --#~ msgstr "在這個網路分享媒體" -- --#~ msgid "Shared Folders" --#~ msgstr "分享資料夾" -- --#~ msgid "column" --#~ msgstr "欄" -- --#~ msgid "Remove Folder" --#~ msgstr "移除資料夾" -- --#~ msgid "Share Public Folder On This Network" --#~ msgstr "在這個網路分享公開資料夾" -- --#~ msgid "Immediately" --#~ msgstr "立即" -- --#~ msgid "Flickr" --#~ msgstr "Flickr" -- --#~ msgid "Set Up New Device" --#~ msgstr "設置新裝置" -- --#~ msgid "Connection" --#~ msgstr "連線" -- --#~ msgid "Paired" --#~ msgstr "已配對" -- --#~ msgid "Type" --#~ msgstr "類型" -- --#~ msgid "Mouse & Touchpad Settings" --#~ msgstr "滑鼠與觸控板設定值" -- --#~ msgid "Sound Settings" --#~ msgstr "音效設定值" -- --#~ msgid "Keyboard Settings" --#~ msgstr "鍵盤設定值" -- --#~ msgid "Send Files…" --#~ msgstr "傳送檔案…" -- --#~ msgid "Visibility" --#~ msgstr "顯示狀態" -- --#~ msgid "Visibility of “%s”" --#~ msgstr "「%s」的顯示狀態" -- --#~ msgid "Remove '%s' from the list of devices?" --#~ msgstr "是否從裝置的清單中移除「%s」?" -- --#~ msgid "" --#~ "If you remove the device, you will have to set it up again before next " --#~ "use." --#~ msgstr "如果您刪除此裝置,下次使用時必須再次設定它。" -- --#~ msgid "Install Updates" --#~ msgstr "安裝更新" -- --#~ msgid "System Up-To-Date" --#~ msgstr "系統已是最新" -- --#~ msgid "Search for network printers or filter result" --#~ msgstr "搜尋網路印表機或過濾器結果" -- --#~ msgid "_Default" --#~ msgstr "預設值(_D)" -- --#~ msgid "Share Public Folder" --#~ msgstr "分享公用資料夾" -- --#~ msgid "Only share with Trusted Devices" --#~ msgstr "只與信任的裝置分享" -- --#~ msgid "Remote View" --#~ msgstr "遠端檢視" -- --#~ msgid "Approve All Connections" --#~ msgstr "允許所有的連線" -- --#~ msgid "Device type:" --#~ msgstr "裝置類型:" -- --#~ msgid "Manufacturer:" --#~ msgstr "製造商:" -- --#~ msgid "Model:" --#~ msgstr "型號:" -- --#~ msgid "" --#~ "Image files can be dragged on this window to auto-complete the above " --#~ "fields." --#~ msgstr "可以將圖片檔案拖放到這個視窗自動完成上列欄位。" -- --#~ msgid "Show your primary display on this screen also" --#~ msgstr "也在這個螢幕顯示您的主要顯示" -- --#~ msgid "Combine" --#~ msgstr "組合" -- --#~ msgid "Join with the primary display to create an extra space" --#~ msgstr "結合主要顯示器以建立額外的工作區" -- --#~ msgid "Don't use the display" --#~ msgstr "不使用這個顯示器" -- --#~ msgid "Refresh Rate" --#~ msgstr "更新率" -- --#~ msgid "Mouse Preferences" --#~ msgstr "滑鼠偏好設定" -- --#~ msgid "Select the interface to use for the new service" --#~ msgstr "選擇要用於新服務的介面" -- --#~ msgid "C_reate…" --#~ msgstr "建立(_R)…" -- --#~ msgid "_Interface" --#~ msgstr "介面(_I)" -- --#~ msgctxt "Language" --#~ msgid "None" --#~ msgstr "沒有" -- --#~ msgid "Changing photo for:" --#~ msgstr "正在改變相片:" -- --#~ msgid "" --#~ "Choose a picture that will be shown at the login screen for this account." --#~ msgstr "選擇這個帳號要顯示在登入畫面的照片。" -- --#~ msgid "Gallery" --#~ msgstr "藝廊" -- --#~ msgid "Take a photograph" --#~ msgstr "照一張相片" -- --#~ msgid "Browse" --#~ msgstr "瀏覽" -- --#~ msgid "Photograph" --#~ msgstr "相片" -- --#~ msgid "Account Information" --#~ msgstr "帳號資訊" -- --#~ msgid "Switch between AM and PM." --#~ msgstr "在上午與下午之間切換。" -- --#~ msgid "Estimated battery capacity: %s" --#~ msgstr "預估電池電力:%s" -- --#~ msgid "_Region:" --#~ msgstr "區域(_R):" -- --#~ msgid "_City:" --#~ msgstr "城市(_C):" -- --#~ msgid "_Network Time" --#~ msgstr "網路時刻(_N)" -- --#~ msgid ":" --#~ msgstr ":" -- --#~ msgid "Set the time one hour ahead." --#~ msgstr "將時刻延後一小時。" -- --#~ msgid "Set the time one hour back." --#~ msgstr "將時刻提早一小時。" -- --#~ msgid "Set the time one minute ahead." --#~ msgstr "將時刻延後一分鐘。" -- --#~ msgid "Set the time one minute back." --#~ msgstr "將時刻提早一分鐘。" -- --#~ msgid "AM/PM" --#~ msgstr "AM/PM" -- --#~ msgctxt "display panel, rotation" --#~ msgid "Normal" --#~ msgstr "正常" -- --#~ msgctxt "display panel, rotation" --#~ msgid "Counterclockwise" --#~ msgstr "逆時針" -- --#~ msgctxt "display panel, rotation" --#~ msgid "Clockwise" --#~ msgstr "順時針" -- --#~ msgctxt "display panel, rotation" --#~ msgid "180 Degrees" --#~ msgstr "180 度" -- --#~ msgid "Monitor" --#~ msgstr "顯示器" -- --#~ msgid "Drag to change primary display." --#~ msgstr "拖曳以改變主要顯示器。" -- --#~ msgid "" --#~ "Select a monitor to change its properties; drag it to rearrange its " --#~ "placement." --#~ msgstr "選擇一個螢幕以改變它的屬性;拖曳它則能重新排列它的位置。" -- --#~ msgid "%a %R" --#~ msgstr "%a %R" -- --#~ msgid "Failed to apply configuration: %s" --#~ msgstr "無法套用組態:%s" -- --#~ msgid "Could not save the monitor configuration" --#~ msgstr "無法儲存顯示器組態" -- --#~ msgid "_Resolution" --#~ msgstr "解析度(_R)" -- --#~ msgid "R_otation" --#~ msgstr "旋轉(_O)" -- --#~ msgid "_Mirror displays" --#~ msgstr "鏡射顯示器(_M)" -- --#~ msgid "Note: may limit resolution options" --#~ msgstr "注意:可能會限制解析度選項" -- --#~ msgid "_Detect Displays" --#~ msgstr "偵測顯示器(_D)" -- --#~ msgid "Hidden" --#~ msgstr "隱藏" -- --#~ msgid "Visible" --#~ msgstr "顯示" -- --#~ msgid "Name & Visibility" --#~ msgstr "名稱與可見度" -- --#~ msgid "Control how you appear on the screen and the network." --#~ msgstr "控制您在螢幕及網路上如何顯示。" -- --#~ msgid "Display _full name in top bar" --#~ msgstr "在頂端列顯示全名(_F)" -- --#~ msgid "Display full name in _lock screen" --#~ msgstr "在鎖定畫面中顯示全名(_L)" -- --#~ msgid "_Stealth Mode" --#~ msgstr "隱密模式(_S)" -- --#~ msgid "Show Status When _Inactive" --#~ msgstr "當不活動後顯示狀態(_I)" -- --#~ msgid "_Confirm Password" --#~ msgstr "確認密碼(_C)" -- --#~ msgid "_Login Name" --#~ msgstr "登入名稱(_L)" -- --#~ msgid "Login _Password" --#~ msgstr "登入密碼(_P)" -- --#~ msgid "C_onfirm New Password" --#~ msgstr "確認新密碼(_O)" -- --#~ msgid "Passwords do not match" --#~ msgstr "密碼不相符" -- --#~ msgid "" --#~ "Login not recognized.\n" --#~ "Please try again." --#~ msgstr "" --#~ "登入無法辨識。\n" --#~ "請再試一次。" -- --#~ msgid "Domain not found." --#~ msgstr "找不到網域。" -- --#~ msgid "Wrong password" --#~ msgstr "錯誤的密碼" -- --#~ msgctxt "Password hint" --#~ msgid "Try to add more characters." --#~ msgstr "試著加入更多字元。" -- --#~ msgid "Switch Modes" --#~ msgstr "切換模式" -- --#~ msgid "Action" --#~ msgstr "動作" -- --#~ msgid "Export" --#~ msgstr "匯出" -- --#~ msgid "Left Shift" --#~ msgstr "左 Shift" -- --#~ msgid "Left Alt" --#~ msgstr "左 Alt" -- --#~ msgid "Left Ctrl" --#~ msgstr "左 Ctrl" -- --#~ msgid "Right Shift" --#~ msgstr "右 Shift" -- --#~ msgid "Right Alt" --#~ msgstr "右 Alt" -- --#~ msgid "Right Ctrl" --#~ msgstr "右 Ctrl" -- --#~ msgid "Left Alt+Shift" --#~ msgstr "左 Alt+Shift" -- --#~ msgid "Left Ctrl+Shift" --#~ msgstr "左 Ctrl+Shift" -- --#~ msgid "Right Ctrl+Shift" --#~ msgstr "右 Ctrl+Shift" -- --#~ msgid "Alt+Shift" --#~ msgstr "Alt+Shift" -- --#~ msgid "Ctrl+Shift" --#~ msgstr "Ctrl+Shift" -- --#~ msgid "Alt+Ctrl" --#~ msgstr "Alt+Ctrl" -- --#~ msgid "Caps" --#~ msgstr "Caps" -- --#~ msgid "Shift+Caps" --#~ msgstr "Shift+Caps" -- --#~ msgid "Alt+Caps" --#~ msgstr "Alt+Caps" -- --#~ msgctxt "mouse, speed" --#~ msgid "Slow" --#~ msgstr "慢速" -- --#~ msgctxt "mouse, speed" --#~ msgid "Fast" --#~ msgstr "快速" -- --#~ msgid "C_ontent sticks to fingers" --#~ msgstr "捲動時內容黏住手指(_O)" -- --#~ msgid "_Options…" --#~ msgstr "選項(_O)…" -- --#~ msgctxt "universal access, contrast" --#~ msgid "Normal" --#~ msgstr "一般" -- --#~ msgctxt "universal access, contrast" --#~ msgid "High/Inverse" --#~ msgstr "高/反差" -- --#~ msgid "On screen keyboard" --#~ msgstr "螢幕鍵盤" -- --#~ msgid "OnBoard" --#~ msgstr "OnBoard" -- --#~ msgid "75%" --#~ msgstr "75%" -- --#~ msgid "100%" --#~ msgstr "100%" -- --#~ msgctxt "universal access, text size" --#~ msgid "Normal" --#~ msgstr "正常" -- --#~ msgid "125%" --#~ msgstr "125%" -- --#~ msgid "150%" --#~ msgstr "150%" -- --#~ msgctxt "universal access, text size" --#~ msgid "Larger" --#~ msgstr "較大" -- --#~ msgid "Beep on Caps and Num Lock" --#~ msgstr "當 Caps 和 Num Lock 在使用時發出聲響" -- --#~ msgid "Turn on or off:" --#~ msgstr "開啟或關閉:" -- --#~ msgctxt "universal access, zoom" --#~ msgid "Zoom" --#~ msgstr "縮放" -- --#~ msgid "Zoom in:" --#~ msgstr "拉近:" -- --#~ msgid "Zoom out:" --#~ msgstr "拉遠:" -- --#~ msgid "Closed Captioning" --#~ msgstr "關閉說明" -- --#~ msgid "Display a textual description of speech and sounds" --#~ msgstr "顯示語音和音效的文字描述" -- --#~ msgctxt "universal access, delay" --#~ msgid "Short" --#~ msgstr "短" -- --#~ msgctxt "universal access, delay" --#~ msgid "Long" --#~ msgstr "長" -- --#~ msgid "Beep when a key is" --#~ msgstr "發出聲響條件為按鍵" -- --#~ msgid "pressed" --#~ msgstr "已按下" -- --#~ msgid "accepted" --#~ msgstr "已接受" -- --#~ msgid "rejected" --#~ msgstr "已拒絕" -- --#~ msgid "Acc_eptance delay:" --#~ msgstr "接受時間延遲(_E):" -- --#~ msgid "Control the pointer using the keypad" --#~ msgstr "使用鍵盤控制滑鼠指標" -- --#~ msgid "Video Mouse" --#~ msgstr "視訊滑鼠" -- --#~ msgid "Control the pointer using the video camera." --#~ msgstr "使用視訊攝影機控制指標" -- --#~ msgctxt "universal access, threshold" --#~ msgid "Small" --#~ msgstr "小" -- --#~ msgctxt "universal access, threshold" --#~ msgid "Large" --#~ msgstr "大" -- --#~ msgid "Add account" --#~ msgstr "加入帳號" -- --#~ msgid "_Local Account" --#~ msgstr "登入帳號(_L)" -- --#~ msgid "Tip: Enterprise domain or realm name" --#~ msgstr "提示:企業網域或領域名稱" -- --#~ msgid "C_ontinue" --#~ msgstr "繼續(_O)" -- --#~ msgid "Previous Week" --#~ msgstr "前一週" -- --#~ msgid "Next Week" --#~ msgstr "下一週" -- --#~ msgid "Next week" --#~ msgstr "下一週" -- --#~ msgid "Log in without a password" --#~ msgstr "不使用密碼登入" -- --#~ msgid "Disable this account" --#~ msgstr "停用這個帳號" -- --#~ msgid "Enable this account" --#~ msgstr "啟用這個帳號" -- --#~ msgid "Generate a password" --#~ msgstr "產生密碼" -- --#~ msgid "_Action" --#~ msgstr "動作(_A)" -- --#~ msgid "_Show password" --#~ msgstr "顯示密碼(_S)" -- --#~ msgid "How to choose a strong password" --#~ msgstr "如何選擇強度高的密碼" -- --#~ msgctxt "Password strength" --#~ msgid "Too short" --#~ msgstr "太短" -- --#~ msgctxt "Password strength" --#~ msgid "Not good enough" --#~ msgstr "不夠好" -- --#~ msgctxt "Password strength" --#~ msgid "Weak" --#~ msgstr "太弱" -- --#~ msgctxt "Password strength" --#~ msgid "Fair" --#~ msgstr "一般" -- --#~ msgctxt "Password strength" --#~ msgid "Good" --#~ msgstr "良好" -- --#~ msgctxt "Password strength" --#~ msgid "Strong" --#~ msgstr "強固" -- --#~ msgid "_Generate a password" --#~ msgstr "產生密碼(_G)" -- --#~ msgid "You need to enter a new password" --#~ msgstr "您需要輸入新的密碼" -- --#~ msgid "The new password is not strong enough" --#~ msgstr "新的密碼強度不夠" -- --#~ msgid "You need to confirm the password" --#~ msgstr "您需要確認密碼" -- --#~ msgid "You need to enter your current password" --#~ msgstr "您需要輸入您目前的密碼" -- --#~ msgid "The current password is not correct" --#~ msgstr "目前的密碼並不正確" -- --#~ msgid "Right Alt+Shift" --#~ msgstr "右 Alt+Shift" -- --#~ msgid "Left+Right Shift" --#~ msgstr "左+右 Shift" -- --#~ msgid "Left+Right Ctrl" --#~ msgstr "左+右 Ctrl" -- --#~ msgid "Ctrl+Caps" --#~ msgstr "Ctrl+Caps" -- --#~ msgid "blablabla" --#~ msgstr "…等等" -- --#~ msgid "" --#~ "Address\n" --#~ "section\n" --#~ "goes\n" --#~ "here" --#~ msgstr "" --#~ "位址\n" --#~ "部分\n" --#~ "在\n" --#~ "這裡" -- --#~ msgid "" --#~ "DNS\n" --#~ "section\n" --#~ "goes\n" --#~ "here" --#~ msgstr "" --#~ "DNS\n" --#~ "部分\n" --#~ "在\n" --#~ "這裡" -- --#~ msgid "" --#~ "Routes\n" --#~ "section\n" --#~ "goes\n" --#~ "here" --#~ msgstr "" --#~ "路由\n" --#~ "部分\n" --#~ "在\n" --#~ "這裡" -- --#~ msgid "00:24:16:31:8G:7A" --#~ msgstr "00:24:16:31:8G:7A" -- --#~ msgctxt "Input source" --#~ msgid "None" --#~ msgstr "沒有" -- --#~ msgid "Expired credentials. Please log in again." --#~ msgstr "憑證已逾期。請重新登入。" -- --#~ msgid "_Log In" --#~ msgstr "登入(_L)" -- --#~ msgid "Change the background" --#~ msgstr "更改背景" -- --#~ msgid "Configure Bluetooth settings" --#~ msgstr "設定藍牙設定值" -- --#~ msgctxt "Power" --#~ msgid "Bluetooth" --#~ msgstr "藍牙" -- --#~ msgid "Color management settings" --#~ msgstr "顏色管理設定值" -- --#~ msgid "British English" --#~ msgstr "英式英文" -- --#~ msgid "Spanish" --#~ msgstr "西班牙文" -- --#~ msgid "Chinese (simplified)" --#~ msgstr "簡體中文" -- --#~ msgid "Select a region" --#~ msgstr "選擇地區" -- --#~ msgid "Select a language" --#~ msgstr "選擇語言" -- --#~ msgid "_Select" --#~ msgstr "選取(_S)" -- --#~ msgid "Date and Time preferences panel" --#~ msgstr "日期和時刻偏好設定面板" -- --#~ msgid "System Information" --#~ msgstr "系統資訊" -- --#~ msgid "Change keyboard settings" --#~ msgstr "改變鍵盤設定值" -- --#~ msgid "Layout Settings" --#~ msgstr "配置設定值" -- --#~ msgid "Set your mouse and touchpad preferences" --#~ msgstr "設定您的滑鼠與觸控板偏好設定" -- --#~ msgid "Network settings" --#~ msgstr "網路設定值" -- --#~ msgid "Carrier/link changed" --#~ msgstr "載體/連結已變更" -- --#~ msgid "Manage notifications" --#~ msgstr "管理通知" -- --#~ msgid "Manage online accounts" --#~ msgstr "管理線上帳號" -- --#~ msgid "_Mark As Inactive After" --#~ msgstr "標記為不活動於(_M)" -- --#~ msgid "Power management settings" --#~ msgstr "電源管理設定值" -- --#~ msgid "Change printer settings" --#~ msgstr "改變印表機設定值" -- --#~ msgid "Manufacturers" --#~ msgstr "製造商" -- --#~ msgid "Privacy settings" --#~ msgstr "隱私設定值" -- --#~ msgid "Don't retain history" --#~ msgstr "不要保留歷史紀錄" -- --#~ msgid "Change your region and language settings" --#~ msgstr "改變您的地區和語言設定值" -- --#~ msgid "Select an input source" --#~ msgstr "選擇一個輸入來源" -- --#~ msgid "" --#~ "The login screen, system accounts and new user accounts use the system-" --#~ "wide Region and Language settings." --#~ msgstr "登入畫面、系統帳號和新使用者帳號使用系統的地區和語言設定值。" -- --#~ msgid "" --#~ "The login screen, system accounts and new user accounts use the system-" --#~ "wide Region and Language settings. You may change the system settings to " --#~ "match yours." --#~ msgstr "" --#~ "登入畫面、系統帳號和新使用者帳號使用系統的地區和語言設定值。您可以將系統設" --#~ "定值改變以符合您的需求。" -- --#~ msgid "Copy Settings" --#~ msgstr "複製設定值" -- --#~ msgid "Copy Settings…" --#~ msgstr "複製設定值…" -- --#~ msgid "Region and Language" --#~ msgstr "地區和語言" -- --#~ msgid "Select a display language" --#~ msgstr "選擇顯示的語言" -- --#~ msgid "Add Language" --#~ msgstr "加入語言" -- --#~ msgid "Select a region (change will be applied the next time you log in)" --#~ msgstr "選擇地區 (變更會在您下次登入時套用)" -- --#~ msgid "Add Region" --#~ msgstr "加入區域" -- --#~ msgid "Remove Region" --#~ msgstr "移除區域" -- --#~ msgid "Currency" --#~ msgstr "貨幣" -- --#~ msgid "Examples" --#~ msgstr "範例" -- --#~ msgid "Select keyboards or other input sources" --#~ msgstr "選取鍵盤或其他輸入來源" -- --#~ msgid "Remove Input Source" --#~ msgstr "移除輸入來源" -- --#~ msgid "Move Input Source Up" --#~ msgstr "將輸入來源往上移" -- --#~ msgid "Show Keyboard Layout" --#~ msgstr "顯示鍵盤配置" -- --#~ msgid "Ctrl+Alt+Space" --#~ msgstr "Ctrl+Alt+Space" -- --#~ msgid "Shortcut Settings" --#~ msgstr "快捷鍵設定值" -- --#~ msgid "Display language:" --#~ msgstr "顯示語言:" -- --#~ msgid "Input source:" --#~ msgstr "輸入來源:" -- --#~ msgid "Format:" --#~ msgstr "格式:" -- --#~ msgid "Your settings" --#~ msgstr "您的設定值" -- --#~ msgid "System settings" --#~ msgstr "系統設定值" -- --#~ msgid "Search settings" --#~ msgstr "搜尋設定值" -- --#~ msgid "Universal Access Preferences" --#~ msgstr "無障礙偏好設定" -- --#~ msgid "_Hint" --#~ msgstr "提示(_H)" -- --#~ msgid "" --#~ "This hint may be displayed at the login screen. It will be visible to " --#~ "all users of this system. Do not include the password here." --#~ msgstr "" --#~ "這個提示可能會顯示在登入畫面。它將會顯示給這個系統上的所有使用者。請不" --#~ "要在這裡寫入密碼。" -- --#~ msgid "Fair" --#~ msgstr "一般" -- --#~ msgid "Set your Wacom tablet preferences" --#~ msgstr "設定您的 Wacom 繪圖板偏好設定" -- --#~ msgid "Control Center" --#~ msgstr "控制中心" -- --#~ msgid "Out of range" --#~ msgstr "超過範圍" diff --git a/SOURCES/gnome-control-center-3.14.5-EL7.3_translations_for_it_ko.patch b/SOURCES/gnome-control-center-3.14.5-EL7.3_translations_for_it_ko.patch deleted file mode 100644 index e4e3f64..0000000 --- a/SOURCES/gnome-control-center-3.14.5-EL7.3_translations_for_it_ko.patch +++ /dev/null @@ -1,140 +0,0 @@ -diff -urN gnome-control-center-3.14.5/po/it.po gnome-control-center-3.14.5_localized/po/it.po ---- gnome-control-center-3.14.5/po/it.po 2016-06-21 17:55:15.565760447 +0530 -+++ gnome-control-center-3.14.5_localized/po/it.po 2016-06-21 17:55:41.824758358 +0530 -@@ -6,6 +6,7 @@ - # Alessio Dessì , 2003, 2004, 2005, 2006, 2007. - # Milo Casagrande , 2009, 2012, 2013, 2014. - # Luca Ferretti , 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014. -+# fvalen , 2016. #zanata - # pnemade , 2016. #zanata - msgid "" - msgstr "" -@@ -15,8 +16,8 @@ - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2014-09-08 08:20+0000\n" --"Last-Translator: Luca Ferretti \n" -+"PO-Revision-Date: 2016-05-27 06:31+0000\n" -+"Last-Translator: fvalen \n" - "Language-Team: Italiano \n" - "Language: it\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" -@@ -1372,9 +1373,8 @@ - msgstr "Processore" - - #: ../panels/info/info.ui.h:7 --#, fuzzy - msgid "OS Type" --msgstr "Tipo" -+msgstr "Tipo di OS" - - #: ../panels/info/info.ui.h:8 - msgid "Disk" -@@ -5641,7 +5641,6 @@ - msgstr "_Disabilitare se due tasti sono premuti insieme" - - #: ../panels/universal-access/uap.ui.h:31 --#, fuzzy - msgid "Beep when a _modifier key is pressed" - msgstr "Avviso sonoro quando viene premuto un tasto _modificatore" - -@@ -6632,9 +6631,8 @@ - #: ../panels/user-accounts/um-user-panel.c:513 - #: ../panels/user-accounts/um-user-panel.c:569 - #: ../panels/user-accounts/um-user-panel.c:621 --#, fuzzy - msgid "Failed to revoke remotely managed user" --msgstr "Eliminazione dell'utente non riuscita" -+msgstr "Revoca remota dell'utente fallita" - - #: ../panels/user-accounts/um-user-panel.c:677 - msgid "You cannot delete your own account." -@@ -6675,14 +6673,13 @@ - msgstr "Mantieni _file" - - #: ../panels/user-accounts/um-user-panel.c:721 --#, fuzzy, c-format -+#, c-format - msgid "Are you sure you want to permanently delete %s's account?" --msgstr "Rimuovere veramente l'account?" -+msgstr "Sei sicuro di voler rimuovere permanentemente l'account di %s?" - - #: ../panels/user-accounts/um-user-panel.c:725 --#, fuzzy - msgid "_Delete" --msgstr "_Elimina file" -+msgstr "_Elimina" - - #: ../panels/user-accounts/um-user-panel.c:777 - msgctxt "Password mode" -diff -urN gnome-control-center-3.14.5/po/ko.po gnome-control-center-3.14.5_localized/po/ko.po ---- gnome-control-center-3.14.5/po/ko.po 2016-06-21 17:55:15.568760447 +0530 -+++ gnome-control-center-3.14.5_localized/po/ko.po 2016-06-21 17:55:41.837758357 +0530 -@@ -23,6 +23,7 @@ - # - # msgid "Wallpaper;Screen;Desktop;" - # msgstr "Wallpaper;배경 그림;Screen;화면;Desktop;바탕 화면;" -+# eukim , 2016. #zanata - # pnemade , 2016. #zanata - msgid "" - msgstr "" -@@ -32,8 +33,8 @@ - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2014-10-04 01:19+0000\n" --"Last-Translator: Changwoo Ryu \n" -+"PO-Revision-Date: 2016-05-20 06:30+0000\n" -+"Last-Translator: eukim \n" - "Language-Team: GNOME Korea \n" - "Language: ko\n" - "Plural-Forms: nplurals=1; plural=0;\n" -@@ -1352,9 +1353,8 @@ - msgstr "프로세서" - - #: ../panels/info/info.ui.h:7 --#, fuzzy - msgid "OS Type" --msgstr "종류" -+msgstr "OS 유형" - - #: ../panels/info/info.ui.h:8 - msgid "Disk" -@@ -5533,7 +5533,6 @@ - msgstr "키 두개를 같이 누르면 사용 중지(_D)" - - #: ../panels/universal-access/uap.ui.h:31 --#, fuzzy - msgid "Beep when a _modifier key is pressed" - msgstr "변경 키를 눌렀을 때 삑 소리(_M)" - -@@ -6503,9 +6502,8 @@ - #: ../panels/user-accounts/um-user-panel.c:513 - #: ../panels/user-accounts/um-user-panel.c:569 - #: ../panels/user-accounts/um-user-panel.c:621 --#, fuzzy - msgid "Failed to revoke remotely managed user" --msgstr "사용자 삭제에 실패했습니다" -+msgstr "원격 관리 사용자 삭제에 실패했습니다" - - #: ../panels/user-accounts/um-user-panel.c:677 - msgid "You cannot delete your own account." -@@ -6542,14 +6540,13 @@ - msgstr "파일 유지(_K)" - - #: ../panels/user-accounts/um-user-panel.c:721 --#, fuzzy, c-format -+#, c-format - msgid "Are you sure you want to permanently delete %s's account?" --msgstr "정말로 계정을 제거하시겠습니까?" -+msgstr "%s 계정을 완전히 삭제하시겠습니까?" - - #: ../panels/user-accounts/um-user-panel.c:725 --#, fuzzy - msgid "_Delete" --msgstr "파일 삭제(_D)" -+msgstr "삭제(_D)" - - #: ../panels/user-accounts/um-user-panel.c:777 - msgctxt "Password mode" diff --git a/SOURCES/handle-synaptics-touchpads.patch b/SOURCES/handle-synaptics-touchpads.patch new file mode 100644 index 0000000..3c54685 --- /dev/null +++ b/SOURCES/handle-synaptics-touchpads.patch @@ -0,0 +1,166 @@ +From a78163475f2abf9c64d71e803bceaedb05f3a6c1 Mon Sep 17 00:00:00 2001 +From: Carlos Garnacho +Date: Mon, 13 Mar 2017 19:58:42 +0100 +Subject: [PATCH] mouse: Handle Synaptics devices again + +If mutter can handle those, so can g-c-c +--- + panels/mouse/cc-mouse-caps-helper.c | 90 +++++++++++++++++++++++++++++++---- + panels/mouse/gnome-mouse-properties.c | 10 +--- + 2 files changed, 82 insertions(+), 18 deletions(-) + +diff --git a/panels/mouse/cc-mouse-caps-helper.c b/panels/mouse/cc-mouse-caps-helper.c +index 3b912ce..0a8ccae 100644 +--- a/panels/mouse/cc-mouse-caps-helper.c ++++ b/panels/mouse/cc-mouse-caps-helper.c +@@ -25,9 +25,72 @@ + #include "cc-mouse-caps-helper.h" + + static gboolean +-touchpad_check_capabilities_x11 (gboolean *have_two_finger_scrolling, +- gboolean *have_edge_scrolling, +- gboolean *have_tap_to_click) ++touchpad_check_capabilities_x11_synaptics (gboolean *have_two_finger_scrolling, ++ gboolean *have_edge_scrolling, ++ gboolean *have_tap_to_click) ++{ ++ Display *display; ++ GList *devicelist, *l; ++ Atom realtype, prop_two_finger_scroll, prop_edge_scroll, prop_tap_action; ++ int realformat; ++ unsigned long nitems, bytes_after; ++ unsigned char *data; ++ ++ display = GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()); ++ prop_two_finger_scroll = XInternAtom (display, "Synaptics Two-Finger Scrolling", False); ++ prop_edge_scroll = XInternAtom (display, "Synaptics Edge Scrolling", False); ++ prop_tap_action = XInternAtom (display, "Synaptics Tap Action", False); ++ if (!prop_two_finger_scroll || !prop_edge_scroll || !prop_tap_action) ++ return FALSE; ++ ++ *have_two_finger_scrolling = FALSE; ++ *have_edge_scrolling = FALSE; ++ *have_tap_to_click = FALSE; ++ ++ gdk_error_trap_push (); ++ ++ devicelist = gdk_seat_get_slaves (gdk_display_get_default_seat (gdk_display_get_default ()), ++ GDK_SEAT_CAPABILITY_ALL_POINTING); ++ for (l = devicelist; l != NULL; l = l->next) { ++ GdkDevice *device = l->data; ++ ++ if (gdk_device_get_source (device) != GDK_SOURCE_TOUCHPAD && ++ gdk_device_get_source (device) != GDK_SOURCE_MOUSE) ++ continue; ++ ++ /* xorg-x11-drv-synaptics */ ++ if ((XIGetProperty (display, gdk_x11_device_get_id (device), prop_two_finger_scroll, ++ 0, 2, False, XA_INTEGER, &realtype, &realformat, &nitems, ++ &bytes_after, &data) == Success) && (realtype != None)) { ++ *have_two_finger_scrolling = TRUE; ++ XFree (data); ++ } ++ ++ if ((XIGetProperty (display, gdk_x11_device_get_id (device), prop_edge_scroll, ++ 0, 3, False, XA_INTEGER, &realtype, &realformat, &nitems, ++ &bytes_after, &data) == Success) && (realtype != None)) { ++ *have_edge_scrolling = TRUE; ++ XFree (data); ++ } ++ ++ if ((XIGetProperty (display, gdk_x11_device_get_id (device), prop_tap_action, ++ 0, 8, False, XA_INTEGER, &realtype, &realformat, &nitems, ++ &bytes_after, &data) == Success) && (realtype != None)) { ++ *have_tap_to_click = TRUE; ++ XFree (data); ++ } ++ } ++ g_list_free (devicelist); ++ ++ gdk_error_trap_pop_ignored (); ++ ++ return TRUE; ++} ++ ++static gboolean ++touchpad_check_capabilities_x11_libinput (gboolean *have_two_finger_scrolling, ++ gboolean *have_edge_scrolling, ++ gboolean *have_tap_to_click) + { + Display *display; + GList *devicelist, *l; +@@ -91,10 +154,18 @@ cc_touchpad_check_capabilities (gboolean *have_two_finger_scrolling, + gboolean *have_edge_scrolling, + gboolean *have_tap_to_click) + { +- if (GDK_IS_X11_DISPLAY (gdk_display_get_default ())) +- return touchpad_check_capabilities_x11 (have_two_finger_scrolling, +- have_edge_scrolling, +- have_tap_to_click); ++ if (GDK_IS_X11_DISPLAY (gdk_display_get_default ())) { ++ if (cc_synaptics_check ()) { ++ return touchpad_check_capabilities_x11_synaptics (have_two_finger_scrolling, ++ have_edge_scrolling, ++ have_tap_to_click); ++ } ++ ++ return touchpad_check_capabilities_x11_libinput (have_two_finger_scrolling, ++ have_edge_scrolling, ++ have_tap_to_click); ++ } ++ + /* else we unconditionally show all touchpad knobs */ + *have_two_finger_scrolling = TRUE; + *have_edge_scrolling = TRUE; +@@ -125,9 +196,10 @@ cc_synaptics_check (void) + GDK_SEAT_CAPABILITY_ALL_POINTING); + for (l = devicelist; l != NULL; l = l->next) { + GdkDevice *device = l->data; +- if (gdk_device_get_source (device) != GDK_SOURCE_TOUCHPAD) +- continue; + ++ if (gdk_device_get_source (device) != GDK_SOURCE_TOUCHPAD && ++ gdk_device_get_source (device) != GDK_SOURCE_MOUSE) ++ continue; + if ((XIGetProperty (display, gdk_x11_device_get_id (device), prop, + 0, 2, False, XA_INTEGER, &realtype, &realformat, &nitems, + &bytes_after, &data) == Success) && (realtype != None)) { +diff --git a/panels/mouse/gnome-mouse-properties.c b/panels/mouse/gnome-mouse-properties.c +index 126b762..d0196d3 100644 +--- a/panels/mouse/gnome-mouse-properties.c ++++ b/panels/mouse/gnome-mouse-properties.c +@@ -61,7 +61,6 @@ struct _CcMousePropertiesPrivate + gboolean have_mouse; + gboolean have_touchpad; + gboolean have_touchscreen; +- gboolean have_synaptics; + + gboolean left_handed; + GtkGesture *left_gesture; +@@ -81,10 +80,6 @@ setup_touchpad_options (CcMousePropertiesPrivate *d) + gboolean have_edge_scrolling; + gboolean have_tap_to_click; + +- gtk_widget_set_visible (WID ("touchpad-frame"), !d->have_synaptics); +- if (d->have_synaptics) +- return; +- + gtk_widget_set_visible (WID ("touchpad-frame"), d->have_touchpad); + if (!d->have_touchpad) + return; +@@ -383,11 +378,8 @@ cc_mouse_properties_init (CcMouseProperties *object) + G_CALLBACK (device_changed), d); + + d->have_mouse = mouse_is_present (); +- d->have_touchpad = touchpad_is_present (); ++ d->have_touchpad = touchpad_is_present () || cc_synaptics_check (); + d->have_touchscreen = touchscreen_is_present (); +- d->have_synaptics = cc_synaptics_check (); +- if (d->have_synaptics) +- g_warning ("Detected synaptics X driver, please migrate to libinput"); + + d->changing_scroll = FALSE; + +-- +2.9.3 + diff --git a/SOURCES/wacom-ekr.patch b/SOURCES/wacom-ekr.patch new file mode 100644 index 0000000..77b7b41 --- /dev/null +++ b/SOURCES/wacom-ekr.patch @@ -0,0 +1,355 @@ +From 9257ef03d3ae0be9a588016121ee8adc5e9a85b7 Mon Sep 17 00:00:00 2001 +From: Aaron Skomra +Date: Tue, 10 Nov 2015 11:31:53 -0800 +Subject: [PATCH] add Wacom panel support for the ExpressKey Remote + +--- + configure.ac | 2 +- + panels/wacom/cc-wacom-page.c | 60 ++++++++++++++++++++------- + panels/wacom/cc-wacom-panel.c | 9 ++++- + panels/wacom/gsd-wacom-device.c | 22 ++++++++++ + panels/wacom/gsd-wacom-device.h | 2 + + panels/wacom/wacom-remote.svg | 87 ++++++++++++++++++++++++++++++++++++++++ + panels/wacom/wacom.gresource.xml | 1 + + 7 files changed, 167 insertions(+), 16 deletions(-) + create mode 100644 panels/wacom/wacom-remote.svg + +diff --git a/configure.ac b/configure.ac +index 4f6c59e..2dffcac 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -98,7 +98,7 @@ MODEM_MANAGER_REQUIRED_VERSION=0.7 + LIBNOTIFY_REQUIRED_VERSION=0.7.3 + GNOME_DESKTOP_REQUIRED_VERSION=3.21.2 + SCHEMAS_REQUIRED_VERSION=3.21.4 +-LIBWACOM_REQUIRED_VERSION=0.7 ++LIBWACOM_REQUIRED_VERSION=0.17 + CLUTTER_REQUIRED_VERSION=1.11.3 + GOA_REQUIRED_VERSION=3.21.5 + ACCOUNTSSERVICE_REQUIRED_VERSION=0.6.39 +diff --git a/panels/wacom/cc-wacom-page.c b/panels/wacom/cc-wacom-page.c +index fc31328..b8644e2 100644 +--- a/panels/wacom/cc-wacom-page.c ++++ b/panels/wacom/cc-wacom-page.c +@@ -104,7 +104,8 @@ enum { + enum { + LAYOUT_NORMAL, /* tracking mode, button mapping */ + LAYOUT_REVERSIBLE, /* tracking mode, button mapping, left-hand orientation */ +- LAYOUT_SCREEN /* button mapping, calibration, display resolution */ ++ LAYOUT_SCREEN, /* button mapping, calibration, display resolution */ ++ LAYOUT_REMOTE, /* button mapping */ + }; + + static void +@@ -120,6 +121,8 @@ get_layout_type (GsdWacomDevice *device) + layout = LAYOUT_SCREEN; + else if (gsd_wacom_device_reversible (device)) + layout = LAYOUT_REVERSIBLE; ++ else if (gsd_wacom_device_is_remote (device)) ++ layout = LAYOUT_REMOTE; + else + layout = LAYOUT_NORMAL; + +@@ -893,6 +896,14 @@ remove_mouse_link (CcWacomPagePrivate *priv) + "top_attach", 2, NULL); + } + ++static void ++remove_for_remote (CcWacomPagePrivate *priv) ++{ ++ gtk_widget_destroy (WID ("label-trackingmode")); ++ gtk_widget_destroy (WID ("combo-tabletmode")); ++ gtk_widget_destroy (WID ("display-mapping-button")); ++} ++ + static gboolean + has_monitor (CcWacomPage *page) + { +@@ -907,7 +918,8 @@ update_tablet_ui (CcWacomPage *page, + GsdWacomStylus *puck; + + priv = page->priv; +- puck = gsd_wacom_device_get_stylus_for_type (priv->stylus, WACOM_STYLUS_TYPE_PUCK); ++ if (priv->stylus != NULL) ++ puck = gsd_wacom_device_get_stylus_for_type (priv->stylus, WACOM_STYLUS_TYPE_PUCK); + if (puck == NULL) + remove_mouse_link (priv); + +@@ -940,6 +952,11 @@ update_tablet_ui (CcWacomPage *page, + WID ("display-link"), + "top_attach", 2, NULL); + break; ++ case LAYOUT_REMOTE: ++ remove_for_remote (priv); ++ remove_left_handed (priv); ++ remove_display_link (priv); ++ break; + default: + g_assert_not_reached (); + } +@@ -955,7 +972,10 @@ cc_wacom_page_update_tools (CcWacomPage *page, + gboolean changed; + + /* Type of layout */ +- layout = get_layout_type (stylus); ++ if (pad != NULL && stylus == NULL) ++ layout = get_layout_type (pad); ++ else ++ layout = get_layout_type (stylus); + + priv = page->priv; + changed = (priv->stylus != stylus || priv->pad != pad); +@@ -978,8 +998,10 @@ cc_wacom_page_new (CcWacomPanel *panel, + CcWacomPage *page; + CcWacomPagePrivate *priv; + +- g_return_val_if_fail (GSD_IS_WACOM_DEVICE (stylus), NULL); +- g_return_val_if_fail (gsd_wacom_device_get_device_type (stylus) == WACOM_TYPE_STYLUS, NULL); ++ if (stylus != NULL) { ++ g_return_val_if_fail (GSD_IS_WACOM_DEVICE (stylus), NULL); ++ g_return_val_if_fail (gsd_wacom_device_get_device_type (stylus) == WACOM_TYPE_STYLUS, NULL); ++ } + + if (pad != NULL) + g_return_val_if_fail (gsd_wacom_device_get_device_type (pad) == WACOM_TYPE_PAD, NULL); +@@ -992,26 +1014,36 @@ cc_wacom_page_new (CcWacomPanel *panel, + cc_wacom_page_update_tools (page, stylus, pad); + + /* FIXME move this to construct */ +- priv->wacom_settings = gsd_wacom_device_get_settings (stylus); +- set_mode_from_gsettings (GTK_COMBO_BOX (WID ("combo-tabletmode")), page); ++ if (stylus != NULL) { ++ priv->wacom_settings = gsd_wacom_device_get_settings (stylus); ++ set_mode_from_gsettings (GTK_COMBO_BOX (WID ("combo-tabletmode")), page); ++ } + + /* Tablet name */ +- gtk_label_set_text (GTK_LABEL (WID ("label-tabletmodel")), gsd_wacom_device_get_name (stylus)); ++ if (stylus != NULL) ++ gtk_label_set_text (GTK_LABEL (WID ("label-tabletmodel")), gsd_wacom_device_get_name (stylus)); ++ else if (pad != NULL) ++ gtk_label_set_text (GTK_LABEL (WID ("label-tabletmodel")), gsd_wacom_device_get_name (pad)); + + /* Left-handedness */ +- if (gsd_wacom_device_reversible (stylus)) ++ if (stylus != NULL && gsd_wacom_device_reversible (stylus)) + set_left_handed_from_gsettings (page); + + /* Tablet icon */ +- set_icon_name (page, "image-tablet", gsd_wacom_device_get_icon_name (stylus)); ++ if (pad != NULL && gsd_wacom_device_is_remote (pad)) ++ set_icon_name (page, "image-tablet", gsd_wacom_device_get_icon_name (pad)); ++ else ++ set_icon_name (page, "image-tablet", gsd_wacom_device_get_icon_name (stylus)); + + /* Add styli */ +- add_styli (page); ++ if (stylus != NULL) { ++ add_styli (page); + + /* Get the current stylus and switch to its page */ +- stylus_changed (priv->stylus, NULL, page); +- g_signal_connect (G_OBJECT (priv->stylus), "notify::last-stylus", +- G_CALLBACK (stylus_changed), page); ++ stylus_changed (priv->stylus, NULL, page); ++ g_signal_connect (G_OBJECT (priv->stylus), "notify::last-stylus", ++ G_CALLBACK (stylus_changed), page); ++ } + + return GTK_WIDGET (page); + } +diff --git a/panels/wacom/cc-wacom-panel.c b/panels/wacom/cc-wacom-panel.c +index aedd5ed..91a245e 100644 +--- a/panels/wacom/cc-wacom-panel.c ++++ b/panels/wacom/cc-wacom-panel.c +@@ -316,7 +316,14 @@ update_current_page (CcWacomPanel *self) + GtkWidget *page; + + tablet = l->data; +- if (tablet->stylus == NULL) { ++ /* For most "Tablets" a NULL tablet->stylus will trigger a cleanup. However, if the device ++ * has no stylus (e.g. ExpressKey Remote), we skip the the cleanup and proceed to page ++ * creation. Since both GsdWacomDevice members (tablet/pad) of a Tablet know if their ++ * physical device has a stylus, we can find out from the solo pad device if the hardware ++ * supports a stylus. */ ++ if (tablet->pad != NULL && !gsd_wacom_device_get_has_stylus (tablet->pad)){ ++ /* This is a full device but it doesn't have a stylus - skip the cleanup */ ++ } else if (tablet->stylus == NULL) { + page = g_hash_table_lookup (priv->pages, tablet->name); + if (page != NULL) { + remove_page (GTK_NOTEBOOK (priv->notebook), page); +diff --git a/panels/wacom/gsd-wacom-device.c b/panels/wacom/gsd-wacom-device.c +index 0cf725b..ed8d852 100644 +--- a/panels/wacom/gsd-wacom-device.c ++++ b/panels/wacom/gsd-wacom-device.c +@@ -353,6 +353,8 @@ struct GsdWacomDevicePrivate + GHashTable *modes; /* key = int (group), value = int (index) */ + GHashTable *num_modes; /* key = int (group), value = int (index) */ + GSettings *wacom_settings; ++ gboolean has_stylus; ++ WacomClass class; + }; + + enum { +@@ -1389,6 +1391,8 @@ gsd_wacom_device_update_from_db (GsdWacomDevice *device, + device->priv->wacom_settings = g_settings_new_with_path (WACOM_TABLET_SCHEMA, + settings_path); + ++ device->priv->class = libwacom_get_class (wacom_device); ++ device->priv->has_stylus = libwacom_has_stylus (wacom_device); + device->priv->name = g_strdup (libwacom_get_name (wacom_device)); + device->priv->layout_path = g_strdup (libwacom_get_layout_filename (wacom_device)); + device->priv->reversible = libwacom_is_reversible (wacom_device); +@@ -1400,6 +1404,8 @@ gsd_wacom_device_update_from_db (GsdWacomDevice *device, + device->priv->icon_name = "wacom-tablet-cintiq"; + else + device->priv->icon_name = "wacom-tablet-pc"; ++ } else if (gsd_wacom_device_is_remote (device)) { ++ device->priv->icon_name = "wacom-remote"; + } else { + device->priv->icon_name = "wacom-tablet"; + } +@@ -1784,6 +1790,22 @@ gsd_wacom_device_get_num_rings (GsdWacomDevice *device) + return device->priv->num_rings; + } + ++gboolean ++gsd_wacom_device_get_has_stylus (GsdWacomDevice *device) ++{ ++ g_return_val_if_fail (GSD_IS_WACOM_DEVICE (device), FALSE); ++ ++ return device->priv->has_stylus; ++} ++ ++gboolean ++gsd_wacom_device_is_remote (GsdWacomDevice *device) ++{ ++ g_return_val_if_fail (GSD_IS_WACOM_DEVICE (device), FALSE); ++ ++ return device->priv->class == WCLASS_REMOTE; ++} ++ + GSettings * + gsd_wacom_device_get_settings (GsdWacomDevice *device) + { +diff --git a/panels/wacom/gsd-wacom-device.h b/panels/wacom/gsd-wacom-device.h +index 374eca9..04d893b 100644 +--- a/panels/wacom/gsd-wacom-device.h ++++ b/panels/wacom/gsd-wacom-device.h +@@ -158,6 +158,8 @@ gboolean gsd_wacom_device_reversible (GsdWacomDevice *device); + gboolean gsd_wacom_device_is_screen_tablet (GsdWacomDevice *device); + gboolean gsd_wacom_device_is_isd (GsdWacomDevice *device); + gboolean gsd_wacom_device_is_fallback (GsdWacomDevice *device); ++gboolean gsd_wacom_device_is_remote (GsdWacomDevice *device); ++gboolean gsd_wacom_device_get_has_stylus (GsdWacomDevice *device); + gint gsd_wacom_device_get_num_strips (GsdWacomDevice *device); + gint gsd_wacom_device_get_num_rings (GsdWacomDevice *device); + GSettings * gsd_wacom_device_get_settings (GsdWacomDevice *device); +diff --git a/panels/wacom/wacom-remote.svg b/panels/wacom/wacom-remote.svg +new file mode 100644 +index 0000000..fedc369 +--- /dev/null ++++ b/panels/wacom/wacom-remote.svg +@@ -0,0 +1,87 @@ ++ ++ ++ ++ ++ ++ ++ ++ image/svg+xml ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/panels/wacom/wacom.gresource.xml b/panels/wacom/wacom.gresource.xml +index 7683b4d..14d41c1 100644 +--- a/panels/wacom/wacom.gresource.xml ++++ b/panels/wacom/wacom.gresource.xml +@@ -5,6 +5,7 @@ + wacom-stylus-page.ui + button-mapping.ui + wacom-tablet.svg ++ wacom-remote.svg + wacom-stylus.svg + wacom-stylus-no-eraser.svg + wacom-stylus-airbrush.svg +-- +2.9.3 + diff --git a/SPECS/control-center.spec b/SPECS/control-center.spec index 6d33741..e31e429 100644 --- a/SPECS/control-center.spec +++ b/SPECS/control-center.spec @@ -1,85 +1,89 @@ %define gettext_package gnome-control-center-2.0 -%define glib2_version 2.39.91 -%define gtk3_version 3.13.0 -%define gsd_version 3.7.3 -%define gnome_desktop_version 3.11.3 -%define gsettings_desktop_schemas_version 3.13.91 -%define desktop_file_utils_version 0.9 +%define glib2_version 2.44.0 +%define gtk3_version 3.22.0 +%define gsd_version 3.19.1 +%define gnome_desktop_version 3.21.2 +%define gsettings_desktop_schemas_version 3.21.4 +%define gnome_bluetooth_version 3.18.2 -Summary: Utilities to configure the GNOME desktop Name: control-center -Version: 3.14.5 -Release: 19%{?dist} Epoch: 1 +Version: 3.22.2 +Release: 5%{?dist} +Summary: Utilities to configure the GNOME desktop + License: GPLv2+ and GFDL -#VCS: git:git://git.gnome.org/gnome-control-center -Source: http://download.gnome.org/sources/gnome-control-center/3.14/gnome-control-center-%{version}.tar.xz URL: http://www.gnome.org +Source0: https://download.gnome.org/sources/gnome-control-center/3.22/gnome-control-center-%{version}.tar.xz # https://bugzilla.gnome.org/show_bug.cgi?id=695691 Patch0: distro-logo.patch - -Patch1: control-center-translations-3.14.patch - -# https://bugzilla.gnome.org/show_bug.cgi?id=749972 -Patch2: 0001-network-Prevent-a-use-after-free-crash-when-removing.patch - -# https://bugzilla.gnome.org/show_bug.cgi?id=727871 -Patch3: 0001-user-accounts-use-common-function-for-error-messages.patch -Patch4: 0001-user-accounts-fix-enterprise-accounts-deleting.patch - -# https://bugzilla.redhat.com/show_bug.cgi?id=1232758 -Patch5: 0001-printers-Show-border-around-No-printers-detected-tex.patch - -# https://bugzilla.redhat.com/show_bug.cgi?id=1232751 -Patch6: 0001-printers-Remove-unused-function.patch -Patch7: 0002-printers-Fix-setting-of-page-size.patch - -# https://bugzilla.redhat.com/show_bug.cgi?id=1256633 -Patch8: 0001-region-If-language-isn-t-set-in-AccountsService-show.patch - -Patch9: 0001-datetime-update-timezones-for-new-Pyongyang-Time.patch - -# https://bugzilla.redhat.com/show_bug.cgi?id=1298952 -Patch10: 0001-printers-avoid-crashes-when-searching-with-special-chars.patch - -# https://bugzilla.redhat.com/show_bug.cgi?id=1298943 -Patch11: control-center-3.14.5-do-not-show-nameless-apps.patch - -# https://bugzilla.redhat.com/show_bug.cgi?id=1298951 -Patch12: control-center-3.14.5-check-for-zero-length-string.patch -Patch13: control-center-3.14.5-check-for-invalid-pointer.patch - -# https://bugzilla.redhat.com/show_bug.cgi?id=1273273 -Patch14: gnome-control-center-3.14.5-EL7.3_translations.patch - -# https://bugzilla.redhat.com/show_bug.cgi?id=1089037 -Patch15: 0001-wacom-Ensure-calibration-runs-on-the-builtin-display.patch - -# https://bugzilla.redhat.com/show_bug.cgi?id=1293068 -Patch16: 0001-region-Avoid-overly-long-labels-causing-horizontal-s.patch -Patch17: 0002-region-Be-more-thorough-in-cc_input_chooser_reset.patch -Patch18: 0003-region-Avoid-duplicates-when-filtering-input-sources.patch - -# https://bugzilla.redhat.com/show_bug.cgi?id=1306253 -# https://bugzilla.gnome.org/show_bug.cgi?id=709641 -Patch19: 0001-network-Fix-empty-Wifi-list.patch - -# https://bugzilla.gnome.org/show_bug.cgi?id=761004 -# https://bugzilla.redhat.com/show_bug.cgi?id=1319744 -Patch20: 0001-network-read-secrets-for-the-VPN-connections.patch -Patch21: 0002-network-Don-t-try-to-get-secrets-for-new-connections.patch -Patch22: 0003-network-Avoid-warnings-while-closing-connection-edit.patch -Patch23: 0004-network-Fix-a-crash-when-clicking-to-forget-a-VPN-on.patch - -# https://bugzilla.redhat.com/show_bug.cgi?id=1273273 again -Patch24: gnome-control-center-3.14.5-EL7.3_translations_for_it_ko.patch - -Source1: timezone_8.5_dim.png -Source2: timezone_8.5.png -Source3: timezone_9_dim.png -Source4: timezone_9.png +Patch1: wacom-ekr.patch +Patch2: handle-synaptics-touchpads.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=1298881 +Patch3: cursor-size-selection.patch +# https://bugzilla.gnome.org/show_bug.cgi?id=774324 +Patch4: 0001-info-Fix-build-when-Wayland-is-disabled.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=1440816 +Patch5: 0001-printers-actualize-printers-list.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=1309331 +Patch6: 0001-hostname-helper-don-t-read-past-0.patch +Patch7: 0002-hostname-helper-fall-back-to-kernel-hostname-when-th.patch +Patch8: 0003-hostname-helper-use-SSID_MAX_LEN.patch +Patch9: 0001-wacom-Fix-eraser-pressure-sensitivity.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=1457691 +Patch10: 0001-network-Simplify-the-ignored-Network-interface-types.patch + +BuildRequires: autoconf automake libtool intltool gnome-common + +BuildRequires: pkgconfig(accountsservice) +BuildRequires: pkgconfig(cheese-gtk) >= 3.5.91 +BuildRequires: pkgconfig(clutter-gtk-1.0) +BuildRequires: pkgconfig(colord) +BuildRequires: pkgconfig(colord-gtk) +BuildRequires: pkgconfig(gdk-pixbuf-2.0) >= 2.23.0 +%if 0%{?fedora} +BuildRequires: pkgconfig(gdk-wayland-3.0) +%endif +BuildRequires: pkgconfig(gio-2.0) >= %{glib2_version} +BuildRequires: pkgconfig(gnome-desktop-3.0) >= %{gnome_desktop_version} +BuildRequires: pkgconfig(gnome-settings-daemon) >= %{gsd_version} +BuildRequires: pkgconfig(goa-1.0) +BuildRequires: pkgconfig(goa-backend-1.0) +BuildRequires: pkgconfig(grilo-0.3) +BuildRequires: pkgconfig(gsettings-desktop-schemas) >= %{gsettings_desktop_schemas_version} +BuildRequires: pkgconfig(gtk+-3.0) >= %{gtk3_version} +BuildRequires: pkgconfig(gudev-1.0) +BuildRequires: pkgconfig(ibus-1.0) +BuildRequires: pkgconfig(libcanberra-gtk3) +BuildRequires: pkgconfig(libgtop-2.0) +BuildRequires: pkgconfig(libnm) +BuildRequires: pkgconfig(libnma) +BuildRequires: pkgconfig(libpulse) +BuildRequires: pkgconfig(libpulse-mainloop-glib) +BuildRequires: pkgconfig(libsoup-2.4) +BuildRequires: pkgconfig(libxml-2.0) +BuildRequires: pkgconfig(mm-glib) +BuildRequires: pkgconfig(NetworkManager) +BuildRequires: pkgconfig(polkit-gobject-1) +BuildRequires: pkgconfig(pwquality) +BuildRequires: pkgconfig(smbclient) +BuildRequires: pkgconfig(upower-glib) +BuildRequires: pkgconfig(x11) +BuildRequires: pkgconfig(xi) +BuildRequires: desktop-file-utils +BuildRequires: gettext +BuildRequires: intltool >= 0.37.1 +BuildRequires: libXxf86misc-devel +BuildRequires: chrpath +BuildRequires: gnome-common +BuildRequires: cups-devel +BuildRequires: docbook-style-xsl +%ifnarch s390 s390x +BuildRequires: pkgconfig(gnome-bluetooth-1.0) >= %{gnome_bluetooth_version} +BuildRequires: pkgconfig(libwacom) +%endif Requires: gnome-settings-daemon >= %{gsd_version} Requires: alsa-lib @@ -89,6 +93,9 @@ Requires: control-center-filesystem = %{epoch}:%{version}-%{release} Requires: glib2%{?_isa} >= %{glib2_version} Requires: gsettings-desktop-schemas%{?_isa} >= %{gsettings_desktop_schemas_version} Requires: gtk3%{?_isa} >= %{gtk3_version} +%ifnarch s390 s390x +Requires: gnome-bluetooth%{?_isa} >= 1:%{gnome_bluetooth_version} +%endif # for user accounts Requires: accountsservice # For the user languages @@ -108,51 +115,8 @@ Requires: glx-utils Requires: /usr/bin/gkbd-keyboard-display # For the color panel Requires: colord - -BuildRequires: glib2-devel >= %{glib2_version} -BuildRequires: gtk3-devel >= %{gtk3_version} -BuildRequires: gdk-pixbuf2-devel >= 2.23.0 -BuildRequires: librsvg2-devel -BuildRequires: gnome-desktop3-devel >= %{gnome_desktop_version} -BuildRequires: desktop-file-utils >= %{desktop_file_utils_version} -BuildRequires: libXcursor-devel -BuildRequires: gettext -BuildRequires: gnome-settings-daemon-devel >= %{gsd_version} -BuildRequires: intltool >= 0.37.1 -BuildRequires: libsmbclient-devel -BuildRequires: libsoup-devel -BuildRequires: libXxf86misc-devel -BuildRequires: libxkbfile-devel -BuildRequires: libXScrnSaver-devel -BuildRequires: libxml2-devel -BuildRequires: libcanberra-devel -BuildRequires: chrpath -BuildRequires: gsettings-desktop-schemas-devel >= %{gsettings_desktop_schemas_version} -BuildRequires: pulseaudio-libs-devel libcanberra-devel -BuildRequires: upower-devel -BuildRequires: accountsservice-devel -BuildRequires: ModemManager-glib-devel -BuildRequires: NetworkManager-glib-devel >= 0.9.8 -BuildRequires: libnm-gtk-devel >= 0.9.8 -BuildRequires: polkit-devel -BuildRequires: gnome-common -BuildRequires: cups-devel -BuildRequires: libgtop2-devel -BuildRequires: iso-codes-devel -BuildRequires: cheese-libs-devel >= 1:3.0.1 -BuildRequires: clutter-gtk-devel -BuildRequires: gnome-online-accounts-devel -BuildRequires: colord-devel -BuildRequires: colord-gtk-devel -BuildRequires: libnotify-devel -BuildRequires: docbook-style-xsl -BuildRequires: systemd-devel -BuildRequires: libpwquality-devel -BuildRequires: ibus-devel -BuildRequires: grilo-devel -%ifnarch s390 s390x -BuildRequires: gnome-bluetooth-devel >= 3.9.3 -BuildRequires: libwacom-devel +%if 0%{?fedora} +Recommends: gnome-color-manager %endif Provides: control-center-extra = %{epoch}:%{version}-%{release} @@ -183,34 +147,9 @@ utilities. %prep -%setup -q -n gnome-control-center-%{version} -%patch0 -p1 -b .distro-logo -%patch1 -p1 -b .translations -%patch2 -p1 -b .network-virt-dev-crash -%patch3 -p1 -b .common-function-for-errors -%patch4 -p1 -b .enterprise-accounts-deleting -%patch5 -p1 -b .no-printers-detected-border -%patch6 -p1 -b .unused-function -%patch7 -p1 -b .page-size-setting -%patch8 -p1 -b .ensure-correct-language -%patch9 -p1 -b .pyongyang-time -%patch10 -p1 -b .printers-avoid-crashes-when-searching-with-special-chars -%patch11 -p1 -b .do-not-show-nameless-apps -%patch12 -p1 -b .check-for-zero-length-string -%patch13 -p1 -b .check-for-invalid-pointer -%patch14 -p1 -b .translation-updates -%patch15 -p1 -b .wacom-calibrate-isd-on-builtin -%patch16 -p1 -b .input-chooser-avoid-long-labels -%patch17 -p1 -b .input-chooser-thorough-reset -%patch18 -p1 -b .input-chooser-avoid-dupes -%patch19 -p1 -b .network-fix-empty-wifi-list -%patch20 -p1 -%patch21 -p1 -%patch22 -p1 -%patch23 -p1 -%patch24 -p1 - -cp %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} panels/datetime/data/ +%autosetup -S git -n gnome-control-center-%{version} + +autoreconf -f -i %build %configure \ @@ -225,7 +164,7 @@ sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/ if test "$export_dyn make %{?_smp_mflags} V=1 %install -make install DESTDIR=$RPM_BUILD_ROOT +%make_install desktop-file-install --delete-original \ --dir $RPM_BUILD_ROOT%{_datadir}/applications \ @@ -264,11 +203,12 @@ fi gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %files -f %{gettext_package}.lang -%doc AUTHORS COPYING NEWS README +%license COPYING +%doc AUTHORS NEWS README %{_datadir}/gnome-control-center/keybindings/*.xml %{_datadir}/gnome-control-center/pixmaps -%{_datadir}/gnome-control-center/datetime/ %{_datadir}/gnome-control-center/sounds/gnome-sounds-default.xml +%{_datadir}/appdata/gnome-control-center.appdata.xml %{_datadir}/applications/*.desktop %{_datadir}/icons/hicolor/*/*/* %{_datadir}/gnome-control-center/icons/ @@ -282,6 +222,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_datadir}/man/man1/gnome-control-center.1.* %{_datadir}/dbus-1/services/org.gnome.ControlCenter.SearchProvider.service %{_datadir}/dbus-1/services/org.gnome.ControlCenter.service +%{_datadir}/gettext/ %{_datadir}/gnome-shell/search-providers/gnome-control-center-search-provider.ini %{_datadir}/polkit-1/rules.d/gnome-control-center.rules %{_datadir}/bash-completion/completions/gnome-control-center @@ -294,6 +235,45 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %changelog +* Tue Jun 20 2017 Bastien Nocera - 3.22.2-5 ++ control-center-3.22.2-5 +- Don't show veth interfaces, we don't have code to set them up +Resolves: #1457691 + +* Tue Jun 13 2017 Carlos Garnacho - 3.22.2-4 +- Fix eraser pressure mimicking tip pressure +Resolves: #1458352 + +* Fri May 05 2017 Bastien Nocera - 3.22.2-3 +- Fix Hotspot not working when PrettyHostname is unset +Resolves: #1309331 + +* Tue Apr 18 2017 Felipe Borges - 3.22.2-2 +- Make actualize_printers_list cancellable +- Resolves: #1440816 + +* Tue Mar 14 2017 Bastien Nocera - 3.22.2-1 ++ control-center-3.22.2-1 +- Update to 3.22.2 +- Add cursor size selection patch +Resolves: #1386839, #1298881 + +* Mon Mar 13 2017 Carlos Garnacho - 1:3.22.1-4 +- Handle synaptics touchpads, in sync with mutter +- Resolves: #1386839 + +* Fri Mar 10 2017 Carlos Garnacho - 1:3.22.1-3 +- Support Wacom EKR devices +- Resolves: #1342998 + +* Thu Feb 23 2017 Kalev Lember - 1:3.22.1-2 +- Remove a workaround for older accountsservice +- Resolves: #1386839 + +* Wed Oct 12 2016 Kalev Lember - 1:3.22.1-1 +- Update to 3.22.1 +- Resolves: #1386839 + * Thu Jun 30 2016 Bastien Nocera - 3.14.5-19 - Update translations again Resolves: #1273273