Tomas Cohen Arazi
c2cf2e3cec
After some time having doubts on how to start a spanish translation of SQL files, I decided to submit a copy of 'en' directory, called 'es-ES' so people can start translating. I hope this is Ok. if not, hopefully this will lead us to some advice on how to do it :-D We need spanish-speaking people to help on translating! Regards To+
19 lines
696 B
SQL
19 lines
696 B
SQL
-- INSERT INTO branchcategories ( `categorycode`,`categoryname`,`codedescription`) VALUES
|
|
|
|
INSERT INTO branches ( `branchcode`,`branchname`,`branchaddress1`) VALUES
|
|
|
|
('MPL','Midway','372 Forest Street'),
|
|
('SPL','Springfield','Highland Boulevard'),
|
|
('RPL','Riverside','Johnson Terrace'),
|
|
('CPL','Centerville','Jefferson Summit'),
|
|
('FPL','Fairview','Hickory Squere'),
|
|
('FFL','Fairfield','River Station'),
|
|
('IPT','Institut Protestant de Théologie',''),
|
|
('PVL','Pleasant Valley','Meadow Grove'),
|
|
('TPL','Troy','Valley Way'),
|
|
('FRL','Franklin','Smith Heights'),
|
|
('LPL','Liberty','East Hills'),
|
|
('UPL','Union','Chestnut Hollow')
|
|
;
|
|
|
|
-- INSERT INTO branchrelations ( `branchcode`,`categorycode`) VALUES
|