Commit graph

3154 commits

Author SHA1 Message Date
Kalev Lember
c5812c3ccc datetime: Mark the time format strings as translatable
... and add translator comments explainings what they do. The RTL
languages are likely going to want to show them in a different order.

We should eventually move to just using GnomeWallClock and/or
g_date_time_format with %c that already have translated the time format
strings. However, in case this doesn't make it in time for 3.10, mark
the current strings in g-c-c as translatable to get some translation
coverage.

https://bugzilla.gnome.org/show_bug.cgi?id=694985
2013-08-20 15:49:59 +02:00
Kalev Lember
da9d4a76c9 datetime: Show information about the selected timezone
... using the text bubble API from the previous commit. We're currently
displaying the time zone abbreviation, UTC offset, city and country
name, and the current time.

https://bugzilla.gnome.org/show_bug.cgi?id=694985
2013-08-20 15:49:59 +02:00
Kalev Lember
05dc928313 datetime: Add API to draw a text bubble on the timezone map
It's currently drawn either west or east of the position marker,
depending where we have more free space.

https://bugzilla.gnome.org/show_bug.cgi?id=694985
2013-08-20 15:49:59 +02:00
Kalev Lember
718118963e datetime: Implement timezone search with autocompletion
This is first cut at implementing the new timezone dialog design.
Instead of having drop down menus with the city and the continent, we're
now switching to a search entry that has autocompletion.

https://bugzilla.gnome.org/show_bug.cgi?id=694985
2013-08-20 15:49:50 +02:00
Srinivasa Ragavan
e9a6e679fc privacy: confirm before emptying trash or purging temporary files.
Fixes bug #703163
2013-08-20 19:11:33 +05:30
Rui Matos
19d3e96d6a datetime: Ensure that translated strings for timezones are UTF-8
This was fixed in commit 2c4bba74e0 but
then got lost in a code refactor in commit
3686cf7eb8.

https://bugzilla.gnome.org/show_bug.cgi?id=706350
2013-08-20 13:49:52 +01:00
Allan Day
fefa11594c Universal access menu option - use a clearer label
It wasn't obvious what the switch did.

https://bugzilla.gnome.org/show_bug.cgi?id=706348
2013-08-20 12:23:09 +01:00
Allan Day
faedd89f41 Notifications - add padding above the app list
This makes the switches distinct from the list - they do
different things.

https://bugzilla.gnome.org/show_bug.cgi?id=706347
2013-08-20 12:23:09 +01:00
Bastien Nocera
eb4ee20920 power: Avoid warning with no screen backlight
Similar patch to f7c5225288
but for the screen backlight.
2013-08-20 04:34:46 +02:00
Bastien Nocera
f7c5225288 power: Avoid warning with no keyboard backlight
If there's no keyboard backlight interface in gnome-settings-daemon,
hide the slider as well, rather than throw a warning.

https://bugzilla.gnome.org/show_bug.cgi?id=706040
2013-08-20 04:34:32 +02:00
Kalev Lember
6fddedad84 datetime: Toggle the NTP switch when clicking on the row
Pointed out by Allan Day on IRC.

https://bugzilla.gnome.org/show_bug.cgi?id=694985
2013-08-20 02:30:31 +02:00
Kalev Lember
20670b5360 datetime: Shuffle initialization code around
Move subdialog setup code out of the main init function and to
respective setup_*_dialog() functions.

https://bugzilla.gnome.org/show_bug.cgi?id=694985
2013-08-20 02:21:21 +02:00
Kalev Lember
f5cb98c94f datetime: Implement new design for the time subdialog
https://bugzilla.gnome.org/show_bug.cgi?id=694985
2013-08-20 02:21:21 +02:00
Kalev Lember
60e448b77a datetime: Move the 24h/12h selection to the main overview
... and use a combobox for choosing between the options.

https://bugzilla.gnome.org/show_bug.cgi?id=694985
2013-08-20 02:21:21 +02:00
Kalev Lember
9a3265de24 datetime: Show the timezone map in the original, unscaled size
https://bugzilla.gnome.org/show_bug.cgi?id=694985
2013-08-20 02:21:06 +02:00
Kalev Lember
f90edf44b1 datetime: Clean up error handling
Avoid using two GError variables in a single function to reduce
programmer confusion. Instead, only use one and clear it with
g_clear_error() when we need to reuse it.

