[GnomeMeeting-devel-list] [PATCH] bugzilla' bug #136695



Hi,

yet another small patch...

Snark
diff -ur gnomemeeting-cvs-20040407.CVS/src/ils.cpp gnomemeeting-cvs-20040407.CVS.patched/src/ils.cpp
--- gnomemeeting-cvs-20040407.CVS/src/ils.cpp	2004-03-27 20:03:13.000000000 +0100
+++ gnomemeeting-cvs-20040407.CVS.patched/src/ils.cpp	2004-04-07 19:53:22.000000000 +0200
@@ -100,7 +100,7 @@
 
       /* No need to display that for unregistering */
       gnomemeeting_threads_enter ();
-      gnomemeeting_error_dialog (GTK_WINDOW (gm), _("Invalid parameters"), _("Please provide your first name and e-mail in the Personal Data section in order to be able to register to the user directory."));
+      gnomemeeting_error_dialog (GTK_WINDOW (gm), _("Invalid parameters"), _("Please provide your first name and e-mail in the Personal Data section in order to be able to register to the users directory."));
       gm_conf_set_bool (LDAP_KEY "enable_registering", FALSE);
       gnomemeeting_threads_leave ();
       
@@ -134,7 +134,7 @@
   if ((ldap_server == NULL) || (!strcmp (ldap_server, ""))) {
 
     gnomemeeting_threads_enter ();
-    gnomemeeting_error_dialog (GTK_WINDOW (gm), _("Invalid user directory"), _("Operation impossible since there is no user directory specified."));
+    gnomemeeting_error_dialog (GTK_WINDOW (gm), _("Invalid users directory"), _("Operation impossible since there is no users directory specified."));
     gnomemeeting_threads_leave ();
 
     return FALSE;
@@ -243,7 +243,7 @@
 	     != LDAP_OPT_SUCCESS) {
      
       gnomemeeting_threads_enter ();
-      gnomemeeting_error_dialog (GTK_WINDOW (gm), _("Cannot contact the user directory"), _("Failed to set a time limit on operations."));
+      gnomemeeting_error_dialog (GTK_WINDOW (gm), _("Cannot contact the users directory"), _("Failed to set a time limit on operations."));
       gnomemeeting_threads_leave ();
 
       no_error = FALSE;  
@@ -252,7 +252,7 @@
     else if ((rc = ldap_bind_s (ldap, who, cred, method))) {
       
       gnomemeeting_threads_enter ();
-      gnomemeeting_error_dialog (GTK_WINDOW (gm), _("Cannot contact the user directory"), _("Failed to bind to user directory: %s."), ldap_err2string (rc));
+      gnomemeeting_error_dialog (GTK_WINDOW (gm), _("Cannot contact the users directory"), _("Failed to bind to users directory: %s."), ldap_err2string (rc));
       gnomemeeting_threads_leave ();
 
       no_error = FALSE;
diff -ur gnomemeeting-cvs-20040407.CVS/src/pref_window.cpp gnomemeeting-cvs-20040407.CVS.patched/src/pref_window.cpp
--- gnomemeeting-cvs-20040407.CVS/src/pref_window.cpp	2004-04-01 21:13:41.000000000 +0200
+++ gnomemeeting-cvs-20040407.CVS.patched/src/pref_window.cpp	2004-04-07 19:53:55.000000000 +0200
@@ -927,7 +927,7 @@
 
   
   /* Add the update button */
-  gnomemeeting_pref_window_add_update_button (container, GTK_STOCK_APPLY, _("_Apply"), GTK_SIGNAL_FUNC (personal_data_update_button_clicked), _("Click here to update the user directory you are registered to with the new First Name, Last Name, E-Mail, Comment and Location or to update your alias on the Gatekeeper"), 0);
+  gnomemeeting_pref_window_add_update_button (container, GTK_STOCK_APPLY, _("_Apply"), GTK_SIGNAL_FUNC (personal_data_update_button_clicked), _("Click here to update the users directory you are registered to with the new First Name, Last Name, E-Mail, Comment and Location or to update your alias on the Gatekeeper"), 0);
 }                                                                              
                                                                                
 
@@ -986,15 +986,15 @@
   /* Packing widgets for the XDAP directory */
   
   subsection = gnome_prefs_subsection_new (window, container,
-					   _("User Directory"), 3, 2);
+					   _("Users Directory"), 3, 2);
 
 
   /* Add all the fields */                                                     
-  gnome_prefs_entry_new (subsection, _("User directory:"), LDAP_KEY "server", _("The user directory server to register with"), 0, true);
+  gnome_prefs_entry_new (subsection, _("Users directory:"), LDAP_KEY "server", _("The users directory server to register with"), 0, true);
 
-  gnome_prefs_toggle_new (subsection, _("Enable _registering"), LDAP_KEY "enable_registering", _("If enabled, register with the selected user directory"), 1);
+  gnome_prefs_toggle_new (subsection, _("Enable _registering"), LDAP_KEY "enable_registering", _("If enabled, register with the selected users directory"), 1);
 
-  gnome_prefs_toggle_new (subsection, _("_Publish my details in the users directory when registering"), LDAP_KEY "show_details", _("If enabled, your details are shown to people browsing the user directory. If disabled, you are not visible to users browsing the user directory, but they can still use the callto URL to call you."), 2);
+  gnome_prefs_toggle_new (subsection, _("_Publish my details in the users directory when registering"), LDAP_KEY "show_details", _("If enabled, your details are shown to people browsing the users directory. If disabled, you are not visible to users browsing the users directory, but they can still use the callto URL to call you."), 2);
 }
 
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]