Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Update en.php to show "City, State" in floater for United States (#1329)
Browse files Browse the repository at this point in the history
* Fix issue #1327
* Update en.php

This is just a simple change that I made so that it is clear to users in the United States to input City, State together (e.g. Fort Myers, FL) in the City field when adding new customers.  On the Add Customer floater, it now requests "City, State:" instead of just "City:" 

Then, when you set up your invoice templates, it pulls city & state together so that the mailing address is properly formatted.
  • Loading branch information
nwinesett authored Apr 12, 2020
1 parent 20646db commit 69694ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/floaters.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
$view->assign('id', $id);
}
} else {
$view->assign('timezone', $kga['timezone']);
$view->assign('customer', array('timezone' => $kga['timezone']));
}

$view->assign('timezones', timezoneList());
Expand Down
2 changes: 1 addition & 1 deletion language/en.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@

"street" => "Street",
"zipcode" => "Zipcode",
"city" => "City",
"city" => "City, State",
"country" => "Country",
"telephon" => "Phone",
"fax" => "Fax",
Expand Down

0 comments on commit 69694ed

Please sign in to comment.