diff options
author | Philip Withnall <philip@tecnocode.co.uk> | 2008-08-27 18:37:32 +0800 |
---|---|---|
committer | Philip Withnall <pwithnall@src.gnome.org> | 2008-08-27 18:37:32 +0800 |
commit | 0368e5866b2e700a7b7642775c6fb81ab1aef18e (patch) | |
tree | d681634b14360df1d8bcdc298928e8ee8fbf59d2 /a11y | |
parent | 1bad915150e2d5e97cbbf1a77f7a85e338c07f28 (diff) | |
download | gsoc2013-evolution-0368e5866b2e700a7b7642775c6fb81ab1aef18e.tar.gz gsoc2013-evolution-0368e5866b2e700a7b7642775c6fb81ab1aef18e.tar.zst gsoc2013-evolution-0368e5866b2e700a7b7642775c6fb81ab1aef18e.zip |
** Fix for bug #534762
2008-08-27 Philip Withnall <philip@tecnocode.co.uk>
** Fix for bug #534762
Change "addressbook" to "address book" in translatable strings.
svn path=/trunk/; revision=36117
Diffstat (limited to 'a11y')
-rw-r--r-- | a11y/ChangeLog | 10 | ||||
-rw-r--r-- | a11y/addressbook/ea-addressbook-view.c | 4 | ||||
-rw-r--r-- | a11y/addressbook/ea-minicard-view.c | 2 |
3 files changed, 13 insertions, 3 deletions
diff --git a/a11y/ChangeLog b/a11y/ChangeLog index 9fbbabaf19..368038b437 100644 --- a/a11y/ChangeLog +++ b/a11y/ChangeLog @@ -1,3 +1,13 @@ +2008-08-27 Philip Withnall <philip@tecnocode.co.uk> + + ** Fix for bug #534762 + + * addressbook/ea-addressbook-view.c: (ea_ab_view_get_name), + (ea_ab_view_get_description): + * addressbook/ea-minicard-view.c: + (ea_minicard_view_get_description): Change "addressbook" to + "address book" in translatable strings. + 2008-08-27 Sankar P <psankar@novell.com> License Changes diff --git a/a11y/addressbook/ea-addressbook-view.c b/a11y/addressbook/ea-addressbook-view.c index be6a1e6212..174fff71f7 100644 --- a/a11y/addressbook/ea-addressbook-view.c +++ b/a11y/addressbook/ea-addressbook-view.c @@ -91,7 +91,7 @@ ea_ab_view_get_name (AtkObject *accessible) if (accessible->name) return accessible->name; - return _("evolution addressbook"); + return _("evolution address book"); } static G_CONST_RETURN gchar* @@ -100,7 +100,7 @@ ea_ab_view_get_description (AtkObject *accessible) if (accessible->description) return accessible->description; - return _("evolution addressbook"); + return _("evolution address book"); } AtkObject* diff --git a/a11y/addressbook/ea-minicard-view.c b/a11y/addressbook/ea-minicard-view.c index b617bef24b..fc5638d51d 100644 --- a/a11y/addressbook/ea-minicard-view.c +++ b/a11y/addressbook/ea-minicard-view.c @@ -175,7 +175,7 @@ ea_minicard_view_get_description (AtkObject *accessible) if (accessible->description) return accessible->description; - return _("evolution addressbook"); + return _("evolution address book"); } AtkObject* |