summaryrefslogtreecommitdiff
path: root/tp-account-widgets
diff options
context:
space:
mode:
authorMarco Barisione <marco.barisione@collabora.co.uk>2013-08-22 13:34:20 +0100
committerMarco Barisione <marco.barisione@collabora.co.uk>2013-08-22 13:34:20 +0100
commitb960ce1eb5d3ecaffd1f2fd11f85e793cccc41f0 (patch)
tree25f94579644e610431e6267e568d02dcaba1b3f3 /tp-account-widgets
parentcc6d0bfb4d27bca1d6a978bdfd6d8d7d5f19f0ff (diff)
downloadtelepathy-account-widgets-b960ce1eb5d3ecaffd1f2fd11f85e793cccc41f0.tar.gz
tpaw-contactinfo-utils: use title case for labels
Diffstat (limited to 'tp-account-widgets')
-rw-r--r--tp-account-widgets/tpaw-contactinfo-utils.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/tp-account-widgets/tpaw-contactinfo-utils.c b/tp-account-widgets/tpaw-contactinfo-utils.c
index 459f1e3b..36e5607c 100644
--- a/tp-account-widgets/tpaw-contactinfo-utils.c
+++ b/tp-account-widgets/tpaw-contactinfo-utils.c
@@ -94,22 +94,22 @@ static const char *info_field_names[] =
static InfoFieldData info_field_data[G_N_ELEMENTS (info_field_names)] =
{
- { "fn", N_("Full name"), NULL },
- { "tel", N_("Phone number"), NULL },
- { "email", N_("E-mail address"), linkify_first_value },
+ { "fn", N_("Full Name"), NULL },
+ { "tel", N_("Phone Number"), NULL },
+ { "email", N_("E-mail Address"), linkify_first_value },
{ "url", N_("Website"), linkify_first_value },
{ "bday", N_("Birthday"), NULL },
/* Note to translators: this is the caption for a string of the form "5
* minutes ago", and refers to the time since the contact last interacted
* with their IM client. */
- { "x-idle-time", N_("Last seen:"), format_idle_time },
+ { "x-idle-time", N_("Last Seen:"), format_idle_time },
{ "x-irc-server", N_("Server:"), format_server },
- { "x-host", N_("Connected from:"), format_server },
+ { "x-host", N_("Connected From:"), format_server },
/* FIXME: once Idle implements SimplePresence using this information, we can
* and should bin this. */
- { "x-presence-status-message", N_("Away message:"), presence_hack },
+ { "x-presence-status-message", N_("Away Message:"), presence_hack },
{ NULL, NULL }
};