Pointed out by Rui Matos.

https://bugzilla.gnome.org/show_bug.cgi?id=694985
2013-08-20 02:17:32 +02:00
Kalev Lember
a0d156d19a datetime: Implement listbox based overview
... and move existing date/time and timezone settings to separate subdialogs.

https://bugzilla.gnome.org/show_bug.cgi?id=694985
2013-08-20 02:17:32 +02:00
Bastien Nocera
074f55e344 background: Add support for lock screen background
https://bugzilla.gnome.org/show_bug.cgi?id=696166
2013-08-20 00:35:30 +02:00
Bastien Nocera
ea16cadce9 background: Remove unused "lock" preview widgets
https://bugzilla.gnome.org/show_bug.cgi?id=696166
2013-08-20 00:35:30 +02:00
Bastien Nocera
1097d4ca75 background: Fix memory corruption when creating preview
When using a single screen, the captured area was too small, and
we were copying data from out-of-bounds of the pixbuf area.

https://bugzilla.gnome.org/show_bug.cgi?id=696166
2013-08-20 00:35:30 +02:00
Bastien Nocera
4a53e93c69 network: Correctly check for error conditions 2013-08-19 22:34:55 +02:00
Bastien Nocera
0f5122eb9a network: Remove unused include 2013-08-19 22:34:55 +02:00
Kalev Lember
ef1f9e3398 privacy: Remove Name & Visibility section
We no longer show the user's name in the GNOME Shell top bar or in the
lock screen and this dialog no longer has any purpose.

https://bugzilla.gnome.org/show_bug.cgi?id=706301
2013-08-19 19:51:49 +02:00
Kalev Lember
fd4df35093 datetime: Move pixbuf loading out of the draw signal handler
This moves the timezone location marker image loading code to init()
where most of other resources are loaded, making the draw callback
smaller and easier to read. As a plus, it also avoids needless
allocations during each time the map is drawn.

https://bugzilla.gnome.org/show_bug.cgi?id=706253
2013-08-19 18:42:01 +02:00
Kalev Lember
625583974a datetime: Use g_clear_object()
https://bugzilla.gnome.org/show_bug.cgi?id=706253
2013-08-19 18:41:36 +02:00
Kalev Lember
2dfde249ac datetime: New location marker image for the timezone map
The image was drawn by Andreas Nilsson <anilsson@redhat.com>

https://bugzilla.gnome.org/show_bug.cgi?id=706253
2013-08-19 18:40:32 +02:00
Kalev Lember
be79efe242 datetime: Alignment fixes for the location marker on timezone map
Make sure the marker is drawn pixel-aligned to avoid fuzziness, and
ensure that it actually ends up in the visible area.

https://bugzilla.gnome.org/show_bug.cgi?id=706253
2013-08-19 18:40:10 +02:00
Kalev Lember
88eeb8cb2d common: Ship a PolicyKit rule for the datetime panel
Allow local admins with an active session use the Date & Time panel
without requiring a password.

https://bugzilla.gnome.org/show_bug.cgi?id=646185
2013-08-19 15:09:05 +01:00
Giovanni Campagna
4c85135171 CcRRLabeler: don't crash when not running under X
If running under wayland, we can't use an X property notify
to look at workarea changes.
Currently, workarea is not part of the wayland protocol, so don't
bother and just don't crash.

https://bugzilla.gnome.org/show_bug.cgi?id=705573
2013-08-19 09:58:05 +02:00
Giovanni Campagna
77c72eb8ce wacom: adapt to GnomeRR API changes
GnomeRR now returns the EDID IDs as strings directly, so we don't
need to convert them to compare to the settings. Also, we don't
need to filter disconnected outputs, it's done by mutter now.

https://bugzilla.gnome.org/show_bug.cgi?id=705573
2013-08-19 09:58:05 +02:00
Giovanni Campagna
150466cdb6 display: adapt to the new model for display configuration
The way we apply the new configuration changed, in that we are
expected to call the apply() method of GnomeRRConfig ourselves,
and that takes care to call to mutter, show the confirmation
dialog, etc.

