diff options
author | Jeffrey Stedfast <fejj@novell.com> | 2004-05-25 22:57:04 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-05-25 22:57:04 +0800 |
commit | 479e75883911fc03b2b7d09d69f48faf0f3812eb (patch) | |
tree | e0fd0f15f7abaf56031e6be4262a2cc3aea74ba7 /addressbook/addressbook-errors.xml.h | |
parent | f87fe83e1df3a2370b9b2dcef90eb8869f4b0eff (diff) | |
download | gsoc2013-evolution-479e75883911fc03b2b7d09d69f48faf0f3812eb.tar.gz gsoc2013-evolution-479e75883911fc03b2b7d09d69f48faf0f3812eb.tar.zst gsoc2013-evolution-479e75883911fc03b2b7d09d69f48faf0f3812eb.zip |
Generate the addressbook-errors.xml.h file and install the xml file and
2004-05-25 Jeffrey Stedfast <fejj@novell.com>
* Makefile.am: Generate the addressbook-errors.xml.h file and
install the xml file and all that jazz.
* addressbook-errors.xml: New error xml file.
* gui/widgets/e-addressbook-view.c (backend_died): Use
e_error_run().
* gui/widgets/eab-gui-util.c (eab_error_dialog): Use
e_error_run().
(eab_load_error_dialog): Same.
(eab_search_result_dialog): Same.
(eab_prompt_save_dialog): Same.
(save_it): Same.
* gui/contact-editor/e-contact-editor.c (categories_clicked): Use
e_error_run().
(e_contact_editor_is_valid): Same.
(save_contact): Same.
* gui/component/addressbook-view.c (delete_addressbook_cb): Use
e_error_run().
* gui/component/addressbook-config.c (addressbook_ldap_init): Use
e_error_run().
(addressbook_ldap_auth): Same.
(addressbook_root_dse_query): Same.
(do_ldap_root_dse_query): Same.
(do_schema_query): Same.
svn path=/trunk/; revision=26077
Diffstat (limited to 'addressbook/addressbook-errors.xml.h')
-rw-r--r-- | addressbook/addressbook-errors.xml.h | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/addressbook/addressbook-errors.xml.h b/addressbook/addressbook-errors.xml.h new file mode 100644 index 0000000000..54650cd65a --- /dev/null +++ b/addressbook/addressbook-errors.xml.h @@ -0,0 +1,55 @@ +/* addressbook:ldap-init primary */ +char *s = N_("This addressbook could not be opened."); +/* addressbook:ldap-init secondary */ +char *s = N_("This addressbook server might unreachable or the server name may be misspelled or your network connection could be down."); +/* addressbook:ldap-auth primary */ +char *s = N_("Failed to authenticate with LDAP server."); +/* addressbook:ldap-auth secondary */ +char *s = N_("Check to make sure your password is spelled correctly and that you are using a supported login method. Remember that many passwords are case sensitive; your caps lock might be on."); +/* addressbook:ldap-search-base primary */ +char *s = N_("This addressbook server does not have any suggested search bases."); +/* addressbook:ldap-search-base secondary */ +char *s = N_("This LDAP server may use an older version of LDAP, which does not support this functionality or it may be misconfigured. Ask your administrator for supported search bases."); +/* addressbook:ldap-v3-schema primary */ +char *s = N_("This server does not support LDAPv3 schema information."); +/* addressbook:ldap-get-schema primary */ +char *s = N_("Could not get schema information for LDAP server."); +/* addressbook:ldap-invalid-schema primary */ +char *s = N_("LDAP server did not respond with valid schema information."); +/* addressbook:remove-addressbook primary */ +char *s = N_("Could not remove addressbook."); +/* addressbook:remove-addressbook secondary */ +char *s = N_("{0}"); +/* addressbook:edit-categories primary */ +char *s = N_("Category editor not available."); +/* addressbook:generic-error primary */ +char *s = N_("{0}"); +/* addressbook:generic-error secondary */ +char *s = N_("{1}"); +/* addressbook:load-error title */ +char *s = N_("Unable to open addressbook"); +/* addressbook:load-error primary */ +char *s = N_("Error loading addressbook."); +/* addressbook:load-error secondary */ +char *s = N_("{0}"); +/* addressbook:search-error primary */ +char *s = N_("Unable to perform search."); +/* addressbook:search-error secondary */ +char *s = N_("{0}"); +/* addressbook:prompt-save primary */ +char *s = N_("Would you like to save your changes?"); +/* addressbook:prompt-save secondary */ +char *s = N_("You have made modifications to this contact. Do you want to save these changes?"); +char *s = N_("_Discard"); +/* addressbook:prompt-move primary */ +char *s = N_("Cannot move contact."); +/* addressbook:prompt-move secondary */ +char *s = N_("You are attempting to move a contact from one addressbook to another but it cannot be removed from the source. Do you want to save a copy instead?"); +/* addressbook:save-error primary */ +char *s = N_("Unable to save contact(s)."); +/* addressbook:save-error secondary */ +char *s = N_("Error saving contacts to {0}: {1}"); +/* addressbook:backend-died primary */ +char *s = N_("The Evolution addressbook has quit unexpectedly."); +/* addressbook:backend-died secondary */ +char *s = N_("Your contacts for {0} will not be available until Evolution is restarted."); |