diff --git a/htdocs/adherents/fiche.php b/htdocs/adherents/fiche.php index e7b9af6fcfdc71f77802633f997f1ef446549833..71e09fda1c0b43cd18b0a497e1460888113b03ba 100644 --- a/htdocs/adherents/fiche.php +++ b/htdocs/adherents/fiche.php @@ -966,7 +966,7 @@ if ($rowid && $action != 'edit') if ($user->rights->adherent->creer) { - print "<a class=\"butAction\" href=\"fiche.php?rowid=$rowid&action=edit\">".$langs->trans("Edit")."</a>"; + print "<a class=\"butAction\" href=\"fiche.php?rowid=$rowid&action=edit\">".$langs->trans("Modify")."</a>"; } if ($user->rights->adherent->creer) diff --git a/htdocs/adherents/fiche_subscription.php b/htdocs/adherents/fiche_subscription.php index 18a377f55d83ab1acb6a133c2b275e925adb42c1..13b5f0f1adce0498154904ec79430533b38791db 100644 --- a/htdocs/adherents/fiche_subscription.php +++ b/htdocs/adherents/fiche_subscription.php @@ -327,11 +327,11 @@ if ($rowid && $action != 'edit') { if (! $bankline->rappro) { - print "<a class=\"butAction\" href=\"".$_SERVER["PHP_SELF"]."?rowid=".$subscription->id."&action=edit\">".$langs->trans("Edit")."</a>"; + print "<a class=\"butAction\" href=\"".$_SERVER["PHP_SELF"]."?rowid=".$subscription->id."&action=edit\">".$langs->trans("Modify")."</a>"; } else { - print "<a class=\"butActionRefused\" title=\"".$langs->trans("BankLineConciliated")."\" href=\"#\">".$langs->trans("Edit")."</a>"; + print "<a class=\"butActionRefused\" title=\"".$langs->trans("BankLineConciliated")."\" href=\"#\">".$langs->trans("Modify")."</a>"; } } diff --git a/htdocs/adherents/note.php b/htdocs/adherents/note.php index e269646e0eb52680c6babcf4f27988e39e7afb14..aed6658e6df4b443cd4051c5f4ce09a56bca3681 100644 --- a/htdocs/adherents/note.php +++ b/htdocs/adherents/note.php @@ -153,7 +153,7 @@ if ($id) if ($user->rights->adherent->creer && $action != 'edit') { - print "<a class=\"butAction\" href=\"note.php?id=$adh->id&action=edit\">".$langs->trans('Edit')."</a>"; + print "<a class=\"butAction\" href=\"note.php?id=$adh->id&action=edit\">".$langs->trans('Modify')."</a>"; } print "</div>"; diff --git a/htdocs/adherents/type.php b/htdocs/adherents/type.php index 0599d095fc5bc66cf159137eea8a1ee4e728a9d3..261332db67f078521efee73a6632030bc2f60bd7 100644 --- a/htdocs/adherents/type.php +++ b/htdocs/adherents/type.php @@ -293,7 +293,7 @@ if ($rowid > 0) // Edit if ($user->rights->adherent->configurer) { - print "<a class=\"butAction\" href=\"type.php?action=edit&rowid=".$adht->id."\">".$langs->trans("Edit")."</a>"; + print "<a class=\"butAction\" href=\"type.php?action=edit&rowid=".$adht->id."\">".$langs->trans("Modify")."</a>"; } // Add diff --git a/htdocs/admin/company.php b/htdocs/admin/company.php index 0cac36859f2c7df052e9c060e8daf34382974283..e09ae11336420afd18325a599b167c7eccb9a9ab 100644 --- a/htdocs/admin/company.php +++ b/htdocs/admin/company.php @@ -724,7 +724,7 @@ else // Boutons d'action print '<div class="tabsAction">'; - print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit">'.$langs->trans("Modify").'</a>'; print '</div>'; print '<br>'; diff --git a/htdocs/admin/delais.php b/htdocs/admin/delais.php index b8be83dd91d7dd6a49e24aed3b012225f3d02a32..6b496992f9f42809670784a782681a4590cfd573 100644 --- a/htdocs/admin/delais.php +++ b/htdocs/admin/delais.php @@ -292,7 +292,7 @@ else // Boutons d'action print '<div class="tabsAction">'; - print '<a class="butAction" href="delais.php?action=edit">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="delais.php?action=edit">'.$langs->trans("Modify").'</a>'; print '</div>'; } diff --git a/htdocs/admin/ihm.php b/htdocs/admin/ihm.php index 95b5fb2d6540b6fa3308e4df25dd5cd22acc2616..cb7a26b124fa20d3122f7168bd8af5295e5ea624 100644 --- a/htdocs/admin/ihm.php +++ b/htdocs/admin/ihm.php @@ -338,7 +338,7 @@ else print '</table>'; print '<div class="tabsAction">'; - print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit">'.$langs->trans("Modify").'</a>'; print '</div>'; print '<br>'; } diff --git a/htdocs/admin/limits.php b/htdocs/admin/limits.php index f04dd6df4403bc16c5e602cae31896757b2f47f7..904a4559d0710d5bc85c723b0d82e2f68dac9fc8 100644 --- a/htdocs/admin/limits.php +++ b/htdocs/admin/limits.php @@ -126,7 +126,7 @@ else print '</table><br>'; print '<div class="tabsAction">'; - print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit">'.$langs->trans("Modify").'</a>'; print '</div>'; } diff --git a/htdocs/admin/mails.php b/htdocs/admin/mails.php index 2b13900f9ede0202a867d9fdc13e9468d35045e9..4443fdeb761a6bdb64a810b3371e3b2d3bff49d4 100644 --- a/htdocs/admin/mails.php +++ b/htdocs/admin/mails.php @@ -189,7 +189,7 @@ else // Boutons actions print '<div class="tabsAction">'; print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=test">'.$langs->trans("DoTest").'</a>'; - print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit">'.$langs->trans("Modify").'</a>'; print '</div>'; diff --git a/htdocs/admin/menus.php b/htdocs/admin/menus.php index 927d7af1f90e92a2dfc61d28e59d7c0c36daaa82..c3d47fa8d08d71d431710821e9f393582ea8c061 100644 --- a/htdocs/admin/menus.php +++ b/htdocs/admin/menus.php @@ -198,7 +198,7 @@ print '</div>'; if (! isset($_GET["action"]) || $_GET["action"] != 'edit') { print '<div class="tabsAction">'; - print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit">'.$langs->trans("Modify").'</a>'; print '</div>'; } diff --git a/htdocs/boutique/notification/fiche.php b/htdocs/boutique/notification/fiche.php index 2561e4ac9aacf7c184b4626870697ca8e2d9f006..c06ce0299332569a50217de46f8a37feda9cc4a1 100644 --- a/htdocs/boutique/notification/fiche.php +++ b/htdocs/boutique/notification/fiche.php @@ -138,7 +138,7 @@ else print '<div class="tabsAction">'; if ($action != 'create') { - print '<a class="butAction" href="fiche.php?action=edit&id='.$id.'">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="fiche.php?action=edit&id='.$id.'">'.$langs->trans("Modify").'</a>'; } print '</div>'; diff --git a/htdocs/categories/viewcat.php b/htdocs/categories/viewcat.php index c537acacd6b51e5e1fb3b35b13ccfce7494a292c..8b0bf0e5f0b234845eecda4d06e7c3c18d064510 100644 --- a/htdocs/categories/viewcat.php +++ b/htdocs/categories/viewcat.php @@ -136,7 +136,7 @@ print "<div class='tabsAction'>\n"; if ($user->rights->categorie->creer) { - print "<a class='butAction' href='edit.php?id=".$c->id."'>".$langs->trans("Edit")."</a>"; + print "<a class='butAction' href='edit.php?id=".$c->id."'>".$langs->trans("Modify")."</a>"; } if ($user->rights->categorie->supprimer) diff --git a/htdocs/comm/action/fiche.php b/htdocs/comm/action/fiche.php index f96e0618e2aab62ea53028bc9df3695262b795bc..145ae1c6811302455fc328b6669a32b2dc0ee12e 100644 --- a/htdocs/comm/action/fiche.php +++ b/htdocs/comm/action/fiche.php @@ -769,7 +769,7 @@ if ($_GET["id"]) if ($_GET["action"] != 'edit' && $_GET["action"] != 'delete') { - print '<a class="butAction" href="fiche.php?action=edit&id='.$act->id.'">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="fiche.php?action=edit&id='.$act->id.'">'.$langs->trans("Modify").'</a>'; print '<a class="butActionDelete" href="fiche.php?action=delete&id='.$act->id.'">'.$langs->trans("Delete").'</a>'; } diff --git a/htdocs/comm/adresse_livraison.php b/htdocs/comm/adresse_livraison.php index 0916fd0ed3358816aa06bdd98a0286e818ad4a61..374fbfe06329b9409d605caf022dd534cc9c45a1 100644 --- a/htdocs/comm/adresse_livraison.php +++ b/htdocs/comm/adresse_livraison.php @@ -431,7 +431,7 @@ else if ($user->rights->societe->creer) { - print '<a class="butAction" href="'.DOL_URL_ROOT.'/comm/adresse_livraison.php?socid='.$livraison->socid.'&idl='.$livraison->lignes[$i]->idl.'&action=edit">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="'.DOL_URL_ROOT.'/comm/adresse_livraison.php?socid='.$livraison->socid.'&idl='.$livraison->lignes[$i]->idl.'&action=edit">'.$langs->trans("Modify").'</a>'; } if ($user->rights->societe->supprimer) diff --git a/htdocs/comm/propal.php b/htdocs/comm/propal.php index 789d3bbca7acad6e1dc54ff10d34d10ae10cedd4..02108ecd4d8d7fcb03a313519df0d676bd02fda8 100644 --- a/htdocs/comm/propal.php +++ b/htdocs/comm/propal.php @@ -796,7 +796,7 @@ if ($_GET['propalid'] > 0) print '<table class="nobordernopadding" width="100%"><tr><td nowrap>'; print $langs->trans('RefCustomer').'</td><td align="left">'; print '</td>'; - if ($_GET['action'] != 'refclient' && $propal->brouillon) print '<td align="right"><a href="'.$_SERVER['PHP_SELF'].'?action=refclient&propalid='.$propal->id.'">'.img_edit($langs->trans('Edit')).'</a></td>'; + if ($_GET['action'] != 'refclient' && $propal->brouillon) print '<td align="right"><a href="'.$_SERVER['PHP_SELF'].'?action=refclient&propalid='.$propal->id.'">'.img_edit($langs->trans('Modify')).'</a></td>'; print '</tr></table>'; print '</td><td colspan="5">'; if ($user->rights->propale->creer && $_GET['action'] == 'refclient') @@ -1593,7 +1593,7 @@ if ($_GET['propalid'] > 0) // Edit if ($propal->statut == 1 && $user->rights->propale->creer) { - print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?propalid='.$propal->id.'&action=modif">'.$langs->trans('Edit').'</a>'; + print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?propalid='.$propal->id.'&action=modif">'.$langs->trans('Modify').'</a>'; } // Send diff --git a/htdocs/comm/propal/note.php b/htdocs/comm/propal/note.php index 12367e7f67ad792f3ae824f08922d51b849d20ba..6228e746f60dc499195120e105ac445e1e2398b6 100644 --- a/htdocs/comm/propal/note.php +++ b/htdocs/comm/propal/note.php @@ -194,7 +194,7 @@ if ($_GET['propalid']) print '<div class="tabsAction">'; if ($user->rights->propale->creer && $_GET['action'] <> 'edit') { - print '<a class="butAction" href="note.php?propalid='.$propal->id.'&action=edit">'.$langs->trans('Edit').'</a>'; + print '<a class="butAction" href="note.php?propalid='.$propal->id.'&action=edit">'.$langs->trans('Modify').'</a>'; } print '</div>'; } diff --git a/htdocs/commande/fiche.php b/htdocs/commande/fiche.php index 9cc080e66059293a4fa453da0b1c87c5bd084061..aa098e81b0139751ceef4c9ffc6b05edb63eaedc 100644 --- a/htdocs/commande/fiche.php +++ b/htdocs/commande/fiche.php @@ -1083,7 +1083,7 @@ else print '<table class="nobordernopadding" width="100%"><tr><td nowrap="nowrap">'; print $langs->trans('RefCustomer').'</td><td align="left">'; print '</td>'; - if ($_GET['action'] != 'RefCustomerOrder' && $commande->brouillon) print '<td align="right"><a href="'.$_SERVER['PHP_SELF'].'?action=RefCustomerOrder&id='.$commande->id.'">'.img_edit($langs->trans('Edit')).'</a></td>'; + if ($_GET['action'] != 'RefCustomerOrder' && $commande->brouillon) print '<td align="right"><a href="'.$_SERVER['PHP_SELF'].'?action=RefCustomerOrder&id='.$commande->id.'">'.img_edit($langs->trans('Modify')).'</a></td>'; print '</tr></table>'; print '</td><td colspan="3">'; if ($user->rights->commande->creer && $_GET['action'] == 'RefCustomerOrder') @@ -1684,7 +1684,7 @@ else { if ($user->rights->commande->creer) { - print '<a class="butAction" href="fiche.php?id='.$commande->id.'&action=modif">'.$langs->trans('Edit').'</a>'; + print '<a class="butAction" href="fiche.php?id='.$commande->id.'&action=modif">'.$langs->trans('Modify').'</a>'; } } diff --git a/htdocs/commande/note.php b/htdocs/commande/note.php index 46a2114a85c77369fd628024f845aa884b460fca..f8dde0b4677ddbc92b5d2320dc810548c5f3bb23 100644 --- a/htdocs/commande/note.php +++ b/htdocs/commande/note.php @@ -177,7 +177,7 @@ if ($_GET["id"]) if ($user->rights->commande->creer && $_GET["action"] <> 'edit') { - print "<a class=\"butAction\" href=\"note.php?id=$commande->id&action=edit\">".$langs->trans('Edit')."</a>"; + print "<a class=\"butAction\" href=\"note.php?id=$commande->id&action=edit\">".$langs->trans('Modify')."</a>"; } print "</div>"; diff --git a/htdocs/compta/bank/bankid_fr.php b/htdocs/compta/bank/bankid_fr.php index a69f7c8078277ec605e6156691748f5040a91450..624ebdbb246983a32506efb5fc84b7f3e64f17b9 100644 --- a/htdocs/compta/bank/bankid_fr.php +++ b/htdocs/compta/bank/bankid_fr.php @@ -193,7 +193,7 @@ $form = new Form($db); if ($user->rights->banque->configurer) { - print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit&id='.$account->id.'">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit&id='.$account->id.'">'.$langs->trans("Modify").'</a>'; } print '</div>'; diff --git a/htdocs/compta/bank/fiche.php b/htdocs/compta/bank/fiche.php index f6bd7c121caa92a19a949162418ddad42d7aa2d1..d8adf3d64a18dbceb72490a3338b90ee467347d9 100644 --- a/htdocs/compta/bank/fiche.php +++ b/htdocs/compta/bank/fiche.php @@ -361,7 +361,7 @@ else if ($user->rights->banque->configurer) { - print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit&id='.$account->id.'">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit&id='.$account->id.'">'.$langs->trans("Modify").'</a>'; } $canbedeleted=$account->can_be_deleted(); // Renvoi vrai si compte sans mouvements diff --git a/htdocs/compta/commande/fiche.php b/htdocs/compta/commande/fiche.php index a2fc5e2bef2c9d9f8780cdbe7280318c7fc9b916..8f92e3076eb64075e3a0a21f15e751c636e2c5e1 100644 --- a/htdocs/compta/commande/fiche.php +++ b/htdocs/compta/commande/fiche.php @@ -106,7 +106,7 @@ if ($_GET["id"] > 0) print '<table class="nobordernopadding" width="100%"><tr><td nowrap>'; print $langs->trans('RefCustomer').'</td><td align="left">'; print '</td>'; - if ($_GET['action'] != 'RefCustomerOrder' && $commande->brouillon) print '<td align="right"><a href="'.$_SERVER['PHP_SELF'].'?action=RefCustomerOrder&id='.$commande->id.'">'.img_edit($langs->trans('Edit')).'</a></td>'; + if ($_GET['action'] != 'RefCustomerOrder' && $commande->brouillon) print '<td align="right"><a href="'.$_SERVER['PHP_SELF'].'?action=RefCustomerOrder&id='.$commande->id.'">'.img_edit($langs->trans('Modify')).'</a></td>'; print '</tr></table>'; print '</td><td colspan="3">'; if ($user->rights->commande->creer && $_GET['action'] == 'RefCustomerOrder') diff --git a/htdocs/compta/deplacement/fiche.php b/htdocs/compta/deplacement/fiche.php index bf801d2b943f2fff801964c3e8b0bd57d50c835c..caa8ba84efb9837a4df285c4a1c73a2ea69a656c 100644 --- a/htdocs/compta/deplacement/fiche.php +++ b/htdocs/compta/deplacement/fiche.php @@ -233,7 +233,7 @@ print '<div class="tabsAction">'; if ($_GET["action"] != 'create' && $_GET["action"] != 'edit') { - print '<a class="butAction" href="fiche.php?action=edit&id='.$id.'">'.$langs->trans('Edit').'</a>'; + print '<a class="butAction" href="fiche.php?action=edit&id='.$id.'">'.$langs->trans('Modify').'</a>'; print '<a class="butActionDelete" href="fiche.php?action=delete&id='.$id.'">'.$langs->trans('Delete').'</a>'; } diff --git a/htdocs/compta/dons/fiche.php b/htdocs/compta/dons/fiche.php index 4e736e85ca3c0e8109e31a83e7db1e6f59284451..c452daf5643531d0cb8663b07425e0bd73740294 100644 --- a/htdocs/compta/dons/fiche.php +++ b/htdocs/compta/dons/fiche.php @@ -392,7 +392,7 @@ if ($_GET["rowid"] && $_GET["action"] != 'edit') */ print '<div class="tabsAction">'; - print '<a class="butAction" href="fiche.php?action=edit&rowid='.$don->id.'">'.$langs->trans('Edit').'</a>'; + print '<a class="butAction" href="fiche.php?action=edit&rowid='.$don->id.'">'.$langs->trans('Modify').'</a>'; if ($don->statut == 0) { diff --git a/htdocs/compta/facture.php b/htdocs/compta/facture.php index da03c8d62d333202c6de18beb1b01987379f30fd..0a95e72b88cc2c97746e9604a4331712ee6d142f 100644 --- a/htdocs/compta/facture.php +++ b/htdocs/compta/facture.php @@ -1923,7 +1923,7 @@ else print '<table class="nobordernopadding" width="100%"><tr><td nowrap="nowrap">'; print $langs->trans('RefCustomerOrder').'</td><td align="left">'; print '</td>'; - if ($_GET['action'] != 'RefCustomerOrder' && $fac->brouillon) print '<td align="right"><a href="'.$_SERVER['PHP_SELF'].'?action=RefCustomerOrder&facid='.$fac->id.'">'.img_edit($langs->trans('Edit')).'</a></td>'; + if ($_GET['action'] != 'RefCustomerOrder' && $fac->brouillon) print '<td align="right"><a href="'.$_SERVER['PHP_SELF'].'?action=RefCustomerOrder&facid='.$fac->id.'">'.img_edit($langs->trans('Modify')).'</a></td>'; print '</tr></table>'; print '</td><td colspan="5">'; if ($user->rights->facture->creer && $_GET['action'] == 'RefCustomerOrder') @@ -2699,7 +2699,7 @@ else if ($conf->global->FACTURE_ENABLE_EDITDELETE && $user->rights->facture->modifier && ($resteapayer == $fac->total_ttc && $fac->paye == 0 && $ventilExportCompta == 0)) { - print '<a class="butAction" href="'.$_SERVER['PHP_SELF'].'?facid='.$fac->id.'&action=modif">'.$langs->trans('Edit').'</a>'; + print '<a class="butAction" href="'.$_SERVER['PHP_SELF'].'?facid='.$fac->id.'&action=modif">'.$langs->trans('Modify').'</a>'; } } diff --git a/htdocs/compta/facture/note.php b/htdocs/compta/facture/note.php index 1abc9bd1d1436d24a3548db7c4161084f87446cb..0533fa3e20f365834f95b8ef409306d605fde14e 100644 --- a/htdocs/compta/facture/note.php +++ b/htdocs/compta/facture/note.php @@ -166,7 +166,7 @@ if ($_GET["facid"]) if ($user->rights->facture->creer && $_GET["action"] <> 'edit') { - print "<a class=\"butAction\" href=\"note.php?facid=$fac->id&action=edit\">".$langs->trans('Edit')."</a>"; + print "<a class=\"butAction\" href=\"note.php?facid=$fac->id&action=edit\">".$langs->trans('Modify')."</a>"; } print "</div>"; diff --git a/htdocs/compta/propal.php b/htdocs/compta/propal.php index 975b263ad6289d57bed3a2b04b45c719275148ee..4d04caee3d055acb9a393671f9da3a42d6cedb12 100644 --- a/htdocs/compta/propal.php +++ b/htdocs/compta/propal.php @@ -154,7 +154,7 @@ if ($_GET["propalid"] > 0) print '<table class="nobordernopadding" width="100%"><tr><td nowrap>'; print $langs->trans('RefCustomer').'</td><td align="left">'; print '</td>'; - if ($_GET['action'] != 'refclient' && $propal->brouillon) print '<td align="right"><a href="'.$_SERVER['PHP_SELF'].'?action=refclient&propalid='.$propal->id.'">'.img_edit($langs->trans('Edit')).'</a></td>'; + if ($_GET['action'] != 'refclient' && $propal->brouillon) print '<td align="right"><a href="'.$_SERVER['PHP_SELF'].'?action=refclient&propalid='.$propal->id.'">'.img_edit($langs->trans('Modify')).'</a></td>'; print '</tr></table>'; print '</td><td colspan="5">'; print $propal->ref_client; diff --git a/htdocs/compta/sociales/charges.php b/htdocs/compta/sociales/charges.php index 7b6b91856ce0668cef6dde3c99c4042379696795..5f7567bdd240147fb662f19e496283d7773eca5a 100644 --- a/htdocs/compta/sociales/charges.php +++ b/htdocs/compta/sociales/charges.php @@ -409,7 +409,7 @@ if ($chid > 0) // Editer if ($cha->paye == 0 && $user->rights->tax->charges->creer) { - print "<a class=\"butAction\" href=\"".DOL_URL_ROOT."/compta/sociales/charges.php?id=$cha->id&action=edit\">".$langs->trans("Edit")."</a>"; + print "<a class=\"butAction\" href=\"".DOL_URL_ROOT."/compta/sociales/charges.php?id=$cha->id&action=edit\">".$langs->trans("Modify")."</a>"; } // Emettre paiement diff --git a/htdocs/contact/fiche.php b/htdocs/contact/fiche.php index 0bb23cf028e877fdbd81132aedf8002f26ffb1be..45267d3204a26997c087e693bbe774e957eef959 100644 --- a/htdocs/contact/fiche.php +++ b/htdocs/contact/fiche.php @@ -612,7 +612,7 @@ if ($_GET["id"] && $_GET["action"] != 'edit') if ($user->rights->societe->contact->creer) { - print '<a class="butAction" href="fiche.php?id='.$contact->id.'&action=edit">'.$langs->trans('Edit').'</a>'; + print '<a class="butAction" href="fiche.php?id='.$contact->id.'&action=edit">'.$langs->trans('Modify').'</a>'; } if (! $contact->user_id && $user->rights->user->user->creer && $contact->socid > 0) diff --git a/htdocs/contact/perso.php b/htdocs/contact/perso.php index 822306cfc3949170b9c543df431383a8e3d96b05..c27b4c638fc99ba437ae9e3c7ee81a7ba8e8ca2d 100644 --- a/htdocs/contact/perso.php +++ b/htdocs/contact/perso.php @@ -239,7 +239,7 @@ else if ($user->rights->societe->contact->creer) { - print '<a class="butAction" href="perso.php?id='.$_GET["id"].'&action=edit">'.$langs->trans('Edit').'</a>'; + print '<a class="butAction" href="perso.php?id='.$_GET["id"].'&action=edit">'.$langs->trans('Modify').'</a>'; } print "</div>"; diff --git a/htdocs/contrat/note.php b/htdocs/contrat/note.php index 315ebea8ac5acf0d7f33edbae40274731a0b7a3b..fc476cbe6a097c0ebe7fc8a3a855a40fdea9629a 100644 --- a/htdocs/contrat/note.php +++ b/htdocs/contrat/note.php @@ -200,7 +200,7 @@ if ($_GET["id"]) if ($user->rights->contrat->creer && $_GET["action"] <> 'edit') { - print "<a class=\"butAction\" href=\"note.php?id=".$contrat->id."&action=edit\">".$langs->trans('Edit')."</a>"; + print "<a class=\"butAction\" href=\"note.php?id=".$contrat->id."&action=edit\">".$langs->trans('Modify')."</a>"; } print "</div>"; diff --git a/htdocs/expedition/commande.php b/htdocs/expedition/commande.php index 52b40f4e906bf3af06adc57d327e2ac6f2d1e79d..7e25c6134ea59fbfa4d6e2f1b709647e4f43eb4d 100644 --- a/htdocs/expedition/commande.php +++ b/htdocs/expedition/commande.php @@ -122,7 +122,7 @@ if ($_GET["id"] > 0) print '<table class="nobordernopadding" width="100%"><tr><td nowrap>'; print $langs->trans('RefCustomer').'</td><td align="left">'; print '</td>'; - if ($_GET['action'] != 'RefCustomerOrder' && $commande->brouillon) print '<td align="right"><a href="'.$_SERVER['PHP_SELF'].'?action=RefCustomerOrder&id='.$commande->id.'">'.img_edit($langs->trans('Edit')).'</a></td>'; + if ($_GET['action'] != 'RefCustomerOrder' && $commande->brouillon) print '<td align="right"><a href="'.$_SERVER['PHP_SELF'].'?action=RefCustomerOrder&id='.$commande->id.'">'.img_edit($langs->trans('Modify')).'</a></td>'; print '</tr></table>'; print '</td><td colspan="3">'; if ($user->rights->commande->creer && $_GET['action'] == 'RefCustomerOrder') diff --git a/htdocs/expedition/fiche.php b/htdocs/expedition/fiche.php index 5efec0a6d11397935e256fb9acff15d4eb37c890..d52a8f4376fd713f49e2ee597e8b41f3864158a9 100644 --- a/htdocs/expedition/fiche.php +++ b/htdocs/expedition/fiche.php @@ -222,7 +222,7 @@ if ($_GET["action"] == 'create') print '<table class="nobordernopadding" width="100%"><tr><td nowrap>'; print $langs->trans('RefCustomerOrderShort').'</td><td align="left">'; print '</td>'; - if ($_GET['action'] != 'RefCustomerOrder' && $commande->brouillon) print '<td align="right"><a href="'.$_SERVER['PHP_SELF'].'?action=RefCustomerOrder&id='.$commande->id.'">'.img_edit($langs->trans('Edit')).'</a></td>'; + if ($_GET['action'] != 'RefCustomerOrder' && $commande->brouillon) print '<td align="right"><a href="'.$_SERVER['PHP_SELF'].'?action=RefCustomerOrder&id='.$commande->id.'">'.img_edit($langs->trans('Modify')).'</a></td>'; print '</tr></table>'; print '</td><td colspan="3">'; if ($user->rights->commande->creer && $_GET['action'] == 'RefCustomerOrder') diff --git a/htdocs/fichinter/note.php b/htdocs/fichinter/note.php index 563b57a56075afb7b7c0d89a9147250b303952ee..6578e544d81a7e063316da7a70ae28552f37d83e 100644 --- a/htdocs/fichinter/note.php +++ b/htdocs/fichinter/note.php @@ -163,7 +163,7 @@ if ($_GET['id']) print '<div class="tabsAction">'; if ($user->rights->ficheinter->creer && $_GET['action'] <> 'edit') { - print '<a class="butAction" href="note.php?id='.$fichinter->id.'&action=edit">'.$langs->trans('Edit').'</a>'; + print '<a class="butAction" href="note.php?id='.$fichinter->id.'&action=edit">'.$langs->trans('Modify').'</a>'; } print '</div>'; } diff --git a/htdocs/fourn/facture/fiche.php b/htdocs/fourn/facture/fiche.php index 250803e65da6b1031c78fa28ac2ea99bf6339851..2895b7b63955c8fc06ba6731610b988e80bbb903 100644 --- a/htdocs/fourn/facture/fiche.php +++ b/htdocs/fourn/facture/fiche.php @@ -853,7 +853,7 @@ else { if ($_GET['action'] != 'edit') { - print '<a class="butAction" href="fiche.php?facid='.$fac->id.'&action=edit">'.$langs->trans('Edit').'</a>'; + print '<a class="butAction" href="fiche.php?facid='.$fac->id.'&action=edit">'.$langs->trans('Modify').'</a>'; } } diff --git a/htdocs/fourn/facture/note.php b/htdocs/fourn/facture/note.php index 476539a93a5924cc65ee78934b105b048f203558..325af440d6aba19440a88ed09bc0605e04fd4840 100644 --- a/htdocs/fourn/facture/note.php +++ b/htdocs/fourn/facture/note.php @@ -162,7 +162,7 @@ if ($_GET["facid"]) if ($user->rights->fournisseur->facture->creer && $_GET["action"] <> 'edit') { - print "<a class=\"butAction\" href=\"note.php?facid=$fac->id&action=edit\">".$langs->trans('Edit')."</a>"; + print "<a class=\"butAction\" href=\"note.php?facid=$fac->id&action=edit\">".$langs->trans('Modify')."</a>"; } print "</div>"; diff --git a/htdocs/fourn/product/fiche.php b/htdocs/fourn/product/fiche.php index 6d0b31ce7465962f7ff71bd65a07ef2db2f14aed..da34a6a7a8e93c014b80b0ddb0be8bc54fa278e9 100644 --- a/htdocs/fourn/product/fiche.php +++ b/htdocs/fourn/product/fiche.php @@ -443,7 +443,7 @@ else print '<td><a href="'.DOL_URL_ROOT.'/fourn/fiche.php?socid='.$objp->socid.'">'.$objp->nom.'</a></td>'; print '<td>'; print '<a href="fourn.php?id='.$product->id.'&id_fourn='.$objp->socid.'">'; - print img_edit($langs->trans("Edit")); + print img_edit($langs->trans("Modify")); print ' <a href="fourn.php?id='.$product->id.'&id_fourn='.$objp->socid.'">'; print $objp->ref_fourn.'</a></td>'; @@ -508,9 +508,9 @@ else { if ($product->isservice()) { - print_fiche_titre($langs->trans('Edit').' '.$langs->trans('Service').' : '.$product->ref, ""); + print_fiche_titre($langs->trans('Modify').' '.$langs->trans('Service').' : '.$product->ref, ""); } else { - print_fiche_titre($langs->trans('Edit').' '.$langs->trans('Product').' : '.$product->ref, ""); + print_fiche_titre($langs->trans('Modify').' '.$langs->trans('Product').' : '.$product->ref, ""); } if ($mesg) { @@ -576,7 +576,7 @@ else { if ( $user->rights->produit->creer) { - print '<a class="butAction" href="fiche.php?action=edit&id='.$product->id.'">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="fiche.php?action=edit&id='.$product->id.'">'.$langs->trans("Modify").'</a>'; } if ($product->isproduct() && $conf->stock->enabled) diff --git a/htdocs/fourn/product/fourn.php b/htdocs/fourn/product/fourn.php index b3a4df31a95973dc4f21a6ba613f077f71d27eed..40bce93e626354c4cb36e0247497422c6ea30a84 100644 --- a/htdocs/fourn/product/fourn.php +++ b/htdocs/fourn/product/fourn.php @@ -206,7 +206,7 @@ if ($_GET["id"]) if ( $user->rights->produit->creer) { - print '<a class="butAction" href="fourn.php?action=edit&id='.$product->id.'&id_fourn='.$product->fourn->id.'">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="fourn.php?action=edit&id='.$product->id.'&id_fourn='.$product->fourn->id.'">'.$langs->trans("Modify").'</a>'; } } diff --git a/htdocs/postnuke/articles/fiche.php b/htdocs/postnuke/articles/fiche.php index 4320deb1100895bce69cd8d4a1a05242879da884..094ed5b13b748e4a9dd45a7cc78e90d5800d2597 100644 --- a/htdocs/postnuke/articles/fiche.php +++ b/htdocs/postnuke/articles/fiche.php @@ -122,7 +122,7 @@ if ($id) print '<div class="tabsAction">'; if ($action != 'create') { - print '<a class="butAction" href="fiche.php?action=edit&id='.$id.'">'.$langs->trans('Edit').'</a>'; + print '<a class="butAction" href="fiche.php?action=edit&id='.$id.'">'.$langs->trans('Modify').'</a>'; } print '</div>'; diff --git a/htdocs/product/fiche.php b/htdocs/product/fiche.php index fa7941b332bb62870c1dab61e02a48aa358659ed..85f1c3df82d6ab7e63c3d2e970b26362e2372bb7 100644 --- a/htdocs/product/fiche.php +++ b/htdocs/product/fiche.php @@ -926,9 +926,9 @@ if ($_GET["id"] || $_GET["ref"]) if ($_GET["action"] == 'edit' && $user->rights->produit->creer) { if ($product->isservice()) { - print_fiche_titre($langs->trans('Edit').' '.$langs->trans('Service').' : '.$product->ref, ""); + print_fiche_titre($langs->trans('Modify').' '.$langs->trans('Service').' : '.$product->ref, ""); } else { - print_fiche_titre($langs->trans('Edit').' '.$langs->trans('Product').' : '.$product->ref, ""); + print_fiche_titre($langs->trans('Modify').' '.$langs->trans('Product').' : '.$product->ref, ""); } if ($mesg) { @@ -1071,7 +1071,7 @@ if ($_GET["action"] == '') if ( $user->rights->produit->creer) { if ($product->no_button_edit <> 1) - print '<a class="butAction" href="fiche.php?action=edit&id='.$product->id.'">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="fiche.php?action=edit&id='.$product->id.'">'.$langs->trans("Modify").'</a>'; if ($product->no_button_copy <> 1) print '<a class="butAction" href="fiche.php?action=clone&id='.$product->id.'">'.$langs->trans("CreateCopy").'</a>'; diff --git a/htdocs/product/sousproduits/fiche.php b/htdocs/product/sousproduits/fiche.php index 0c6a5e627e33be561e5cdfcda6c6b65153e5a49c..6d676aad9495a17dd42fdb3532236c3ebeb2f78b 100644 --- a/htdocs/product/sousproduits/fiche.php +++ b/htdocs/product/sousproduits/fiche.php @@ -350,7 +350,7 @@ if ($action == '') if ( $user->rights->produit->creer) { - print '<a class="butAction" href="'.DOL_URL_ROOT.'/product/sousproduits/fiche.php?action=edit&id='.$product->id.'">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="'.DOL_URL_ROOT.'/product/sousproduits/fiche.php?action=edit&id='.$product->id.'">'.$langs->trans("Modify").'</a>'; } diff --git a/htdocs/product/stock/fiche.php b/htdocs/product/stock/fiche.php index 1e616efd330fc048b3f43a45676093eca2dc0117..18529acbabd1689ece7eb99c0d7ad4ff81ff1188 100644 --- a/htdocs/product/stock/fiche.php +++ b/htdocs/product/stock/fiche.php @@ -296,7 +296,7 @@ else if ($_GET["action"] == '') { - print "<a class=\"butAction\" href=\"fiche.php?action=edit&id=".$entrepot->id."\">".$langs->trans("Edit")."</a>"; + print "<a class=\"butAction\" href=\"fiche.php?action=edit&id=".$entrepot->id."\">".$langs->trans("Modify")."</a>"; } print "</div>"; diff --git a/htdocs/projet/fiche.php b/htdocs/projet/fiche.php index f15f8017eaa0e2dd9cc70e0c86b4dc22e2de795f..b95c64f864415665af00b820d6d03250c2af5cff 100644 --- a/htdocs/projet/fiche.php +++ b/htdocs/projet/fiche.php @@ -216,7 +216,7 @@ if ($_GET["action"] == 'create' && $user->rights->projet->creer) { if ($user->rights->projet->creer) { - print '<a class="butAction" href="fiche.php?id='.$projet->id.'&action=edit">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="fiche.php?id='.$projet->id.'&action=edit">'.$langs->trans("Modify").'</a>'; } if ($user->rights->projet->supprimer) { diff --git a/htdocs/soc.php b/htdocs/soc.php index b3247f394a7164a06e7e17601a94faec936c96bb..6ad442407c175307c93c043f90d706ae03c0a78a 100644 --- a/htdocs/soc.php +++ b/htdocs/soc.php @@ -1163,7 +1163,7 @@ else if ($user->rights->societe->creer) { - print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?socid='.$soc->id.'&action=edit">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?socid='.$soc->id.'&action=edit">'.$langs->trans("Modify").'</a>'; } if ($conf->projet->enabled && $user->rights->projet->creer) diff --git a/htdocs/societe/rib.php b/htdocs/societe/rib.php index e5d22bd7aaca0d2c33578037b1df2cfd2a60d739..d810d28d448da28533494db20fe33f74da872e17 100644 --- a/htdocs/societe/rib.php +++ b/htdocs/societe/rib.php @@ -187,7 +187,7 @@ if ($_GET["socid"] && $_GET["action"] != 'edit') if ($user->rights->societe->creer) { - print '<a class="butAction" href="rib.php?socid='.$soc->id.'&action=edit">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="rib.php?socid='.$soc->id.'&action=edit">'.$langs->trans("Modify").'</a>'; } print '</div>'; diff --git a/htdocs/socnote.php b/htdocs/socnote.php index 1018cc7d067874498e3618676b6f1e422ea387f3..b25ff27b7a5cbae971131e5cc61a4bcf7222f5a4 100644 --- a/htdocs/socnote.php +++ b/htdocs/socnote.php @@ -141,7 +141,7 @@ if ($_GET["action"] == '') if ($user->rights->societe->creer) { - print '<a class="butAction" href="'.DOL_URL_ROOT.'/socnote.php?socid='.$societe->id.'&action=edit">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="'.DOL_URL_ROOT.'/socnote.php?socid='.$societe->id.'&action=edit">'.$langs->trans("Modify").'</a>'; } print '</div>'; diff --git a/htdocs/telephonie/contrat/fiche.php b/htdocs/telephonie/contrat/fiche.php index 421e55f303d8ba9c748f996a58bf9614ecb10e44..864a30383b84eeef2f545eb7ad85153fe88c4238 100644 --- a/htdocs/telephonie/contrat/fiche.php +++ b/htdocs/telephonie/contrat/fiche.php @@ -1097,7 +1097,7 @@ else } if ($user->rights->telephonie->ligne->creer && $contrat->statut <> 6) { - print "<a class=\"butAction\" href=\"fiche.php?action=edit&id=$contrat->id\">".$langs->trans("Edit")."</a>"; + print "<a class=\"butAction\" href=\"fiche.php?action=edit&id=$contrat->id\">".$langs->trans("Modify")."</a>"; } if ($user->rights->telephonie->ligne->creer && $numlignes == 0 && $contrat->statut <> 6) diff --git a/htdocs/telephonie/fournisseur/fiche.php b/htdocs/telephonie/fournisseur/fiche.php index 864308bc2aefa4df1186a51c37f53a39b9802300..7e088771146c0e75e502b645de2dc39ffae4049f 100644 --- a/htdocs/telephonie/fournisseur/fiche.php +++ b/htdocs/telephonie/fournisseur/fiche.php @@ -292,7 +292,7 @@ if ($_GET["action"] == '') if($user->rights->telephonie->fournisseur->config) { - print '<a class="butAction" href="'.DOL_URL_ROOT.'/telephonie/fournisseur/fiche.php?action=edit&id='.$fourn->id.'">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="'.DOL_URL_ROOT.'/telephonie/fournisseur/fiche.php?action=edit&id='.$fourn->id.'">'.$langs->trans("Modify").'</a>'; } } diff --git a/htdocs/telephonie/ligne/fiche.php b/htdocs/telephonie/ligne/fiche.php index e8070cae9525201f2d561c6c0c868075f587b1b5..5297fe49c584672deaa22503986559c4e1ca13fa 100644 --- a/htdocs/telephonie/ligne/fiche.php +++ b/htdocs/telephonie/ligne/fiche.php @@ -1356,7 +1356,7 @@ if ($_GET["action"] == '' && $result == 1 && $client_comm->perm_read) if ( $user->rights->telephonie->ligne_activer && $ligne->statut == -1) { - print "<a class=\"butAction\" href=\"fiche.php?action=edit&id=$ligne->id\">".$langs->trans("Edit")."</a>"; + print "<a class=\"butAction\" href=\"fiche.php?action=edit&id=$ligne->id\">".$langs->trans("Modify")."</a>"; } if ( $user->rights->telephonie->ligne->creer && $ligne->statut == -1) diff --git a/htdocs/telephonie/ligne/infoc.php b/htdocs/telephonie/ligne/infoc.php index c6cb2340f126191efb88bc95c74136021d1d4a65..ff188c1b4b6c2109dd0968f70d752ee408b27ada 100644 --- a/htdocs/telephonie/ligne/infoc.php +++ b/htdocs/telephonie/ligne/infoc.php @@ -208,7 +208,7 @@ if ($_GET["id"] or $_GET["numero"]) if ($_GET["action"] == '') { - print "<a class=\"butAction\" href=\"infoc.php?action=edit&id=$ligne->id\">".$langs->trans("Edit")."</a>"; + print "<a class=\"butAction\" href=\"infoc.php?action=edit&id=$ligne->id\">".$langs->trans("Modify")."</a>"; } print "</div>"; diff --git a/htdocs/telephonie/service/fiche.php b/htdocs/telephonie/service/fiche.php index 617ce4398b4ab4e3563cc5bceacd0de2c25f029a..ae4fe6c8cf3438d67a1eef0d98e21c2b2078dc07 100644 --- a/htdocs/telephonie/service/fiche.php +++ b/htdocs/telephonie/service/fiche.php @@ -235,7 +235,7 @@ if ($_GET["action"] == '' && $service->statut == 0) if ($_GET["action"] == '') { - print "<a class=\"butAction\" href=\"fiche.php?action=edit&id=$service->id\">".$langs->trans("Edit")."</a>"; + print "<a class=\"butAction\" href=\"fiche.php?action=edit&id=$service->id\">".$langs->trans("Modify")."</a>"; } diff --git a/htdocs/user/clicktodial.php b/htdocs/user/clicktodial.php index e83db7041e8ae46c1c19dca5f2df90655df760a4..50bd5f360561faf8b9e7be8f7b5f251f9d17f227 100644 --- a/htdocs/user/clicktodial.php +++ b/htdocs/user/clicktodial.php @@ -146,7 +146,7 @@ if ($_GET["id"]) if ($user->admin && $_GET["action"] <> 'edit') { - print '<a class="butAction" href="clicktodial.php?id='.$fuser->id.'&action=edit">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="clicktodial.php?id='.$fuser->id.'&action=edit">'.$langs->trans("Modify").'</a>'; } if ($user->admin && $_GET["action"] == 'edit') diff --git a/htdocs/user/fiche.php b/htdocs/user/fiche.php index ff9beaa5f184293b9eb0029d07f02a38e808b314..30eb864e58eb95b1bf6e68eefe000777064bff78 100644 --- a/htdocs/user/fiche.php +++ b/htdocs/user/fiche.php @@ -1019,7 +1019,7 @@ else if ($caneditfield) { - print '<a class="butAction" href="fiche.php?id='.$fuser->id.'&action=edit">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="fiche.php?id='.$fuser->id.'&action=edit">'.$langs->trans("Modify").'</a>'; } elseif ($caneditpassword && ! $fuser->ldap_sid) { diff --git a/htdocs/user/group/fiche.php b/htdocs/user/group/fiche.php index fad0ac15dc6a264218b0211126170a0d0bb2d90d..47811b03947176b91010d9fe9abceb4c5d9f4579 100644 --- a/htdocs/user/group/fiche.php +++ b/htdocs/user/group/fiche.php @@ -258,7 +258,7 @@ else if ($caneditperms) { - print '<a class="butAction" href="fiche.php?id='.$group->id.'&action=edit">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="fiche.php?id='.$group->id.'&action=edit">'.$langs->trans("Modify").'</a>'; } if ($candisableperms) diff --git a/htdocs/user/note.php b/htdocs/user/note.php index 409a51a3295e67bd2a0208035463786708ccb511..71624615ab9a3be35ce775e78164554a2075e4d9 100644 --- a/htdocs/user/note.php +++ b/htdocs/user/note.php @@ -154,7 +154,7 @@ if ($id) if ($user->rights->user->user->creer && $action != 'edit') { - print "<a class=\"butAction\" href=\"note.php?id=$fuser->id&action=edit\">".$langs->trans('Edit')."</a>"; + print "<a class=\"butAction\" href=\"note.php?id=$fuser->id&action=edit\">".$langs->trans('Modify')."</a>"; } print "</div>"; diff --git a/htdocs/user/param_ihm.php b/htdocs/user/param_ihm.php index 9838fa318e19c524f86a52d265a6133cf5907e81..a89659c73e3aced5ca41b147fde3ea5b7dcbfd74 100644 --- a/htdocs/user/param_ihm.php +++ b/htdocs/user/param_ihm.php @@ -212,11 +212,11 @@ else print '<div class="tabsAction">'; if ($caneditfield || $user->admin) // Si utilisateur �dit� = utilisateur courant ayant les droits de cr�er ou admin { - print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit&id='.$_GET["id"].'">'.$langs->trans("Edit").'</a>'; + print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit&id='.$_GET["id"].'">'.$langs->trans("Modify").'</a>'; } else { - print "<a class=\"butActionRefused\" title=\"".$langs->trans("NotEnoughPermissions")."\" href=\"#\">".$langs->trans("Edit")."</a>"; + print "<a class=\"butActionRefused\" title=\"".$langs->trans("NotEnoughPermissions")."\" href=\"#\">".$langs->trans("Modify")."</a>"; } print '</div>';