talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit f90abad06b715583e0ff3e7ec000e4414b17dcd9
parent bffd6c59e8ae058f54e7e461c5e81a337ac1048f
Author: Paul <paul@claws-mail.org>
Date:   Sat, 14 Nov 2015 09:38:31 +0000

use correct term, so that notes for translators appear in the po files

Diffstat:
Msrc/plugins/gdata/cm_gdata_contacts.c | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/plugins/gdata/cm_gdata_contacts.c b/src/plugins/gdata/cm_gdata_contacts.c @@ -1,5 +1,6 @@ /* GData plugin for Claws-Mail * Copyright (C) 2011 Holger Berndt + * Copyright (C) 2011-2015 the Claws Mail team * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -336,9 +337,9 @@ static void cm_gdata_query_contacts_ready(GDataContactsService *service, GAsyncR } g_object_unref(feed); contacts_cache.contacts = g_slist_reverse(contacts_cache.contacts); - /* i18n: First part of "Added X of Y contacts to cache" */ + /* TRANSLATORS: First part of "Added X of Y contacts to cache" */ tmpstr1 = g_strdup_printf(ngettext("Added %d of", "Added %d of", num_contacts_added), num_contacts_added); - /* i18n: Second part of "Added X of Y contacts to cache" */ + /* TRANSLATORS: Second part of "Added X of Y contacts to cache" */ tmpstr2 = g_strdup_printf(ngettext("1 contact to the cache", "%d contacts to the cache", num_contacts), num_contacts); log_message(LOG_PROTOCOL, "%s %s\n", tmpstr1, tmpstr2); g_free(tmpstr1);