https://bugzilla.gnome.org/show_bug.cgi?id=705573
2013-08-19 09:58:05 +02:00
Ondrej Holy
60e1999618 user-accounts: add password generation to the add user dialog
https://bugzilla.gnome.org/show_bug.cgi?id=706067
2013-08-16 23:08:44 +02:00
Ondrej Holy
a3d0840bdd user-accounts: Add password generation back to the password dialog
https://bugzilla.gnome.org/show_bug.cgi?id=706067
2013-08-16 23:08:28 +02:00
Ondrej Holy
12da80928e user-accounts: let realmd prefil the DHCP domain if it's joinable
https://bugzilla.gnome.org/show_bug.cgi?id=704407
2013-08-16 22:47:18 +02:00
Ondrej Holy
cb056263fd user-accounts: Hint improvements when adding enterprise accounts
Add domain hint and change error messages.

https://bugzilla.gnome.org/show_bug.cgi?id=704407
2013-08-16 22:24:19 +02:00
Ondrej Holy
a4bac32271 user-accounts: move strength meter below in the add user dialog
Remove strength hint, add verify hint, change labels and replace domain spinner
by dialog spinner.

https://bugzilla.gnome.org/show_bug.cgi?id=704407
2013-08-16 22:24:05 +02:00
Ondrej Holy
e42be5dfff user-accounts: move strength meter below in the password dialog
Remove strenght hint, add verify hint and change labels also.

https://bugzilla.gnome.org/show_bug.cgi?id=704407
2013-08-16 22:00:36 +02:00
Stef Walter
7ae6814784 user-accounts: Validate dialog immediately when enter is pressed
This allows users to touch type passwords, press <ENTER> without
waiting for the pasword timeout to clear.

https://bugzilla.gnome.org/show_bug.cgi?id=702476
2013-08-16 21:56:29 +02:00
Stef Walter
6d21f8f358 user-accounts: activates_default = TRUE on add account password entries
https://bugzilla.gnome.org/show_bug.cgi?id=702476
2013-08-16 21:56:29 +02:00
Stef Walter
7b3746af23 user-accounts: Don't disable the verify password entry
This completely breaks pressing <TAB> to get to the next
control in the dialog, especially when immediately typing
a password.

https://bugzilla.gnome.org/show_bug.cgi?id=702476
2013-08-16 21:56:29 +02:00
Ondrej Holy
af691e6122 user-accounts: add positive confirmation to the add user dialog
Add checkmarks, remove exclam icons and decrese timeout (by design).

https://bugzilla.gnome.org/show_bug.cgi?id=702476
2013-08-16 21:56:29 +02:00
Ondrej Holy
aaf25450ee user-accounts: add positive confirmation to the password dialog
Add checkmarks, remove exclam icons, remove tooltips, change
password hints and decrese timeout (by design).

https://bugzilla.gnome.org/show_bug.cgi?id=702476
2013-08-16 21:56:28 +02:00
Jasper St. Pierre
a5cdade1a7 network: Use HasAirplaneMode to determine whether to show the switch
Not all systems have rfkill toggles we can set; if we don't have any,
we shouldn't show any switch at all.

https://bugzilla.gnome.org/show_bug.cgi?id=706042
2013-08-16 13:37:20 -04:00
Jasper St. Pierre
6d353f296e network: Sync airplane mode status on startup
https://bugzilla.gnome.org/show_bug.cgi?id=706042
2013-08-16 13:37:20 -04:00
Matthias Clasen
539b5e0710 network: activate wired profiles when clicked
This was always the intention of the design; we just
didn't get around to it. It is becoming more important now
that the shell system status does not show wired profiles
anymore.

https://bugzilla.gnome.org/show_bug.cgi?id=705935
2013-08-16 11:33:08 -04:00
Daiki Ueno
9a7ff8afbd region: translate IBus engine name if possible
https://bugzilla.gnome.org/show_bug.cgi?id=705907
2013-08-15 18:08:45 +02:00
Ondrej Holy
7f3f853fb3 user-accounts: username generation fix
https://bugzilla.gnome.org/show_bug.cgi?id=703748
2013-08-15 09:16:39 +02:00
Jasper St. Pierre
6615c7de89 keyboard: Add a screencast shortcut entry 2013-08-14 21:00:41 -04:00
Ondrej Holy
f05d244155 user-accounts: remove spinner from the password dialog
https://bugzilla.gnome.org/show_bug.cgi?id=702480
2013-08-14 22:30:37 +02:00
Ondrej Holy
39e6b6d044 user-accounts: Info message when we are offline
https://bugzilla.gnome.org/show_bug.cgi?id=702477
2013-08-14 22:29:53 +02:00