diff options
author | Francisco Javier F. Serrador <serrador@openshine.com> | 2006-10-15 22:23:02 +0800 |
---|---|---|
committer | Francisco Javier Fernandez Serrador <serrador@src.gnome.org> | 2006-10-15 22:23:02 +0800 |
commit | c40dcb66784ac80ca556c7099c2bca2e1ad86d75 (patch) | |
tree | 5d174f281838ffcd5431d022f5d389f6f3e40ec9 | |
parent | d93338ea5fbd679162ceb3065538f1c94cce6cb3 (diff) | |
download | gsoc2013-evolution-c40dcb66784ac80ca556c7099c2bca2e1ad86d75.tar gsoc2013-evolution-c40dcb66784ac80ca556c7099c2bca2e1ad86d75.tar.gz gsoc2013-evolution-c40dcb66784ac80ca556c7099c2bca2e1ad86d75.tar.bz2 gsoc2013-evolution-c40dcb66784ac80ca556c7099c2bca2e1ad86d75.tar.lz gsoc2013-evolution-c40dcb66784ac80ca556c7099c2bca2e1ad86d75.tar.xz gsoc2013-evolution-c40dcb66784ac80ca556c7099c2bca2e1ad86d75.tar.zst gsoc2013-evolution-c40dcb66784ac80ca556c7099c2bca2e1ad86d75.zip |
addressbook/importers/evolution-ldif-importer.c
2006-10-15 Francisco Javier F. Serrador <serrador@openshine.com>
* addressbook/gui/widgets/eab-contact-display.c:
addressbook/importers/evolution-ldif-importer.c
addressbook/importers/evolution-vcard-importer.c
calendar/importers/icalendar-importer.c
plugins/groupwise-features/properties.glade
plugins/mailing-list-actions/org-gnome-mailing-list-actions.eplug.xml
plugins/save-attachments/org-gnome-save-attachments.xml
shell/shell.error.xml : Make some string improvements to allow better
use of gettext compendia.
svn path=/trunk/; revision=32879
-rw-r--r-- | ChangeLog | 13 | ||||
-rw-r--r-- | addressbook/gui/widgets/eab-contact-display.c | 2 | ||||
-rw-r--r-- | addressbook/importers/evolution-ldif-importer.c | 2 | ||||
-rw-r--r-- | addressbook/importers/evolution-vcard-importer.c | 2 | ||||
-rw-r--r-- | calendar/importers/icalendar-importer.c | 4 | ||||
-rw-r--r-- | plugins/groupwise-features/properties.glade | 2 | ||||
-rw-r--r-- | plugins/mailing-list-actions/org-gnome-mailing-list-actions.eplug.xml | 2 | ||||
-rw-r--r-- | plugins/save-attachments/org-gnome-save-attachments.xml | 2 | ||||
-rw-r--r-- | shell/shell.error.xml | 2 |
9 files changed, 22 insertions, 9 deletions
@@ -1,3 +1,16 @@ +2006-10-15 Francisco Javier F. Serrador <serrador@openshine.com> + + * addressbook/gui/widgets/eab-contact-display.c, + addressbook/importers/evolution-ldif-importer.c + addressbook/importers/evolution-vcard-importer.c + calendar/importers/icalendar-importer.c + plugins/groupwise-features/properties.glade + plugins/mailing-list-actions/org-gnome-mailing-list-actions.eplug.xml + plugins/save-attachments/org-gnome-save-attachments.xml + shell/shell.error.xml: Fixed some strings to improve gettext + compendia for translators. + + 2006-10-02 Harish Krishnaswamy <kharish@novell.com> * NEWS, configure.in: Evolution 2.8.1 release diff --git a/addressbook/gui/widgets/eab-contact-display.c b/addressbook/gui/widgets/eab-contact-display.c index 9729b97eb4..73503af53d 100644 --- a/addressbook/gui/widgets/eab-contact-display.c +++ b/addressbook/gui/widgets/eab-contact-display.c @@ -173,7 +173,7 @@ eab_selection_clear_event(GtkWidget *widget, GdkEventSelection *event, EABContac static EPopupItem eab_uri_popups[] = { { E_POPUP_ITEM, "05.open", N_("_Open Link in Browser"), eab_uri_popup_link_open, NULL, NULL, EAB_POPUP_URI_NOT_MAILTO }, { E_POPUP_ITEM, "10.copy", N_("_Copy Link Location"), eab_uri_popup_link_copy, NULL, NULL, EAB_POPUP_URI_NOT_MAILTO }, - { E_POPUP_ITEM, "15.send", N_("_Send New Message To ..."), eab_uri_popup_address_send, NULL, NULL, EAB_POPUP_URI_MAILTO}, + { E_POPUP_ITEM, "15.send", N_("_Send New Message To..."), eab_uri_popup_address_send, NULL, NULL, EAB_POPUP_URI_MAILTO}, { E_POPUP_ITEM, "20.copy", N_("Copy _Email Address"), eab_uri_popup_email_address_copy, NULL, "gtk-copy", EAB_POPUP_URI_MAILTO}, }; diff --git a/addressbook/importers/evolution-ldif-importer.c b/addressbook/importers/evolution-ldif-importer.c index 9259b8f879..63c8f3a049 100644 --- a/addressbook/importers/evolution-ldif-importer.c +++ b/addressbook/importers/evolution-ldif-importer.c @@ -580,7 +580,7 @@ ldif_import_contacts(void *d) ldif_import_done(gci); return FALSE; } else { - e_import_status(gci->import, gci->target, _("Importing ..."), ftell(gci->file) * 100 / gci->size); + e_import_status(gci->import, gci->target, _("Importing..."), ftell(gci->file) * 100 / gci->size); return TRUE; } } diff --git a/addressbook/importers/evolution-vcard-importer.c b/addressbook/importers/evolution-vcard-importer.c index 4e68e8b09c..cc614398db 100644 --- a/addressbook/importers/evolution-vcard-importer.c +++ b/addressbook/importers/evolution-vcard-importer.c @@ -247,7 +247,7 @@ vcard_import_contacts(void *data) vcard_import_done(gci); return FALSE; } else { - e_import_status(gci->import, gci->target, _("Importing ..."), gci->count * 100 / gci->total); + e_import_status(gci->import, gci->target, _("Importing..."), gci->count * 100 / gci->total); return TRUE; } } diff --git a/calendar/importers/icalendar-importer.c b/calendar/importers/icalendar-importer.c index ba0f2adcc0..768075ba34 100644 --- a/calendar/importers/icalendar-importer.c +++ b/calendar/importers/icalendar-importer.c @@ -309,7 +309,7 @@ static void ivcal_opened(ECal *ecal, ECalendarStatus status, ICalImporter *ici) { if (!ici->cancelled && status == E_CALENDAR_STATUS_OK) { - e_import_status(ici->import, ici->target, _("Importing ..."), 0); + e_import_status(ici->import, ici->target, _("Importing..."), 0); ici->idle_id = g_idle_add(ivcal_import_items, ici); } else ivcal_import_done(ici); @@ -674,7 +674,7 @@ gnome_calendar_import(EImport *ei, EImportTarget *target, EImportImporter *im) if (t == IMPORTER_TIMEOUT_SECONDS) goto out; - e_import_status(ei, target, _("Importing ..."), 0); + e_import_status(ei, target, _("Importing..."), 0); /* * Import the calendar events into the default calendar folder. diff --git a/plugins/groupwise-features/properties.glade b/plugins/groupwise-features/properties.glade index 4547f3ed43..93d8716612 100644 --- a/plugins/groupwise-features/properties.glade +++ b/plugins/groupwise-features/properties.glade @@ -96,7 +96,7 @@ <widget class="GtkRadioButton" id="radShared"> <property name="visible">True</property> <property name="can_focus">True</property> - <property name="label" translatable="yes">_Shared With ...</property> + <property name="label" translatable="yes">_Shared With...</property> <property name="use_underline">True</property> <property name="relief">GTK_RELIEF_NORMAL</property> <property name="focus_on_click">True</property> diff --git a/plugins/mailing-list-actions/org-gnome-mailing-list-actions.eplug.xml b/plugins/mailing-list-actions/org-gnome-mailing-list-actions.eplug.xml index 6c9d8070d3..6237fab889 100644 --- a/plugins/mailing-list-actions/org-gnome-mailing-list-actions.eplug.xml +++ b/plugins/mailing-list-actions/org-gnome-mailing-list-actions.eplug.xml @@ -7,7 +7,7 @@ location="@PLUGINDIR@/liborg-gnome-mailing-list-actions.so" _name="Mailing List Actions"> <author name="Meilof Veeningen" email="meilof@wanadoo.nl"/> - <_description>Provide actions for common mailing list commands (subscribe, unsubscribe, ...).</_description> + <_description>Provide actions for common mailing list commands (subscribe, unsubscribe...).</_description> <hook class="org.gnome.evolution.mail.bonobomenu:1.0"> <menu id="org.gnome.evolution.mail.browser" target="select"> <ui file="@PLUGINDIR@/org-gnome-mailing-list-actions.xml"/> diff --git a/plugins/save-attachments/org-gnome-save-attachments.xml b/plugins/save-attachments/org-gnome-save-attachments.xml index 576190eb70..75f4aef7fb 100644 --- a/plugins/save-attachments/org-gnome-save-attachments.xml +++ b/plugins/save-attachments/org-gnome-save-attachments.xml @@ -1,6 +1,6 @@ <Root> <commands> - <cmd name="EPSASaveAttachments" _label="Save Attachments ..." + <cmd name="EPSASaveAttachments" _label="Save Attachments..." _tip="Save all attachments" pixtype="stock" pixname="Save"/> </commands> diff --git a/shell/shell.error.xml b/shell/shell.error.xml index 479849bf1a..6f5364e026 100644 --- a/shell/shell.error.xml +++ b/shell/shell.error.xml @@ -2,7 +2,7 @@ <error-list domain="shell"> <error id="importing" type="info"> - <_title>Importing ...</_title> + <_title>Importing...</_title> <secondary>{0}</secondary> <button stock="gtk-cancel" response="GTK_RESPONSE_CANCEL"/> </error> |