Skip to content
Commits on Source (26)
================
Version 3.38.1
================
- Updated translations
Keyboard
- Fix behavior of "Replace" when adding custom shortcut
Sound
- Update the profile list after getting the signal from gvc
- Fix subwoofer slider
================
Version 3.38.0
================
......
gnome-control-center (1:3.38.1-1ubuntu1) groovy; urgency=medium
* New upstream version based on Debian
* d/p/0033-sound-update-the-profile-list-after-getting-the-sign.patch:
- removed, the change is in the new version
* Build without malcontent which is in universe
-- Sebastien Bacher <seb128@ubuntu.com> Mon, 05 Oct 2020 15:20:23 +0200
gnome-control-center (1:3.38.1-1) unstable; urgency=medium
* New upstream release
* debian/rules:
- remove deprecated -Dgnome_session_libexecdir
-- Sebastien Bacher <seb128@ubuntu.com> Mon, 05 Oct 2020 15:07:48 +0200
gnome-control-center (1:3.38.0-2) unstable; urgency=medium
* Team upload
* Revert "d/watch: Watch for development releases"
* Release to unstable
-- Simon McVittie <smcv@debian.org> Fri, 25 Sep 2020 10:27:01 +0100
gnome-control-center (1:3.38.0-1ubuntu2) groovy; urgency=medium
* d/p/0033-sound-update-the-profile-list-after-getting-the-sign.patch
......
......@@ -45,7 +45,7 @@ Index: gnome-control-center/panels/sound/cc-sound-panel.c
}
static void
@@ -107,6 +112,7 @@ output_device_changed_cb (CcSoundPanel *
@@ -104,6 +109,7 @@ output_device_changed_cb (CcSoundPanel *
stream = gvc_mixer_control_get_stream_from_device (self->mixer_control, device);
cc_volume_slider_set_stream (self->output_volume_slider, stream, CC_STREAM_TYPE_OUTPUT);
......@@ -53,7 +53,7 @@ Index: gnome-control-center/panels/sound/cc-sound-panel.c
cc_level_bar_set_stream (self->output_level_bar, stream, CC_STREAM_TYPE_OUTPUT);
if (stream != NULL)
@@ -210,6 +216,9 @@ cc_sound_panel_class_init (CcSoundPanelC
@@ -232,6 +238,9 @@ cc_sound_panel_class_init (CcSoundPanelC
gtk_widget_class_bind_template_child (widget_class, CcSoundPanel, output_profile_combo_box);
gtk_widget_class_bind_template_child (widget_class, CcSoundPanel, output_profile_row);
gtk_widget_class_bind_template_child (widget_class, CcSoundPanel, output_volume_slider);
......@@ -63,7 +63,7 @@ Index: gnome-control-center/panels/sound/cc-sound-panel.c
gtk_widget_class_bind_template_child (widget_class, CcSoundPanel, stream_list_box);
gtk_widget_class_bind_template_child (widget_class, CcSoundPanel, subwoofer_row);
gtk_widget_class_bind_template_child (widget_class, CcSoundPanel, subwoofer_slider);
@@ -254,12 +263,23 @@ cc_sound_panel_init (CcSoundPanel *self)
@@ -276,12 +285,23 @@ cc_sound_panel_init (CcSoundPanel *self)
G_CONNECT_SWAPPED);
allow_amplified_changed_cb (self);
......
From: Jeremy Bicha <jbicha@debian.org>
Date: Sat, 9 Feb 2019 16:32:03 -0500
Subject: [PATCH 07/26] sound: Allow volume to be set above 100%.
Some systems have low maximum volume set (like x220), allow, from an option
in gnome-control-center to set it above that 100% limit from g-s-d
(keyboard) and gnome-shell.
Only show the above 100% volume option if:
1. you are in an ubuntu session
2. the selected output supports amplified volume. If so:
present the settings to google that on and off. It will enable
GNOME Shell and media keys to set the sound above 100%. If not
enabled, volume and sliders are all capped to 100%. (LP: #1706524)
Modified from original patch in unity-control-center from Lars Uebernickel.
Adapted for Ubuntu gnome-control-center by Didier Roche
Updated for GNOME 3.32 by Jeremy Bicha
Origin: ubuntu
Bug-Ubuntu: https://launchpad.net/bugs/1706524
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=710424
---
panels/sound/cc-sound-panel.c | 20 +++++++++
panels/sound/cc-sound-panel.ui | 92 ++++++++++++++++++++++++++++++++++++++++++
2 files changed, 112 insertions(+)
Index: gnome-control-center/panels/sound/cc-sound-panel.c
===================================================================
--- gnome-control-center.orig/panels/sound/cc-sound-panel.c
+++ gnome-control-center/panels/sound/cc-sound-panel.c
@@ -65,6 +65,9 @@ struct _CcSoundPanel
CcProfileComboBox *output_profile_combo_box;
GtkListBoxRow *output_profile_row;
CcVolumeSlider *output_volume_slider;
+ CcVolumeSlider *output_volume_slider_ubuntu;
+ GtkWidget *allow_amplify_switch;
+ GtkWidget *ubuntu_output_frame;
CcStreamListBox *stream_list_box;
GtkListBoxRow *subwoofer_row;
CcSubwooferSlider *subwoofer_slider;
@@ -88,6 +91,8 @@ allow_amplified_changed_cb (CcSoundPanel
{
cc_volume_slider_set_is_amplified (self->output_volume_slider,
g_settings_get_boolean (self->sound_settings, "allow-volume-above-100-percent"));
+ cc_volume_slider_set_is_amplified (self->output_volume_slider_ubuntu,
+ g_settings_get_boolean (self->sound_settings, "allow-volume-above-100-percent"));
}
static void
@@ -107,6 +112,7 @@ output_device_changed_cb (CcSoundPanel *
stream = gvc_mixer_control_get_stream_from_device (self->mixer_control, device);
cc_volume_slider_set_stream (self->output_volume_slider, stream, CC_STREAM_TYPE_OUTPUT);
+ cc_volume_slider_set_stream (self->output_volume_slider_ubuntu, stream, CC_STREAM_TYPE_OUTPUT);
cc_level_bar_set_stream (self->output_level_bar, stream, CC_STREAM_TYPE_OUTPUT);
if (stream != NULL)
@@ -210,6 +216,9 @@ cc_sound_panel_class_init (CcSoundPanelC
gtk_widget_class_bind_template_child (widget_class, CcSoundPanel, output_profile_combo_box);
gtk_widget_class_bind_template_child (widget_class, CcSoundPanel, output_profile_row);
gtk_widget_class_bind_template_child (widget_class, CcSoundPanel, output_volume_slider);
+ gtk_widget_class_bind_template_child (widget_class, CcSoundPanel, output_volume_slider_ubuntu);
+ gtk_widget_class_bind_template_child (widget_class, CcSoundPanel, allow_amplify_switch);
+ gtk_widget_class_bind_template_child (widget_class, CcSoundPanel, ubuntu_output_frame);
gtk_widget_class_bind_template_child (widget_class, CcSoundPanel, stream_list_box);
gtk_widget_class_bind_template_child (widget_class, CcSoundPanel, subwoofer_row);
gtk_widget_class_bind_template_child (widget_class, CcSoundPanel, subwoofer_slider);
@@ -254,12 +263,23 @@ cc_sound_panel_init (CcSoundPanel *self)
G_CONNECT_SWAPPED);
allow_amplified_changed_cb (self);
+ if (strstr (g_getenv("XDG_CURRENT_DESKTOP"), "ubuntu") != NULL) {
+ gtk_widget_set_visible(self->ubuntu_output_frame, TRUE);
+ gtk_widget_set_visible(GTK_WIDGET (self->output_volume_slider), FALSE);
+ g_settings_bind (self->sound_settings, "allow-volume-above-100-percent",
+ self->allow_amplify_switch, "active", G_SETTINGS_BIND_DEFAULT);
+ } else {
+ gtk_widget_set_visible(self->ubuntu_output_frame, FALSE);
+ gtk_widget_set_visible(GTK_WIDGET (self->output_volume_slider), TRUE);
+ }
+
self->mixer_control = gvc_mixer_control_new ("GNOME Settings");
gvc_mixer_control_open (self->mixer_control);
cc_stream_list_box_set_mixer_control (self->stream_list_box, self->mixer_control);
cc_volume_slider_set_mixer_control (self->input_volume_slider, self->mixer_control);
cc_volume_slider_set_mixer_control (self->output_volume_slider, self->mixer_control);
+ cc_volume_slider_set_mixer_control (self->output_volume_slider_ubuntu, self->mixer_control);
cc_subwoofer_slider_set_mixer_control (self->subwoofer_slider, self->mixer_control);
cc_device_combo_box_set_mixer_control (self->input_device_combo_box, self->mixer_control, FALSE);
cc_device_combo_box_set_mixer_control (self->output_device_combo_box, self->mixer_control, TRUE);
Index: gnome-control-center/panels/sound/cc-sound-panel.ui
===================================================================
--- gnome-control-center.orig/panels/sound/cc-sound-panel.ui
+++ gnome-control-center/panels/sound/cc-sound-panel.ui
@@ -36,6 +36,98 @@
</object>
</child>
<child>
+ <object class="GtkFrame" id="ubuntu_output_frame">
+ <property name="visible">False</property>
+ <child>
+ <object class="GtkListBox" id="ubuntu_output_box">
+ <property name="visible">True</property>
+ <property name="selection_mode">none</property>
+ <child>
+ <object class="GtkListBoxRow">
+ <property name="width_request">100</property>
+ <property name="height_request">80</property>
+ <property name="visible">True</property>
+ <property name="can_focus">True</property>
+ <child>
+ <object class="CcVolumeSlider" id="output_volume_slider_ubuntu">
+ <property name="visible">True</property>
+ </object>
+ </child>
+ </object>
+ </child>
+ <child>
+ <object class="GtkListBoxRow">
+ <property name="width_request">100</property>
+ <property name="height_request">80</property>
+ <property name="visible">True</property>
+ <property name="can_focus">True</property>
+ <child>
+ <object class="GtkGrid">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="margin_left">20</property>
+ <property name="margin_right">20</property>
+ <property name="margin_top">10</property>
+ <property name="margin_bottom">10</property>
+ <property name="row_spacing">2</property>
+ <property name="column_spacing">16</property>
+ <child>
+ <object class="GtkLabel" id="allow_amplify_label">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="halign">start</property>
+ <property name="valign">center</property>
+ <property name="label" translatable="yes">Over-Amplification</property>
+ <property name="mnemonic-widget">allow_amplify_switch</property>
+ <attributes>
+ <attribute name="weight" value="bold"/>
+ </attributes>
+ </object>
+ <packing>
+ <property name="left_attach">0</property>
+ <property name="top_attach">0</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GtkSwitch" id="allow_amplify_switch">
+ <property name="visible">True</property>
+ <property name="can_focus">True</property>
+ <property name="halign">end</property>
+ <property name="valign">center</property>
+ </object>
+ <packing>
+ <property name="left_attach">1</property>
+ <property name="top_attach">0</property>
+ <property name="height">2</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GtkLabel" id="allow_amplify_desc">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="label" translatable="yes">Allows raising the volume above 100%. This can result in a loss of audio quality; it is better to increase application volume settings, if possible.</property>
+ <property name="wrap">True</property>
+ <attributes>
+ <attribute name="scale" value="0.9"/>
+ </attributes>
+ <style>
+ <class name="dim-label"/>
+ </style>
+ </object>
+ <packing>
+ <property name="left_attach">0</property>
+ <property name="top_attach">1</property>
+ </packing>
+ </child>
+ </object>
+ </child>
+ </object>
+ </child>
+ </object>
+ </child>
+ </object>
+ </child>
+ <child>
<object class="GtkLabel">
<property name="visible">True</property>
<property name="xalign">0</property>
......@@ -34,5 +34,3 @@ ubuntu_restore_sharing.patch
gitlab_ucm_mixer_control_select.patch
# in master but not stable yet
0033-sound-update-the-profile-list-after-getting-the-sign.patch
......@@ -11,7 +11,6 @@ export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1 -Wl,-z,defs -Wl,--as-needed
override_dh_auto_configure:
dh_auto_configure -- \
-Dprivileged_group=sudo \
-Dgnome_session_libexecdir=/usr/lib/gnome-session \
-Ddocumentation=true \
-Dsnap=true \
-Dwhoopsie=true
......
version=4
https://download.gnome.org/sources/@PACKAGE@/([\d\.]+)/ \
https://download.gnome.org/sources/@PACKAGE@/([\d\.]+[24680])/ \
@PACKAGE@@ANY_VERSION@\.tar\.xz
project(
'gnome-control-center', 'c',
version : '3.38.0',
version : '3.38.1',
license : 'GPL2+',
meson_version : '>= 0.51.0'
)
......
......@@ -69,6 +69,7 @@ struct _CcKeyboardShortcutEditor
static void command_entry_changed_cb (CcKeyboardShortcutEditor *self);
static void name_entry_changed_cb (CcKeyboardShortcutEditor *self);
static void set_button_clicked_cb (CcKeyboardShortcutEditor *self);
G_DEFINE_TYPE (CcKeyboardShortcutEditor, cc_keyboard_shortcut_editor, GTK_TYPE_DIALOG)
......@@ -495,9 +496,10 @@ remove_button_clicked_cb (CcKeyboardShortcutEditor *self)
static void
replace_button_clicked_cb (CcKeyboardShortcutEditor *self)
{
update_shortcut (self);
gtk_widget_hide (GTK_WIDGET (self));
if (self->mode == CC_SHORTCUT_EDITOR_CREATE)
add_button_clicked_cb (self);
else
set_button_clicked_cb (self);
}
static void
......
......@@ -65,7 +65,8 @@ struct _PpPPDSelectionDialog {
};
static void
manufacturer_selection_changed_cb (PpPPDSelectionDialog *self)
manufacturer_selection_changed_cb (GtkTreeSelection *selection,
PpPPDSelectionDialog *self)
{
GtkTreeView *treeview;
GtkListStore *store;
......@@ -122,7 +123,8 @@ manufacturer_selection_changed_cb (PpPPDSelectionDialog *self)
}
static void
model_selection_changed_cb (PpPPDSelectionDialog *self)
model_selection_changed_cb (GtkTreeSelection *selection,
PpPPDSelectionDialog *self)
{
GtkTreeView *treeview;
GtkTreeModel *model;
......@@ -256,11 +258,11 @@ populate_dialog (PpPPDSelectionDialog *self)
gtk_tree_view_append_column (models_treeview, column);
g_signal_connect_object (gtk_tree_view_get_selection (models_treeview),
"changed", G_CALLBACK (model_selection_changed_cb), self, G_CONNECT_SWAPPED);
g_signal_connect (gtk_tree_view_get_selection (models_treeview),
"changed", G_CALLBACK (model_selection_changed_cb), self);
g_signal_connect_object (gtk_tree_view_get_selection (manufacturers_treeview),
"changed", G_CALLBACK (manufacturer_selection_changed_cb), self, G_CONNECT_SWAPPED);
g_signal_connect (gtk_tree_view_get_selection (manufacturers_treeview),
"changed", G_CALLBACK (manufacturer_selection_changed_cb), self);
gtk_widget_show_all (self->dialog);
......@@ -282,8 +284,9 @@ populate_dialog (PpPPDSelectionDialog *self)
}
static void
ppd_selection_dialog_response_cb (PpPPDSelectionDialog *self,
gint response_id)
ppd_selection_dialog_response_cb (GtkDialog *dialog,
gint response_id,
PpPPDSelectionDialog *self)
{
GtkTreeSelection *selection;
GtkTreeModel *model;
......@@ -354,7 +357,7 @@ pp_ppd_selection_dialog_new (GtkWindow *parent,
/* connect signals */
g_signal_connect (self->dialog, "delete-event", G_CALLBACK (gtk_widget_hide_on_delete), NULL);
g_signal_connect_object (self->dialog, "response", G_CALLBACK (ppd_selection_dialog_response_cb), self, G_CONNECT_SWAPPED);
g_signal_connect (self->dialog, "response", G_CALLBACK (ppd_selection_dialog_response_cb), self);
gtk_window_set_transient_for (GTK_WINDOW (self->dialog), GTK_WINDOW (parent));
......
......@@ -99,9 +99,6 @@ output_device_changed_cb (CcSoundPanel *self)
gboolean can_fade = FALSE, has_lfe = FALSE;
device = cc_device_combo_box_get_device (self->output_device_combo_box);
cc_profile_combo_box_set_device (self->output_profile_combo_box, self->mixer_control, device);
gtk_widget_set_visible (GTK_WIDGET (self->output_profile_row),
cc_profile_combo_box_get_profile_count (self->output_profile_combo_box) > 1);
if (device != NULL)
stream = gvc_mixer_control_get_stream_from_device (self->mixer_control, device);
......@@ -133,9 +130,6 @@ input_device_changed_cb (CcSoundPanel *self)
GvcMixerStream *stream = NULL;
device = cc_device_combo_box_get_device (self->input_device_combo_box);
cc_profile_combo_box_set_device (self->input_profile_combo_box, self->mixer_control, device);
gtk_widget_set_visible (GTK_WIDGET (self->input_profile_row),
cc_profile_combo_box_get_profile_count (self->input_profile_combo_box) > 1);
if (device != NULL)
stream = gvc_mixer_control_get_stream_from_device (self->mixer_control, device);
......@@ -147,6 +141,34 @@ input_device_changed_cb (CcSoundPanel *self)
gvc_mixer_control_change_input (self->mixer_control, device);
}
static void
output_device_update_cb (CcSoundPanel *self,
guint id)
{
GvcMixerUIDevice *device;
gboolean has_multi_profiles;
device = cc_device_combo_box_get_device (self->output_device_combo_box);
cc_profile_combo_box_set_device (self->output_profile_combo_box, self->mixer_control, device);
has_multi_profiles = (cc_profile_combo_box_get_profile_count (self->output_profile_combo_box) > 1);
gtk_widget_set_visible (GTK_WIDGET (self->output_profile_row),
has_multi_profiles);
}
static void
input_device_update_cb (CcSoundPanel *self,
guint id)
{
GvcMixerUIDevice *device;
gboolean has_multi_profiles;
device = cc_device_combo_box_get_device (self->input_device_combo_box);
cc_profile_combo_box_set_device (self->input_profile_combo_box, self->mixer_control, device);
has_multi_profiles = (cc_profile_combo_box_get_profile_count (self->input_profile_combo_box) > 1);
gtk_widget_set_visible (GTK_WIDGET (self->input_profile_row),
has_multi_profiles);
}
static void
test_output_configuration_button_clicked_cb (CcSoundPanel *self)
{
......@@ -263,4 +285,14 @@ cc_sound_panel_init (CcSoundPanel *self)
cc_subwoofer_slider_set_mixer_control (self->subwoofer_slider, self->mixer_control);
cc_device_combo_box_set_mixer_control (self->input_device_combo_box, self->mixer_control, FALSE);
cc_device_combo_box_set_mixer_control (self->output_device_combo_box, self->mixer_control, TRUE);
g_signal_connect_object (self->mixer_control,
"active-output-update",
G_CALLBACK (output_device_update_cb),
self,
G_CONNECT_SWAPPED);
g_signal_connect_object (self->mixer_control,
"active-input-update",
G_CALLBACK (input_device_update_cb),
self,
G_CONNECT_SWAPPED);
}
......@@ -59,7 +59,7 @@ volume_changed_cb (CcSubwooferSlider *self)
volumes = gvc_channel_map_get_volume (self->channel_map);
g_signal_handlers_block_by_func (self->adjustment, volume_changed_cb, self);
gtk_adjustment_set_value (self->adjustment, volumes[BALANCE]);
gtk_adjustment_set_value (self->adjustment, volumes[LFE]);
g_signal_handlers_unblock_by_func (self->adjustment, volume_changed_cb, self);
}
......
......@@ -48,6 +48,7 @@ is
it
ja
ka
kab
kk
km
kn
......
......@@ -24,7 +24,7 @@ msgstr ""
"Project-Id-Version: gnome-control-center\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-control-center/"
"issues\n"
"POT-Creation-Date: 2020-08-31 15:11+0000\n"
"POT-Creation-Date: 2020-09-15 07:24+0000\n"
"PO-Revision-Date: 2020-09-01 10:53+0200\n"
"Last-Translator: Marek Černocký <marek@manet.cz>\n"
"Language-Team: čeština <gnome-cs-list@gnome.org>\n"
......@@ -367,7 +367,7 @@ msgstr "Vyběr obrázku"
#: panels/color/cc-color-calibrate.ui:25 panels/color/cc-color-panel.c:238
#: panels/color/cc-color-panel.c:886 panels/color/cc-color-panel.ui:657
#: panels/common/cc-language-chooser.ui:24
#: panels/display/cc-display-panel.c:942
#: panels/display/cc-display-panel.c:943
#: panels/info-overview/cc-info-overview-panel.ui:234
#: panels/network/cc-wifi-hotspot-dialog.ui:122
#: panels/network/cc-wifi-panel.c:865
......@@ -1576,20 +1576,20 @@ msgstr ""
"obrazovka;zamknout;zámek;diagnostika;pád;zhroucení;soukromý;osobní;nedávný;"
"dočasný;tmp;index;jméno;síť;identita;soukromí;"
#: panels/display/cc-display-panel.c:953
#: panels/display/cc-display-panel.c:954
#: panels/network/connection-editor/connection-editor.ui:27
msgid "_Apply"
msgstr "_Použít"
#: panels/display/cc-display-panel.c:974
#: panels/display/cc-display-panel.c:975
msgid "Apply Changes?"
msgstr "Použít změny?"
#: panels/display/cc-display-panel.c:979
#: panels/display/cc-display-panel.c:980
msgid "Changes Cannot be Applied"
msgstr "Změny nelze použít"
#: panels/display/cc-display-panel.c:980
#: panels/display/cc-display-panel.c:981
msgid "This could be due to hardware limitations."
msgstr "Může to být dáno omezeními hardwaru."
......@@ -2609,7 +2609,7 @@ msgstr "Posunování dvěma prsty"
msgid "Edge Scrolling"
msgstr "Posunování po hraně"
#: panels/mouse/cc-mouse-panel.ui:719 panels/wacom/cc-wacom-panel.c:425
#: panels/mouse/cc-mouse-panel.ui:719 panels/wacom/cc-wacom-panel.c:441
msgid "Test Your _Settings"
msgstr "Vyzkoušet na_stavení"
......@@ -4471,7 +4471,7 @@ msgid "Media player"
msgstr "Multimediální přehrávač"
#. TRANSLATORS: secondary battery
#: panels/power/cc-power-panel.c:661 panels/wacom/cc-wacom-panel.c:794
#: panels/power/cc-power-panel.c:661 panels/wacom/cc-wacom-panel.c:728
msgid "Tablet"
msgstr "Tablet"
......@@ -6622,8 +6622,8 @@ msgstr ""
"kurzor;zvuk;přiblížení;zvětšení;čtečka obrazovky;čtení obrazovky;text;velký;"
"obrovský;písmo;font;velikost;přístup;zpřístupnění;kombinace kláves jedním "
"prstem;pomalé klávesy;vícenásobná zmáčknutí kláves;klávesnice myší;dvojitý;"
"klik;kliknutí;klepnutí;poklepání;prodleva;rychlost;asistent;opakování;blikání;"
"blikat;poruchy;handicap;vidění;sluch;psaní;"
"klik;kliknutí;klepnutí;poklepání;prodleva;rychlost;asistent;opakování;"
"blikání;blikat;poruchy;handicap;vidění;sluch;psaní;"
#: panels/universal-access/zoom-options.c:303
msgctxt "Distance"
......@@ -7146,8 +7146,8 @@ msgid ""
"Fingerprint login allows you to unlock and log into your computer with your "
"finger"
msgstr ""
"Pomocí přihlášení otiskem prstu může svůj počítač odemknout a přihlásit se do "
"něj pouhým přiložením prstu."
"Pomocí přihlášení otiskem prstu můžete svůj počítač odemknout a přihlásit se "
"do něj pouhým přiložením prstu."
#: panels/user-accounts/cc-fingerprint-dialog.ui:352
msgid "_Delete Fingerprints"
......@@ -7163,7 +7163,7 @@ msgstr "Zaznamenání otisku prstu"
#: panels/user-accounts/cc-fingerprint-dialog.ui:436
msgid "_Re-enroll this finger…"
msgstr "Znovu tento otisk prstu…"
msgstr "Znovu zaznamenat tento otisk prstu…"
#: panels/user-accounts/cc-fingerprint-dialog.c:470
#, c-format
......@@ -7249,7 +7249,7 @@ msgstr "Selhalo zaznamenání nového otisku prstu"
#: panels/user-accounts/cc-fingerprint-dialog.c:803
#, c-format
msgid "Failed to stop enrollment: %s"
msgstr "Selhalo zastevní záznamu: %s"
msgstr "Selhalo zastavení záznamu: %s"
#: panels/user-accounts/cc-fingerprint-dialog.c:847
msgid ""
......@@ -7277,7 +7277,7 @@ msgstr "Problém při čtení zařízení"
#: panels/user-accounts/cc-fingerprint-dialog.c:1133
#, c-format
msgid "Failed to claim fingerprint device %s: %s"
msgstr "Selhalo vyžádání četečky otisku prstu %s: %s"
msgstr "Selhalo vyžádání čtečky otisku prstu %s: %s"
#: panels/user-accounts/cc-fingerprint-dialog.c:1270
#, c-format
......@@ -7832,7 +7832,7 @@ msgstr ""
msgid "Map Buttons"
msgstr "Mapování tlačítek"
#: panels/wacom/button-mapping.ui:37 panels/wacom/cc-wacom-page.c:512
#: panels/wacom/button-mapping.ui:37 panels/wacom/cc-wacom-page.c:519
#: panels/wacom/gnome-wacom-properties.ui:60
msgid "_Close"
msgstr "_Zavřít"
......@@ -7906,11 +7906,11 @@ msgstr "Mapovat na jedinou obrazovku"
msgid "%d of %d"
msgstr "%d z %d"
#: panels/wacom/cc-wacom-page.c:509
#: panels/wacom/cc-wacom-page.c:516
msgid "Display Mapping"
msgstr "Mapování zobrazení"
#: panels/wacom/cc-wacom-panel.c:791 panels/wacom/wacom-stylus-page.ui:119
#: panels/wacom/cc-wacom-panel.c:725 panels/wacom/wacom-stylus-page.ui:119
msgid "Stylus"
msgstr "Pero"
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.