Browse Source

translation enhancement

Philippe Grand 13 years ago
parent
commit
dcba31a4db
1 changed files with 5 additions and 9 deletions
  1. 5 9
      dev/skeletons/README

+ 5 - 9
dev/skeletons/README

@@ -9,7 +9,7 @@ skeleton_*.php to build its generated code.
 
 
 modMyModule.class.php:
-Is a sample of module descriptor you can use if you want to build a new module/plugin for
+Is a sample of module descriptor that you can use if you want to build a new module/plugin for
 Dolibarr.
 
 
@@ -20,11 +20,7 @@ skeleton_page.php:
 Is a sample you can use as an example if you need to build an HTML page to include in Dolibarr GUI.
 
 skeleton_class.class.php:
-Is a sample you can use as an example if you need to build a class file to access a new table
-required by a Dolibarr development.
-However it is better to run the script build_class_from_table.php that accept a table name as a 
-parameter and will used table description in database and the skeleton_class.class.php file to
-generate full code for your class file.
-After running this script, the class to access your table (insert a record, update, delete and select)
-is directly finished and can be used by your business code. No more coding for accesser on table
-is needed with this script as the file is completely generated once.
+Is a sample you can use as an example if you need to build a class file to access a new table required by a Dolibarr development.
+However it is better to run the build_class_from_table.php script that accepts a table name as a parameter and will uses the description table within database and the skeleton_class.class.php file to generate full code for your class file.
+After running this script, the class to access your table (insert a record, update, delete and select) is directly finished and can be used by your module's code. 
+No more coding is needed to get access to table with this script because the file is completely generated once.