* fix bug #96030 -- change "Customer/Vendor Name" to "Company Name"

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7329 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins
2002-10-17 13:43:28 +00:00
parent b4986ed2de
commit 848db09842
5 changed files with 8 additions and 4 deletions

View File

@@ -1,3 +1,7 @@
2002-10-17 Derek Atkins <derek@ihtfp.com>
* fix bug #96030 -- change "Customer/Vendor Name" to "Company Name"
2002-10-16 Joshua Sled <jsled@asynchronous.org>
* src/app-utils/gnc-exp-parser.c (gnc_exp_parser_parse): This

View File

@@ -788,7 +788,7 @@ gnc_customer_search (GncCustomer *start, GNCBook *book)
CUSTOMER_ADDR, ADDRESS_NAME, NULL);
params = gnc_search_param_prepend (params, _("Customer ID"), NULL, type,
CUSTOMER_ID, NULL);
params = gnc_search_param_prepend (params, _("Customer Name"), NULL, type,
params = gnc_search_param_prepend (params, _("Company Name"), NULL, type,
CUSTOMER_NAME, NULL);
}

View File

@@ -644,7 +644,7 @@ gnc_vendor_search (GncVendor *start, GNCBook *book)
VENDOR_ADDR, ADDRESS_NAME, NULL);
params = gnc_search_param_prepend (params, _("Vendor ID"), NULL, type,
VENDOR_ID, NULL);
params = gnc_search_param_prepend (params, _("Vendor Name"), NULL, type,
params = gnc_search_param_prepend (params, _("Company Name"), NULL, type,
VENDOR_NAME, NULL);
}

View File

@@ -157,7 +157,7 @@
<widget>
<class>GtkLabel</class>
<name>label19</name>
<label>Customer Name: </label>
<label>Company Name: </label>
<justify>GTK_JUSTIFY_RIGHT</justify>
<wrap>False</wrap>
<xalign>1</xalign>

View File

@@ -158,7 +158,7 @@
<widget>
<class>GtkLabel</class>
<name>label19</name>
<label>Vendor Name: </label>
<label>Company Name: </label>
<justify>GTK_JUSTIFY_RIGHT</justify>
<wrap>False</wrap>
<xalign>1</xalign>