diff options
author | Lars Uebernickel <lars.uebernickel@canonical.com> | 2012-11-21 13:40:11 +0100 |
---|---|---|
committer | Lars Uebernickel <lars.uebernickel@canonical.com> | 2012-11-21 13:40:11 +0100 |
commit | e8eda4af8432d36d82b1124a4bad0f5eee876188 (patch) | |
tree | a3f286c6d6247ea7770b0944d93e773fbe6f384c /src/im-application-list.c | |
parent | 7d78b08907c94be166da15adc9b7dad3c282d0f2 (diff) | |
download | ayatana-indicator-messages-e8eda4af8432d36d82b1124a4bad0f5eee876188.tar.gz ayatana-indicator-messages-e8eda4af8432d36d82b1124a4bad0f5eee876188.tar.bz2 ayatana-indicator-messages-e8eda4af8432d36d82b1124a4bad0f5eee876188.zip |
ImApplicationList: fix typos
Thanks Olivier!
Diffstat (limited to 'src/im-application-list.c')
-rw-r--r-- | src/im-application-list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/im-application-list.c b/src/im-application-list.c index 05d3a52..732a117 100644 --- a/src/im-application-list.c +++ b/src/im-application-list.c @@ -215,7 +215,7 @@ im_application_list_add (ImApplicationList *list, info = g_desktop_app_info_new (desktop_id); if (!info) { - g_warning ("an application with id '%s' is no installed", desktop_id); + g_warning ("an application with id '%s' is not installed", desktop_id); return; } @@ -483,7 +483,7 @@ im_application_list_set_remote (ImApplicationList *list, app = g_hash_table_lookup (list->applications, id); if (!app) { - g_warning ("'%s' is not a registered appliction", id); + g_warning ("'%s' is not a registered application", id); return; } |