mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
spelling fixes
This commit is contained in:
parent
7d20321b3b
commit
beb2791dde
|
|
@ -1,7 +1,7 @@
|
|||
Example fo recurring event, 1 week, no end, exported by Google
|
||||
|
||||
# The recurring event were recorded every monday the 20150518. This is the Recurrence-id, but then
|
||||
# first occurence was moved on tuesday. So this record were added.
|
||||
# first occurrence was moved on tuesday. So this record were added.
|
||||
BEGIN:VEVENT
|
||||
DTSTART;TZID=Europe/Paris:20150519T100000
|
||||
DTEND;TZID=Europe/Paris:20150519T110000
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
README (English)
|
||||
--------------------------------
|
||||
|
||||
This directory contains example of well formated mail messages.
|
||||
This directory contains example of well formatted mail messages.
|
||||
This is to help to build the CMailFile.class.php code.
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@ if (! $confirmed)
|
|||
$input = trim(fgets(STDIN));
|
||||
}
|
||||
|
||||
// Open input and ouput files
|
||||
// Open input and output files
|
||||
$fhandle = fopen($filepath, 'r');
|
||||
if (! $fhandle)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@ if (! $confirmed)
|
|||
$input = trim(fgets(STDIN));
|
||||
}
|
||||
|
||||
// Open input and ouput files
|
||||
// Open input and output files
|
||||
$fhandle = fopen($filepath, 'r');
|
||||
if (! $fhandle)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@ if (! $confirmed)
|
|||
$input = trim(fgets(STDIN));
|
||||
}
|
||||
|
||||
// Open input and ouput files
|
||||
// Open input and output files
|
||||
$fhandle = fopen($filepath, 'r');
|
||||
if (! $fhandle)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -166,7 +166,7 @@
|
|||
<!-- Disallow usage of tab -->
|
||||
<!-- <rule ref="Generic.WhiteSpace.DisallowTabIndent" /> -->
|
||||
|
||||
<!-- Check indent are done with spaces and wiht correct number -->
|
||||
<!-- Check indent are done with spaces and with correct number -->
|
||||
<!-- Disabled as this does not support tab -->
|
||||
<!-- <rule ref="Generic.WhiteSpace.ScopeIndent" /> -->
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ This directory contains tools to generate translation files for a new
|
|||
languages or to update translation files for existing languages.
|
||||
See Dolibarr Wiki page:
|
||||
http://wiki.dolibarr.org/index.php/Translator_documentation
|
||||
For more informations on how to use them.
|
||||
For more information on how to use them.
|
||||
|
||||
To install transifex client:
|
||||
sudo pip install --upgrade transifex-client
|
||||
|
|
|
|||
|
|
@ -188,7 +188,7 @@ if ($action == 'update') {
|
|||
|
||||
$form = new FormAccounting($db);
|
||||
|
||||
// Defaut AccountingAccount RowId Product / Service
|
||||
// Default AccountingAccount RowId Product / Service
|
||||
// at this time ACCOUNTING_SERVICE_SOLD_ACCOUNT & ACCOUNTING_PRODUCT_SOLD_ACCOUNT are account number not accountingacount rowid
|
||||
// so we need to get those default value rowid first
|
||||
$accounting = new AccountingAccount($db);
|
||||
|
|
@ -465,15 +465,15 @@ if ($result)
|
|||
{
|
||||
console.log("We check if at least one line is checked")
|
||||
|
||||
atleastoneselected=0;
|
||||
at leastoneselected=0;
|
||||
jQuery(".checkforselect").each(function( index ) {
|
||||
/* console.log( index + ": " + $( this ).text() ); */
|
||||
if ($(this).is(\':checked\')) atleastoneselected++;
|
||||
if ($(this).is(\':checked\')) at leastoneselected++;
|
||||
});
|
||||
|
||||
if (atleastoneselected) jQuery("#changeaccount").removeAttr(\'disabled\');
|
||||
if (at leastoneselected) jQuery("#changeaccount").removeAttr(\'disabled\');
|
||||
else jQuery("#changeaccount").attr(\'disabled\',\'disabled\');
|
||||
if (atleastoneselected) jQuery("#changeaccount").attr(\'class\',\'butAction\');
|
||||
if (at leastoneselected) jQuery("#changeaccount").attr(\'class\',\'butAction\');
|
||||
else jQuery("#changeaccount").attr(\'class\',\'butActionRefused\');
|
||||
}
|
||||
jQuery(".checkforselect, #checkallactions").click(function() {
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ Develop an API
|
|||
|
||||
The API uses Lucarast Restler framework. Please check documentation https://www.luracast.com/products/restler and examples http://help.luracast.com/restler/examples/
|
||||
|
||||
Github contains also usefull informations : https://github.com/Luracast/Restler
|
||||
Github contains also useful information : https://github.com/Luracast/Restler
|
||||
|
||||
To implement it into Dolibarr, you need to create a specific class for object we want to use. A skeleton file is available into /modulebuilder/class directory : *api_mymodule_class.class.php*
|
||||
The API class file must be put into object class directory, with specific file name. By example, API class file for '*myobject*' must be put as : /htdocs/*myobject*/class/api_*myobject*.class.php. Class must be named **MyobjectApi**.
|
||||
|
|
@ -67,6 +67,6 @@ It is possible to specify url for API methods by simply use the PHPDoc tag **@ur
|
|||
**Other Annotations**
|
||||
Other annotations are used, you are encouraged to read them : https://github.com/Luracast/Restler/blob/master/ANNOTATIONS.md
|
||||
|
||||
PHPDoc tags can also be used to specify variables informations for API. Again, rtfm : https://github.com/Luracast/Restler/blob/master/PARAM.md
|
||||
PHPDoc tags can also be used to specify variables information for API. Again, rtfm : https://github.com/Luracast/Restler/blob/master/PARAM.md
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class ActionCommReminder extends CommonObject
|
|||
* 'visible' says if field is visible in list (Examples: 0=Not visible, 1=Visible on list and create/update/view forms, 2=Visible on list only. Using a negative value means field is not shown by default on list but can be selected for viewing)
|
||||
* 'notnull' is set to 1 if not null in database. Set to -1 if we must set data to null if empty ('' or 0).
|
||||
* 'index' if we want an index in database.
|
||||
* 'foreignkey'=>'tablename.field' if the field is a foreign key (it is recommanded to name the field fk_...).
|
||||
* 'foreignkey'=>'tablename.field' if the field is a foreign key (it is recommended to name the field fk_...).
|
||||
* 'position' is the sort order of field.
|
||||
* 'searchall' is 1 if we want to search in this field when making a search from the quick search button.
|
||||
* 'isameasure' must be set to 1 if you want to have a total on list for this field. Field type must be summable like integer or double(24,8).
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ class ICal
|
|||
|
||||
$this->file_text = preg_split("[\n]", $this->file_text);
|
||||
|
||||
// is this text vcalendar standart text ? on line 1 is BEGIN:VCALENDAR
|
||||
// is this text vcalendar standard text ? on line 1 is BEGIN:VCALENDAR
|
||||
if (!stristr($this->file_text[0], 'BEGIN:VCALENDAR')) return 'error not VCALENDAR';
|
||||
|
||||
$insidealarm=0;
|
||||
|
|
|
|||
|
|
@ -528,7 +528,7 @@ class Mailing extends CommonObject
|
|||
|
||||
|
||||
/**
|
||||
* Return a link to the object card (with optionaly the picto)
|
||||
* Return a link to the object card (with optionally the picto)
|
||||
*
|
||||
* @param int $withpicto Include picto in link (0=No picto, 1=Include picto into link, 2=Only picto)
|
||||
* @param string $option On what the link point to ('nolink', ...)
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ class Interventions extends DolibarrApi
|
|||
/**
|
||||
* Get properties of a Expense Report object
|
||||
*
|
||||
* Return an array with Expense Report informations
|
||||
* Return an array with Expense Report information
|
||||
*
|
||||
* @param int $id ID of Expense Report
|
||||
* @return array|mixed Data without useless information
|
||||
|
|
|
|||
|
|
@ -419,7 +419,7 @@ class Fichinter extends CommonObject
|
|||
|
||||
if ($this->statut == 0) $this->brouillon = 1;
|
||||
|
||||
// Retreive extrafields
|
||||
// Retrieve extrafields
|
||||
$this->fetch_optionals();
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@ if (empty($reshook))
|
|||
$tva_tx = preg_replace('/[^0-9\.].*$/', '', $tva_tx_txt); // keep remove all after the numbers and dot
|
||||
$npr = preg_match('/\*/', $tva_tx_txt) ? 1 : 0;
|
||||
$localtax1 = 0; $localtax2 = 0; $localtax1_type = '0'; $localtax2_type = '0';
|
||||
// If value contains the unique code of vat line (new recommanded method), we use it to find npr and local taxes
|
||||
// If value contains the unique code of vat line (new recommended method), we use it to find npr and local taxes
|
||||
if (preg_match('/\((.*)\)/', $tva_tx_txt, $reg))
|
||||
{
|
||||
// We look into database using code (we can't use get_localtax() because it depends on buyer that is not known). Same in update price.
|
||||
|
|
@ -244,7 +244,7 @@ if (! empty($conf->global->PRODUIT_CUSTOMER_PRICES)) {
|
|||
if (! $sortfield)
|
||||
$sortfield = "soc.nom";
|
||||
|
||||
// Build filter to diplay only concerned lines
|
||||
// Build filter to display only concerned lines
|
||||
$filter = array (
|
||||
't.fk_soc' => $object->id
|
||||
);
|
||||
|
|
|
|||
|
|
@ -101,7 +101,7 @@ div.description{
|
|||
bottom:0px; /* position will be on bottom */
|
||||
left:0px;
|
||||
width:100%;
|
||||
/* styling bellow */
|
||||
/* styling below */
|
||||
background-color:black;
|
||||
font-family: 'tahoma';
|
||||
color:white;
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ $resql = $db->query($sql);
|
|||
$row = $db->fetch_array($resql);
|
||||
$placeid = $row[0];
|
||||
|
||||
if (!$placeid) { $placeid = 0; // not necesary
|
||||
if (!$placeid) { $placeid = 0; // not necessary
|
||||
} else
|
||||
{
|
||||
$invoice = new Facture($db);
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ if ($place>0){
|
|||
$object=new Facture($db);
|
||||
$object->fetch($facid);
|
||||
|
||||
// IMPORTANT: This file is sended to 'Takepos Printing' application. Keep basic file. No external files as css, js... If you need images use absolut path.
|
||||
// IMPORTANT: This file is sended to 'Takepos Printing' application. Keep basic file. No external files as css, js... If you need images use absolute path.
|
||||
?>
|
||||
<html>
|
||||
<body>
|
||||
|
|
|
|||
|
|
@ -661,7 +661,7 @@ class Website extends CommonObject
|
|||
}
|
||||
|
||||
/**
|
||||
* Return a link to the user card (with optionaly the picto)
|
||||
* Return a link to the user card (with optionally the picto)
|
||||
* Use this->id,this->lastname, this->firstname
|
||||
*
|
||||
* @param int $withpicto Include picto in link (0=No picto, 1=Include picto into link, 2=Only picto)
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ PHPUNIT
|
|||
To use make phpunit analysis, you must:
|
||||
|
||||
* Install PHPUnit
|
||||
If using Eclipse, you must also add an entry as external tool for phpunit programm with:
|
||||
If using Eclipse, you must also add an entry as external tool for phpunit program with:
|
||||
-Name: PHPUnit
|
||||
-Location: Linux: /usr/bin/php
|
||||
Windows: C:\Program Files (x86)\wamp\bin\php\php5.2.8\php.exe
|
||||
|
|
|
|||
|
|
@ -149,7 +149,7 @@ class RestAPIDocumentTest extends PHPUnit_Framework_TestCase
|
|||
echo __METHOD__.' Request POST url='.$url."\n";
|
||||
|
||||
|
||||
// Send to non existant directory
|
||||
// Send to non existent directory
|
||||
|
||||
dol_delete_dir_recursive(DOL_DATA_ROOT.'/medias/tmpphpunit');
|
||||
|
||||
|
|
@ -171,7 +171,7 @@ class RestAPIDocumentTest extends PHPUnit_Framework_TestCase
|
|||
$this->assertEquals('401', $object['error']['code']);
|
||||
|
||||
|
||||
// Send to existant directory
|
||||
// Send to existent directory
|
||||
|
||||
dol_mkdir(DOL_DATA_ROOT.'/medias/tmpphpunit/tmpphpunit2');
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user