Merge lp:~jbicha/indicator-datetime/spell-out-and into lp:indicator-datetime/0.3

Proposed by Jeremy Bícha
Status: Merged
Merged at revision: 121
Proposed branch: lp:~jbicha/indicator-datetime/spell-out-and
Merge into: lp:indicator-datetime/0.3
Diff against target: 56 lines (+5/-5)
3 files modified
data/datetime-dialog.ui (+1/-1)
data/indicator-datetime-preferences.desktop.in (+1/-1)
src/datetime-service.c (+3/-3)
To merge this branch: bzr merge lp:~jbicha/indicator-datetime/spell-out-and
Reviewer Review Type Date Requested Status
Ted Gould (community) Approve
Jeremy Bícha Needs Information
Matthew Paul Thomas (community) design Needs Fixing
Review via email: mp+70604@code.launchpad.net
To post a comment you must log in.
120. By Jeremy Bícha

Use real ellipsis (LP: #621339)

Revision history for this message
Matthew Paul Thomas (mpt) wrote :

+1 to using real ellipses! Thanks.

For "&" vs. "and", I think it's better for menus, buttons, and window titles to use "&", because it makes the other words in the label easier to scan. (The same reason that those labels have most words capitalized, but not short non-terminal articles and prepositions.) That's why the Time & Date settings panel itself uses "&".

review: Needs Fixing (design)
Revision history for this message
Jeremy Bícha (jbicha) wrote :

Thanks for the review. In the System Settings overview, "Time & Date" doesn't match "Messaging and VOIP Accounts", "Region and Language" or "Mouse and Touchpad". Do we intend to patch all of those to use the ampersand instead?

review: Needs Information
Revision history for this message
Matthew Paul Thomas (mpt) wrote :

I don't know if anyone intends to, but I think it would be an improvement.

Revision history for this message
Ted Gould (ted) wrote :

Merged in the ellipsis change and not the & change.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'data/datetime-dialog.ui'
2--- data/datetime-dialog.ui 2011-06-29 13:10:25 +0000
3+++ data/datetime-dialog.ui 2011-08-05 17:51:58 +0000
4@@ -414,7 +414,7 @@
5 <property name="visible">True</property>
6 <property name="can_focus">False</property>
7 <property name="xpad">1</property>
8- <property name="label" translatable="yes">_Time &amp; Date</property>
9+ <property name="label" translatable="yes">_Time and Date</property>
10 <property name="use_underline">True</property>
11 </object>
12 <packing>
13
14=== modified file 'data/indicator-datetime-preferences.desktop.in'
15--- data/indicator-datetime-preferences.desktop.in 2011-06-29 13:10:25 +0000
16+++ data/indicator-datetime-preferences.desktop.in 2011-08-05 17:51:58 +0000
17@@ -1,7 +1,7 @@
18 [Desktop Entry]
19 Version=1.0
20
21-_Name=Time & Date
22+_Name=Time and Date
23 _Comment=Change your clock and date settings
24
25 Icon=preferences-system-time
26
27=== modified file 'src/datetime-service.c'
28--- src/datetime-service.c 2011-07-07 21:17:58 +0000
29+++ src/datetime-service.c 2011-08-05 17:51:58 +0000
30@@ -491,7 +491,7 @@
31 dbusmenu_menuitem_property_set(events_separator, DBUSMENU_MENUITEM_PROP_TYPE, DBUSMENU_CLIENT_TYPES_SEPARATOR);
32 dbusmenu_menuitem_child_add_position(root, events_separator, 2);
33 add_appointment = dbusmenu_menuitem_new();
34- dbusmenu_menuitem_property_set (add_appointment, DBUSMENU_MENUITEM_PROP_LABEL, _("Add Event..."));
35+ dbusmenu_menuitem_property_set (add_appointment, DBUSMENU_MENUITEM_PROP_LABEL, _("Add Event…"));
36 dbusmenu_menuitem_property_set_bool(add_appointment, DBUSMENU_MENUITEM_PROP_ENABLED, TRUE);
37 g_signal_connect(G_OBJECT(add_appointment), DBUSMENU_MENUITEM_SIGNAL_ITEM_ACTIVATED, G_CALLBACK(activate_cb), "evolution -c calendar");
38 dbusmenu_menuitem_child_add_position (root, add_appointment, 3);
39@@ -1059,7 +1059,7 @@
40 g_debug("Building Menus.");
41 if (date == NULL) {
42 date = dbusmenu_menuitem_new();
43- dbusmenu_menuitem_property_set (date, DBUSMENU_MENUITEM_PROP_LABEL, _("No date yet..."));
44+ dbusmenu_menuitem_property_set (date, DBUSMENU_MENUITEM_PROP_LABEL, _("No date yet…"));
45 dbusmenu_menuitem_property_set_bool(date, DBUSMENU_MENUITEM_PROP_ENABLED, FALSE);
46 dbusmenu_menuitem_child_append(root, date);
47
48@@ -1110,7 +1110,7 @@
49 dbusmenu_menuitem_child_append(root, separator);
50
51 settings = dbusmenu_menuitem_new();
52- dbusmenu_menuitem_property_set (settings, DBUSMENU_MENUITEM_PROP_LABEL, _("Time & Date Settings..."));
53+ dbusmenu_menuitem_property_set (settings, DBUSMENU_MENUITEM_PROP_LABEL, _("Time and Date Settings…"));
54 /* insensitive until we check for available apps */
55 dbusmenu_menuitem_property_set_bool(settings, DBUSMENU_MENUITEM_PROP_ENABLED, FALSE);
56 g_signal_connect(G_OBJECT(settings), DBUSMENU_MENUITEM_SIGNAL_ITEM_ACTIVATED, G_CALLBACK(activate_cb), "gnome-control-center indicator-datetime");

Subscribers

People subscribed via source and target branches