diff --git a/dev/compile_text.sh b/dev/compile_text.sh index 92839ea04..2e22a45bd 100644 --- a/dev/compile_text.sh +++ b/dev/compile_text.sh @@ -6,8 +6,10 @@ # This file is a part of NOALYSS under GPL # Author D. DE BONTRIDDER danydb@aevalys.eu cd ../html/lang +echo "English" cd en_US/LC_MESSAGES msgfmt -c -v messages.po +echo "Dutch" cd ../.. cd nl_NL/LC_MESSAGES msgfmt -c -v messages.po diff --git a/dev/extract_text.sh b/dev/extract_text.sh index d7d65338e..c9eef356d 100644 --- a/dev/extract_text.sh +++ b/dev/extract_text.sh @@ -7,5 +7,17 @@ # Author D. DE BONTRIDDER danydb@aevalys.eu echo "Extract" cd .. -xgettext -L PHP -j --from-code=UTF-8 -p html/lang/en_US/LC_MESSAGES/ html/*.php include/*.php include/template/*.php -xgettext -L PHP -j --from-code=UTF-8 -p html/lang/nl_NL/LC_MESSAGES/ html/*.php include/*.php include/template/*.php +# CATALOG +xgettext -L PHP -j --from-code=UTF-8 -p html/lang/ html/*.php include/*.php include/template/*.php include/ext/*/*.php include/ext/*/include/*.php include/ext/*/include/template/*.php + +# For dutch +echo "Dutch" +msgmerge -U -s html/lang/nl_NL/LC_MESSAGES/messages.po html/lang/messages.po + +#For english +echo "English" +msgmerge -U -s html/lang/en_US/LC_MESSAGES/messages.po html/lang/messages.po + +#For new language +# export LOCAL=nl_NL +# msginit --locale=$LOCAL -i html/lang/messages.po -o html/lang/$LOCAL/LC_MESSAGES/messages.po diff --git a/dev/get_database_item.sh b/dev/get_database_item.sh new file mode 100755 index 000000000..2ce2df857 --- /dev/null +++ b/dev/get_database_item.sh @@ -0,0 +1,39 @@ +#!/bin/bash + +export PGUSER=dany +export PGPASSWORD=dany +export PGHOST=localhost +export PGDATABASE=rel671mod1 +export PGPORT=5432 +export PGCLUSTER=9.1/main + +( +echo "" ) > ../include/database.item.php +( +echo "" ) >> ../include/database.item.php +( +echo "" ) >> ../include/database.item.php +( +echo "" ) >> ../include/database.item.php +( +echo "" ) >> ../include/database.item.php +( +echo "" ) >> ../include/database.item.php +( +echo "" ) >> ../include/database.item.php + +echo "File ../include/database.item.php is created" diff --git a/dev/get_menu.sh b/dev/get_menu.sh deleted file mode 100755 index 52ee0e9c7..000000000 --- a/dev/get_menu.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash - -export PGUSER=dany -export PGPASSWORD=dany -export PGHOST=localhost -export PGDATABASE=trunkdossier25 -export PGPORT=5000 -export PGCLUSTER=9.0/main - -( -echo "" ) > ../include/menu_translate.php diff --git a/html/admin_repo.php b/html/admin_repo.php index c41c34d72..6b3694970 100644 --- a/html/admin_repo.php +++ b/html/admin_repo.php @@ -39,7 +39,7 @@ if ($User->admin != 1) return; } load_all_script(); -echo '

Administration Globale

'; +echo '

'._(' Administration Globale').'

'; echo '
'; echo MenuAdmin()."
"; @@ -91,4 +91,4 @@ if ( isset ($_REQUEST["action"]) ) \ No newline at end of file +?> diff --git a/html/ajax_card.php b/html/ajax_card.php index 324990cab..0738c890e 100644 --- a/html/ajax_card.php +++ b/html/ajax_card.php @@ -72,7 +72,7 @@ foreach ($var as $v) { if ( ! isset ($_REQUEST [$v] ) ) { - echo "$v is not set "; + echo "$v._(' is not set ')"; $cont=1; } } @@ -103,7 +103,7 @@ case 'rmfa': if ($g_user->check_action(FICCAT)==0)exit(); ob_start(); if( ! isset($_GET['ad_id']) || isNumber($_GET['ad_id']) ==0) - throw new Exception ( "Parametre ad_id est invalide",11); + throw new Exception ( _("Parametre ad_id est invalide"),11); $ad_id= $_GET['ad_id']; try { @@ -127,7 +127,7 @@ case 'rmfa': case 'dc': $f=new Fiche($cn); /* add title + close */ - $html=HtmlInput::title_box("Détail fiche", $ctl); + $html=HtmlInput::title_box(_("Détail fiche"), $ctl); if ( $qcode != '') { $f->get_by_qcode($qcode); @@ -157,7 +157,7 @@ case 'dc': $html.=$card; if ( $can_modify==1) { - $html.=HtmlInput::submit('save','Sauver'); + $html.=HtmlInput::submit('save',_('Sauver')); } $html.=HtmlInput::button('close_'.$ctl,'Fermer',"onclick=\"removeDiv('$ctl')\""); if ( ! isset ($nohistory))$html.=HtmlInput::history_card_button($f->id,_('Historique')); @@ -170,7 +170,7 @@ case 'dc': else { $html.='

'._('Aucune fiche demandée').'

'; - $html.=HtmlInput::button('close_'.$ctl,'Fermer',"onclick=\"removeDiv('$ctl')\""); + $html.=HtmlInput::button('close_'.$ctl,_('Fermer'),"onclick=\"removeDiv('$ctl')\""); } break; /* ------------------------------------------------------------ */ @@ -179,7 +179,7 @@ case 'dc': case 'bc': if ( $g_user->check_action(FICADD)==1 ) { - $r=HtmlInput::title_box("Nouvelle fiche", $ctl); + $r=HtmlInput::title_box(_("Nouvelle fiche"), $ctl); /* get cat. name */ $cat_name=$cn->get_value('select fd_label from fiche_def where fd_id=$1', array($fd_id)); @@ -190,7 +190,7 @@ case 'bc': $r.=HtmlInput::hidden('fd_id',$fd_id); $r.=HtmlInput::hidden('ctl',$ctl); $r.=$f->blank($fd_id); - $r.=HtmlInput::submit('sc','Sauve'); + $r.=HtmlInput::submit('sc',_('Sauve')); $r.=''; $html=$r; } @@ -248,7 +248,7 @@ case 'st': if ( strpos($where," in ()") != 0) { $html=HtmlInput::anchor_close('select_card_div'); - $html.=h2info('Choix de la catégorie'); + $html.=h2info(_('Choix de la catégorie')); $html.='

'; $html.=_("Aucune catégorie de fiche ne correspond à". " votre demande, le journal pourrait n'avoir accès à aucune fiche"); @@ -258,7 +258,7 @@ case 'st': $sql.=" ".$where." order by fd_label"; $array=$cn->make_array($sql); - $html=HtmlInput::title_box("Choix de la catégorie", $ctl); + $html=HtmlInput::title_box(_("Choix de la catégorie"), $ctl); if ( empty($array)) { @@ -269,7 +269,8 @@ case 'st': else { $r=''; - $r.='

Choississez la catégorie de fiche à laquelle vous aimeriez ajouter une fiche

'; + $r.='

'; + $r.=_("Choississez la catégorie de fiche à laquelle vous aimeriez ajouter une fiche").'

'; $isel=new ISelect('fd_id'); $isel->value=$array; $r.='
'; @@ -280,7 +281,7 @@ case 'st': $r.=$isel->input(); $r.='

'; $r.=HtmlInput::submit('st','choix'); - $r.=HtmlInput::button('Annuler','Annuler'," onclick=\"removeDiv('$ctl')\" "); + $r.=HtmlInput::button('Annuler',_('Annuler')," onclick=\"removeDiv('$ctl')\" "); $r.='

'; $r.=''; $r.='
'; @@ -294,13 +295,13 @@ case 'st': * ----------------------------------------------------------------------*/ case 'sc': - $html=HtmlInput::title_box("Choix de la catégorie", $ctl); + $html=HtmlInput::title_box(_("Choix de la catégorie"), $ctl); if ( $g_user->check_action(FICADD)==1 ) { $f=new Fiche($cn); $f->insert($fd_id,$_POST); $f->Get(); - $html.='

Fiche sauvée

'; + $html.='

'._('Fiche sauvée').'

'; $html.=$f->Display(true); $js=""; if ( isset( $_POST['ref'])) $js=create_script(' window.location.reload()'); @@ -310,7 +311,7 @@ case 'sc': { $html.=alert(_('Action interdite'),true); } - $html.=HtmlInput::button('fermer','Fermer'," onclick=\"removeDiv('$ctl')\";"); + $html.=HtmlInput::button('fermer',_('Fermer')," onclick=\"removeDiv('$ctl')\";"); break; /*---------------------------------------------------------------------- * Search a card @@ -318,7 +319,7 @@ case 'sc': *----------------------------------------------------------------------*/ case 'fs': require_once('class_acc_ledger.php'); - $r=HtmlInput::title_box("Détail fiche", 'search_card'); + $r=HtmlInput::title_box(_("Détail fiche"), 'search_card'); $r.='
'; $q=new IText('query'); $q->value=(isset($query))?$query:''; @@ -417,7 +418,7 @@ case 'ac': $base=''; break; case FICHE_TYPE_CONTACT: - $msg=(' de contacts'); + $msg=_(' de contacts'); $base=''; } @@ -500,7 +501,7 @@ case 'upc': else { $html=HtmlInput::anchor_close($ctl); - $html.=h2info('Détail fiche (sauvée)'); + $html.=h2info(_('Détail fiche (sauvée)')); $f=new Fiche($cn,$_GET['f_id']); ob_start(); diff --git a/html/ajax_history.php b/html/ajax_history.php index 9800c1f6d..cf2169e53 100644 --- a/html/ajax_history.php +++ b/html/ajax_history.php @@ -58,7 +58,7 @@ if ( isset($_GET['f_id'])) $year=$g_user->get_exercice(); if ( $year == 0 ) { - $html="erreur aucune période par défaut, allez dans préférence pour en choisir une"; + $html=_("erreur aucune période par défaut, allez dans préférence pour en choisir une"); } else { @@ -87,13 +87,13 @@ if ( isset($_GET['f_id'])) { $obj="{div:'$div',f_id:'".$_GET['f_id']."',gDossier:'$dossier',select:this}"; $is=$exercice->select('p_exercice',$default,' onchange="update_history_card('.$obj.');"'); - $old="Autre exercice ".$is->input(); + $old=_("Autre exercice")." ".$is->input(); } else { $old=''; $is=$exercice->select('ex',$default,'onchange = "submit(this)"'); - $old.="Autre exercice ".$is->input(); + $old.=_("Autre exercice")." ".$is->input(); $old.=HtmlInput::hidden('div','popup'); $old.=HtmlInput::hidden('act',$_GET['act']); $old.=HtmlInput::hidden('f_id',$_GET['f_id']); @@ -110,7 +110,7 @@ if ( isset($_GET['f_id'])) echo '

'.$detail_card.'

'; if ( $fiche->HtmlTable($array,0,$from_div)==-1){ - echo h2("Aucune opération pour l'exercice courant",'class="error"'); + echo h2(_("Aucune opération pour l'exercice courant"),'class="error"'); } echo $old; @@ -128,7 +128,7 @@ if ( isset($_REQUEST['pcm_val'])) $year=$g_user->get_exercice(); if ( $year == 0 ) { - $html="erreur aucune période par défaut, allez dans préférence pour en choisir une"; + $html=_("erreur aucune période par défaut, allez dans préférence pour en choisir une"); } else { @@ -158,13 +158,13 @@ if ( isset($_REQUEST['pcm_val'])) { $obj="{div:'$div',pcm_val:'".$_GET['pcm_val']."',gDossier:'$dossier',select:this}"; $is=$exercice->select('p_exercice',$default,' onchange="update_history_account('.$obj.');"'); - $old="Autre exercice ".$is->input(); + $old=_("Autre exercice")." ".$is->input(); } else { $old=''; $is=$exercice->select('ex',$default,'onchange = "submit(this)"'); - $old.="Autre exercice ".$is->input(); + $old.=_("Autre exercice")." ".$is->input(); $old.=HtmlInput::hidden('div','popup'); $old.=HtmlInput::hidden('act',$_GET['act']); $old.=HtmlInput::hidden('pcm_val',$_GET['pcm_val']); @@ -181,7 +181,7 @@ if ( isset($_REQUEST['pcm_val'])) if ( $poste->HtmlTable($array) == -1) { echo h2($poste->id." ".$poste->name,' class="title"'); - echo h2("Aucune opération pour l'exercice courant",'class="error"'); + echo h2(_("Aucune opération pour l'exercice courant"),'class="error"'); } echo $old; diff --git a/html/ajax_ledger.php b/html/ajax_ledger.php index 90da5b09c..a28aa3ac6 100644 --- a/html/ajax_ledger.php +++ b/html/ajax_ledger.php @@ -197,7 +197,7 @@ case 'de': catch (Exception $e) { echo HtmlInput::anchor_close($div); - echo '

Désolé il y a une erreur

'; + echo '

'._("Désolé il y a une erreur").'

'; } $html=ob_get_contents(); ob_end_clean(); @@ -281,11 +281,11 @@ case 'file': echo "
"; } - echo "

Document

"; + echo "

"._("Document")."

"; echo '
'; $x=''; if ($access=='W') - $x=sprintf('enlever', + $x=sprintf(''._('enlever').'', $gDossier,$div,$jr_id); echo $x; $filename= $obj->det->jr_pj_name; @@ -321,9 +321,9 @@ case 'loadfile': echo " "; echo ""; if ( ! isset($_REQUEST['ajax']) ) echo ""; else echo ""; - echo "

Document

"; + echo "

"._("Document")."

"; echo '
'; - $x=sprintf('enlever', + $x=sprintf(''._('enlever').'', $gDossier,$div,$jr_id); echo $x; $filename= $obj->det->jr_pj_name; @@ -345,12 +345,12 @@ case 'rmf': $theme=$repo->get_value("select the_filestyle from theme where the_name=$1",array($_SESSION['g_theme'])); echo " "; echo ""; - echo "

Document

"; + echo "

"._("Document")."

"; echo '
'; echo ''; $sp=new ISpan('file'.$div); $sp->style="display:none;width:155;height:15;background-color:red;color:white;font-size:10"; - $sp->value="Chargement"; + $sp->value=_("Chargement"); echo $sp->input(); echo HtmlInput::hidden('act','loadfile'); @@ -501,7 +501,7 @@ case 'save': catch (Exception $e) { if ( DEBUG ) echo $e->getMessage(); - alert( "Changement impossible: on ne peut pas changer la date dans une période fermée"); + alert(_( "Changement impossible: on ne peut pas changer la date dans une période fermée")); } $html=ob_get_contents(); ob_end_clean(); @@ -524,7 +524,7 @@ case 'ask_extdate': $date=new IDate('p_date'); $html.=""; $html.=HtmlInput::hidden('jr_id',$_REQUEST['jr_id']).HtmlInput::hidden('div',$div).dossier::hidden().HtmlInput::hidden('act','reverseop'); - $html.='

entrez une date

'.$date->input(); + $html.='

'._('entrez une date').'

'.$date->input(); $html.=HtmlInput::submit('x','accepter'); $html=HtmlInput::button_close($div); $html.=''; diff --git a/html/ajax_misc.php b/html/ajax_misc.php index 223784662..2ff71350e 100644 --- a/html/ajax_misc.php +++ b/html/ajax_misc.php @@ -294,7 +294,7 @@ EOF; $detail = " " . $row['jr_internal'] . ""; $r.=_('Date').' : ' . $row['j_date_fmt'] . ' ref :' . $detail . '
'; - $r.=h($row['jr_comment']) ." "._("montant"). " : " . ($row['j_montant']) . " " . (($row['j_debit'] == 't') ? 'D' : 'C'); + $r.=h($row['jr_comment']) ." ". _("montant")." : " . ($row['j_montant']) . " " . (($row['j_debit'] == 't') ? 'D' : 'C'); $r.=''; $r.='
'; $r.='
'; @@ -455,7 +455,7 @@ EOF; } else { - $form.='Mauvais type objet'; + $form.=_('Mauvais type objet'); } $form.=HtmlInput::submit('record', _('Sauver')) . $ret->input(); diff --git a/html/backup.php b/html/backup.php index e49464bbf..5ddc083ad 100644 --- a/html/backup.php +++ b/html/backup.php @@ -31,7 +31,7 @@ $User->Check(); if ($User->admin != 1) { - echo ""; + echo ""; return; } diff --git a/html/export.php b/html/export.php index 7564806bf..8f8bbfb4f 100644 --- a/html/export.php +++ b/html/export.php @@ -38,7 +38,7 @@ $action=$g_user->check_dossier($gDossier); if ( $action=='X' || ! isset($_GET['act']) || $g_user->check_print($_GET['act'])==0 ) { - echo alert('Accès interdit'); + echo alert(_('Accès interdit')); redirect("do.php?".dossier::get()); exit(); } diff --git a/html/fid_card.php b/html/fid_card.php index e1bda182e..4e516b75a 100644 --- a/html/fid_card.php +++ b/html/fid_card.php @@ -161,11 +161,11 @@ if (sizeof($sql) != 0 ) echo ''; if (count($sql) > 12) { - printf ('...Résultat limité à 12 ...'); + printf ('...'._('Résultat limité à 12').' ...'); } } else { - echo "
  • Non trouvé
"; + echo "
  • "._("Non trouvé")."
"; } ?> diff --git a/html/lang/en_US/LC_MESSAGES/messages.po b/html/lang/en_US/LC_MESSAGES/messages.po index c94734eba..bbfc471f1 100644 --- a/html/lang/en_US/LC_MESSAGES/messages.po +++ b/html/lang/en_US/LC_MESSAGES/messages.po @@ -1,8622 +1,7199 @@ -# Translation file +# NOALYSS # Copyright (C) 2014 -# This file is distributed under the same license as the NOLAYSS package. -# Dany De Bontridder +# This file is distributed under the same license as the NOALYSS package. +# Dany De Bontridder # +# dany, 2014. msgid "" msgstr "" -"Project-Id-Version: NOALYSS 6.8\n" +"Project-Id-Version: NOALYSS 672\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-05-09 01:32+0200\n" -"PO-Revision-Date: 2014-01-04 02:58+0100\n" -"Last-Translator: Dany De Bontridder \n" -"Language-Team: ENGLISH \n" +"POT-Creation-Date: 2014-02-16 12:54+0100\n" +"PO-Revision-Date: 2014-02-21 21:31+0100\n" +"Last-Translator: dany\n" +"Language-Team: American English \n" +"Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 1.4\n" -#: test.php:228 -#: test.php:233 -#: html/test.php:233 -#: html/test.php:193 -#: html/test.php:195 -#: html/test.php:196 -#: html/test.php:204 -#: html/test.php:214 -#: html/test.php:212 -msgid "Bienvenu sur mon site" -msgstr "Welcome on my website" +#: include/template/category_of_card.php:38 +msgid " A moins qu'en créant la fiche, vous forcez un autre poste comptable" +msgstr "Except if you give another accounting item When you create the card" -#: test.php:229 -#: test.php:234 -#: html/test.php:234 -#: html/test.php:194 -#: html/test.php:196 -#: html/test.php:197 -#: html/test.php:205 -#: html/test.php:215 -#: html/test.php:213 -msgid "Essayer de vous y amuser" -msgstr "I hope you will enjoy it" +#: include/class_acc_payment.php:291 +msgid " Acompte à déduire" +msgstr "Deposit to be deducted" -#: test.php:233 -#: test.php:238 -#: html/test.php:238 -#: html/test.php:198 -#: html/test.php:200 -#: html/test.php:201 -#: html/test.php:209 -#: html/test.php:219 -#: html/test.php:217 -msgid "Choississez votre langue" -msgstr "Select your language" +#: html/admin_repo.php:42 +msgid " Administration Globale" +msgstr "Global Parameter" -#: test.php:234 -#: test.php:239 -#: html/test.php:239 -#: include/pref.inc.php:222 -#: html/test.php:199 -#: html/test.php:201 -#: include/pref.inc.php:201 -#: html/test.php:202 -#: html/test.php:210 -#: include/pref.inc.php:197 -#: html/test.php:220 -#: include/pref.inc.php:217 -#: html/test.php:218 -msgid "Français" -msgstr "French" - -#: test.php:235 -#: test.php:240 -#: html/test.php:240 -#: include/pref.inc.php:223 -#: html/test.php:200 -#: html/test.php:202 -#: include/pref.inc.php:202 -#: html/test.php:203 -#: html/test.php:211 -#: include/pref.inc.php:198 -#: html/test.php:221 -#: include/pref.inc.php:218 -#: html/test.php:219 -msgid "Anglais" -msgstr "English" - -#: test.php:236 -#: test.php:241 -#: html/test.php:241 -#: include/pref.inc.php:224 -#: html/test.php:201 -#: html/test.php:203 -#: include/pref.inc.php:203 -#: html/test.php:204 -#: html/test.php:212 -#: include/pref.inc.php:199 -#: html/test.php:222 -#: include/pref.inc.php:219 -#: html/test.php:220 -msgid "Néerlandais" -msgstr "Dutch" - -#: test.php:245 -#: test.php:250 -#: html/test.php:250 -#: html/test.php:210 -#: html/test.php:212 -#: html/test.php:213 -#: html/test.php:221 -#: html/test.php:232 -#: html/test.php:230 -msgid "Change de langue" -msgstr "Change language" - -#: test.php:258 -#: html/test.php:258 -#: html/test.php:218 -#: html/test.php:220 -#: html/test.php:221 -#: html/test.php:229 -#: html/test.php:240 -#: html/test.php:238 -msgid "Fin de programme" -msgstr "End of program" - -#: html/commercial.php:66 -#: html/commercial.php:65 -#: html/commercial.php:70 -#: html/commercial.php:74 -msgid "Vous devez choisir un dossier " -msgstr "You must choose a folder" - -#: html/commercial.php:111 -#: include/user_menu.php:443 -#: include/user_menu.php:442 -#: include/user_menu.php:441 -#: include/user_menu.php:433 -#: include/user_menu.php:444 -#: include/user_menu.php:465 -#: include/menu_translate.php:92 -msgid "Tableau de bord" -msgstr "Dashboard" - -#: html/commercial.php:113 -#: include/class_acc_ledger_sold.php:1083 -#: include/class_acc_ledger_sold.php:555 -#: html/commercial.php:111 -#: include/class_acc_ledger_sold.php:487 -#: include/class_acc_ledger_sold.php:1015 -#: include/class_acc_ledger_sold.php:489 -#: include/class_acc_ledger_sold.php:1030 -#: include/class_acc_ledger_sold.php:490 -#: include/class_acc_ledger_sold.php:1031 -#: include/class_acc_ledger_sold.php:492 -#: include/class_acc_ledger_sold.php:1033 -#: include/class_acc_ledger_sold.php:494 -#: include/class_acc_ledger_sold.php:1035 -#: include/class_acc_ledger_sold.php:547 -#: include/class_acc_ledger_sold.php:1088 -#: include/class_acc_ledger_sold.php:551 -#: include/class_acc_ledger_sold.php:1092 -#: include/class_acc_ledger_sold.php:563 -#: include/class_acc_ledger_sold.php:1108 -#: include/class_acc_ledger_sold.php:570 -#: include/class_acc_ledger_sold.php:1118 -#: html/commercial.php:118 -#: include/class_acc_ledger_sold.php:573 -#: include/class_acc_ledger_sold.php:1137 -#: include/template/ledger_detail_ach.php:21 -#: include/template/ledger_detail_ven.php:21 -#: html/commercial.php:124 -#: include/class_acc_ledger_sold.php:653 -#: include/class_acc_ledger_sold.php:1254 -#: include/template/ledger_detail_ach.php:29 -#: include/template/ledger_detail_ven.php:30 -#: include/class_acc_ledger_sold.php:677 -#: include/class_acc_ledger_sold.php:1314 -#: include/template/ledger_detail_ven.php:38 -#: include/menu_translate.php:85 -msgid "Client" -msgstr "Customer" - -#: html/commercial.php:114 -#: include/compta_ach.inc.php:55 -#: include/class_acc_ledger_purchase.php:947 -#: include/compta_ach.inc.php:59 -#: include/class_acc_ledger_purchase.php:1023 -#: html/commercial.php:112 -#: include/class_acc_ledger_purchase.php:847 -#: include/class_acc_ledger_purchase.php:923 -#: include/class_acc_ledger_purchase.php:861 -#: include/class_acc_ledger_purchase.php:937 -#: include/class_acc_ledger_purchase.php:858 -#: include/class_acc_ledger_purchase.php:934 -#: include/class_acc_ledger_purchase.php:865 -#: include/class_acc_ledger_purchase.php:938 -#: include/class_acc_ledger_purchase.php:943 -#: include/class_acc_ledger_purchase.php:1016 -#: include/class_acc_ledger_purchase.php:948 -#: include/class_acc_ledger_purchase.php:1021 -#: include/class_acc_ledger_purchase.php:969 -#: include/class_acc_ledger_purchase.php:1043 -#: include/class_acc_ledger_purchase.php:1009 -#: include/class_acc_ledger_purchase.php:1088 -#: html/commercial.php:119 -#: include/class_acc_ledger_purchase.php:1095 -#: html/commercial.php:125 -#: include/class_acc_ledger_purchase.php:1192 -#: include/class_acc_ledger_purchase.php:1271 -#: include/class_acc_ledger_purchase.php:1206 -#: include/class_acc_ledger_purchase.php:1282 -#: include/menu_translate.php:50 -#: include/template/ledger_detail_ach.php:38 -msgid "Fournisseur" -msgstr "Supplier" - -#: html/commercial.php:115 -#: html/commercial.php:113 -#: html/commercial.php:120 -#: html/commercial.php:126 -#: include/menu_translate.php:78 -msgid "Administration" -msgstr "Administration" - -#: html/commercial.php:116 -#: include/template/security_list_action.php:98 -#: include/template/security_list_action.php:92 -#: html/commercial.php:114 -#: html/commercial.php:117 -#: include/template/security_list_action.php:91 -#: include/template/security_list_action.php:81 -#: html/commercial.php:122 -#: html/commercial.php:128 -#: include/menu_translate.php:20 -msgid "Stock" -msgstr "Stock" - -#: html/commercial.php:117 -#: include/user_menu.php:193 -#: include/user_menu.php:471 -#: include/client_card.inc.php:70 -#: include/template/detail-action.php:156 -#: include/template/security_list_action.php:58 -#: include/template/security_list_action.php:52 -#: html/commercial.php:115 -#: include/user_menu.php:339 -#: html/commercial.php:118 -#: include/adm_card.inc.php:70 -#: include/supplier_card.inc.php:70 -#: include/user_menu.php:338 -#: include/template/security_list_action.php:51 -#: include/template/security_list_action.php:59 -#: include/impress.inc.php:34 -#: include/action.common.inc.php:265 -#: include/user_menu.php:185 -#: include/template/detail-action.php:160 -#: include/template/detail-action.php:178 -#: include/user_menu.php:195 -#: include/action.common.inc.php:270 -#: include/adm_card.inc.php:62 -#: include/client_card.inc.php:65 -#: include/supplier_card.inc.php:66 -#: include/user_menu.php:197 -#: include/action.common.inc.php:267 -#: include/user_menu.php:196 -#: html/commercial.php:123 -#: include/client_card.inc.php:62 -#: html/commercial.php:129 -#: include/adm_card.inc.php:67 -#: include/supplier_card.inc.php:68 -#: include/user_menu.php:205 -#: include/action.common.inc.php:271 -#: include/category_card.inc.php:64 -#: include/menu_translate.php:19 -#: include/template/form_ledger_fin.php:25 -msgid "Fiche" -msgstr "Card" - -#: html/commercial.php:118 -#: html/commercial.php:116 -#: html/commercial.php:119 -#: html/commercial.php:124 -#: html/commercial.php:130 -msgid "Prevision" -msgstr "Expectation" - -#: html/commercial.php:119 -#: html/commercial.php:117 -#: html/commercial.php:120 -msgid "Suivi Courrier" -msgstr "Follow up" - -#: include/ac_common.php:282 -#: include/ac_common.php:272 -#: include/ac_common.php:273 -#: include/ac_common.php:270 -#: include/ac_common.php:280 -#: include/ac_common.php:356 -#: include/ac_common.php:398 -msgid "Cette action ne vous est pas autorisée Contactez votre responsable" -msgstr "This action is not allowed, please contact your administrator" - -#: include/class_user.php:45 -#: include/class_user.php:49 -#: include/class_user.php:52 -msgid "Session expirée
Utilisateur déconnecté" -msgstr "Session expired
User disconnected" - -#: include/class_user.php:153 -#: include/class_user.php:156 -#: include/class_user.php:154 -#: include/class_user.php:169 -#: include/class_user.php:176 -msgid "Utilisateur ou mot de passe incorrect" -msgstr "User or password incorrect" - -#: include/class_user.php:336 -#: include/class_user.php:339 -#: include/class_user.php:337 -#: include/class_user.php:346 -#: include/class_user.php:382 -#: include/class_user.php:406 -msgid "Aucune période trouvéee !!!" -msgstr "No period found" - -#: include/class_user.php:631 -#: include/class_user.php:660 -#: include/class_user.php:664 -#: include/class_user.php:668 -#: include/class_user.php:662 -#: include/class_user.php:672 -#: include/class_user.php:741 -#: include/class_user.php:863 -msgid "Dossier non accessible" -msgstr "Folder not accessible" - -#: include/pref.inc.php:52 -#: include/pref.inc.php:48 -#: include/pref.inc.php:51 -#: include/pref.inc.php:62 -msgid "Mot de passe est modifiée" -msgstr "Password modified" - -#: include/pref.inc.php:61 -#: include/pref.inc.php:57 -#: include/pref.inc.php:62 -#: include/pref.inc.php:95 -msgid "Changez vos préférences" -msgstr "Change your preferences" - -#: include/pref.inc.php:69 -#: include/pref.inc.php:65 -#: include/pref.inc.php:70 -#: include/pref.inc.php:101 -msgid "Options Générales" -msgstr "General paramater" - -#: include/pref.inc.php:100 -#: include/pref.inc.php:96 -#: include/pref.inc.php:106 -#: include/pref.inc.php:113 -msgid "Thème" -msgstr "Theme" - -#: include/pref.inc.php:155 -#: include/pref.inc.php:134 -#: include/pref.inc.php:130 -#: include/pref.inc.php:143 -msgid "Attention cette période est fermée, vous ne pourrez rien modifier dans le module comptable" -msgstr "Caution this period is closed, you won't be able to modify in the accountant module " - -#: include/pref.inc.php:170 -#: include/class_acc_ledger.php:804 -#: include/template/forecast_result.php:21 -#: include/pref.inc.php:149 -#: include/pref.inc.php:145 -#: include/pref.inc.php:159 -#: include/template/forecast_result.php:22 -#: include/menu_translate.php:28 -#: include/pref.inc.php:146 -msgid "Période" -msgstr "Period" - -#: include/pref.inc.php:181 -#: include/pref.inc.php:160 -#: include/pref.inc.php:156 -#: include/pref.inc.php:173 -#: include/pref.inc.php:152 -msgid "Taille des pages" -msgstr "Page size" - -#: include/pref.inc.php:190 -#: include/pref.inc.php:192 -#: include/pref.inc.php:169 -#: include/pref.inc.php:171 -#: include/pref.inc.php:165 -#: include/pref.inc.php:167 -#: include/pref.inc.php:183 -#: include/pref.inc.php:186 -#: include/pref.inc.php:161 -#: include/pref.inc.php:163 -msgid "Illimité" -msgstr "Unlimited" - -#: include/pref.inc.php:205 -#: include/pref.inc.php:184 -#: include/pref.inc.php:180 -#: include/pref.inc.php:200 -msgid "Options pour la page d'accueil" -msgstr "Option for the welcome page" - -#: include/pref.inc.php:206 -#: include/pref.inc.php:185 -#: include/pref.inc.php:181 -#: include/pref.inc.php:201 -msgid "Mini-Rapport : " -msgstr "Mini-Report" - -#: include/pref.inc.php:209 -#: include/pref.inc.php:188 -#: include/pref.inc.php:184 -#: include/pref.inc.php:204 -msgid "Aucun mini rapport" -msgstr "No mini-report" - -#: include/pref.inc.php:215 -#: include/pref.inc.php:194 -#: include/pref.inc.php:190 -#: include/pref.inc.php:210 -msgid "Le mini rapport est un rapport qui s'affiche sur votre page d'accueil" -msgstr "The mini-report " - -#: include/pref.inc.php:220 -#: include/pref.inc.php:199 -#: include/pref.inc.php:195 -#: include/pref.inc.php:215 -msgid "Langue" -msgstr "Language" - -#: include/pref.inc.php:221 -#: include/pref.inc.php:200 -#: include/pref.inc.php:196 -#: include/pref.inc.php:216 -msgid "Selectionnez votre langue" -msgstr "Select your language" - -#: include/pref.inc.php:236 -#: include/pref.inc.php:238 -#: include/pref.inc.php:217 -#: include/pref.inc.php:213 -#: include/pref.inc.php:234 -msgid "Valider" -msgstr "Validate" - -#: include/pref.inc.php:244 -#: include/dossier.inc.php:242 -#: include/dossier.inc.php:268 -#: include/dossier.inc.php:286 -#: include/action.inc.php:34 -#: include/pref.inc.php:246 -#: include/action.inc.php:44 -#: include/pref.inc.php:225 -#: include/pref.inc.php:59 -#: html/ajax_misc.php:205 -#: include/fiche.inc.php:294 -#: include/periode.inc.php:53 -#: html/ajax_misc.php:203 -#: include/dossier.inc.php:240 -#: include/dossier.inc.php:266 -#: include/dossier.inc.php:284 -#: include/fiche.inc.php:297 -#: html/ajax_misc.php:234 -#: include/fiche.inc.php:289 -#: include/pref.inc.php:55 -#: include/pref.inc.php:221 -#: html/ajax_misc.php:266 -#: include/action.inc.php:28 -#: include/dossier.inc.php:269 -#: include/dossier.inc.php:297 -#: include/dossier.inc.php:316 -#: include/fiche.inc.php:307 -#: include/pref.inc.php:58 -#: include/pref.inc.php:242 -#: html/ajax_misc.php:268 -#: include/dossier.inc.php:273 -#: include/dossier.inc.php:301 -#: include/dossier.inc.php:320 -#: include/fiche.inc.php:316 -msgid "Retour" -msgstr "Return" - -#: include/user_menu.php:186 -#: include/user_menu.php:178 -#: include/user_menu.php:188 -#: include/impress.inc.php:33 -#: include/user_menu.php:190 -#: include/user_menu.php:189 -#: include/impress.inc.php:32 -#: include/menu_translate.php:101 -msgid "Grand Livre" -msgstr "Ledger" - -#: include/user_menu.php:186 -#: include/user_menu.php:178 -#: include/user_menu.php:188 -#: include/user_menu.php:190 -#: include/user_menu.php:189 -msgid "Grand livre : toutes les opérations" -msgstr "Ledger : all entries" - -#: include/user_menu.php:187 -#: include/user_menu.php:179 -#: include/class_acc_payment.php:343 -#: include/user_menu.php:189 -#: include/class_acc_payment.php:339 -#: include/user_menu.php:191 -#: include/user_menu.php:190 -#: include/class_acc_payment.php:387 -#: include/menu_translate.php:25 -msgid "Vente" -msgstr "Sale" - -#: include/user_menu.php:187 -#: include/user_menu.php:179 -#: include/user_menu.php:189 -#: include/user_menu.php:191 -#: include/user_menu.php:190 -msgid "Journal de vente / produit" -msgstr "Ledger of sales" - -#: include/user_menu.php:188 -#: include/class_anticipation.php:198 -#: include/class_anticipation.php:192 -#: include/user_menu.php:180 -#: include/user_menu.php:190 -#: include/user_menu.php:192 -#: include/user_menu.php:191 -#: include/class_anticipation.php:285 -#: include/user_menu.php:200 -#: include/class_anticipation.php:293 -msgid "Dépense" -msgstr "Purchase" - -#: include/user_menu.php:188 -#: include/user_menu.php:180 -#: include/user_menu.php:190 -#: include/user_menu.php:192 -#: include/user_menu.php:191 -#: include/user_menu.php:200 -msgid "Journaux de dépense, d'achat" -msgstr "Ledger of purchase" - -#: include/user_menu.php:189 -#: include/user_menu.php:181 -#: include/user_menu.php:191 -#: include/user_menu.php:193 -#: include/user_menu.php:192 -#: include/user_menu.php:201 -#: include/menu_translate.php:72 -msgid "Financier" -msgstr "Financial" - -#: include/user_menu.php:189 -#: include/user_menu.php:181 -#: include/user_menu.php:191 -#: include/user_menu.php:193 -#: include/user_menu.php:192 -#: include/user_menu.php:201 -msgid "Journaux financiers: les banques, la caisse" -msgstr "Financial ledger : bank,.." - -#: include/user_menu.php:190 -#: include/user_menu.php:182 -#: include/user_menu.php:192 -msgid "Ecriture directe" -msgstr "Direct Writing" - -#: include/user_menu.php:190 -#: include/user_menu.php:182 -#: include/user_menu.php:192 -msgid "Ecriture directe dans les journaux" -msgstr "Write directly in a ledger" - -#: include/user_menu.php:192 -#: include/compta_ach.inc.php:54 -#: include/compta_fin.inc.php:54 -#: include/compta_ven.inc.php:53 -#: include/compta_ach.inc.php:58 -#: include/compta_fin.inc.php:58 -#: include/compta_ven.inc.php:57 -#: include/template/security_list_action.php:72 -#: include/template/security_list_action.php:66 -#: html/commercial.php:116 -#: include/template/security_list_action.php:65 -#: include/template/security_list_action.php:73 -#: include/compta_ach.inc.php:60 -#: include/compta_ven.inc.php:59 -#: include/user_menu.php:184 -#: include/user_menu.php:194 -#: include/compta_ach.inc.php:63 -#: include/compta_ven.inc.php:64 -#: include/user_menu.php:196 -#: include/compta_ach.inc.php:73 -#: include/compta_fin.inc.php:70 -#: include/compta_ven.inc.php:74 -#: include/user_menu.php:195 -#: html/commercial.php:121 -#: include/compta_fin.inc.php:60 -#: include/compta_ven.inc.php:65 -#: html/commercial.php:127 -#: include/compta_ach.inc.php:43 -#: include/compta_fin.inc.php:40 -#: include/compta_ven.inc.php:43 -#: include/user_menu.php:204 -#: include/menu_translate.php:104 -#: include/menu_translate.php:106 -msgid "Impression" -msgstr "Print" - -#: include/user_menu.php:193 -#: include/user_menu.php:185 -#: include/user_menu.php:195 -#: include/user_menu.php:197 -#: include/user_menu.php:196 -#: include/user_menu.php:205 -msgid "Ajouter, modifier ou effacer des fiches" -msgstr "Add,modifier or remove card" - -#: include/user_menu.php:194 -#: include/user_menu.php:186 -#: include/user_menu.php:196 -#: include/user_menu.php:199 -#: include/user_menu.php:198 -#: include/user_menu.php:207 -#: include/menu_translate.php:63 -msgid "Avancé" -msgstr "Advanced" - -#: include/user_menu.php:194 -#: include/user_menu.php:186 -#: include/user_menu.php:196 -#: include/user_menu.php:199 -#: include/user_menu.php:198 -#: include/user_menu.php:207 -msgid "Opérations délicates" -msgstr "Advanced operation" - -#: include/user_menu.php:355 -#: include/user_menu.php:223 -#: include/user_menu.php:215 -#: include/user_menu.php:225 -#: include/user_menu.php:228 -#: include/user_menu.php:227 -#: include/user_menu.php:237 -msgid "Ecritures definies" -msgstr "Defined entries" - -#: include/user_menu.php:356 -#: include/user_menu.php:224 -#: include/user_menu.php:216 -#: include/user_menu.php:226 -#: include/user_menu.php:229 -#: include/user_menu.php:228 -#: include/user_menu.php:351 -msgid "Periode" -msgstr "Period" - -#: include/user_menu.php:356 -#: include/user_menu.php:224 -#: include/user_menu.php:216 -#: include/user_menu.php:226 -#: include/user_menu.php:229 -#: include/user_menu.php:228 -#: include/user_menu.php:351 -msgid "Gestion des periodes" -msgstr "Period management" - -#: include/user_menu.php:357 -#: include/user_menu.php:225 -#: include/user_menu.php:217 -#: include/user_menu.php:227 -msgid "Centralise" -msgstr "Centralize" - -#: include/user_menu.php:357 -#: include/user_menu.php:225 -#: include/user_menu.php:217 -#: include/user_menu.php:227 -msgid "Centralisation" -msgstr "Centralization" - -#: include/user_menu.php:359 -#: include/user_menu.php:227 -#: include/user_menu.php:219 -#: include/user_menu.php:229 -#: include/user_menu.php:230 -#: include/user_menu.php:239 -msgid "Gestion des stocks" -msgstr "Stock control" - -#: include/user_menu.php:360 -#: include/user_menu.php:228 -#: include/impress.inc.php:35 -#: include/user_menu.php:220 -#: include/user_menu.php:230 -#: include/impress.inc.php:36 -#: include/user_menu.php:231 -#: include/user_menu.php:240 -#: include/menu_translate.php:99 -msgid "Rapport" -msgstr "Report" - -#: include/user_menu.php:361 -#: include/user_menu.php:229 -#: include/user_menu.php:221 -#: include/user_menu.php:231 -#: include/user_menu.php:232 -#: include/user_menu.php:241 -msgid "Import Banque" -msgstr "Bank import" - -#: include/user_menu.php:361 -#: include/template/form_ledger_fin.php:6 -#: include/user_menu.php:229 -#: include/class_anticipation.php:198 -#: include/class_anticipation.php:192 -#: include/user_menu.php:221 -#: include/user_menu.php:231 -#: include/user_menu.php:232 -#: include/class_anticipation.php:285 -#: include/user_menu.php:241 -#: include/class_anticipation.php:293 -#: include/template/form_ledger_fin.php:9 -msgid "Banque" -msgstr "Bank" - -#: include/user_menu.php:362 -#: include/user_menu.php:230 -#: include/user_menu.php:222 -#: include/user_menu.php:232 -#: include/user_menu.php:233 -#: include/user_menu.php:242 -msgid "Ecriture ouverture" -msgstr "Opening entries" - -#: include/user_menu.php:363 -#: include/user_menu.php:231 -#: include/user_menu.php:223 -#: include/user_menu.php:233 -#: include/user_menu.php:234 -#: include/user_menu.php:243 -msgid "Vérification" -msgstr "Check in" - -#: include/user_menu.php:437 -#: include/user_menu.php:305 -#: include/user_menu.php:297 -#: include/user_menu.php:307 -#: include/user_menu.php:308 -#: include/user_menu.php:323 -#: include/user_menu.php:109 -msgid "Utilisateurs" -msgstr "Users" - -#: include/user_menu.php:437 -#: include/user_menu.php:305 -#: include/user_menu.php:297 -#: include/user_menu.php:307 -#: include/user_menu.php:308 -#: include/user_menu.php:323 -#: include/user_menu.php:109 -msgid "Gestion des utilisateurs" -msgstr "Users managements" - -#: include/user_menu.php:438 -#: include/user_menu.php:306 -#: include/user_menu.php:298 -#: include/user_menu.php:308 -#: include/user_menu.php:309 -#: include/user_menu.php:324 -#: include/user_menu.php:110 -msgid "Dossiers" -msgstr "Folders" - -#: include/user_menu.php:438 -#: include/user_menu.php:306 -#: include/user_menu.php:298 -#: include/user_menu.php:308 -#: include/user_menu.php:309 -#: include/user_menu.php:324 -#: include/user_menu.php:110 -msgid "Gestion des dossiers" -msgstr "Folders managements" - -#: include/user_menu.php:439 -#: include/user_menu.php:307 -#: include/user_menu.php:299 -#: include/user_menu.php:309 -#: include/user_menu.php:310 -#: include/user_menu.php:325 -#: include/user_menu.php:111 -msgid "Modèles" -msgstr "Template" - -#: include/user_menu.php:439 -#: include/user_menu.php:307 -#: include/user_menu.php:299 -#: include/user_menu.php:309 -#: include/user_menu.php:310 -#: include/user_menu.php:325 -#: include/user_menu.php:111 -msgid "Gestion des modèles" -msgstr "Template management" - -#: include/user_menu.php:440 -#: include/user_menu.php:308 -#: include/user_menu.php:300 -#: include/user_menu.php:310 -#: include/user_menu.php:311 -#: include/user_menu.php:326 -#: include/user_menu.php:112 -msgid "Restaure" -msgstr "Restore" - -#: include/user_menu.php:440 -#: include/user_menu.php:308 -#: include/user_menu.php:300 -#: include/user_menu.php:310 -#: include/user_menu.php:311 -#: include/user_menu.php:326 -#: include/user_menu.php:112 -msgid "Restaure une base de données" -msgstr "Restore a folder" - -#: include/user_menu.php:441 -#: include/user_menu.php:575 -#: include/user_menu.php:309 -#: include/user_menu.php:301 -#: include/user_menu.php:311 -#: include/user_menu.php:312 -#: include/user_menu.php:328 -#: include/menu_translate.php:105 -#: include/user_menu.php:114 -msgid "Accueil" -msgstr "Homepage" - -#: include/user_menu.php:442 -#: include/user_menu.php:310 -#: include/user_menu.php:302 -#: include/user_menu.php:312 -#: include/ext_inc.php:17 -#: include/user_menu.php:313 -#: include/menu_translate.php:91 -msgid "Sortie" -msgstr "Logout" - -#: include/user_menu.php:466 -#: include/user_menu.php:334 -#: include/user_menu.php:326 -#: include/user_menu.php:336 -#: include/user_menu.php:337 -#: include/user_menu.php:350 -#: include/menu_translate.php:27 -msgid "Sociétés" -msgstr "Company" - -#: include/user_menu.php:466 -#: include/user_menu.php:334 -#: include/user_menu.php:326 -#: include/user_menu.php:336 -#: include/user_menu.php:337 -#: include/user_menu.php:350 -#: include/menu_translate.php:27 -msgid "Parametre societe" -msgstr "Company parametes" - -#: include/user_menu.php:467 -#: include/user_menu.php:335 -#: include/user_menu.php:327 -#: include/user_menu.php:337 -#: include/user_menu.php:338 -#: include/user_menu.php:352 -#: include/menu_translate.php:17 -msgid "Divers" -msgstr "Miscelleanous" - -#: include/user_menu.php:467 -#: include/user_menu.php:335 -#: include/user_menu.php:327 -#: include/user_menu.php:337 -#: include/user_menu.php:338 -#: include/user_menu.php:352 -msgid "Devise, moyen de paiement" -msgstr "Currency, " - -#: include/user_menu.php:468 -#: include/user_menu.php:336 -#: html/parametre.php:157 -#: html/parametre.php:136 -#: html/parametre.php:135 -#: html/parametre.php:126 -msgid "Tva" -msgstr "VAT" - -#: include/user_menu.php:468 -#: include/user_menu.php:336 -msgid "Taux & poste pour la TVA" -msgstr "Rate and accounting item for VAT" - -#: include/user_menu.php:469 -#: include/user_menu.php:337 -#: include/user_menu.php:336 -#: include/template/forecast-detail.php:8 -#: html/parametre.php:137 -#: html/parametre.php:136 -#: html/parametre.php:127 -#: include/template/ledger_detail_ach.php:157 -#: include/template/ledger_detail_fin.php:71 -#: include/template/ledger_detail_misc.php:56 -#: include/template/ledger_detail_ven.php:159 -#: html/ajax_poste.php:83 -#: include/template/ledger_detail_ach.php:208 -#: include/template/ledger_detail_fin.php:98 -#: include/template/ledger_detail_misc.php:86 -#: include/template/ledger_detail_ven.php:204 -#: include/template/ledger_detail_ach.php:248 -#: include/template/ledger_detail_fin.php:104 -#: include/template/ledger_detail_ven.php:246 -msgid "Poste Comptable" -msgstr "Accounting item" - -#: include/user_menu.php:469 -#: include/user_menu.php:337 -#: include/user_menu.php:336 -#: html/parametre.php:137 -#: html/parametre.php:136 -#: html/parametre.php:127 -msgid "Poste comptable constant" -msgstr "Constant accounting item " - -#: include/user_menu.php:470 -#: include/user_menu.php:338 -#: include/user_menu.php:337 -#: include/user_menu.php:336 -#: include/user_menu.php:328 -#: include/user_menu.php:339 -#: include/user_menu.php:353 -#: include/menu_translate.php:90 -msgid "Plan Comptable" -msgstr "Accounting system" - -#: include/user_menu.php:470 -#: include/user_menu.php:338 -#: include/user_menu.php:337 -#: include/user_menu.php:336 -#: include/user_menu.php:328 -#: include/user_menu.php:339 -#: include/user_menu.php:353 -msgid "Modification du plan comptable" -msgstr "Modification of the accounting system" - -#: include/user_menu.php:471 -#: include/user_menu.php:339 -#: include/user_menu.php:338 -msgid "Modifie les classe de base" -msgstr "Modify the fondamental accounting item" - -#: include/user_menu.php:472 -#: include/user_menu.php:340 -#: include/user_menu.php:339 -#: include/template/extension-sec.php:3 -#: include/user_menu.php:338 -#: include/user_menu.php:330 -#: include/user_menu.php:341 -#: include/user_menu.php:355 -#: include/menu_translate.php:65 -msgid "Sécurité" -msgstr "Security" - -#: include/user_menu.php:472 -#: include/user_menu.php:340 -#: include/user_menu.php:339 -#: include/user_menu.php:338 -#: include/user_menu.php:330 -#: include/user_menu.php:341 -#: include/user_menu.php:355 -msgid "securite" -msgstr "security" - -#: include/user_menu.php:473 -#: include/user_menu.php:341 -#: include/user_menu.php:340 -#: include/user_menu.php:339 -#: include/user_menu.php:331 -#: include/user_menu.php:342 -#: include/user_menu.php:356 -msgid "Ecritures définies" -msgstr "Defined entries" - -#: include/user_menu.php:474 -#: include/class_acc_ledger.php:618 -#: include/user_menu.php:342 -#: include/class_acc_ledger.php:617 -#: include/user_menu.php:341 -#: include/user_menu.php:340 -#: include/user_menu.php:332 -#: include/user_menu.php:343 -#: include/class_acc_ledger.php:507 -#: include/class_acc_ledger.php:695 -#: include/class_acc_ledger.php:729 -#: include/user_menu.php:357 -#: include/class_acc_ledger.php:855 -#: include/menu_translate.php:60 -msgid "Document" -msgstr "Document" - -#: include/user_menu.php:474 -#: include/user_menu.php:342 -#: include/user_menu.php:341 -#: include/user_menu.php:340 -#: include/user_menu.php:332 -#: include/user_menu.php:343 -#: include/user_menu.php:357 -msgid "Facture, lettre de rappel, proposition..." -msgstr "Invoice, delivery, mail..." - -#: include/user_menu.php:475 -#: include/user_menu.php:343 -#: include/user_menu.php:342 -#: include/impress.inc.php:32 -#: include/user_menu.php:341 -#: include/user_menu.php:333 -#: include/user_menu.php:344 -#: include/user_menu.php:358 -msgid "Journaux" -msgstr "Ledgers" - -#: include/user_menu.php:475 -#: include/user_menu.php:343 -#: include/user_menu.php:342 -#: include/user_menu.php:341 -#: include/user_menu.php:333 -#: include/user_menu.php:344 -#: include/user_menu.php:358 -msgid "Creation et modification de journaux" -msgstr "Creation and modification of ledger" - -#: include/user_menu.php:494 -#: include/user_menu.php:362 -#: include/user_menu.php:361 -#: include/user_menu.php:254 -#: include/user_menu.php:360 -#: include/user_menu.php:246 -#: include/user_menu.php:352 -#: include/user_menu.php:256 -#: include/user_menu.php:257 -#: include/user_menu.php:363 -#: include/user_menu.php:266 -#: include/user_menu.php:377 -#: include/class_acc_ledger.php:3106 -#: include/user_menu.php:52 -msgid "Création" -msgstr "Creation" - -#: include/user_menu.php:548 -#: include/user_menu.php:416 -#: include/user_menu.php:415 -#: include/user_menu.php:414 -#: include/user_menu.php:406 -#: include/user_menu.php:417 -#: include/user_menu.php:434 -msgid "Importer CSV" -msgstr "Import CSV" - -#: include/user_menu.php:549 -#: include/user_menu.php:417 -#: include/user_menu.php:416 -#: include/user_menu.php:415 -#: include/user_menu.php:407 -#: include/user_menu.php:418 -#: include/user_menu.php:435 -msgid "Verif CSV" -msgstr "Verif CSV" - -#: include/user_menu.php:550 -#: include/user_menu.php:418 -#: include/user_menu.php:417 -#: include/user_menu.php:416 -#: include/user_menu.php:408 -#: include/user_menu.php:419 -#: include/user_menu.php:436 -msgid "Transfert CSV" -msgstr "CSV Transfert" - -#: include/user_menu.php:576 -#: include/user_menu.php:444 -#: include/user_menu.php:443 -#: include/user_menu.php:442 -#: include/user_menu.php:434 -#: include/user_menu.php:445 -#: include/user_menu.php:466 -msgid "Preference" -msgstr "Preference" - -#: include/user_menu.php:577 -#: include/template/security_list_action.php:81 -#: include/template/security_list_action.php:75 -#: include/user_menu.php:445 -#: include/user_menu.php:444 -#: include/template/security_list_action.php:74 -#: include/template/security_list_action.php:51 -#: include/user_menu.php:443 -#: include/user_menu.php:435 -#: include/user_menu.php:446 -#: include/user_menu.php:467 -#: include/menu_translate.php:95 -msgid "Paramètre" -msgstr "Parameter" - -#: include/user_menu.php:578 -#: include/user_menu.php:446 -#: include/user_menu.php:445 -#: include/user_menu.php:444 -#: include/user_menu.php:436 -#: include/user_menu.php:447 -#: include/user_menu.php:468 -msgid "Autre Dossier" -msgstr "Other folder" - -#: include/user_menu.php:579 -#: html/user_login.php:73 -#: html/user_login.php:74 -#: include/user_menu.php:447 -#: html/user_login.php:82 -#: include/user_menu.php:446 -#: include/user_menu.php:445 -#: include/user_menu.php:437 -#: html/user_login.php:81 -#: html/user_login.php:72 -#: include/user_menu.php:448 -#: html/user_login.php:110 -#: html/user_login.php:118 -#: include/user_menu.php:469 -#: html/user_login.php:120 -msgid "Deconnexion" -msgstr "Disconnect" - -#: include/user_menu.php:581 -#: include/user_menu.php:449 -#: include/user_menu.php:448 -#: include/user_menu.php:447 -#: include/user_menu.php:439 -#: include/user_menu.php:450 -#: include/user_menu.php:471 -msgid "Compta Générale" -msgstr "Accountancy" - -#: include/user_menu.php:582 -#: include/template/security_list_action.php:91 -#: include/template/security_list_action.php:85 -#: include/user_menu.php:450 -#: include/user_menu.php:449 -#: include/template/security_list_action.php:84 -#: include/template/security_list_action.php:98 -#: include/user_menu.php:448 -#: include/user_menu.php:440 -#: include/user_menu.php:451 -#: include/user_menu.php:472 -#: include/menu_translate.php:94 -msgid "Gestion" -msgstr "Management" - -#: include/user_menu.php:583 -#: include/class_acc_ledger_purchase.php:1043 -#: include/class_acc_ledger_sold.php:572 -#: include/class_acc_ledger_purchase.php:943 -#: include/class_acc_ledger_sold.php:504 -#: include/user_menu.php:451 -#: include/class_acc_ledger_purchase.php:957 -#: include/class_acc_ledger_sold.php:506 -#: include/user_menu.php:450 -#: include/class_acc_ledger_purchase.php:954 -#: include/class_acc_ledger_sold.php:507 -#: include/class_acc_ledger_sold.php:509 -#: include/user_menu.php:449 -#: include/class_acc_ledger_purchase.php:958 -#: include/class_acc_ledger_sold.php:511 -#: include/user_menu.php:441 -#: include/class_acc_ledger_purchase.php:1036 -#: include/class_acc_ledger_sold.php:564 -#: include/class_acc_ledger_purchase.php:1041 -#: include/class_acc_ledger_sold.php:568 -#: include/class_acc_ledger_purchase.php:1063 -#: include/class_acc_ledger_sold.php:581 -#: include/user_menu.php:452 -#: include/class_acc_ledger_purchase.php:1108 -#: include/class_acc_ledger_sold.php:588 -#: include/class_acc_ledger.php:1214 -#: include/class_acc_ledger_purchase.php:1122 -#: include/class_acc_ledger_sold.php:597 -#: include/template/ledger_detail_ach.php:73 -#: include/template/ledger_detail_misc.php:66 -#: include/template/ledger_detail_ven.php:72 -#: include/class_acc_ledger.php:1271 -#: include/class_acc_ledger_purchase.php:1302 -#: include/class_acc_ledger_sold.php:679 -#: include/user_menu.php:473 -#: include/template/ledger_detail_ach.php:108 -#: include/template/ledger_detail_misc.php:96 -#: include/template/ledger_detail_ven.php:107 -#: include/class_acc_ledger_fin.php:493 -#: include/class_acc_ledger.php:1394 -#: include/class_acc_ledger_purchase.php:1314 -#: include/class_acc_ledger_sold.php:708 -#: include/template/ledger_detail_ach.php:130 -#: include/template/ledger_detail_fin.php:114 -#: include/template/ledger_detail_ven.php:127 -msgid "Compt. Analytique" -msgstr "Cost Accounting" - -#: include/user_menu.php:584 -#: include/template/security_list_action.php:52 -msgid "Budget" -msgstr "Budget" - -#: include/ac_common.php:288 -#: include/ac_common.php:278 -#: include/ac_common.php:279 -#: include/ac_common.php:276 -#: include/ac_common.php:286 -#: include/ac_common.php:362 -#: include/ac_common.php:404 -msgid " Cette action ne vous est pas autorisée Contactez votre responsable" -msgstr "This action is not authorized contact your administrator" - -#: html/access.php:71 -#: html/access.php:72 -#: html/access.php:73 -#: html/access.php:75 -#: html/access.php:77 -#: html/access.php:85 -#: html/user_login.php:70 -#: html/access.php:90 -#: html/user_login.php:73 -#: html/do.php:105 -msgid "Votre base de données n'est pas à jour" -msgstr "Your database is not updated" - -#: html/access.php:72 -#: html/access.php:73 -#: html/access.php:74 -#: html/access.php:76 -#: html/access.php:78 -#: html/access.php:86 -#: html/user_login.php:71 -#: html/access.php:91 -#: html/user_login.php:74 -#: html/do.php:106 -msgid "cliquez ici pour appliquer le patch" -msgstr "Click here to apply the patch" - -#: html/access.php:102 -msgid "Liste des tâches" -msgstr "Todo list" - -#: html/access.php:109 -#: include/class_acc_ledger.php:498 -#: include/class_acc_ledger.php:1216 -#: include/class_acc_ledger.php:1338 -#: include/template/detail-action.php:15 -#: include/template/form_ledger_detail.php:13 -#: include/template/form_ledger_fin.php:3 -#: include/class_acc_ledger_sold.php:545 -#: include/class_acc_ledger_purchase.php:1013 -#: html/access.php:110 -#: include/class_acc_ledger.php:1142 -#: include/class_acc_ledger.php:1264 -#: include/class_acc_ledger_purchase.php:913 -#: include/class_acc_ledger_sold.php:477 -#: html/access.php:156 -#: include/class_acc_ledger.php:497 -#: include/class_acc_ledger.php:1141 -#: include/class_acc_ledger.php:1263 -#: include/class_acc_ledger_purchase.php:927 -#: include/class_acc_ledger_sold.php:479 -#: include/class_anc_listing.php:73 -#: include/class_acc_ledger_purchase.php:924 -#: include/class_acc_ledger_sold.php:480 -#: include/class_acc_ledger_sold.php:482 -#: include/class_acc_ledger_purchase.php:928 -#: include/class_acc_ledger_sold.php:484 -#: html/access.php:158 -#: include/class_acc_ledger_purchase.php:1006 -#: include/class_acc_ledger_sold.php:537 -#: include/class_fiche.php:1077 -#: include/class_acc_ledger_purchase.php:1011 -#: include/class_acc_ledger_sold.php:541 -#: include/class_fiche.php:1079 -#: include/class_acc_ledger_purchase.php:1033 -#: include/class_acc_ledger_sold.php:553 -#: include/class_fiche.php:1041 -#: include/impress_fiche.inc.php:146 -#: include/template/dashboard.php:36 -#: include/template/letter_all.php:20 -#: include/template/letter_prop.php:23 -#: include/class_acc_ledger.php:387 -#: include/class_acc_ledger.php:1012 -#: include/class_acc_ledger.php:1146 -#: include/class_acc_ledger_purchase.php:1078 -#: include/class_acc_ledger_sold.php:560 -#: include/class_fiche.php:1018 -#: include/impress_fiche.inc.php:145 -#: include/template/dashboard.php:31 -#: include/template/letter_prop.php:22 -#: include/class_acc_ledger.php:577 -#: include/class_acc_ledger.php:1195 -#: include/class_acc_ledger.php:1337 -#: include/class_acc_ledger_purchase.php:1085 -#: include/class_acc_ledger_sold.php:563 -#: include/class_fiche.php:1117 -#: include/impress_fiche.inc.php:193 -#: include/class_acc_ledger.php:606 -#: include/class_acc_ledger.php:1251 -#: include/class_acc_ledger.php:1394 -#: include/class_acc_ledger_purchase.php:1261 -#: include/class_acc_ledger_sold.php:643 -#: include/class_anc_listing.php:82 -#: include/class_fiche.php:1276 -#: include/impress_fiche.inc.php:225 -#: include/template/form_ledger_detail.php:7 -#: include/class_acc_ledger.php:1373 -#: include/class_acc_ledger.php:1551 -#: include/class_acc_ledger_purchase.php:1272 -#: include/class_acc_ledger_sold.php:667 -#: include/class_anc_grandlivre.php:156 -#: include/class_fiche.php:1320 -#: include/export_fiche_balance_csv.php:138 -#: include/impress_fiche.inc.php:288 -#: include/template/dashboard.php:123 -#: include/template/form_ledger_detail.php:10 -#: include/template/form_ledger_fin.php:6 -#: include/template/letter_prop.php:62 -msgid "Date" -msgstr "Date" - -#: html/access.php:110 -#: include/template/detail-action.php:132 -#: html/access.php:111 -#: html/access.php:157 -#: include/template/detail-action.php:136 -#: include/template/detail-action.php:150 -#: html/access.php:159 -#: include/template/dashboard.php:37 -#: include/template/dashboard.php:32 -#: include/template/dashboard.php:124 -msgid "Titre" -msgstr "Title" - -#: html/access.php:111 -#: include/dossier.inc.php:235 -#: include/dossier.inc.php:264 -#: include/class_acc_ledger.php:499 -#: include/class_acc_ledger.php:1217 -#: include/class_acc_ledger.php:1341 -#: include/template/detail-action.php:129 -#: include/template/detail-action.php:157 -#: include/template/form_ledger_detail.php:17 -#: include/class_acc_ledger_sold.php:552 -#: include/class_acc_ledger_purchase.php:1020 -#: html/access.php:112 -#: include/class_acc_ledger.php:1143 -#: include/class_acc_ledger.php:1267 -#: include/class_acc_ledger_purchase.php:920 -#: include/class_acc_ledger_sold.php:484 -#: html/access.php:158 -#: include/class_acc_ledger.php:498 -#: include/class_acc_ledger.php:1142 -#: include/class_acc_ledger.php:1266 -#: include/class_acc_ledger_purchase.php:934 -#: include/class_acc_ledger_sold.php:486 -#: include/class_anc_account.php:266 -#: include/class_anc_listing.php:75 -#: include/class_anc_plan.php:125 -#: include/class_acc_ledger_purchase.php:931 -#: include/class_acc_ledger_sold.php:487 -#: include/class_acc_ledger_sold.php:489 -#: include/class_acc_ledger_purchase.php:935 -#: include/class_acc_ledger_sold.php:491 -#: include/template/detail-action.php:133 -#: include/template/detail-action.php:161 -#: include/template/detail-action.php:179 -#: html/access.php:160 -#: include/class_acc_ledger_purchase.php:1013 -#: include/class_acc_ledger_sold.php:544 -#: include/class_fiche.php:1078 -#: include/class_acc_ledger_purchase.php:1018 -#: include/class_acc_ledger_sold.php:548 -#: include/class_fiche.php:1080 -#: include/class_acc_ledger_purchase.php:1040 -#: include/class_acc_ledger_sold.php:560 -#: include/class_fiche.php:1042 -#: include/template/dashboard.php:38 -#: include/template/letter_all.php:26 -#: include/template/letter_prop.php:29 -#: include/class_acc_ledger.php:388 -#: include/class_acc_ledger.php:1016 -#: include/class_acc_ledger.php:1175 -#: include/class_acc_ledger_purchase.php:1085 -#: include/class_acc_ledger_sold.php:567 -#: include/class_anc_account.php:264 -#: include/class_fiche.php:1019 -#: include/dossier.inc.php:233 -#: include/dossier.inc.php:262 -#: include/param_pcmn.inc.php:55 -#: include/template/dashboard.php:33 -#: include/template/letter_prop.php:28 -#: include/class_acc_ledger.php:578 -#: include/class_fiche.php:1118 -#: include/template/ledger_detail_ach.php:54 -#: include/template/ledger_detail_ven.php:54 -#: include/template/letter_all.php:29 -#: include/class_acc_ledger.php:607 -#: include/class_anc_account.php:278 -#: include/class_anc_listing.php:84 -#: include/class_fiche.php:1279 -#: include/dossier.inc.php:259 -#: include/dossier.inc.php:293 -#: include/template/ledger_detail_ach.php:87 -#: include/template/ledger_detail_ven.php:89 -#: include/class_anc_listing.php:86 -#: include/class_fiche.php:1323 -#: include/dossier.inc.php:263 -#: include/dossier.inc.php:297 -#: include/template/dashboard.php:125 -#: include/template/ledger_detail_ach.php:108 -#: include/template/ledger_detail_ven.php:108 -#: include/template/letter_prop.php:68 -msgid "Description" -msgstr "Description" - -#: html/access.php:115 -#: include/compta_fin.inc.php:161 -#: include/compta_fin.inc.php:165 -#: include/report.inc.php:123 -#: include/report.inc.php:138 -#: html/access.php:116 -#: html/ajax_card.php:271 -#: html/access.php:162 -#: html/ajax_extension.php:117 -#: html/ajax_extension.php:174 -#: html/parametre.php:283 -#: include/payment_middle.inc.php:57 -#: html/ajax_extension.php:111 -#: html/ajax_extension.php:168 -#: html/parametre.php:289 -#: html/access.php:164 -#: include/payment_middle.inc.php:58 -#: html/parametre.php:301 -#: include/template/dashboard.php:42 -#: html/ajax_card.php:270 -#: html/parametre.php:306 -#: include/compta_fin.inc.php:177 -#: include/param_pcmn.inc.php:64 -#: include/report.inc.php:122 -#: include/report.inc.php:137 -#: include/template/dashboard.php:36 -#: html/ajax_card.php:291 -#: html/ajax_extension.php:112 -#: html/ajax_extension.php:169 -#: html/parametre.php:316 -#: include/compta_fin.inc.php:172 -#: include/payment_middle.inc.php:51 -#: include/report.inc.php:109 -#: include/report.inc.php:124 -#: html/ajax_card.php:413 -#: html/ajax_extension.php:121 -#: html/ajax_extension.php:179 -#: html/parametre.php:333 -#: include/compta_fin.inc.php:167 -#: include/report.inc.php:116 -#: include/report.inc.php:131 -#: html/ajax_card.php:417 -#: include/company.inc.php:115 -#: include/compta_fin.inc.php:142 -#: include/payment_middle.inc.php:54 -#: include/report.inc.php:106 -#: include/report.inc.php:121 -#: include/template/dashboard.php:128 -msgid "Sauve" -msgstr "Save" - -#: html/access.php:116 -#: html/access.php:117 -#: html/access.php:163 -#: include/detail_adm.inc.php:68 -#: include/detail_client.inc.php:68 -#: include/detail_supplier.inc.php:68 -#: include/fiche.inc.php:292 -#: include/fiche.inc.php:380 -#: html/access.php:165 -#: include/fiche.inc.php:290 -#: include/fiche.inc.php:378 -#: include/fiche.inc.php:382 -#: include/template/dashboard.php:43 -#: include/fiche.inc.php:385 -#: include/param_pcmn.inc.php:65 -#: include/template/dashboard.php:37 -#: include/fiche.inc.php:377 -#: include/fiche.inc.php:400 -#: include/category_detail.inc.php:68 -#: include/fiche.inc.php:412 -#: include/template/dashboard.php:129 -msgid "Annuler" -msgstr "Cancel" - -#: html/access.php:120 -#: html/access.php:121 -#: html/access.php:167 -#: html/access.php:169 -#: include/payment_middle.inc.php:164 -#: include/cat_document.inc.php:37 -#: include/template/dashboard.php:47 -#: include/template/dashboard.php:45 -#: include/payment_middle.inc.php:157 -#: include/cat_document.inc.php:39 -#: include/payment_middle.inc.php:171 -#: include/template/dashboard.php:31 -msgid "Ajout" -msgstr "Add" - -#: html/access.php:161 -#: html/access.php:162 -#: html/access.php:100 -#: html/access.php:102 -#: include/template/dashboard.php:92 -#: include/template/dashboard.php:90 -#: include/template/dashboard.php:79 -msgid "Aucune periode par defaut" -msgstr "There is no default period" - -#: html/access.php:184 -#: html/access.php:185 -#: html/access.php:123 -#: html/access.php:125 -#: include/template/dashboard.php:115 -#: include/template/dashboard.php:113 -#: include/template/dashboard.php:101 -msgid "Aucun rapport défini" -msgstr "No report defined" - -#: html/access.php:185 -#: html/access.php:186 -#: html/access.php:124 -#: html/access.php:126 -#: include/template/dashboard.php:116 -#: include/template/dashboard.php:114 -#: include/template/dashboard.php:102 -msgid "Cliquez ici pour mettre à jour vos préférences" -msgstr "Click here to update your preference" - -#: html/user_login.php:77 -#: html/user_login.php:78 -#: html/user_login.php:86 -#: html/user_login.php:85 -#: html/user_login.php:76 -#: html/user_login.php:114 -#: html/user_login.php:122 -msgid "Bienvenue" -msgstr "Welcome" - -#: html/user_login.php:77 -#: html/user_login.php:78 -#: html/user_login.php:86 -#: html/user_login.php:85 -#: html/user_login.php:76 -#: html/user_login.php:114 -#: html/user_login.php:122 -#: html/user_login.php:124 -msgid "dans NOALYSS" -msgstr "in NOALYSS" - -#: html/user_login.php:83 -#: html/user_login.php:84 -#: html/user_login.php:92 -#: include/class_acc_ledger_fin.php:763 -#: include/class_acc_ledger.php:2176 -#: include/fiche.inc.php:74 -#: include/class_acc_ledger_fin.php:764 -#: html/user_login.php:91 -#: include/class_acc_ledger_fin.php:819 -#: include/class_acc_ledger.php:2195 -#: include/fiche.inc.php:72 -#: include/class_acc_ledger_fin.php:824 -#: include/class_acc_ledger.php:2201 -#: html/user_login.php:82 -#: include/class_acc_ledger_fin.php:823 -#: include/class_acc_ledger.php:2200 -#: include/class_acc_ledger_fin.php:860 -#: include/class_acc_ledger.php:2097 -#: include/fiche.inc.php:70 -#: html/user_login.php:120 -#: include/class_acc_ledger_fin.php:825 -#: include/class_acc_ledger.php:2296 -#: include/fiche.inc.php:60 -#: html/user_login.php:128 -#: include/class_acc_ledger_fin.php:878 -#: include/class_acc_ledger.php:2465 -#: include/fiche.inc.php:62 -#: html/user_login.php:131 -#: include/class_acc_ledger_fin.php:939 -#: include/class_acc_ledger.php:2673 -#: include/fiche.inc.php:66 -msgid "Rechercher" -msgstr "Search" - -#: html/user_login.php:92 -#: html/user_login.php:93 -#: html/user_login.php:101 -#: html/user_login.php:100 -#: html/user_login.php:91 -#: html/user_login.php:129 -#: html/user_login.php:137 -msgid "Donnez une partie du nom du dossier à rechercher" -msgstr "Give the a part of the folder name " - -#: include/user_menu.php:526 -msgid "Immobilisé" -msgstr "Fixed asset" - -#: include/user_menu.php:527 -#: include/user_menu.php:395 -#: include/user_menu.php:394 -#: include/user_menu.php:393 -#: include/user_menu.php:385 -#: include/user_menu.php:396 -#: include/user_menu.php:412 -#: include/user_menu.php:140 -msgid "Actif a un an au plus" -msgstr "Asset of one year max" - -#: include/user_menu.php:528 -#: include/user_menu.php:396 -#: include/user_menu.php:395 -#: include/user_menu.php:394 -#: include/user_menu.php:386 -#: include/user_menu.php:397 -#: include/user_menu.php:413 -#: include/user_menu.php:141 -msgid "Stock et commande" -msgstr "Stock and Order" - -#: include/user_menu.php:529 -#: include/user_menu.php:397 -#: include/user_menu.php:396 -#: include/user_menu.php:395 -#: include/user_menu.php:387 -#: include/user_menu.php:398 -#: include/user_menu.php:414 -#: include/user_menu.php:142 -msgid "Compte tiers" -msgstr "Other account" - -#: include/user_menu.php:530 -#: include/user_menu.php:398 -#: include/user_menu.php:397 -#: include/template/extension-detail.php:39 -#: include/user_menu.php:396 -#: include/user_menu.php:388 -#: include/user_menu.php:399 -#: include/user_menu.php:415 -#: include/user_menu.php:143 -msgid "Actif" -msgstr "Asset" - -#: include/user_menu.php:531 -#: include/user_menu.php:399 -#: include/user_menu.php:398 -#: include/user_menu.php:397 -#: include/user_menu.php:389 -#: include/user_menu.php:400 -#: include/user_menu.php:416 -#: include/user_menu.php:144 -msgid "Charges" -msgstr "Expenses" - -#: include/user_menu.php:532 -#: include/user_menu.php:400 -#: include/user_menu.php:399 -#: include/user_menu.php:398 -#: include/user_menu.php:390 -#: include/user_menu.php:401 -#: include/user_menu.php:417 -#: include/user_menu.php:145 -msgid "Produits" -msgstr "Products" - -#: include/user_menu.php:533 -#: include/user_menu.php:534 -#: include/user_menu.php:401 -#: include/user_menu.php:402 -#: include/user_menu.php:400 -#: include/user_menu.php:399 -#: include/user_menu.php:391 -#: include/user_menu.php:392 -#: include/user_menu.php:403 -#: include/user_menu.php:418 -#: include/user_menu.php:419 -#: include/user_menu.php:146 -#: include/user_menu.php:147 -msgid "Hors Comptabilité" -msgstr "Out of accountancy system" - -#: html/user_login.php:71 -#: html/user_login.php:72 -#: html/user_login.php:80 -msgid "Aide" -msgstr "Help" - -#: html/user_login.php:72 -#: html/user_login.php:73 -#: html/user_login.php:81 -#: html/user_login.php:80 -#: html/user_login.php:71 -#: html/extension.php:71 -#: html/extension.php:87 -#: html/user_login.php:109 -#: html/extension.php:61 -#: html/extension.php:79 -#: html/user_login.php:117 -#: html/user_login.php:119 -#: include/menu_translate.php:70 -msgid "Préférence" -msgstr "Preference" - -#: include/user_menu.php:526 -#: include/user_menu.php:394 -#: include/user_menu.php:393 -#: include/user_menu.php:392 -#: include/user_menu.php:384 -#: include/user_menu.php:395 -#: include/user_menu.php:411 -#: include/user_menu.php:139 -msgid " Immobilisé" -msgstr "Fixed Asset" - -#: include/user.inc.php:81 -#: include/user.inc.php:80 -#: include/user.inc.php:60 -#: include/user.inc.php:75 -msgid "Ajout d'utilisateur" -msgstr "Add users" - -#: include/dossier.inc.php:47 -#: include/dossier.inc.php:50 -msgid "Le nom du dossier est vide" -msgstr "The name is empty" - -#: include/dossier.inc.php:53 -#: include/dossier.inc.php:57 -msgid "Désolé vous devez migrer ce modèle en unicode" -msgstr "Sorry vous have to migrate this template in unicpde" - -#: include/dossier.inc.php:55 -#: include/dossier.inc.php:59 -msgid "le modele " -msgstr "the template" - -#: include/dossier.inc.php:55 -#: include/dossier.inc.php:59 -msgid " doit être migré en unicode." -msgstr " must be migrated in unicode" - -#: include/dossier.inc.php:56 -#: include/dossier.inc.php:60 -msgid "Pour le passer en unicode, faites-en un backup puis restaurez le fichier reçu" -msgstr "To convert it in unicode, do first an backup en restore it" - -#: include/dossier.inc.php:69 +#: include/ext/tva/form_parameter.php:88 msgid "" -"Desole la creation de ce dossier a echoue,\n" -" la cause la plus probable est" -msgstr "" -"Sorry the folder creation failed,\n" -" it is likely due to " +" Autres opérations à l'entrée pour lesquelles la T.V.A. est due par le " +"déclarant " +msgstr "Grid 01: Operations for which the VAT is due (6%)" -#: include/dossier.inc.php:87 -#: include/dossier.inc.php:86 -#: include/dossier.inc.php:95 -msgid " est une année invalide" -msgstr " is an invalid year" - -#: include/dossier.inc.php:104 -#: include/dossier.inc.php:102 -#: include/dossier.inc.php:112 +#: include/dossier.inc.php:111 msgid " Base de donnée " msgstr "Database" -#: include/dossier.inc.php:105 -#: include/dossier.inc.php:310 -#: include/dossier.inc.php:103 -#: include/dossier.inc.php:308 -#: include/dossier.inc.php:113 -#: include/dossier.inc.php:347 -#: include/dossier.inc.php:351 -msgid "est accèdée, déconnectez-vous d'abord" -msgstr "is accessed, disconnect first" +#: include/template/ledger_detail_bottom.php:9 +msgid " Bon de commande" +msgstr "Customer order" -#: include/dossier.inc.php:153 -#: include/dossier.inc.php:151 -#: include/dossier.inc.php:162 -#: include/dossier.inc.php:159 -msgid "Rafraîchir" -msgstr "Refresh" +#: include/fiche.inc.php:176 +msgid " Ces fiches n'ont pas été effacées " +msgstr "These files were not deleted" -#: include/dossier.inc.php:154 -#: include/dossier.inc.php:152 -#: include/dossier.inc.php:163 -#: include/dossier.inc.php:160 -msgid "Ajouter" -msgstr "Add" +#: include/ac_common.php:415 +msgid " Cette action ne vous est pas autorisée Contactez votre responsable" +msgstr "This work is not authorized Contact your administrator" -#: include/dossier.inc.php:183 -#: include/dossier.inc.php:285 -#: include/compta_fin.inc.php:162 -#: include/compta_fin.inc.php:166 -#: include/forecast.inc.php:333 -#: include/class_acc_ledger.php:744 -#: include/class_document_type.php:64 -#: include/class_document_modele.php:66 -#: include/class_acc_ledger.php:633 -#: include/compta_fin.inc.php:178 -#: include/dossier.inc.php:181 -#: include/dossier.inc.php:283 -#: include/compta_fin.inc.php:173 -#: include/forecast.inc.php:312 -#: include/template/ledger_detail_bottom.php:67 -#: include/class_document_modele.php:71 -#: include/class_document_type.php:66 -#: include/compta_fin.inc.php:168 -#: include/dossier.inc.php:201 -#: include/dossier.inc.php:315 -#: include/forecast.inc.php:372 -#: include/template/ledger_detail_bottom.php:71 -#: include/compta_fin.inc.php:143 -#: include/dossier.inc.php:205 -#: include/dossier.inc.php:319 -#: include/forecast.inc.php:363 -#: include/template/ledger_detail_bottom.php:75 -msgid "Effacer" -msgstr "Remove" +#: include/ext/tva/ajax.php:205 +msgid " Code TVA " +msgstr "VAT code" -#: include/dossier.inc.php:185 -#: include/dossier.inc.php:183 -#: include/dossier.inc.php:203 -#: include/dossier.inc.php:207 -msgid "Modifier" -msgstr "Modify" +#: include/user_menu.php:147 +msgid " Hors Bilan" +msgstr "Out Balance Sheet" -#: include/dossier.inc.php:188 -#: include/dossier.inc.php:186 -#: include/dossier.inc.php:206 -#: include/dossier.inc.php:210 -msgid "Backup" -msgstr "Backup" +#: include/user_menu.php:148 +msgid " Immobilisé" +msgstr "Fixed Asset" -#: include/dossier.inc.php:215 -#: include/dossier.inc.php:213 -#: include/dossier.inc.php:235 -#: include/dossier.inc.php:239 -msgid "pas de modèle disponible" -msgstr "No template" +#: include/ext/rapport_avance/include/formulaire.inc.php:46 +msgid " Impossible de sauver" +msgstr "Unable to save" -#: include/dossier.inc.php:233 -#: include/dossier.inc.php:231 -#: include/dossier.inc.php:256 -#: include/dossier.inc.php:260 -msgid "Nom du dossier" -msgstr "Folder name" +#: include/class_acc_ledger_purchase.php:186 +#: include/class_acc_ledger_sold.php:177 +msgid " La TVA " +msgstr "The VAT" -#: include/dossier.inc.php:237 -#: include/dossier.inc.php:235 -#: include/dossier.inc.php:262 -#: include/dossier.inc.php:266 -msgid "Modèle" -msgstr "Template" +#: include/class_acc_payment.php:299 +msgid " Libellé du paiement" +msgstr "Wording of payment" -#: include/dossier.inc.php:240 -#: include/dossier.inc.php:238 -#: include/dossier.inc.php:267 -#: include/dossier.inc.php:271 -msgid "Creation Dossier" -msgstr "Folder Creation" +#: include/ext/rapport_avance/include/declaration.inc.php:57 +msgid " Sauvé " +msgstr "Saved" -#: include/dossier.inc.php:259 -#: include/class_anc_account.php:255 -#: include/class_anc_listing.php:74 -#: include/class_anc_plan.php:124 -#: include/template/extension-detail.php:8 -#: include/template/extension-sec.php:8 -#: include/template/forecast_cat.php:9 -#: include/class_fiche.php:1249 -#: include/class_fiche.php:1251 -#: include/class_document_modele.php:62 -#: include/class_fiche.php:1213 -#: include/class_anc_account.php:253 -#: include/class_fiche.php:1190 -#: include/dossier.inc.php:257 -#: include/class_fiche.php:1303 -#: include/class_anc_account.php:267 -#: include/class_anc_listing.php:83 -#: include/class_document_modele.php:67 -#: include/class_fiche.php:1514 -#: include/dossier.inc.php:288 -#: include/template/forecast_cat.php:12 -#: include/class_fiche.php:1597 -#: include/dossier.inc.php:292 -msgid "Nom" -msgstr "Name" +#: include/class_itva_popup.php:131 +msgid " TVA " +msgstr "VAT" -#: include/dossier.inc.php:267 -#: include/payment_middle.inc.php:93 -#: include/payment_middle.inc.php:128 -#: include/dossier.inc.php:265 -#: include/payment_middle.inc.php:121 -#: include/dossier.inc.php:296 -#: include/payment_middle.inc.php:133 -#: include/dossier.inc.php:300 -#: include/template/list_mod_payment.php:79 -msgid "Modifie" -msgstr "Modify" +#: include/class_acc_ledger.php:107 +msgid " Tous les journaux" +msgstr "All the ledgers" -#: include/dossier.inc.php:283 -#: include/dossier.inc.php:281 -#: include/dossier.inc.php:313 -#: include/dossier.inc.php:317 -msgid "Cochez la case si vous êtes sûr de vouloir effacer ce dossier" -msgstr "Check the box if you are sur to remove this folder" +#: html/ajax_card.php:416 html/ajax_card.php:417 +msgid " d'administration" +msgstr "of administration" -#: include/dossier.inc.php:293 -#: include/dossier.inc.php:291 -#: include/dossier.inc.php:326 -#: include/dossier.inc.php:330 -msgid "Désolé, vous n'avez pas coché la case" -msgstr "Sorry the box is not checked" +#: html/ajax_card.php:408 html/ajax_card.php:409 +msgid " de clients" +msgstr "of customes" -#: include/dossier.inc.php:309 -#: include/dossier.inc.php:307 -#: include/dossier.inc.php:346 -#: include/dossier.inc.php:350 -msgid "Base de donnée " -msgstr "Database" +#: html/ajax_card.php:421 +msgid " de contacts" +msgstr "of contacts" -#: include/dossier.inc.php:280 -#: include/dossier.inc.php:278 -#: include/dossier.inc.php:310 -#: include/dossier.inc.php:314 -msgid "Etes vous sûr et certain de vouloir effacer " -msgstr "Are you sure to remove this folder" +#: html/ajax_card.php:412 html/ajax_card.php:413 +msgid " de fournisseurs" +msgstr "of suppliers" -#: include/dossier.inc.php:300 -#: include/dossier.inc.php:298 -#: include/dossier.inc.php:336 -#: include/dossier.inc.php:340 -msgid "inexistant" -msgstr "inexistent" +#: include/ext/rapport_avance/include/formulaire.inc.php:42 +msgid " dernière sauvegarde " +msgstr "last backup" -#: html/user_login.php:38 -#: html/user_login.php:46 -#: html/user_login.php:37 -msgid "Vous utilisez un navigateur dépassé depuis près de 8 ans!" -msgstr "Your browser is outdated for 8 years!" +#: include/ext/invoicing/include/invoice_send_mail.inc.php:113 +msgid " destinataire " +msgstr "recipient" -#: html/user_login.php:39 -#: html/user_login.php:47 -#: html/user_login.php:38 -msgid "Pour une meilleure expérience web, prenez le temps de mettre votre navigateur à jour" -msgstr "For a better web experience, take the time to update your brower" +#: include/dossier.inc.php:58 +msgid " doit être migré en unicode." +msgstr "must be migrated in unicode" -#: html/user_login.php:79 -#: html/user_login.php:87 -#: html/user_login.php:86 -#: html/user_login.php:77 -#: html/user_login.php:115 -#: html/user_login.php:123 -#: html/user_login.php:129 -msgid "Choississez votre dossier" -msgstr "Select your folder" - -#: include/client_card.inc.php:70 -#: include/adm_card.inc.php:70 -#: include/supplier_card.inc.php:70 -#: include/adm_card.inc.php:62 -#: include/client_card.inc.php:65 -#: include/supplier_card.inc.php:66 -#: include/client_card.inc.php:62 -#: include/adm_card.inc.php:67 -#: include/supplier_card.inc.php:68 -#: include/category_card.inc.php:64 -msgid "Détail de la fiche" -msgstr "Details of the card" - -#: include/client_card.inc.php:71 -#: include/adm_card.inc.php:71 -#: include/supplier_card.inc.php:71 -#: html/commercial.php:120 -#: include/adm_card.inc.php:63 -#: include/client_card.inc.php:66 -#: include/supplier_card.inc.php:67 -#: html/commercial.php:125 -#: include/client_card.inc.php:63 -#: html/commercial.php:131 -#: include/adm_card.inc.php:68 -#: include/supplier_card.inc.php:69 -#: include/category_card.inc.php:65 -#: include/template/security_list_action.php:54 -msgid "Suivi" -msgstr "Follow up" - -#: include/client_card.inc.php:71 -#: include/client_card.inc.php:66 -#: include/client_card.inc.php:63 -msgid "Suivi client, devis, bon de commande, courrier" -msgstr "Follow up, mail, invoice, ordering" - -#: include/client_card.inc.php:72 -#: include/template/detail-action.php:51 -#: include/adm_card.inc.php:72 -#: include/supplier_card.inc.php:72 -#: include/adm_card.inc.php:64 -#: include/client_card.inc.php:67 -#: include/supplier_card.inc.php:68 -#: include/client_card.inc.php:64 -#: include/adm_card.inc.php:69 -#: include/supplier_card.inc.php:70 -#: include/category_card.inc.php:66 -msgid "Contact" -msgstr "Contact" - -#: include/client_card.inc.php:72 -#: include/client_card.inc.php:67 -#: include/client_card.inc.php:64 -msgid "Liste de contacts de ce client" -msgstr "Constact list of this customer" - -#: include/client_card.inc.php:73 -#: include/template/form_ledger_fin.php:17 -#: include/adm_card.inc.php:73 -#: include/supplier_card.inc.php:73 -#: include/adm_card.inc.php:65 -#: include/client_card.inc.php:68 -#: include/supplier_card.inc.php:69 -#: include/client_card.inc.php:65 -#: include/adm_card.inc.php:70 -#: include/supplier_card.inc.php:71 -#: include/category_card.inc.php:67 -#: include/template/form_ledger_fin.php:21 -msgid "Opérations" -msgstr "Entries" - -#: include/client_card.inc.php:73 -#: include/adm_card.inc.php:73 -#: include/supplier_card.inc.php:73 -#: include/adm_card.inc.php:65 -#: include/client_card.inc.php:68 -#: include/supplier_card.inc.php:69 -#: include/client_card.inc.php:65 -#: include/adm_card.inc.php:70 -#: include/supplier_card.inc.php:71 -#: include/category_card.inc.php:67 -msgid "Toutes les opérations" -msgstr "All entries" - -#: include/client_card.inc.php:74 -#: include/adm_card.inc.php:74 -#: include/supplier_card.inc.php:74 -#: include/adm_card.inc.php:66 -#: include/client_card.inc.php:70 -#: include/supplier_card.inc.php:71 -#: include/client_card.inc.php:67 -#: include/adm_card.inc.php:73 -#: include/client_card.inc.php:71 -#: include/action.inc.php:26 -msgid "Retour liste" -msgstr "Return to list" - -#: include/client_card.inc.php:74 -#: include/client_card.inc.php:70 -#: include/client_card.inc.php:67 -#: include/client_card.inc.php:71 -msgid "Retour à la liste des clients" -msgstr "Return to the customers list" - -#: include/client_card.inc.php:116 -#: include/adm_card.inc.php:116 -#: include/supplier_card.inc.php:116 -#: include/adm_card.inc.php:112 -#: include/client_card.inc.php:117 -#: include/supplier_card.inc.php:118 -#: include/adm_card.inc.php:111 -#: include/supplier_card.inc.php:117 -#: include/client_card.inc.php:113 -#: include/adm_card.inc.php:122 -#: include/client_card.inc.php:121 -#: include/supplier_card.inc.php:131 -#: include/category_card.inc.php:126 -msgid "Vous devez aller dans fiche et créer une catégorie pour les contacts" -msgstr "You have to create first a category of card in the card menu" - -#: include/client_card.inc.php:122 -#: include/class_acc_ledger_sold.php:827 -#: include/class_acc_ledger_sold.php:834 -#: include/class_acc_ledger_purchase.php:681 -#: include/class_acc_ledger_purchase.php:688 -#: include/class_acc_ledger_purchase.php:581 -#: include/class_acc_ledger_purchase.php:588 -#: include/class_acc_ledger_sold.php:759 -#: include/class_acc_ledger_sold.php:766 -#: include/client.inc.php:112 -#: include/adm_card.inc.php:122 -#: include/adm.inc.php:118 -#: include/class_acc_ledger_sold.php:761 -#: include/class_acc_ledger_sold.php:768 -#: include/client.inc.php:117 -#: include/supplier_card.inc.php:122 -#: include/supplier.inc.php:117 -#: include/class_acc_ledger_purchase.php:578 -#: include/class_acc_ledger_purchase.php:585 -#: include/class_acc_ledger_sold.php:762 -#: include/class_acc_ledger_sold.php:769 -#: include/class_acc_ledger_sold.php:764 -#: include/class_acc_ledger_sold.php:771 -#: include/class_acc_ledger_fin.php:172 -#: include/class_acc_ledger.php:1240 -#: include/class_acc_ledger_purchase.php:592 -#: include/class_acc_ledger_sold.php:773 -#: include/class_action.php:260 -#: include/class_action.php:261 -#: include/class_acc_ledger_fin.php:192 -#: include/class_acc_ledger_purchase.php:663 -#: include/class_acc_ledger_purchase.php:670 -#: include/class_acc_ledger_sold.php:819 -#: include/class_acc_ledger_sold.php:826 -#: include/class_acc_ledger_fin.php:197 -#: include/class_acc_ledger_purchase.php:668 -#: include/class_acc_ledger_purchase.php:675 -#: include/class_acc_ledger_sold.php:823 -#: include/class_acc_ledger_sold.php:830 -#: include/adm_card.inc.php:118 -#: include/adm.inc.php:130 -#: include/class_acc_ledger_purchase.php:687 -#: include/class_acc_ledger_purchase.php:694 -#: include/class_acc_ledger_sold.php:836 -#: include/class_acc_ledger_sold.php:843 -#: include/client_card.inc.php:123 -#: include/client.inc.php:129 -#: include/supplier_card.inc.php:124 -#: include/supplier.inc.php:128 -#: include/adm_card.inc.php:117 -#: include/adm.inc.php:129 -#: include/class_acc_ledger.php:1118 -#: include/class_acc_ledger_purchase.php:724 -#: include/class_acc_ledger_purchase.php:731 -#: include/class_acc_ledger_sold.php:850 -#: include/client.inc.php:128 -#: include/supplier_card.inc.php:123 -#: include/supplier.inc.php:126 -#: include/class_acc_ledger_fin.php:182 -#: include/class_acc_ledger.php:1315 -#: include/class_acc_ledger_purchase.php:728 -#: include/class_acc_ledger_purchase.php:735 -#: include/class_acc_ledger_sold.php:859 -#: include/class_acc_ledger_sold.php:866 -#: include/client_card.inc.php:119 -#: include/adm_card.inc.php:128 -#: include/class_acc_ledger.php:1379 -#: include/class_acc_ledger_purchase.php:885 -#: include/class_acc_ledger_purchase.php:891 -#: include/class_acc_ledger_sold.php:960 -#: include/class_acc_ledger_sold.php:966 -#: include/class_action.php:265 -#: include/client_card.inc.php:127 -#: include/client.inc.php:127 -#: include/supplier_card.inc.php:137 -#: include/supplier.inc.php:115 -#: include/adm.inc.php:116 -#: include/bank.inc.php:113 -#: include/category_card.inc.php:132 -#: include/class_acc_ledger_fin.php:198 -#: include/class_acc_ledger.php:1528 -#: include/class_acc_ledger_purchase.php:887 -#: include/class_acc_ledger_purchase.php:893 -#: include/class_acc_ledger_sold.php:1008 -#: include/class_acc_ledger_sold.php:1014 -#: include/class_follow_up.php:271 -#: include/client.inc.php:109 -#: include/contact.inc.php:124 -msgid "Créer une nouvelle fiche" -msgstr "Add a new card" - -#: include/class_acc_ledger.php:500 -#: include/class_acc_ledger.php:1224 -#: include/class_acc_ledger.php:1383 -#: include/template/form_ledger_fin.php:22 -#: include/class_acc_ledger.php:1150 -#: include/class_acc_ledger.php:1309 -#: include/class_acc_ledger.php:499 -#: include/class_acc_ledger.php:1149 -#: include/class_acc_ledger.php:1308 -#: include/class_anc_account.php:260 -#: include/class_anc_listing.php:76 -#: include/template/forecast-detail.php:11 -#: include/impress_fiche.inc.php:149 -#: include/template/letter_all.php:29 -#: include/template/letter_prop.php:32 -#: include/class_acc_ledger.php:389 -#: include/class_acc_ledger.php:1023 -#: include/class_acc_ledger.php:1216 -#: include/class_anc_account.php:258 -#: include/impress_fiche.inc.php:148 -#: include/template/letter_prop.php:31 -#: include/class_acc_ledger.php:579 -#: include/class_acc_ledger.php:1206 -#: include/class_acc_ledger.php:1407 -#: include/impress_fiche.inc.php:197 -#: include/template/letter_all.php:32 -#: include/class_acc_ledger.php:608 -#: include/class_acc_ledger.php:1262 -#: include/class_acc_ledger.php:1470 -#: include/class_anc_account.php:272 -#: include/class_anc_listing.php:85 -#: include/impress_fiche.inc.php:229 -#: include/class_acc_ledger.php:1629 -#: include/class_acc_ledger_sold.php:699 -#: include/class_anc_listing.php:89 -#: include/impress_fiche.inc.php:292 -#: include/template/form_ledger_fin.php:27 -#: include/template/letter_prop.php:71 -msgid "Montant" -msgstr "Amount" - -#: include/class_acc_ledger.php:501 -#: include/class_acc_ledger.php:500 -#: include/class_acc_ledger.php:390 -#: include/class_acc_ledger.php:580 -#: include/class_acc_ledger.php:609 -msgid "PJ" -msgstr "Receipt" - -#: include/class_acc_ledger.php:502 -#: include/class_acc_ledger.php:501 -#: include/class_acc_ledger.php:391 -#: include/class_acc_ledger.php:581 -#: include/class_acc_ledger.php:610 -msgid "Ech" -msgstr "Date limit" - -#: include/class_acc_ledger.php:595 -#: include/class_acc_ledger.php:594 -#: include/class_acc_ledger.php:484 -#: include/class_acc_ledger.php:674 -#: include/class_acc_ledger.php:706 -#: include/class_acc_ledger.php:637 -#: include/class_acc_ledger.php:831 -msgid "Aucun enregistrement trouvé" -msgstr "No record found" - -#: include/class_acc_ledger.php:613 -#: include/class_acc_ledger.php:612 -#: include/class_acc_ledger.php:502 -#: include/class_acc_ledger.php:692 -#: include/class_acc_ledger.php:726 -#: include/class_acc_ledger.php:852 -msgid "Payé" -msgstr "Paid" - -#: include/class_acc_ledger.php:615 -#: include/class_acc_ledger.php:614 -#: include/class_acc_ledger.php:504 -#: include/class_acc_ledger.php:694 -#: include/class_acc_ledger.php:728 -#: include/class_acc_ledger.php:657 -#: include/class_acc_ledger.php:854 -msgid "Op. Concernée" -msgstr "Concerned entry" - -#: include/class_acc_ledger.php:617 -#: include/class_acc_ledger.php:616 -#: include/class_acc_ledger.php:506 -msgid "Action" -msgstr "Action" - -#: include/class_acc_ledger.php:1074 -#: include/class_acc_ledger.php:1000 -#: include/class_acc_ledger.php:999 -#: include/class_acc_ledger.php:876 -#: include/class_acc_ledger.php:1056 -#: include/class_acc_ledger.php:1101 -#: include/class_acc_ledger.php:1215 -msgid "Parametres journaux non trouves" -msgstr "Ledger parameters not found" - -#: include/class_acc_ledger.php:1218 -#: include/class_acc_ledger.php:1144 -#: include/class_acc_ledger.php:1143 -#: include/class_acc_ledger.php:1017 -#: include/class_acc_ledger.php:1200 -#: include/class_acc_ledger.php:1256 -#: include/class_acc_ledger.php:1378 -msgid "PJ Num" -msgstr "Receipt #" - -#: include/class_acc_ledger.php:1222 -#: include/class_acc_ledger.php:1148 -#: include/class_acc_ledger.php:1147 -#: include/class_acc_ledger.php:1021 -#: include/class_acc_ledger.php:1204 -#: include/class_acc_ledger.php:1260 -msgid "Quick Code ou" -msgstr "Quick code or" - -#: include/class_acc_ledger.php:1223 -#: include/class_acc_ledger.php:1381 -#: include/class_acc_ledger.php:1149 -#: include/class_acc_ledger.php:1307 -#: include/class_acc_ledger.php:1148 -#: include/class_acc_ledger.php:1306 -#: include/impress.inc.php:33 -#: include/impress.inc.php:34 -#: include/class_acc_ledger.php:1022 -#: include/class_acc_ledger.php:1214 -#: include/class_acc_ledger.php:1205 -#: include/class_acc_ledger.php:1405 -#: include/class_acc_ledger.php:1261 -#: include/class_acc_ledger.php:1468 -#: include/class_acc_ledger.php:1383 -#: include/class_acc_ledger.php:1627 -#: include/class_anc_grandlivre.php:157 -#: include/class_anc_listing.php:83 -#: include/menu_translate.php:24 -#: include/menu_translate.php:98 -msgid "Poste" -msgstr "Account. Item" - -#: include/class_acc_ledger.php:1225 -#: include/class_acc_ledger.php:1384 -#: include/quick_writing.inc.php:112 -#: include/quick_writing.inc.php:116 -#: include/class_acc_ledger.php:1151 -#: include/class_acc_ledger.php:1310 -#: include/class_acc_ledger.php:1150 -#: include/class_acc_ledger.php:1309 -#: include/class_anticipation.php:304 -#: include/class_anticipation.php:298 -#: html/annulation.php:414 -#: include/class_fiche.php:1079 -#: include/class_fiche.php:1081 -#: include/class_fiche.php:1043 -#: html/annulation.php:413 -#: include/class_acc_ledger.php:1024 -#: include/class_acc_ledger.php:1217 -#: include/class_fiche.php:1020 -#: include/quick_writing.inc.php:128 -#: include/class_acc_ledger.php:1207 -#: include/class_acc_ledger.php:1408 -#: include/class_anticipation.php:301 -#: include/class_fiche.php:1119 -#: include/template/ledger_detail_ach.php:160 -#: include/template/ledger_detail_fin.php:74 -#: include/template/ledger_detail_misc.php:59 -#: include/template/ledger_detail_ven.php:162 -#: include/class_acc_ledger.php:1263 -#: include/class_acc_ledger.php:1471 -#: include/class_anticipation.php:408 -#: include/class_fiche.php:1280 -#: include/quick_writing.inc.php:99 -#: include/template/ledger_detail_ach.php:211 -#: include/template/ledger_detail_fin.php:101 -#: include/template/ledger_detail_misc.php:89 -#: include/template/ledger_detail_ven.php:207 -#: include/class_acc_ledger.php:1385 -#: include/class_acc_ledger.php:1630 -#: include/class_anticipation.php:420 -#: include/class_fiche.php:1324 -#: include/export_fiche_balance_csv.php:142 -#: include/operation_ods_new.inc.php:97 -#: include/template/ledger_detail_ach.php:251 -#: include/template/ledger_detail_fin.php:107 -#: include/template/ledger_detail_ven.php:249 -msgid "Débit" -msgstr "Debit" - -#: include/class_acc_ledger.php:1361 -#: include/class_acc_ledger.php:1287 -#: include/class_acc_ledger.php:1286 -#: include/class_acc_ledger.php:1195 -#: include/class_acc_ledger.php:1375 -#: include/template/ledger_detail_ach.php:32 -#: include/template/ledger_detail_fin.php:55 -#: include/template/ledger_detail_misc.php:40 -#: include/template/ledger_detail_ven.php:32 -#: include/class_acc_ledger.php:1438 -#: include/template/ledger_detail_ach.php:42 -#: include/template/ledger_detail_fin.php:58 -#: include/template/ledger_detail_misc.php:47 -#: include/template/ledger_detail_ven.php:43 -#: include/class_acc_ledger.php:1595 -#: include/template/ledger_detail_ach.php:51 -#: include/template/ledger_detail_fin.php:64 -#: include/template/ledger_detail_ven.php:51 -msgid "Pièce" -msgstr "Receipt" - -#: include/class_acc_ledger.php:1382 -#: include/class_acc_ledger.php:1308 -#: include/class_acc_ledger.php:1307 -#: include/payment_middle.inc.php:87 -#: include/template/forecast-detail.php:10 -#: include/payment_middle.inc.php:122 -#: include/template/new_mod_payment.php:7 -#: include/class_acc_account.php:169 -#: include/class_acc_ledger.php:1215 -#: include/class_acc_ledger.php:1199 -#: include/class_acc_ledger.php:1380 -#: include/class_acc_ledger.php:1406 -#: include/class_acc_ledger_purchase.php:1092 -#: include/class_acc_ledger_sold.php:570 -#: include/payment_middle.inc.php:115 -#: include/template/form_ledger_detail.php:17 -#: include/template/ledger_detail_ach.php:40 -#: include/template/ledger_detail_ach.php:159 -#: include/template/ledger_detail_fin.php:43 -#: include/template/ledger_detail_fin.php:73 -#: include/template/ledger_detail_misc.php:28 -#: include/template/ledger_detail_misc.php:58 -#: include/template/ledger_detail_ven.php:40 -#: include/template/ledger_detail_ven.php:161 -#: include/class_acc_account.php:194 -#: include/class_acc_ledger.php:1255 -#: include/class_acc_ledger.php:1443 -#: include/class_acc_ledger.php:1469 -#: include/class_acc_ledger_purchase.php:1268 -#: include/class_acc_ledger_sold.php:650 -#: include/payment_middle.inc.php:126 -#: include/template/form_ledger_detail.php:11 -#: include/template/ledger_detail_ach.php:51 -#: include/template/ledger_detail_ach.php:210 -#: include/template/ledger_detail_fin.php:46 -#: include/template/ledger_detail_fin.php:100 -#: include/template/ledger_detail_misc.php:35 -#: include/template/ledger_detail_misc.php:88 -#: include/template/ledger_detail_ven.php:52 -#: include/template/ledger_detail_ven.php:206 -#: include/class_acc_account.php:188 -#: include/class_acc_ledger.php:1377 -#: include/class_acc_ledger.php:1384 -#: include/class_acc_ledger.php:1602 -#: include/class_acc_ledger.php:1628 -#: include/class_acc_ledger_purchase.php:1279 -#: include/class_acc_ledger_sold.php:674 -#: include/template/form_ledger_detail.php:14 -#: include/template/ledger_detail_ach.php:60 -#: include/template/ledger_detail_ach.php:250 -#: include/template/ledger_detail_fin.php:52 -#: include/template/ledger_detail_fin.php:106 -#: include/template/ledger_detail_ven.php:60 -#: include/template/ledger_detail_ven.php:248 -#: include/template/new_mod_payment.php:16 -#, php-format -msgid "Libellé" -msgstr "Label" - -#: include/class_acc_ledger.php:1526 -#: include/class_acc_ledger.php:1452 -#: include/class_acc_ledger.php:1451 -#: include/class_acc_ledger.php:1457 -msgid "Pas dans la periode active" -msgstr "Not in the active period" - -#: include/class_acc_ledger.php:1545 -#: include/class_acc_ledger.php:1471 -#: include/class_acc_ledger.php:1470 -#: include/class_acc_ledger.php:1476 -#: include/class_acc_ledger.php:1374 -#: include/class_acc_ledger.php:1570 -#: include/class_acc_ledger.php:1648 -#: include/class_acc_ledger.php:1810 -msgid "Vous utilisez le mode strict la dernière operation est la date du " -msgstr "You're using the strict mod and the last entry is on" - -#: include/class_acc_ledger.php:1546 -#: include/class_acc_ledger.php:1472 -#: include/class_acc_ledger.php:1471 -#: include/class_acc_ledger.php:1477 -#: include/class_acc_ledger.php:1375 -#: include/class_acc_ledger.php:1571 -#: include/class_acc_ledger.php:1649 -#: include/class_acc_ledger.php:1811 -msgid "vous ne pouvez pas encoder à une date antérieure" -msgstr "You cannot record to an ealier date" - -#: include/class_acc_ledger.php:1578 -#: include/class_acc_ledger.php:1504 -#: include/class_acc_ledger.php:1503 -#: include/class_acc_ledger.php:1509 -#: include/class_acc_ledger.php:1407 -#: include/class_acc_ledger.php:1603 -#: include/class_acc_ledger.php:1683 -#: include/class_acc_ledger.php:1851 -msgid "Le poste" -msgstr "The accounting item" - -#: include/class_acc_ledger.php:1578 -#: include/class_acc_ledger.php:1504 -#: include/class_acc_ledger.php:1503 -#: include/class_acc_ledger.php:1509 -#: include/class_acc_ledger.php:1407 -#: include/class_acc_ledger.php:1603 -#: include/class_acc_ledger.php:1683 -#: include/class_acc_ledger.php:1851 -msgid "n'est pas dans ce journal" -msgstr "doesn't belong to this ledger" - -#: include/class_acc_ledger.php:1580 -#: include/class_acc_ledger.php:1506 -#: include/class_acc_ledger.php:1505 -#: include/class_acc_ledger.php:1511 -#: include/class_acc_ledger.php:1409 -#: include/class_acc_ledger.php:1605 -msgid "Poste invalide" -msgstr "Invalid Accounting item" - -#: include/class_acc_ledger.php:1582 -#: include/class_acc_ledger.php:1508 -#: include/class_acc_ledger.php:1507 -#: include/class_acc_ledger.php:1513 -#: include/class_acc_ledger.php:1411 -#: include/class_acc_ledger.php:1607 -msgid "Poste Inexistant" -msgstr "Inexistant accouting item" - -#: include/class_acc_ledger.php:1592 -#: include/class_acc_ledger.php:1518 -#: include/class_acc_ledger.php:1515 -#: include/class_acc_ledger.php:1521 -#: include/class_acc_ledger.php:1419 -#: include/class_acc_ledger.php:1615 -#: include/class_acc_ledger.php:1696 -#: include/class_acc_ledger.php:1877 -msgid "Balance incorrecte " -msgstr "wrong balance" - -#: include/class_acc_ledger.php:2254 -#: include/class_acc_ledger.php:2180 -#: include/class_acc_ledger.php:2187 -#: include/class_acc_ledger.php:2206 -#: include/class_acc_ledger.php:2212 -#: include/class_acc_ledger.php:2211 -#: include/class_acc_ledger.php:2108 -#: include/class_acc_ledger.php:2307 -msgid "Afficher recherche" -msgstr "Display search" - -#: include/compta_ach.inc.php:51 -#: include/compta_ach.inc.php:165 -#: include/compta_ach.inc.php:55 -#: include/compta_ach.inc.php:169 -#: include/compta_ach.inc.php:56 -#: include/compta_ach.inc.php:167 -#: include/compta_ach.inc.php:173 -#: include/compta_ach.inc.php:59 -#: include/compta_ach.inc.php:176 -#: include/compta_ach.inc.php:69 -#: include/compta_ach.inc.php:185 -#: include/compta_ach.inc.php:179 -#: include/compta_ach.inc.php:39 -#: include/compta_ach.inc.php:177 -msgid "Nouvelle dépense" -msgstr "New expense" - -#: include/compta_ach.inc.php:51 -#: include/compta_ach.inc.php:55 -#: include/compta_ach.inc.php:56 -#: include/compta_ach.inc.php:59 -#: include/compta_ach.inc.php:69 -#: include/compta_ach.inc.php:39 -#: include/menu_translate.php:2 -msgid "Nouvel achat ou dépense" -msgstr "New purchase" - -#: include/compta_ach.inc.php:52 -#: include/compta_ach.inc.php:56 -#: include/compta_ach.inc.php:57 -#: include/compta_ach.inc.php:60 -#: include/compta_ach.inc.php:70 -#: include/compta_ach.inc.php:40 -msgid "Liste achat" -msgstr "List purchase" - -#: include/compta_ach.inc.php:52 -#: include/compta_ach.inc.php:56 -#: include/compta_ach.inc.php:57 -#: include/compta_ach.inc.php:60 -#: include/compta_ach.inc.php:70 -#: include/compta_ach.inc.php:40 -msgid "Liste des achats" -msgstr "List of purchase" - -#: include/compta_ach.inc.php:53 -#: include/compta_ach.inc.php:57 -#: include/compta_ach.inc.php:58 -#: include/compta_ach.inc.php:61 -#: include/compta_ach.inc.php:71 -#: include/compta_ach.inc.php:41 -msgid "Liste dépenses non payées" -msgstr "List of unpaid purchase" - -#: include/compta_ach.inc.php:53 -#: include/compta_ven.inc.php:52 -#: include/compta_ach.inc.php:57 -#: include/compta_ven.inc.php:56 -#: include/compta_ach.inc.php:58 -#: include/compta_ven.inc.php:57 -#: include/compta_ach.inc.php:61 -#: include/compta_ven.inc.php:62 -#: include/compta_ach.inc.php:71 -#: include/compta_ven.inc.php:72 -#: include/compta_ven.inc.php:63 -#: include/compta_ach.inc.php:41 -#: include/compta_ven.inc.php:41 -msgid "Liste des ventes non payées" -msgstr "List of unpaid sales" - -#: include/compta_ach.inc.php:55 -#: include/compta_ach.inc.php:59 -msgid "Solde des fournisseurs" -msgstr "Supplier account" - -#: include/compta_ach.inc.php:122 -#: include/compta_ven.inc.php:125 -#: include/compta_ach.inc.php:126 -#: include/compta_ven.inc.php:129 -#: include/compta_ven.inc.php:124 -#: include/compta_ach.inc.php:124 -#: include/compta_ven.inc.php:127 -#: include/compta_ach.inc.php:127 -#: include/compta_ven.inc.php:132 -#: include/compta_ach.inc.php:137 -#: include/compta_ven.inc.php:142 -#: include/compta_ven.inc.php:133 -#: include/compta_ach.inc.php:117 -#: include/compta_ven.inc.php:122 -#: include/compta_ach.inc.php:81 -#: include/compta_fin.inc.php:113 -#: include/compta_ven.inc.php:92 -msgid "Enregistrement" -msgstr "Record" - -#: include/compta_ach.inc.php:123 -#: include/compta_fin.inc.php:114 -#: include/compta_ven.inc.php:126 -#: include/compta_ach.inc.php:127 -#: include/compta_fin.inc.php:118 -#: include/compta_ven.inc.php:130 -#: include/compta_ven.inc.php:125 -#: include/compta_ach.inc.php:125 -#: include/compta_ven.inc.php:128 -#: include/compta_ach.inc.php:128 -#: include/compta_ven.inc.php:133 -#: include/compta_ach.inc.php:138 -#: include/compta_fin.inc.php:130 -#: include/compta_ven.inc.php:143 -#: include/compta_fin.inc.php:123 -#: include/compta_ven.inc.php:134 -#: include/compta_ach.inc.php:118 -#: include/compta_fin.inc.php:112 -#: include/compta_ven.inc.php:123 -#: include/compta_ach.inc.php:82 -#: include/compta_fin.inc.php:83 -#: include/compta_ven.inc.php:93 -msgid "Corriger" -msgstr "Correct" - -#: include/compta_ach.inc.php:158 -#: include/compta_ven.inc.php:167 -#: include/compta_ach.inc.php:162 -#: include/compta_ven.inc.php:171 -#: include/compta_ven.inc.php:166 -#: include/anc_od.inc.php:114 -#: include/compta_ach.inc.php:160 -#: include/compta_ven.inc.php:169 -#: include/compta_ach.inc.php:163 -#: include/compta_ven.inc.php:174 -#: include/compta_ach.inc.php:172 -#: include/compta_ven.inc.php:184 -#: html/ajax_ledger.php:329 -#: include/compta_ach.inc.php:165 -#: include/compta_ven.inc.php:177 -#: html/ajax_ledger.php:390 -#: include/anc_od.inc.php:121 -#: include/compta_ach.inc.php:161 -#: include/compta_ven.inc.php:173 -#: html/ajax_ledger.php:447 -#: include/anc_od.inc.php:122 -#: include/compta_ach.inc.php:127 -#: include/compta_ven.inc.php:144 -msgid "Opération sauvée" -msgstr "Entry saved" - -#: include/compta_ach.inc.php:162 -#: include/compta_ven.inc.php:172 -#: include/quick_writing.inc.php:272 -#: include/compta_ach.inc.php:166 -#: include/compta_ven.inc.php:176 -#: include/quick_writing.inc.php:276 -#: include/compta_ven.inc.php:171 -#: include/compta_ach.inc.php:164 -#: include/compta_ven.inc.php:173 -#: include/quick_writing.inc.php:274 -#: include/compta_ach.inc.php:167 -#: include/compta_ven.inc.php:178 -#: include/quick_writing.inc.php:277 -#: include/compta_ach.inc.php:176 -#: include/compta_ven.inc.php:188 -#: include/quick_writing.inc.php:288 -#: include/compta_ach.inc.php:169 -#: include/compta_ven.inc.php:181 -#: include/quick_writing.inc.php:279 -#: include/quick_writing.inc.php:300 -#: include/compta_ach.inc.php:133 -#: include/compta_ods.inc.php:94 -#: include/compta_ven.inc.php:149 -#: include/opening.inc.php:80 -msgid "Attention numéro pièce existante, elle a du être adaptée" -msgstr "Caution, the receipt number already exists and has been changed" - -#: include/compta_ach.inc.php:347 -#: include/compta_ven.inc.php:334 -#: include/compta_ven.inc.php:393 -#: include/compta_ach.inc.php:351 -#: include/compta_ven.inc.php:338 -#: include/compta_ven.inc.php:397 -#: include/class_acc_ledger_purchase.php:657 -#: include/class_acc_ledger_purchase.php:1263 -#: include/class_acc_ledger_sold.php:499 -#: include/class_acc_ledger_sold.php:811 -#: include/class_acc_ledger_purchase.php:1163 -#: include/class_acc_ledger_sold.php:743 -#: include/compta_ven.inc.php:333 -#: include/compta_ven.inc.php:392 -#: include/class_acc_ledger_purchase.php:1177 -#: include/class_acc_ledger_sold.php:745 -#: include/class_acc_ledger_purchase.php:1174 -#: include/class_acc_ledger_sold.php:746 -#: include/class_acc_ledger_sold.php:748 -#: include/compta_ach.inc.php:293 -#: include/compta_ach.inc.php:349 -#: include/compta_ven.inc.php:323 -#: include/compta_ven.inc.php:382 -#: include/class_acc_ledger_purchase.php:1223 -#: include/class_acc_ledger_sold.php:750 -#: include/compta_ach.inc.php:308 -#: include/compta_ach.inc.php:364 -#: include/compta_ven.inc.php:321 -#: include/compta_ven.inc.php:380 -#: include/class_acc_ledger_purchase.php:1278 -#: include/class_acc_ledger_sold.php:803 -#: include/class_acc_ledger_purchase.php:1283 -#: include/class_acc_ledger_sold.php:807 -#: include/class_acc_ledger_purchase.php:1305 -#: include/class_acc_ledger_sold.php:820 -#: include/compta_ach.inc.php:311 -#: include/compta_ach.inc.php:367 -#: include/compta_ven.inc.php:326 -#: include/compta_ven.inc.php:385 -#: include/class_acc_ledger_purchase.php:1350 -#: include/class_acc_ledger_sold.php:827 -#: include/compta_ach.inc.php:317 -#: include/compta_ach.inc.php:373 -#: include/class_acc_ledger_purchase.php:1372 -#: include/class_acc_ledger_sold.php:843 -#: include/compta_ach.inc.php:313 -#: include/compta_ach.inc.php:369 -#: include/compta_ven.inc.php:330 -#: include/compta_ven.inc.php:389 -#: include/class_acc_ledger_purchase.php:1568 -#: include/class_acc_ledger_sold.php:943 -#: include/compta_ach.inc.php:328 -#: include/compta_ach.inc.php:409 -#: include/compta_ven.inc.php:349 -#: include/compta_ven.inc.php:434 -#: include/class_acc_ledger_purchase.php:1598 -#: include/class_acc_ledger_sold.php:991 -#: include/compta_ven.inc.php:329 -#: include/compta_ven.inc.php:415 -#: include/history_operation.inc.php:140 -msgid "Mise à jour paiement" -msgstr "Update payment" - -#: include/compta_fin.inc.php:51 -#: include/compta_fin.inc.php:136 -#: include/compta_fin.inc.php:55 -#: include/compta_fin.inc.php:140 -#: include/compta_fin.inc.php:67 -#: include/compta_fin.inc.php:152 -#: include/compta_fin.inc.php:56 -#: include/compta_fin.inc.php:148 -#: include/compta_fin.inc.php:36 -#: include/compta_fin.inc.php:142 -#: include/menu_translate.php:79 -msgid "Nouvel extrait" -msgstr "new entry" - -#: include/compta_fin.inc.php:51 -#: include/compta_fin.inc.php:55 -#: include/compta_fin.inc.php:67 -#: include/compta_fin.inc.php:56 -#: include/compta_fin.inc.php:36 -msgid "Encodage d'un nouvel extrait" -msgstr "Write an new entry" - -#: include/compta_fin.inc.php:52 -#: include/compta_fin.inc.php:56 -#: include/compta_fin.inc.php:68 -#: include/compta_fin.inc.php:57 -#: include/compta_fin.inc.php:37 -msgid "Liste" -msgstr "List" - -#: include/compta_fin.inc.php:52 -#: include/compta_fin.inc.php:56 -#: include/compta_fin.inc.php:68 -#: include/compta_fin.inc.php:57 -#: include/compta_fin.inc.php:37 -msgid "Liste opération bancaire" -msgstr "List financial entries" - -#: include/compta_fin.inc.php:53 -#: include/compta_fin.inc.php:57 -#: include/class_fiche.php:1253 -#: include/class_fiche.php:1255 -#: include/class_fiche.php:1217 -#: include/class_fiche.php:1194 -#: include/compta_fin.inc.php:69 -#: include/class_fiche.php:1307 -#: include/compta_fin.inc.php:58 -#: include/class_fiche.php:1518 -#: include/compta_fin.inc.php:38 -#: include/class_fiche.php:1601 -msgid "Solde" -msgstr "Balance" - -#: include/compta_fin.inc.php:53 -#: include/compta_fin.inc.php:57 -#: include/compta_fin.inc.php:69 -#: include/compta_fin.inc.php:58 -#: include/compta_fin.inc.php:38 -msgid "Solde des comptes" -msgstr "Balance of accounting system" - -#: include/compta_fin.inc.php:113 -#: include/compta_fin.inc.php:117 -#: include/compta_fin.inc.php:129 -#: include/compta_fin.inc.php:122 -#: include/compta_fin.inc.php:111 -#: include/compta_fin.inc.php:82 -msgid "Confirmer" -msgstr "Confirmed" - -#: include/compta_fin.inc.php:135 -#: include/compta_fin.inc.php:139 -#: include/compta_fin.inc.php:151 -#: include/compta_fin.inc.php:144 -#: include/compta_fin.inc.php:138 -msgid "Opération sauvée" -msgstr "Entry saved" - -#: include/compta_fin.inc.php:160 -#: include/compta_fin.inc.php:164 -#: include/class_acc_ledger_sold.php:1094 -#: include/class_acc_ledger_purchase.php:955 -#: include/class_acc_ledger_purchase.php:855 -#: include/class_acc_ledger_sold.php:1026 -#: include/class_acc_ledger_purchase.php:869 -#: include/class_acc_ledger_sold.php:1041 -#: include/class_acc_ledger_purchase.php:866 -#: include/class_acc_ledger_sold.php:1042 -#: include/class_acc_ledger_sold.php:1044 -#: include/class_acc_ledger_purchase.php:874 -#: include/class_acc_ledger_sold.php:1046 -#: include/class_acc_ledger_purchase.php:952 -#: include/class_acc_ledger_sold.php:1099 -#: include/class_acc_ledger_purchase.php:957 -#: include/class_acc_ledger_sold.php:1103 -#: include/class_acc_ledger_purchase.php:978 -#: include/class_acc_ledger_sold.php:1119 -#: include/class_acc_ledger_purchase.php:1023 -#: include/class_acc_ledger_sold.php:1136 -#: include/compta_fin.inc.php:176 -#: include/class_acc_ledger_purchase.php:1030 -#: include/class_acc_ledger_sold.php:1155 -#: include/compta_fin.inc.php:171 -#: include/class_acc_ledger_purchase.php:1201 -#: include/class_acc_ledger_sold.php:1267 -#: include/compta_fin.inc.php:166 -#: include/class_acc_ledger_purchase.php:1215 -#: include/class_acc_ledger_sold.php:1327 -#: include/compta_fin.inc.php:141 -msgid "Ajout article" -msgstr "Add item" - -#: include/compta_ven.inc.php:50 -#: include/compta_ven.inc.php:201 -#: include/compta_ven.inc.php:54 -#: include/compta_ven.inc.php:205 -#: include/compta_ven.inc.php:200 -#: include/compta_ven.inc.php:55 -#: include/compta_ven.inc.php:190 -#: include/compta_ven.inc.php:183 -#: include/compta_ven.inc.php:60 -#: include/compta_ven.inc.php:188 -#: include/compta_ven.inc.php:70 -#: include/compta_ven.inc.php:198 -#: include/compta_ven.inc.php:61 -#: include/compta_ven.inc.php:195 -#: include/compta_ven.inc.php:39 -#: include/compta_ven.inc.php:196 -msgid "Nouvelle vente" -msgstr "New sale" - -#: include/compta_ven.inc.php:51 -#: include/compta_ven.inc.php:55 -#: include/compta_ven.inc.php:56 -#: include/compta_ven.inc.php:61 -#: include/compta_ven.inc.php:71 -#: include/compta_ven.inc.php:62 -#: include/compta_ven.inc.php:40 -msgid "Liste ventes" -msgstr "List Sales" - -#: include/compta_ven.inc.php:51 -#: include/compta_ven.inc.php:55 -#: include/compta_ven.inc.php:56 -#: include/compta_ven.inc.php:61 -#: include/compta_ven.inc.php:71 -#: include/compta_ven.inc.php:62 -#: include/compta_ven.inc.php:40 -msgid "Liste des ventes" -msgstr "List sales" - -#: include/compta_ven.inc.php:52 -#: include/compta_ven.inc.php:56 -#: include/compta_ven.inc.php:57 -#: include/compta_ven.inc.php:62 -#: include/compta_ven.inc.php:72 -#: include/compta_ven.inc.php:63 -#: include/compta_ven.inc.php:41 -msgid "Liste vente non payées" -msgstr "List unpaid sales" - -#: include/compta_ven.inc.php:54 -#: include/compta_ven.inc.php:58 -#: include/compta_ven.inc.php:63 -#: include/compta_ven.inc.php:73 -#: include/compta_ven.inc.php:64 -#: include/compta_ven.inc.php:42 -msgid "Clients" -msgstr "Customers" - -#: include/compta_ven.inc.php:54 -#: include/compta_ven.inc.php:58 -msgid "Solde des clients" -msgstr "Customer balance" - -#: include/compta_ven.inc.php:122 -#: include/compta_ven.inc.php:126 -#: include/compta_ven.inc.php:121 -#: include/compta_ven.inc.php:124 -#: include/compta_ven.inc.php:129 -#: include/compta_ven.inc.php:139 -#: include/compta_ven.inc.php:130 -msgid "Sauvez cette opération comme modèle ?" -msgstr "Save this entry as template" - -#: include/quick_writing.inc.php:62 -#: include/quick_writing.inc.php:66 -#: include/quick_writing.inc.php:78 -#: include/quick_writing.inc.php:49 -msgid "Encoder une Operation" -msgstr "Write an entry" - -#: include/quick_writing.inc.php:63 -#: include/quick_writing.inc.php:67 -#: include/quick_writing.inc.php:79 -#: include/quick_writing.inc.php:50 -msgid "Encoder une operation dans ce journal" -msgstr "Write an entry in this ledger" - -#: include/quick_writing.inc.php:64 -#: include/quick_writing.inc.php:68 -#: include/quick_writing.inc.php:80 -#: include/quick_writing.inc.php:51 -msgid "Voir Operation" -msgstr "See entries" - -#: include/quick_writing.inc.php:65 -#: include/quick_writing.inc.php:69 -#: include/quick_writing.inc.php:81 -#: include/quick_writing.inc.php:52 -msgid "Voir les operations de ce journal" -msgstr "See entries of this ledger" - -#: include/quick_writing.inc.php:67 -#: include/quick_writing.inc.php:71 -#: include/quick_writing.inc.php:83 -#: include/quick_writing.inc.php:54 -msgid "Autre journal" -msgstr "other ledger" - -#: include/quick_writing.inc.php:68 -#: include/quick_writing.inc.php:72 -#: include/quick_writing.inc.php:84 -#: include/quick_writing.inc.php:55 -msgid "Choisir un autre journal" -msgstr "Choose another ledger" - -#: include/quick_writing.inc.php:93 -#: include/quick_writing.inc.php:97 -#: include/quick_writing.inc.php:109 -#: include/quick_writing.inc.php:80 -msgid "Utilisez une operation " -msgstr "Use an operation" - -#: include/quick_writing.inc.php:108 -#: include/quick_writing.inc.php:112 -#: include/quick_writing.inc.php:124 -#: include/quick_writing.inc.php:95 -#: include/operation_ods_new.inc.php:91 -msgid "Ajout d'une ligne" -msgstr "Add a row" - -#: include/quick_writing.inc.php:110 -#: include/fiche.inc.php:114 -#: include/quick_writing.inc.php:114 -#: include/fiche.inc.php:112 -#: include/quick_writing.inc.php:126 -#: include/fiche.inc.php:104 -#: include/fiche.inc.php:109 -#: include/quick_writing.inc.php:97 -#: include/fiche.inc.php:117 -#: include/operation_ods_new.inc.php:93 -msgid "Sauvez" -msgstr "Save" - -#: include/quick_writing.inc.php:113 -#: include/quick_writing.inc.php:117 -#: include/class_anticipation.php:305 -#: include/class_anticipation.php:299 -#: html/annulation.php:429 -#: include/class_fiche.php:1080 -#: include/class_fiche.php:1082 -#: include/class_fiche.php:1044 -#: html/annulation.php:428 -#: include/class_fiche.php:1021 -#: include/quick_writing.inc.php:129 -#: include/class_anticipation.php:302 -#: include/class_fiche.php:1120 -#: include/template/ledger_detail_ach.php:161 -#: include/template/ledger_detail_fin.php:75 -#: include/template/ledger_detail_misc.php:60 -#: include/template/ledger_detail_ven.php:163 -#: include/class_anticipation.php:409 -#: include/class_fiche.php:1281 -#: include/quick_writing.inc.php:100 -#: include/template/ledger_detail_ach.php:212 -#: include/template/ledger_detail_fin.php:102 -#: include/template/ledger_detail_misc.php:90 -#: include/template/ledger_detail_ven.php:208 -#: include/class_acc_ledger.php:1386 -#: include/class_anticipation.php:421 -#: include/class_fiche.php:1325 -#: include/operation_ods_new.inc.php:98 -#: include/template/ledger_detail_ach.php:252 -#: include/template/ledger_detail_fin.php:108 -#: include/template/ledger_detail_ven.php:250 -msgid "Crédit" -msgstr "Credit" - -#: include/quick_writing.inc.php:114 -#: include/quick_writing.inc.php:118 -#: include/quick_writing.inc.php:130 -#: include/quick_writing.inc.php:101 -#: include/operation_ods_new.inc.php:99 -msgid "Difference" -msgstr "Difference" - -#: include/quick_writing.inc.php:140 -#: include/quick_writing.inc.php:144 -#: include/quick_writing.inc.php:145 -#: include/quick_writing.inc.php:156 -#: include/quick_writing.inc.php:128 -msgid "Choix du journal" -msgstr "Ledgers" - -#: include/quick_writing.inc.php:146 -#: include/quick_writing.inc.php:150 -#: include/quick_writing.inc.php:151 -#: include/quick_writing.inc.php:162 -#: include/quick_writing.inc.php:135 -msgid "" -"L'acces a ce journal est interdit, \n" -" contactez votre responsable" -msgstr "" -"You are not allowed to access this ledger,\n" -" contact your administrator" - -#: include/quick_writing.inc.php:150 -#: include/quick_writing.inc.php:154 -#: include/template/form_ledger_detail.php:15 -#: include/class_acc_ledger_sold.php:549 -#: include/class_acc_ledger_purchase.php:1017 -#: include/class_acc_ledger_purchase.php:917 -#: include/class_acc_ledger_sold.php:481 -#: include/import_inc.php:139 -#: include/import_inc.php:402 -#: include/class_acc_ledger_purchase.php:931 -#: include/class_acc_ledger_sold.php:483 -#: include/class_acc_ledger_purchase.php:928 -#: include/class_acc_ledger_sold.php:484 -#: include/class_acc_ledger_sold.php:486 -#: include/class_acc_ledger_purchase.php:932 -#: include/class_acc_ledger_sold.php:488 -#: include/class_acc_ledger_purchase.php:1010 -#: include/class_acc_ledger_sold.php:541 -#: include/class_acc_ledger_purchase.php:1015 -#: include/class_acc_ledger_sold.php:545 -#: include/class_acc_ledger_purchase.php:1037 -#: include/class_acc_ledger_sold.php:557 -#: include/import_inc.php:400 -#: include/quick_writing.inc.php:156 -#: include/class_acc_ledger_purchase.php:1082 -#: include/class_acc_ledger_sold.php:564 -#: include/import_inc.php:396 -#: include/quick_writing.inc.php:167 -#: include/class_acc_ledger_purchase.php:1089 -#: include/class_acc_ledger_sold.php:567 -#: include/import_inc.php:142 -#: include/import_inc.php:401 -#: include/class_acc_ledger_purchase.php:1265 -#: include/class_acc_ledger_sold.php:647 -#: include/import_inc.php:131 -#: include/quick_writing.inc.php:140 -#: include/template/form_ledger_detail.php:9 -#: include/class_acc_ledger_purchase.php:1276 -#: include/class_acc_ledger_sold.php:671 -#: include/template/form_ledger_detail.php:12 -msgid "Journal" -msgstr "Ledger" - -#: include/quick_writing.inc.php:201 -#: include/quick_writing.inc.php:205 -#: include/quick_writing.inc.php:203 -#: include/quick_writing.inc.php:206 -#: include/quick_writing.inc.php:217 -#: include/quick_writing.inc.php:209 -msgid "Vous ne pouvez pas accèder à ce journal, contactez votre responsable" -msgstr "You are not allowed to access this ledger, contact your administrator" - -#: include/quick_writing.inc.php:211 -#: include/quick_writing.inc.php:215 -#: include/quick_writing.inc.php:213 -#: include/quick_writing.inc.php:216 -#: include/quick_writing.inc.php:227 -#: include/quick_writing.inc.php:222 -msgid "Désolé mais cette periode est fermee pour ce journal" -msgstr "Sorry but this period is closed" - -#: include/quick_writing.inc.php:275 -#: include/quick_writing.inc.php:279 -#: include/quick_writing.inc.php:277 -#: include/quick_writing.inc.php:280 -#: include/quick_writing.inc.php:291 -#: include/quick_writing.inc.php:284 -#: include/quick_writing.inc.php:305 -msgid "Autre opération dans ce journal" -msgstr "Other entry in this ledger" - -#: html/ajax_card.php:158 -msgid "Fiche contenant " -msgstr "Card containing" - -#: html/ajax_card.php:160 -#: html/ajax_card.php:164 -#: include/class_acc_ledger_purchase.php:616 -#: html/ajax_card.php:175 -#: include/class_acc_payment.php:250 -#: include/user_menu.php:255 -#: include/user_menu.php:476 -#: html/ajax_card.php:173 -#: include/user_menu.php:475 -#: html/ajax_poste.php:75 -#: html/search_ca.php:48 -#: html/search_ca.php:56 -#: include/class_anc_balance_double.php:280 -#: include/quick_writing.inc.php:177 -#: include/user_menu.php:247 -#: include/user_menu.php:467 -#: include/class_acc_payment.php:263 -#: include/user_menu.php:257 -#: include/user_menu.php:477 -#: include/class_anc_print.php:129 -#: html/recherche.php:71 -#: include/client.inc.php:97 -#: include/adm.inc.php:98 -#: include/supplier.inc.php:97 -#: include/class_anc_balance_double.php:287 -#: include/impress_fiche.inc.php:73 -#: include/lettering.account.inc.php:93 -#: include/lettering.card.inc.php:100 -#: include/lettering.card.php:93 -#: include/lettering.gestion.inc.php:48 -#: include/quick_writing.inc.php:180 -#: include/supplier.inc.php:98 -#: include/user_menu.php:258 -#: include/user_menu.php:478 -#: html/ajax_card.php:172 -#: html/recherche.php:68 -#: include/adm.inc.php:97 -#: include/class_anc_print.php:128 -#: include/client.inc.php:96 -#: include/lettering.account.inc.php:91 -#: include/lettering.card.inc.php:99 -#: include/lettering.gestion.inc.php:47 -#: include/quick_writing.inc.php:191 -#: include/supplier.inc.php:96 -#: html/ajax_card.php:193 -#: include/impress_fiche.inc.php:74 -#: html/ajax_card.php:309 -#: html/ajax_poste.php:78 -#: html/recherche.php:62 -#: html/search_ca.php:49 -#: html/search_ca.php:57 -#: include/adm.inc.php:85 -#: include/class_acc_payment.php:303 -#: include/class_anc_balance_double.php:299 -#: include/class_anc_print.php:133 -#: include/client.inc.php:90 -#: include/lettering.account.inc.php:83 -#: include/lettering.card.inc.php:86 -#: include/quick_writing.inc.php:167 -#: include/supplier.inc.php:78 -#: include/user_menu.php:267 -#: include/user_menu.php:506 -#: html/ajax_card.php:318 -#: html/ajax_poste.php:80 -#: html/recherche.php:64 -#: include/adm.inc.php:80 -#: include/ajax_anc_search.php:45 -#: include/ajax_anc_search.php:56 -#: include/bank.inc.php:74 -#: include/class_anc_balance_double.php:331 -#: include/class_anc_print.php:134 -#: include/client.inc.php:73 -#: include/contact.inc.php:73 -#: include/impress_fiche.inc.php:80 -#: include/lettering.account.inc.php:84 -#: include/lettering.card.inc.php:87 -#: include/menu_translate.php:16 -#: include/search.inc.php:73 -#: include/user_menu.php:53 -#: include/menu_translate.php:82 -#, php-format -msgid "Recherche" -msgstr "Search" - -#: include/class_fiche_def.php:190 -msgid "Vous devez choisir une catgorie" -msgstr "You must use a category" - -#: include/class_fiche_def.php:409 -#: include/class_fiche_def.php:413 -#: include/class_fiche_def.php:407 -#: include/class_fiche_def.php:405 -#: include/class_fiche_def.php:403 -#: include/class_fiche_def.php:408 -#: include/class_fiche_def.php:423 -#: include/class_fiche_def.php:429 -msgid "Label" -msgstr "Label" - -#: include/class_fiche_def.php:418 -#: include/class_fiche_def.php:422 -#: include/class_fiche_def.php:416 -#: include/class_fiche_def.php:414 -#: include/class_fiche_def.php:412 -#: include/class_fiche_def.php:417 -#: include/class_fiche_def.php:432 -#: include/class_fiche_def.php:438 -msgid "Poste Comptable de base" -msgstr "Accounting item of base" - -#: include/class_fiche_def.php:424 -#: include/class_fiche_def.php:428 -#: include/class_fiche_def.php:422 -#: include/class_fiche_def.php:420 -#: include/class_fiche_def.php:418 -#: include/class_fiche_def.php:423 -#: include/class_fiche_def.php:438 -#: include/class_fiche_def.php:444 -msgid "Chaque fiche aura automatiquement son propre poste comptable : " -msgstr "Each card will automatically have his own accounting item" - -#: include/compta_ach.inc.php:45 -#: include/compta_fin.inc.php:47 -#: include/compta_ven.inc.php:43 -#: include/quick_writing.inc.php:54 -#: html/user_advanced.php:57 -#: include/impress_poste.inc.php:51 -#: include/report.inc.php:53 -#: include/import_inc.php:48 -#: html/recherche.php:45 -#: include/action.inc.php:38 -#: include/adm.inc.php:50 -#: include/client.inc.php:49 -#: include/compta_ven.inc.php:45 -#: include/forecast.inc.php:229 -#: include/forecast.inc.php:302 -#: include/supplier.inc.php:49 -#: include/user_action_gl.php:44 -#: include/lettering.card.inc.php:39 -#: html/user_advanced.php:56 -#: include/adm.inc.php:49 -#: include/client.inc.php:48 -#: include/compta_fin.inc.php:51 -#: include/supplier.inc.php:48 -#: include/action.inc.php:28 -#: include/compta_ach.inc.php:35 -#: include/compta_fin.inc.php:40 -#: include/compta_ven.inc.php:36 -#: include/forecast.inc.php:218 -#: include/forecast.inc.php:281 -#: include/impress_poste.inc.php:42 -#: include/param_jrn_add.inc.php:35 -#: include/param_jrn_detail.inc.php:34 -#: include/quick_writing.inc.php:42 -#: include/report.inc.php:40 -#: include/user_action_gl.php:35 -#: html/ajax_card.php:302 -#: html/user_advanced.php:48 -#: include/client.inc.php:41 -#: include/forecast.inc.php:272 -#: include/forecast.inc.php:339 -#: html/ajax_card.php:311 -#: include/forecast.inc.php:264 -#: include/forecast.inc.php:329 -#: include/impress_poste.inc.php:43 -msgid "Recherche de fiche" -msgstr "Search Card" - -#: include/fiche_def.inc.php:63 -#: include/fiche_def.inc.php:64 -#: include/fiche_def.inc.php:65 -msgid "Voulez-vous modifier ?" -msgstr "Do you want to modify" - -#: include/fiche_def.inc.php:65 -#: include/fiche_def.inc.php:66 -#: include/fiche_def.inc.php:67 -msgid "Attention, ne changer pas la signification de ce poste." -msgstr "Warning, do not change the meaning of this accounting item" - -#: include/fiche_def.inc.php:66 -#: include/fiche_def.inc.php:67 -#: include/fiche_def.inc.php:68 -msgid "par exemple ne pas changer Client par fournisseur" -msgstr "For example, do not change customer by supplier" - -#: include/fiche_def.inc.php:67 -#: include/fiche_def.inc.php:68 -msgid "sinon le programme fonctionnera mal, " -msgstr "Otherwise the programm may have misfunctions" - -#: include/fiche.inc.php:106 -#: include/forecast.inc.php:239 -#: include/forecast.inc.php:254 -#: include/forecast.inc.php:274 -#: include/forecast.inc.php:312 -#: include/fiche.inc.php:104 -#: html/ajax_misc.php:334 -#: html/ajax_misc.php:330 -#: include/fiche.inc.php:103 -#: html/ajax_misc.php:364 -#: include/fiche.inc.php:93 -#: include/forecast.inc.php:228 -#: include/forecast.inc.php:243 -#: include/forecast.inc.php:263 -#: include/forecast.inc.php:291 -#: include/template/ledger_detail_bottom.php:62 -#: html/ajax_misc.php:428 -#: include/fiche.inc.php:98 -#: include/forecast.inc.php:282 -#: include/forecast.inc.php:298 -#: include/forecast.inc.php:319 -#: include/forecast.inc.php:349 -#: include/forecast.inc.php:392 -#: html/ajax_misc.php:449 -#: include/forecast.inc.php:289 -#: include/forecast.inc.php:309 -#: include/forecast.inc.php:339 -#: include/forecast.inc.php:382 -#: include/template/ledger_detail_bottom.php:66 -msgid "Sauver" -msgstr "Save" - -#: include/fiche.inc.php:113 -#: include/fiche.inc.php:111 -#: include/fiche.inc.php:103 -#: include/fiche.inc.php:108 -#: include/fiche.inc.php:116 -msgid "Ajoutez cet élément" -msgstr "Add this item" - -#: include/fiche.inc.php:115 -#: include/fiche.inc.php:113 -#: include/fiche.inc.php:105 -#: include/fiche.inc.php:110 -#: include/fiche.inc.php:118 -msgid "Effacer cette catégorie" -msgstr "Remove this categorie" - -#: include/fiche.inc.php:115 -#: include/fiche.inc.php:113 -#: include/fiche.inc.php:292 -#: include/fiche.inc.php:105 -#: include/fiche.inc.php:284 -#: include/fiche.inc.php:110 -#: include/fiche.inc.php:301 -#: include/fiche.inc.php:118 -#: include/fiche.inc.php:310 -msgid "Vous confirmez ?" -msgstr "Do you confirm ?" - -#: include/fiche.inc.php:118 -#: include/fiche.inc.php:116 -#: include/fiche.inc.php:108 -#: include/fiche.inc.php:114 -#: include/fiche.inc.php:122 -msgid "Enleve les éléments cochés" -msgstr "Remove the checked items" - -#: include/fiche.inc.php:121 -#: include/fiche.inc.php:119 -#: include/fiche.inc.php:111 -msgid "" -"Attention : il n'y aura pas de demande de confirmation pour enlever les \n" -"attributs sélectionnés. Il ne sera pas possible de revenir en arrière" -msgstr "" -"Warning : there is no confirmation to remove the selected attributes. \n" -"It won't be possible to get back" - -#: include/fiche.inc.php:215 -#: include/template/security_list_action.php:4 -#: include/fiche.inc.php:213 -#: include/fiche.inc.php:216 -#: include/fiche.inc.php:208 -#: include/fiche.inc.php:219 -#: include/fiche.inc.php:227 -msgid "Pas d'accès" -msgstr "No access" - -#: include/param_jrn_add.inc.php:61 -#: include/param_jrn_detail.inc.php:77 -#: include/param_jrn_add.inc.php:56 -#: include/param_jrn_add.inc.php:58 -#: include/param_jrn_detail.inc.php:86 -msgid "Un paramètre manque" -msgstr "A parameter is missing" - -#: include/param_jrn_add.inc.php:67 -#: include/param_jrn_add.inc.php:62 -#: include/param_jrn_add.inc.php:66 -msgid "Un journal de ce nom existe déjà" -msgstr "This name is already used" - -#: include/param_jrn_detail.inc.php:57 -#: include/param_jrn_detail.inc.php:54 -msgid "Journal inexistant" -msgstr "No existent ledger" - -#: include/param_jrn_detail.inc.php:68 -#: include/param_jrn_detail.inc.php:62 -#: include/param_jrn_detail.inc.php:67 -#: include/param_jrn_detail.inc.php:75 -msgid "" -"Impossible d\\'effacer ce journal.\n" -" Il est utilisé\n" -msgstr "" -"It is not possible to remove this ledger.\n" -"It is still in use\n" - -#: include/quick_writing.inc.php:99 -#: include/quick_writing.inc.php:111 -#: include/quick_writing.inc.php:82 -msgid "Utilisez une operation" -msgstr "Use an entry" - -#: include/template/account_result.php:2 -#: include/template/card_result.php:2 -msgid "Résultats" -msgstr "Results" - -#: include/template/account_result.php:21 -#: include/template/account_result.php:25 -msgid "Nombre d'enregistrements" -msgstr "Number of records" - -#: include/template/account_search.php:1 -msgid "Partie du poste comptable ou du libellé" -msgstr "Part of the name or part of the accounting item" - -#: include/template/param_jrn.php:4 -msgid "Nom journal" -msgstr "Name of the ledger" - -#: include/template/param_jrn.php:8 -msgid "Postes utilisables journal (débit/crédit)" -msgstr "Allowed accouting item (debit/credit)" - -#: include/template/param_jrn.php:22 -#: include/template/param_jrn.php:23 -#: include/template/param_jrn.php:71 -#: include/template/param_jrn.php:72 -msgid "Type de journal" -msgstr "Type of ledgers" - -#: include/template/param_jrn.php:28 -#: include/template/param_jrn.php:29 -#: include/template/param_jrn.php:77 -#: include/template/param_jrn.php:78 -msgid "Préfixe code interne" -msgstr "Prefix for internal code" - -#: include/template/param_jrn.php:32 -#: include/template/param_jrn.php:33 -#: include/template/param_jrn.php:81 -#: include/template/param_jrn.php:82 -msgid "Préfixe pièce justificative" -msgstr "Prefix for receipt" - -#: include/template/param_jrn.php:36 -#: include/template/param_jrn.php:39 -#: include/template/param_jrn.php:87 -msgid "Le préfixe des pièces peut être différent pour chaque journal" -msgstr "Prefix of receipt can be different for each ledgers" - -#: include/template/param_jrn.php:40 -#: include/template/param_jrn.php:53 -#: include/template/param_jrn.php:101 -#: include/template/param_jrn.php:102 -msgid "N° pièce justificative" -msgstr "Receipt number" - -#: include/template/param_jrn.php:44 -#: include/template/param_jrn.php:59 -#: include/template/param_jrn.php:108 -#: include/template/param_jrn.php:109 -msgid "La numérotation est propre à chaque journal" -msgstr "The numbering is unique for each ledger" - -#: include/template/param_jrn.php:53 -#: include/template/param_jrn.php:69 -#: include/template/param_jrn.php:121 -#: include/template/param_jrn.php:122 -msgid "Fiches Débit" -msgstr "Card at the debit" - -#: include/template/param_jrn.php:54 -#: include/template/param_jrn.php:70 -#: include/template/param_jrn.php:122 -#: include/template/param_jrn.php:123 -msgid "Fiches Crédit" -msgstr "Card at the credit" - -#: include/class_fiche_def.php:190 -#: include/class_fiche_def.php:191 -#: include/class_fiche_def.php:187 -#: include/class_fiche_def.php:184 -#: include/class_fiche_def.php:198 -#: include/class_fiche_def.php:199 -msgid "Vous devez choisir une categorie" -msgstr "You must select a category" - -#: include/action.common.inc.php:90 -#: include/action.common.inc.php:95 -#: include/action.common.inc.php:93 -#: include/action.common.inc.php:96 -msgid "Action sauvée" -msgstr "Action saved" - -#: include/action.common.inc.php:121 -#: include/action.common.inc.php:206 -#: include/class_acc_ledger_sold.php:1095 -#: include/class_acc_ledger_purchase.php:960 -#: include/class_acc_ledger_purchase.php:860 -#: include/class_acc_ledger_sold.php:1027 -#: include/action.common.inc.php:204 -#: include/class_acc_ledger_purchase.php:874 -#: include/class_acc_ledger_sold.php:1042 -#: include/class_acc_ledger_purchase.php:871 -#: include/class_acc_ledger_sold.php:1043 -#: include/class_acc_ledger_sold.php:1045 -#: include/compta_ach.inc.php:230 -#: include/compta_ven.inc.php:240 -#: include/action.common.inc.php:126 -#: include/action.common.inc.php:209 -#: include/compta_ach.inc.php:233 -#: include/compta_ven.inc.php:245 -#: include/action.common.inc.php:207 -#: include/compta_ach.inc.php:242 -#: include/compta_ven.inc.php:255 -#: include/compta_ach.inc.php:236 -#: include/compta_ven.inc.php:252 -#: include/compta_ach.inc.php:238 -#: include/compta_ven.inc.php:257 -#: include/action.common.inc.php:125 -#: include/compta_ven.inc.php:246 -msgid "Enregistrer" -msgstr "Submit" - -#: include/action.common.inc.php:122 -#: include/action.common.inc.php:123 -#: include/action.common.inc.php:151 -#: include/action.common.inc.php:207 -#: include/action.common.inc.php:127 -#: include/action.common.inc.php:126 -msgid "Génère le document" -msgstr "Generate the document" - -#: include/action.common.inc.php:152 -#: include/action.common.inc.php:150 -#: include/action.common.inc.php:155 -#: include/action.common.inc.php:154 -#: include/action.common.inc.php:153 -msgid "Ajoute une action à celle-ci" -msgstr "Add an action here" - -#: include/action.common.inc.php:153 -#: include/action.common.inc.php:151 -#: include/action.common.inc.php:156 -#: include/action.common.inc.php:155 -#: include/action.common.inc.php:154 -msgid "Efface cette action" -msgstr "Remobe this action" - -#: include/action.common.inc.php:153 -#: include/action.common.inc.php:151 -#: include/action.common.inc.php:156 -msgid "Vous confirmez l'effacement" -msgstr "You confirm the removal" - -#: include/action.common.inc.php:172 -#: include/action.common.inc.php:170 -#: include/action.common.inc.php:175 -#: include/action.common.inc.php:174 -msgid "Action " -msgstr "Action" - -#: include/action.common.inc.php:172 -#: include/action.common.inc.php:170 -#: include/action.common.inc.php:175 -#: include/action.common.inc.php:174 +#: include/action.common.inc.php:218 msgid " effacée" -msgstr " removed" +msgstr "removed" -#: include/action.common.inc.php:265 -#: include/action.common.inc.php:266 -#: include/action.common.inc.php:271 -#: include/action.common.inc.php:268 -#: include/action.common.inc.php:272 +#: include/dossier.inc.php:94 +msgid " est une année invalide" +msgstr "is an invalid year" + +#: include/class_anc_print.php:137 +msgid " et l'activité " +msgstr "and activity" + +#: include/class_acc_bilan.php:74 +msgid " jusque " +msgstr "Until" + +#: include/class_acc_ledger_purchase.php:212 +msgid " le poste comptable" +msgstr "the accounting item" + +#: include/class_acc_ledger_purchase.php:141 +#: include/class_acc_ledger_sold.php:132 include/class_acc_ledger_sold.php:191 +msgid " le poste comptable [" +msgstr "The accounting item [" + +#: include/class_acc_payment.php:327 +msgid " paiement par " +msgstr "Paid by" + +#: include/class_acc_ledger_purchase.php:112 +msgid " vous ne pouvez pas encoder à une date antérieure dans ce journal" +msgstr "You cannot add an entry before the last operation of this ledger" + +#: include/class_acc_ledger_fin.php:117 include/class_acc_ledger_fin.php:201 +#: include/class_acc_ledger_sold.php:109 +msgid " vous ne pouvez pas encoder à une date antérieure" +msgstr "You can not enter an entry before the last operation" + +#: include/ext/tools/include/tools_exercice.inc.php:38 #, php-format -msgid "Titre ou référence" -msgstr "Title or reference" +msgid "%s Vous avez ajouté %d mois depuis le %d/%d pour l'exercice %d " +msgstr "You have added% s% d months since% d /% d% d for the year" -#: include/action.common.inc.php:272 -msgid "uniquement mes actions:" -msgstr "Only mes action" +#: include/class_acc_ledger.php:3234 +msgid "'Journaux Financier" +msgstr "Financial" -#: include/action.common.inc.php:279 -#: include/action.common.inc.php:276 -#: include/action.common.inc.php:287 -#: include/client.inc.php:100 -#: include/contact.inc.php:126 -#: include/adm.inc.php:101 -#: include/supplier.inc.php:100 -#: include/action.common.inc.php:292 -#: include/adm.inc.php:109 -#: include/client.inc.php:108 -#: include/supplier.inc.php:108 -#: include/action.common.inc.php:289 -#: include/adm.inc.php:108 -#: include/client.inc.php:107 -#: include/supplier.inc.php:106 -#: include/action.common.inc.php:301 -#: include/adm.inc.php:96 -#: include/client.inc.php:105 -#: include/contact.inc.php:127 -#: include/supplier.inc.php:92 -#: include/action.common.inc.php:293 -#: include/adm.inc.php:92 -#: include/bank.inc.php:88 -#: include/client.inc.php:86 -#: include/contact.inc.php:93 -msgid "recherche" -msgstr "Search" +#: include/class_acc_ledger.php:3235 +msgid "'Journaux d'Opérations diverses" +msgstr "Miscellaneous ledger" -#: include/action.common.inc.php:290 -#: include/action.common.inc.php:289 -#: include/action.common.inc.php:300 -#: include/action.common.inc.php:305 -#: include/action.common.inc.php:302 -#: include/action.common.inc.php:315 -#: include/action.common.inc.php:307 -msgid "Ajout Action" -msgstr "Add action" +#: include/class_acc_ledger.php:3233 +msgid "'Journaux d'achat" +msgstr "Purchase ledgers" -#: include/class_fiche.php:305 -#: include/class_fiche.php:345 -#: include/class_fiche.php:356 -#: include/class_fiche.php:354 -#: include/class_fiche.php:387 -#: include/class_fiche.php:440 -#: include/class_fiche.php:444 -msgid "Rappel: Poste créé automatiquement à partir de " -msgstr "Warning : accounting item create automatically from " +#: include/impress_bilan.inc.php:89 +msgid "" +" Attention : si le bilan n'est pas équilibré.
" +"Vérifiez
    \n" +"
  • L'affectation du résultat est fait
  • \n" +"
  • Vos comptes actifs ont un solde débiteur (sauf les comptes dit " +"inversés)
  • \n" +"
  • les comptes passifs ont un solde créditeur (sauf les comptes dit " +"inversés)
  • \n" +"
\n" +" Utilisez la balance des comptes pour vérifier.
" +msgstr "" +"Attention : if the outcome is not balanced
check " +"
    \n" +"
  • You allocate the results
  • \n" +"
  • The asset has a saldo on debit (except the reverse accounting)
  • \n" +"
  • The liability has a saldo on credit(except the reverse accounting) \n" +"
\n" +"Use the balance of accouting to check
" -#: include/class_fiche.php:312 -#: include/class_fiche.php:352 -#: include/class_fiche.php:363 -#: include/class_fiche.php:361 -#: include/class_fiche.php:394 -#: include/class_fiche.php:447 -#: include/class_fiche.php:452 -msgid "Rappel: Poste par défaut sera " -msgstr "Warning : by default, the accounting item will be " +#: include/template/stock_histo_search.php:43 +msgid "A partir de" +msgstr "From" -#: include/report.inc.php:117 -#: include/report.inc.php:116 -#: include/report.inc.php:103 -#: include/report.inc.php:110 -#: include/report.inc.php:100 -msgid "Définition" -msgstr "Definition" +#: include/ext/amortis/include/print_fiche.inc.php:55 +msgid "Accepter" +msgstr "Accept" -#: include/report.inc.php:125 -#: include/report.inc.php:140 -#: include/report.inc.php:162 -#: include/report.inc.php:124 -#: include/report.inc.php:139 -#: include/report.inc.php:161 -#: include/report.inc.php:111 -#: include/report.inc.php:126 -#: include/report.inc.php:148 -#: include/report.inc.php:118 -#: include/report.inc.php:133 -#: include/report.inc.php:155 -#: include/report.inc.php:108 -#: include/report.inc.php:123 -#: include/report.inc.php:147 -msgid "Les lignes vides seront effacées" -msgstr "The empty rows will be removed" +#: include/database.item.php:73 include/user_menu.php:115 +#: include/user_menu.php:122 +msgid "Accueil" +msgstr "Homepage" -#: include/report.inc.php:136 -#: include/report.inc.php:135 -#: include/report.inc.php:122 -#: include/report.inc.php:129 -#: include/report.inc.php:119 -msgid "Importer ce rapport" -msgstr "Import this report" - -#: include/report.inc.php:153 -#: include/report.inc.php:152 -#: include/report.inc.php:139 -#: include/report.inc.php:146 -#: include/report.inc.php:136 -msgid "Mise a jour" -msgstr "Update" - -#: include/report.inc.php:154 -#: include/report.inc.php:153 -#: include/report.inc.php:140 -#: include/report.inc.php:147 -#: include/report.inc.php:137 -msgid "Effacement" -msgstr "Remove" - -#: include/template/category_of_card.php:3 -#: html/parametre.php:138 -#: html/parametre.php:137 -#: html/parametre.php:128 -#: include/impress.inc.php:35 -#: include/impress.inc.php:34 -#: include/menu_translate.php:86 -msgid "Catégorie de fiche" -msgstr "Card Category" - -#: include/template/category_of_card.php:7 -#: include/template/fiche_def_input.php:7 -#: include/template/category_of_card.php:18 -msgid "Classe de base" -msgstr "Base accounting item" - -#: include/template/category_of_card.php:8 -#: include/template/fiche_def_input.php:8 -msgid "Cherche" -msgstr "Search" - -#: include/template/category_of_card.php:12 -#: include/template/fiche_def_input.php:12 -#: include/template/category_of_card.php:14 -#: include/template/category_of_card.php:25 -msgid "Création automatique du poste comptable" -msgstr "Automatic creation of the accounting item" - -#: include/template/category_of_card.php:16 -#: include/template/category_of_card.php:18 -#: include/template/category_of_card.php:29 -msgid "Si vous utilisez la création automatique de poste, chaque nouvelle fiche de cette catégorie aura son propre poste comptable. Ce poste comptable sera la classe de base augmenté de 1." -msgstr "If you're using the automatic creation of accounting item, the new card of this category will have his own accounting item. This accounting item will be the base increase by 1." - -#: include/template/category_of_card.php:19 -msgid "Si vous n" -msgstr "if you " - -#: include/template/detail-action.php:3 -msgid "Informations générales" -msgstr "General Information" - -#: include/template/detail-action.php:24 -msgid "Heure" -msgstr "Hour" - -#: include/template/detail-action.php:33 -msgid "Reference" -msgstr "Reference" - -#: include/template/detail-action.php:42 -msgid "Destinataire" -msgstr "Recipient" - -#: include/template/detail-action.php:69 -#: include/template/detail-action.php:71 -msgid "Concerne" -msgstr "concerning" - -#: include/template/detail-action.php:78 -#: include/template/detail-action.php:80 -#: include/template/impress_cat_card.php:7 -msgid "Type" -msgstr "Type" - -#: include/template/detail-action.php:88 -#: include/template/dashboard.php:3 -#: include/template/detail-action.php:90 -msgid "Calendrier" -msgstr "Calendar" - -#: include/template/detail-action.php:97 -#: include/template/detail-action.php:99 -msgid "Etat" -msgstr "State" - -#: include/template/detail-action.php:107 -#: include/template/detail-action.php:109 -msgid "Priorité" -msgstr "Priority" - -#: include/template/detail-action.php:117 -#: include/template/detail-action.php:119 -msgid "Affecté" -msgstr "Responsible" - -#: include/template/detail-action.php:137 -#: include/template/form_ledger_fin.php:21 -#: include/template/detail-action.php:141 -#: include/template/detail-action.php:155 -#: include/template/form_ledger_fin.php:26 -msgid "Commentaire" -msgstr "Comment" - -#: include/template/detail-action.php:145 -#: include/template/detail-action.php:149 -#: include/template/detail-action.php:167 -msgid "Détail des articles" -msgstr "Item details" - -#: include/template/detail-action.php:158 -#: include/template/detail-action.php:162 -#: include/template/detail-action.php:180 -msgid "prix unitaire" -msgstr "Price unit" - -#: include/template/detail-action.php:159 -#: include/template/form_ledger_detail.php:29 -#: include/class_acc_ledger_sold.php:566 -#: include/class_acc_ledger_purchase.php:1036 -#: include/class_acc_ledger_purchase.php:1040 -#: include/class_acc_ledger_purchase.php:936 -#: include/class_acc_ledger_purchase.php:940 -#: include/class_acc_ledger_sold.php:498 -#: include/class_acc_ledger_purchase.php:950 -#: include/class_acc_ledger_purchase.php:954 -#: include/class_acc_ledger_sold.php:500 -#: include/class_acc_ledger_purchase.php:947 -#: include/class_acc_ledger_purchase.php:951 -#: include/class_acc_ledger_sold.php:501 -#: include/class_acc_ledger_sold.php:503 -#: include/class_acc_ledger_purchase.php:955 -#: include/class_acc_ledger_sold.php:505 -#: include/template/detail-action.php:163 -#: include/template/detail-action.php:181 -#: include/class_acc_ledger_purchase.php:1029 -#: include/class_acc_ledger_purchase.php:1033 -#: include/class_acc_ledger_sold.php:558 -#: include/class_acc_ledger_purchase.php:1034 -#: include/class_acc_ledger_purchase.php:1038 -#: include/class_acc_ledger_sold.php:562 -#: include/class_acc_ledger_purchase.php:1056 -#: include/class_acc_ledger_purchase.php:1060 -#: include/class_acc_ledger_sold.php:573 -#: include/class_acc_ledger_purchase.php:1101 -#: include/class_acc_ledger_purchase.php:1105 -#: include/class_acc_ledger_sold.php:580 -#: include/class_acc_ledger_purchase.php:1107 -#: include/class_acc_ledger_purchase.php:1112 -#: include/class_acc_ledger_sold.php:583 -#: include/class_acc_ledger_purchase.php:1284 -#: include/class_acc_ledger_purchase.php:1291 -#: include/class_acc_ledger_sold.php:663 -#: include/template/form_ledger_detail.php:23 -#: include/class_acc_ledger_purchase.php:1295 -#: include/class_acc_ledger_purchase.php:1303 -#: include/class_acc_ledger_sold.php:687 -#: include/template/form_ledger_detail.php:26 -msgid "quantité" -msgstr "quantity" - -#: include/template/detail-action.php:160 -#: include/template/detail-action.php:164 -#: include/template/detail-action.php:182 -msgid "Code TVA" -msgstr "VAT Code" - -#: include/template/detail-action.php:161 -#: include/class_acc_ledger_sold.php:569 -#: include/class_acc_ledger_purchase.php:1037 -#: include/class_acc_ledger_purchase.php:937 -#: include/class_acc_ledger_sold.php:501 -#: include/class_acc_ledger_purchase.php:951 -#: include/class_acc_ledger_sold.php:503 -#: include/class_acc_ledger_purchase.php:948 -#: include/class_acc_ledger_sold.php:504 -#: include/class_acc_ledger_sold.php:506 -#: include/class_acc_ledger_purchase.php:952 -#: include/class_acc_ledger_sold.php:508 -#: include/template/detail-action.php:165 -#: include/template/detail-action.php:183 -#: include/class_acc_ledger_purchase.php:1030 -#: include/class_acc_ledger_sold.php:561 -#: include/class_acc_ledger_purchase.php:1035 -#: include/class_acc_ledger_sold.php:565 -#: include/class_acc_ledger_purchase.php:1057 -#: include/class_acc_ledger_sold.php:578 -#: include/class_acc_ledger_purchase.php:1102 -#: include/class_acc_ledger_sold.php:585 -#: include/class_acc_ledger_purchase.php:1109 -#: include/class_acc_ledger_sold.php:588 -#: include/class_acc_ledger_purchase.php:1286 -#: include/class_acc_ledger_sold.php:669 -#: include/class_acc_ledger_purchase.php:1297 -#: include/class_acc_ledger_sold.php:693 -msgid "Montant TVA" -msgstr "Amount VAT " - -#: include/template/detail-action.php:162 -#: include/template/detail-action.php:166 -#: include/template/detail-action.php:184 -#: include/class_acc_ledger_purchase.php:1299 -#: include/class_acc_ledger_sold.php:695 -msgid "Montant TVAC" -msgstr "Amount VAT included" - -#: include/template/detail-action.php:188 -#: include/template/detail-action.php:192 -#: include/template/detail-action.php:210 -#: include/template/detail-action.php:206 -msgid "Montrer les détails" -msgstr "Show details" - -#: include/template/detail-action.php:189 -#: include/template/detail-action.php:193 -#: include/template/detail-action.php:211 -#: include/template/detail-action.php:207 -msgid "Cacher les détails" -msgstr "Hide details" - -#: include/template/detail-action.php:195 -#: include/template/form_ledger_detail.php:57 -#: include/class_acc_ledger_purchase.php:954 -#: include/class_acc_ledger_purchase.php:854 -#: include/class_acc_ledger_purchase.php:868 -#: include/template/form_ledger_detail.php:63 -#: include/class_acc_ledger_purchase.php:865 -#: include/compta_ach.inc.php:229 -#: include/compta_ven.inc.php:239 -#: include/template/detail-action.php:199 -#: include/template/detail-action.php:217 -#: include/compta_ach.inc.php:232 -#: include/compta_ven.inc.php:244 -#: include/compta_ach.inc.php:241 -#: include/compta_ven.inc.php:254 -#: include/compta_ach.inc.php:235 -#: include/compta_ven.inc.php:251 -#: include/compta_ach.inc.php:237 -#: include/compta_ven.inc.php:256 -#: include/template/detail-action.php:213 -#: include/compta_ven.inc.php:245 -#: include/template/form_ledger_detail.php:60 -msgid "Actualiser" -msgstr "Refresh" - -#: include/template/detail-action.php:228 -#: include/template/detail-action.php:229 -#: include/template/detail-action.php:233 -#: include/template/detail-action.php:251 -#: include/template/detail-action.php:247 -#, php-format -msgid "Voulez-vous effacer le document" -msgstr "Would you remove this document" - -#: include/template/detail-action.php:247 -#: include/template/detail-action.php:248 -#: include/template/detail-action.php:252 -#: include/template/detail-action.php:270 -#: include/template/detail-action.php:269 -#: include/template/detail-action.php:265 -msgid "Je ne peux pas ajouter de fichier" -msgstr "I can't add this file" - -#: include/template/form_ledger_detail.php:13 -#: include/class_acc_ledger_sold.php:546 -#: include/class_acc_ledger_purchase.php:1014 -#: include/class_acc_ledger_purchase.php:914 -#: include/class_acc_ledger_sold.php:478 -#: include/class_acc_ledger_purchase.php:928 -#: include/class_acc_ledger_sold.php:480 -#: include/class_acc_ledger_purchase.php:925 -#: include/class_acc_ledger_sold.php:481 -#: include/class_acc_ledger_sold.php:483 -#: include/class_acc_ledger_purchase.php:929 -#: include/class_acc_ledger_sold.php:485 -#: include/class_acc_ledger_purchase.php:1007 -#: include/class_acc_ledger_sold.php:538 -#: include/class_acc_ledger_purchase.php:1012 -#: include/class_acc_ledger_sold.php:542 -#: include/class_acc_ledger_purchase.php:1034 -#: include/class_acc_ledger_sold.php:554 -#: include/class_acc_ledger_purchase.php:1079 -#: include/class_acc_ledger_sold.php:561 -#: include/class_acc_ledger_purchase.php:1086 -#: include/class_acc_ledger_sold.php:564 -#: include/class_acc_ledger_purchase.php:1262 -#: include/class_acc_ledger_sold.php:644 -#: include/template/form_ledger_detail.php:7 -#: include/class_acc_ledger_purchase.php:1273 -#: include/class_acc_ledger_sold.php:668 -#: include/template/form_ledger_detail.php:10 -msgid "Echeance" -msgstr "Limit date" - -#: include/template/form_ledger_detail.php:18 -#: include/template/form_ledger_detail.php:12 -#: include/template/form_ledger_detail.php:15 -msgid "Num Pj" -msgstr "Receipt #" - -#: include/template/form_ledger_detail.php:27 -#: include/class_acc_ledger_sold.php:563 -#: include/class_acc_ledger_purchase.php:1031 -#: include/class_acc_ledger_purchase.php:931 -#: include/class_acc_ledger_sold.php:495 -#: include/class_acc_ledger_purchase.php:945 -#: include/class_acc_ledger_sold.php:497 -#: include/class_acc_ledger_purchase.php:942 -#: include/class_acc_ledger_sold.php:498 -#: include/class_acc_ledger_sold.php:500 -#: include/class_acc_ledger_purchase.php:946 -#: include/class_acc_ledger_sold.php:502 -#: include/class_acc_ledger_purchase.php:1024 -#: include/class_acc_ledger_sold.php:555 -#: include/class_acc_ledger_purchase.php:1029 -#: include/class_acc_ledger_sold.php:559 -#: include/class_acc_ledger_purchase.php:1051 -#: include/class_acc_ledger_sold.php:571 -#: include/class_acc_ledger_purchase.php:1096 -#: include/class_acc_ledger_sold.php:578 -#: include/class_acc_ledger_purchase.php:1103 -#: include/class_acc_ledger_sold.php:581 -#: include/class_acc_ledger_purchase.php:1279 -#: include/class_acc_ledger_sold.php:661 -#: include/template/form_ledger_detail.php:21 -#: include/class_acc_ledger_purchase.php:1290 -#: include/class_acc_ledger_sold.php:685 -#: include/template/form_ledger_detail.php:24 -msgid "Dénomination" -msgstr "Name" - -#: include/template/form_ledger_detail.php:28 -#: include/template/form_ledger_detail.php:22 -#: include/template/form_ledger_detail.php:25 -msgid "prix/unité htva" -msgstr "price/unit without vat" - -#: include/template/form_ledger_detail.php:32 -#: include/class_acc_ledger_sold.php:565 -#: include/class_acc_ledger_sold.php:497 -#: include/class_acc_ledger_sold.php:499 -#: include/class_acc_ledger_sold.php:500 -#: include/class_acc_ledger_sold.php:502 -#: include/class_acc_ledger_sold.php:504 -#: include/class_acc_ledger_sold.php:557 -#: include/class_acc_ledger_sold.php:561 -#: include/class_acc_ledger_sold.php:574 -#: include/class_acc_ledger_sold.php:581 -#: include/class_acc_ledger_sold.php:584 -#: include/class_acc_ledger_sold.php:664 -#: include/template/form_ledger_detail.php:26 -#: include/class_acc_ledger_sold.php:692 -#: include/template/form_ledger_detail.php:29 -msgid "tva" -msgstr "vat" - -#: include/template/form_ledger_detail.php:33 -#: include/template/form_ledger_detail.php:27 -#: include/template/form_ledger_detail.php:30 -msgid "tot.tva" -msgstr "tot. vat" - -#: include/template/form_ledger_detail.php:74 -#: include/class_acc_ledger_purchase.php:1138 -#: include/class_acc_ledger_purchase.php:1038 -#: include/class_acc_ledger_purchase.php:1052 -#: include/template/form_ledger_detail.php:30 -#: include/template/form_ledger_detail.php:80 -#: include/class_acc_ledger_purchase.php:1049 -#: include/class_acc_ledger_purchase.php:1053 -#: include/class_acc_ledger_purchase.php:1131 -#: include/class_acc_ledger_purchase.php:1136 -#: include/class_acc_ledger_purchase.php:1158 -#: include/class_acc_ledger_purchase.php:1203 -#: include/class_acc_ledger_purchase.php:1225 -#: include/class_acc_ledger_purchase.php:1414 -#: include/template/form_ledger_detail.php:24 -#: include/class_acc_ledger_purchase.php:1437 -#: include/template/form_ledger_detail.php:27 -#: include/template/form_ledger_detail.php:77 -msgid "Total HTVA" -msgstr "Total VAT excluded" - -#: include/template/form_ledger_detail.php:75 -#: include/class_acc_ledger_purchase.php:1145 -#: include/class_acc_ledger_purchase.php:1045 -#: include/class_acc_ledger_purchase.php:1059 -#: include/template/form_ledger_detail.php:81 -#: include/class_acc_ledger_purchase.php:1056 -#: include/class_acc_ledger_purchase.php:1060 -#: include/class_acc_ledger_purchase.php:1138 -#: include/class_acc_ledger_purchase.php:1143 -#: include/class_acc_ledger_purchase.php:1165 -#: include/class_acc_ledger_purchase.php:1210 -#: include/class_acc_ledger_purchase.php:1232 -#: include/class_acc_ledger_purchase.php:1423 -#: include/class_acc_ledger_purchase.php:1448 -#: include/template/form_ledger_detail.php:78 -msgid "Total TVA" -msgstr "Total VAT" - -#: include/template/form_ledger_detail.php:76 -#: include/class_acc_ledger_purchase.php:1148 -#: include/class_acc_ledger_purchase.php:1048 -#: include/class_acc_ledger_purchase.php:1062 -#: include/template/form_ledger_detail.php:82 -#: include/class_acc_ledger_purchase.php:1059 -#: include/class_acc_ledger_purchase.php:1063 -#: include/class_acc_ledger_purchase.php:1141 -#: include/class_acc_ledger_purchase.php:1146 -#: include/class_acc_ledger_purchase.php:1168 -#: include/class_acc_ledger_purchase.php:1213 -#: include/class_acc_ledger_purchase.php:1235 -#: include/class_acc_ledger_purchase.php:1426 -#: include/template/form_ledger_detail.php:79 -msgid "Total TVAC" -msgstr "Total VAT included" - -#: include/template/form_ledger_detail.php:78 -#: include/class_acc_ledger_purchase.php:941 -#: include/class_acc_ledger_purchase.php:955 -#: include/template/form_ledger_detail.php:84 -#: include/class_acc_ledger_purchase.php:952 -#: include/class_acc_ledger_purchase.php:956 -#: include/class_acc_ledger_purchase.php:1034 -#: include/class_acc_ledger_purchase.php:1039 -#: include/class_acc_ledger_purchase.php:1061 -#: include/class_acc_ledger_purchase.php:1106 -#: include/class_acc_ledger_purchase.php:1113 -#: include/template/ledger_detail_ach.php:66 -#: include/template/ledger_detail_ach.php:124 -#: include/template/ledger_detail_ven.php:65 -#: include/template/ledger_detail_ven.php:125 -#: include/class_acc_ledger_purchase.php:1292 -#: include/template/ledger_detail_ach.php:101 -#: include/template/ledger_detail_ach.php:173 -#: include/template/ledger_detail_ven.php:100 -#: include/template/ledger_detail_ven.php:163 -#: include/class_acc_ledger_purchase.php:1304 -#: include/template/form_ledger_detail.php:81 -#: include/template/ledger_detail_ach.php:123 -#: include/template/ledger_detail_ach.php:211 -#: include/template/ledger_detail_ach.php:213 -#: include/template/ledger_detail_ven.php:120 -#: include/template/ledger_detail_ven.php:203 -#: include/template/ledger_detail_ven.php:205 -msgid "Total" -msgstr "Total" - -#: include/template/form_ledger_fin.php:11 -#: include/template/form_ledger_fin.php:15 -msgid "Extrait de compte" -msgstr "Bank receipt" - -#: include/template/form_ledger_fin.php:12 -#: include/template/form_ledger_fin.php:16 -msgid "Numéro extrait" -msgstr "Number of Bank receipt" - -#: include/template/form_ledger_fin.php:13 -#: include/template/form_ledger_fin.php:17 -msgid "Solde début" -msgstr "Start balance" - -#: include/template/form_ledger_fin.php:14 -#: include/template/form_ledger_fin.php:18 -msgid "Solde Fin" -msgstr "End balance " - -#: include/template/form_ledger_fin.php:23 -#: include/template/form_ledger_fin.php:28 -msgid "Op. Concernée(s)" -msgstr "Concerned entry" - -#: include/template/ledger_search.php:1 -msgid "Critères de Recherche" -msgstr "Search Criteria" - -#: include/template/ledger_search.php:5 -msgid "Dans le journal" -msgstr "In the ledger" - -#: include/template/ledger_search.php:17 -#: include/template/ledger_search.php:35 -msgid "et" -msgstr "and" - -#: include/template/ledger_search.php:23 -msgid "Et contenant dans la description, pièce justificative ou n° interne" -msgstr "And having in its description, receipt or internal number" - -#: include/template/ledger_search.php:32 -msgid "Et compris entre les montants" -msgstr "And between the amounts" - -#: include/template/ledger_search.php:40 -msgid "Et utilisant la fiche (quick code)" -msgstr "And using the card (quick code)" - -#: include/template/ledger_search.php:48 -msgid "Et utilisant le poste comptable" -msgstr "And using the accounting item" - -#: include/template/ledger_search.php:58 -msgid "Et uniquement non payées" -msgstr "And only not paid" - -#: include/template/ledger_search.php:14 -msgid "Et Compris entre les date" -msgstr "And between the date" - -#: include/template/security_list_action.php:5 -#: html/ajax_extension.php:102 -#: html/ajax_extension.php:159 -#: include/template/extension-sec.php:9 -#: html/ajax_extension.php:96 -#: html/ajax_extension.php:153 -#: html/ajax_extension.php:154 -#: html/ajax_extension.php:104 -#: html/ajax_extension.php:163 +#: include/template/profile_sec_repository.php:36 +#: include/template/security_list_action.php:8 +#: include/template/user_sec_profile.php:36 msgid "Accès" msgstr "Access" -#: include/template/security_list_action.php:65 -#: include/template/security_list_action.php:59 -#: include/template/security_list_action.php:58 -msgid "Comptabilité Analytique" -msgstr "Cost Accounting" +#: include/ext/transform/raw.php:31 include/ext/transform/raw.php:70 +#: include/ext/transform/include/intervat_listing_assujetti_step_3.inc.php:27 +msgid "Accès directe incorrecte" +msgstr "Incorrect direct access" -#: html/access.php:102 -#: html/access.php:103 -#: html/access.php:149 -#: html/access.php:151 -#: include/template/dashboard.php:28 -#: include/template/dashboard.php:42 -msgid "Pense-Bête" -msgstr "Todo List" - -#: include/class_acc_ledger_sold.php:542 -#: include/class_acc_ledger_sold.php:854 -#: include/class_acc_ledger_sold.php:474 -#: include/class_acc_ledger_sold.php:786 -#: include/class_acc_ledger_sold.php:476 -#: include/class_acc_ledger_sold.php:788 -#: include/class_acc_ledger_sold.php:477 -#: include/class_acc_ledger_sold.php:789 -#: include/class_acc_ledger_sold.php:479 -#: include/class_acc_ledger_sold.php:791 -#: include/class_acc_ledger_sold.php:481 -#: include/class_acc_ledger_sold.php:793 -#: include/class_acc_ledger_sold.php:534 -#: include/class_acc_ledger_sold.php:846 -#: include/class_acc_ledger_sold.php:538 -#: include/class_acc_ledger_sold.php:850 -#: include/class_acc_ledger_sold.php:550 -#: include/class_acc_ledger_sold.php:863 -#: include/class_acc_ledger_sold.php:557 -#: include/class_acc_ledger_sold.php:873 -#: include/class_acc_ledger_sold.php:560 -#: include/class_acc_ledger_sold.php:889 -#: include/class_acc_ledger_sold.php:640 -#: include/class_acc_ledger_sold.php:989 -#: include/class_acc_ledger_sold.php:661 -#: include/class_acc_ledger_sold.php:1041 -msgid "En-tête facture client" -msgstr "Header invoice customer" - -#: include/class_acc_ledger_sold.php:547 -#: include/class_acc_ledger_purchase.php:1015 -#: include/class_acc_ledger_purchase.php:915 -#: include/class_acc_ledger_sold.php:479 -#: include/class_acc_ledger_purchase.php:929 -#: include/class_acc_ledger_sold.php:481 -#: include/class_acc_ledger_purchase.php:926 -#: include/class_acc_ledger_sold.php:482 -#: include/class_acc_ledger_sold.php:484 -#: include/class_acc_ledger_purchase.php:930 -#: include/class_acc_ledger_sold.php:486 -#: include/class_acc_ledger_purchase.php:1008 -#: include/class_acc_ledger_sold.php:539 -#: include/class_acc_ledger_purchase.php:1013 -#: include/class_acc_ledger_sold.php:543 -#: include/class_acc_ledger_purchase.php:1035 -#: include/class_acc_ledger_sold.php:555 -#: include/class_acc_ledger.php:1015 -#: include/class_acc_ledger_purchase.php:1080 -#: include/class_acc_ledger_sold.php:562 -#: include/class_acc_ledger.php:1198 -#: include/class_acc_ledger_purchase.php:1087 -#: include/class_acc_ledger_sold.php:565 -#: include/class_acc_ledger.php:1254 -#: include/class_acc_ledger_purchase.php:1263 -#: include/class_acc_ledger_sold.php:645 -#: include/class_acc_ledger.php:1376 -#: include/class_acc_ledger_purchase.php:1274 -#: include/class_acc_ledger_sold.php:669 -msgid "Période Comptable" -msgstr "Accounting Periode" - -#: include/class_acc_ledger_sold.php:559 -#: include/class_acc_ledger_sold.php:984 -#: include/class_acc_ledger_sold.php:491 -#: include/class_acc_ledger_sold.php:916 -#: include/class_acc_ledger_sold.php:493 -#: include/class_acc_ledger_sold.php:918 -#: include/class_acc_ledger_sold.php:494 -#: include/class_acc_ledger_sold.php:919 -#: include/class_acc_ledger_sold.php:496 -#: include/class_acc_ledger_sold.php:921 -#: include/class_acc_ledger_sold.php:498 -#: include/class_acc_ledger_sold.php:923 -#: include/class_acc_ledger_sold.php:551 -#: include/class_acc_ledger_sold.php:976 -#: include/class_acc_ledger_sold.php:555 -#: include/class_acc_ledger_sold.php:980 -#: include/class_acc_ledger_sold.php:567 -#: include/class_acc_ledger_sold.php:993 -#: include/class_acc_ledger_sold.php:574 -#: include/class_acc_ledger_sold.php:1003 -#: include/class_acc_ledger_sold.php:577 -#: include/class_acc_ledger_sold.php:1022 -#: include/class_acc_ledger_sold.php:657 -#: include/class_acc_ledger_sold.php:1130 -#: include/class_acc_ledger_sold.php:681 -#: include/class_acc_ledger_sold.php:1184 -msgid "Détail articles vendus" -msgstr "Detail sold items" - -#: include/class_acc_ledger_sold.php:562 -#: include/class_acc_ledger_sold.php:494 -#: include/class_acc_ledger_sold.php:496 -#: include/template/extension-detail.php:16 -#: include/class_acc_ledger_sold.php:497 -#: include/class_acc_ledger_sold.php:499 -#: include/class_acc_ledger_sold.php:501 -#: include/class_acc_ledger_sold.php:554 -#: include/class_acc_ledger_sold.php:558 -#: include/class_acc_ledger_sold.php:570 -#: include/class_acc_ledger_sold.php:577 -#: include/class_acc_ledger_sold.php:580 -#: include/class_acc_ledger_sold.php:660 -#: include/class_acc_ledger_sold.php:684 -msgid "Code" -msgstr "Code" - -#: include/class_acc_ledger_sold.php:564 -#: include/class_acc_ledger_purchase.php:1032 -#: include/class_acc_ledger_purchase.php:932 -#: include/class_acc_ledger_sold.php:496 -#: include/class_acc_ledger_purchase.php:946 -#: include/class_acc_ledger_sold.php:498 -#: include/class_acc_ledger_purchase.php:943 -#: include/class_acc_ledger_sold.php:499 -#: include/class_acc_ledger_sold.php:501 -#: include/class_acc_ledger_purchase.php:947 -#: include/class_acc_ledger_sold.php:503 -#: include/class_acc_ledger_purchase.php:1025 -#: include/class_acc_ledger_sold.php:556 -#: include/class_acc_ledger_purchase.php:1030 -#: include/class_acc_ledger_sold.php:560 -#: include/class_acc_ledger_purchase.php:1052 -#: include/class_acc_ledger_sold.php:572 -#: include/class_acc_ledger_purchase.php:1097 -#: include/class_acc_ledger_sold.php:579 -#: include/class_acc_ledger_purchase.php:1104 -#: include/class_acc_ledger_sold.php:582 -#: include/class_acc_ledger_purchase.php:1280 -#: include/class_acc_ledger_sold.php:662 -#: include/class_acc_ledger_purchase.php:1291 -#: include/class_acc_ledger_sold.php:686 -msgid "prix" -msgstr "price" - -#: include/class_acc_ledger_sold.php:570 -#: include/class_acc_ledger_purchase.php:1038 -#: include/class_acc_ledger_purchase.php:938 -#: include/class_acc_ledger_sold.php:502 -#: include/class_acc_ledger_purchase.php:952 -#: include/class_acc_ledger_sold.php:504 -#: include/class_acc_ledger_purchase.php:949 -#: include/class_acc_ledger_sold.php:505 -#: include/class_acc_ledger_sold.php:507 -#: include/class_acc_ledger_purchase.php:953 -#: include/class_acc_ledger_sold.php:509 -#: include/class_acc_ledger_purchase.php:1031 -#: include/class_acc_ledger_sold.php:562 -#: include/class_acc_ledger_purchase.php:1036 -#: include/class_acc_ledger_sold.php:566 -#: include/class_acc_ledger_purchase.php:1058 -#: include/class_acc_ledger_sold.php:579 -#: include/class_acc_ledger_purchase.php:1103 -#: include/class_acc_ledger_sold.php:586 -#: include/class_acc_ledger_purchase.php:1110 -#: include/class_acc_ledger_sold.php:589 -#: include/class_acc_ledger_purchase.php:1287 -#: include/class_acc_ledger_sold.php:670 -#: include/class_acc_ledger_purchase.php:1298 -#: include/class_acc_ledger_sold.php:694 -msgid "Montant HTVA" -msgstr "Amount without VAT" - -#: include/class_acc_ledger_sold.php:627 -#: include/class_acc_ledger_sold.php:559 -#: include/class_acc_ledger_sold.php:561 -#: include/class_acc_ledger_sold.php:562 -#: include/class_acc_ledger_sold.php:564 -#: include/class_acc_ledger_sold.php:566 -#: include/class_acc_ledger_sold.php:619 -#: include/class_acc_ledger_sold.php:623 -#: include/class_acc_ledger_sold.php:636 -#: include/class_acc_ledger_sold.php:643 -#: include/class_acc_ledger_sold.php:656 -#: include/class_acc_ledger_sold.php:744 -msgid "Attention Différence" -msgstr "Warning difference" - -#: include/class_acc_ledger_sold.php:654 -#: include/class_acc_ledger_purchase.php:1131 -#: include/class_acc_ledger_purchase.php:1031 -#: include/class_acc_ledger_sold.php:586 -#: include/class_acc_ledger_purchase.php:1045 -#: include/class_acc_ledger_sold.php:588 -#: include/class_acc_ledger_purchase.php:1042 -#: include/class_acc_ledger_sold.php:589 -#: include/class_acc_ledger_sold.php:591 -#: include/class_acc_ledger_purchase.php:1046 -#: include/class_acc_ledger_sold.php:593 -#: include/class_acc_ledger_purchase.php:1124 -#: include/class_acc_ledger_sold.php:646 -#: include/class_acc_ledger_purchase.php:1129 -#: include/class_acc_ledger_sold.php:650 -#: include/class_acc_ledger_purchase.php:1151 -#: include/class_acc_ledger_sold.php:663 -#: include/class_acc_ledger_purchase.php:1196 -#: include/class_acc_ledger_sold.php:670 -#: include/class_acc_ledger_purchase.php:1218 -#: include/class_acc_ledger_sold.php:686 -#: include/class_acc_ledger.php:1354 -#: include/class_acc_ledger_purchase.php:1407 -#: include/class_acc_ledger_sold.php:775 -#: include/template/ledger_detail_bottom.php:65 -#: include/template/ledger_detail_bottom.php:69 -msgid "verifie CA" -msgstr "Check CA" - -#: include/class_acc_ledger_sold.php:883 -#: include/class_acc_ledger_purchase.php:741 -#: include/class_acc_ledger_purchase.php:641 -#: include/class_acc_ledger_sold.php:815 -#: include/class_acc_ledger_sold.php:817 -#: include/class_acc_ledger_purchase.php:638 -#: include/class_acc_ledger_sold.php:818 -#: include/class_acc_ledger_sold.php:820 -#: include/class_acc_ledger_purchase.php:645 -#: include/class_acc_ledger_sold.php:822 -#: include/class_acc_ledger_purchase.php:723 -#: include/class_acc_ledger_sold.php:875 -#: include/class_acc_ledger_purchase.php:728 -#: include/class_acc_ledger_sold.php:879 -#: include/class_acc_ledger_purchase.php:747 -#: include/class_acc_ledger_sold.php:892 -#: include/class_acc_ledger.php:1164 -#: include/class_acc_ledger_purchase.php:786 -#: include/class_acc_ledger_sold.php:902 -#: include/class_acc_ledger.php:1355 -#: include/class_acc_ledger_purchase.php:790 -#: include/class_acc_ledger_sold.php:918 -#: include/class_acc_ledger.php:1417 -#: include/class_acc_ledger_purchase.php:951 -#: include/class_acc_ledger_sold.php:1023 -#: include/class_acc_ledger.php:1574 -#: include/class_acc_ledger_purchase.php:956 -#: include/class_acc_ledger_sold.php:1075 -msgid "Aucune période ouverte" -msgstr "No periode opened" - -#: include/class_acc_ledger_sold.php:888 -#: include/class_acc_ledger_purchase.php:748 -#: include/class_acc_ledger_purchase.php:648 -#: include/class_acc_ledger_sold.php:820 -#: include/class_acc_ledger_sold.php:822 -#: include/class_acc_ledger_purchase.php:645 -#: include/class_acc_ledger_sold.php:823 -#: include/class_acc_ledger_sold.php:825 -#: include/class_acc_ledger_purchase.php:652 -#: include/class_acc_ledger_sold.php:827 -#: include/class_acc_ledger_purchase.php:730 -#: include/class_acc_ledger_sold.php:880 -#: include/class_acc_ledger_purchase.php:735 -#: include/class_acc_ledger_sold.php:884 -#: include/class_acc_ledger_purchase.php:754 -#: include/class_acc_ledger_sold.php:897 -#: include/class_acc_ledger.php:1169 -#: include/class_acc_ledger_purchase.php:793 -#: include/class_acc_ledger_sold.php:907 -#: include/class_acc_ledger.php:1360 -#: include/class_acc_ledger_purchase.php:797 -#: include/class_acc_ledger_sold.php:923 -#: include/class_acc_ledger.php:1422 -#: include/class_acc_ledger_purchase.php:958 -#: include/class_acc_ledger_sold.php:1028 -#: include/class_acc_ledger.php:1579 -#: include/class_acc_ledger_purchase.php:963 -#: include/class_acc_ledger_sold.php:1080 -msgid "Période comptable" -msgstr "Accounting periode" - -#: include/class_acc_ledger_sold.php:898 -#: include/class_acc_ledger_purchase.php:585 -#: include/class_acc_ledger_purchase.php:758 -#: include/class_acc_ledger_purchase.php:658 -#: include/class_acc_ledger_sold.php:830 -#: include/class_acc_ledger_sold.php:832 -#: include/class_acc_ledger_fin.php:731 -#: include/class_acc_ledger_purchase.php:655 -#: include/class_acc_ledger_sold.php:833 -#: include/class_acc_ledger_sold.php:835 -#: include/class_acc_ledger_fin.php:732 -#: include/class_acc_ledger_purchase.php:662 -#: include/class_acc_ledger_sold.php:837 -#: include/class_acc_ledger_fin.php:787 -#: include/class_acc_ledger_purchase.php:740 -#: include/class_acc_ledger_sold.php:890 -#: include/class_acc_ledger_fin.php:792 -#: include/class_acc_ledger_purchase.php:745 -#: include/class_acc_ledger_sold.php:894 -#: include/class_acc_ledger_fin.php:791 -#: include/class_acc_ledger_purchase.php:764 -#: include/class_acc_ledger_sold.php:907 -#: include/class_acc_ledger_fin.php:828 -#: include/class_acc_ledger_purchase.php:803 -#: include/class_acc_ledger_sold.php:917 -#: include/class_acc_ledger_fin.php:793 -#: include/class_acc_ledger_purchase.php:809 -#: include/class_acc_ledger_sold.php:934 -#: include/class_acc_ledger_fin.php:843 -#: include/class_acc_ledger_purchase.php:971 -#: include/class_acc_ledger_sold.php:1040 -#: include/class_acc_ledger_fin.php:904 -#: include/class_acc_ledger.php:1535 -#: include/class_acc_ledger_purchase.php:978 -#: include/class_acc_ledger_sold.php:1094 -msgid "Pas de journal disponible" -msgstr "No available ledger" - -#: include/class_acc_ledger_sold.php:1096 -#: include/class_acc_ledger_purchase.php:961 -#: include/class_acc_ledger_purchase.php:861 -#: include/class_acc_ledger_sold.php:1028 -#: include/class_acc_ledger_purchase.php:875 -#: include/class_acc_ledger_sold.php:1043 -#: include/class_acc_ledger_purchase.php:872 -#: include/class_acc_ledger_sold.php:1044 -#: include/class_acc_ledger_sold.php:1046 -#: include/compta_ach.inc.php:231 -#: include/compta_ven.inc.php:241 -#: include/compta_ach.inc.php:234 -#: include/compta_ven.inc.php:246 -#: include/compta_ach.inc.php:243 -#: include/compta_ven.inc.php:256 -#: include/compta_ach.inc.php:237 -#: include/compta_ven.inc.php:253 -#: include/compta_ach.inc.php:239 -#: include/compta_ven.inc.php:258 -#: include/compta_ven.inc.php:247 -msgid "Effacer " -msgstr "Remove" - -#: include/class_acc_ledger_sold.php:1104 -#: include/class_acc_ledger_purchase.php:972 -#: include/class_acc_ledger_purchase.php:872 -#: include/class_acc_ledger_sold.php:1036 -#: include/class_acc_ledger_purchase.php:886 -#: include/class_acc_ledger_sold.php:1051 -#: include/class_acc_ledger_purchase.php:883 -#: include/class_acc_ledger_sold.php:1052 -#: include/class_acc_ledger_sold.php:1054 -#: include/class_acc_ledger_purchase.php:887 -#: include/class_acc_ledger_purchase.php:965 -#: include/class_acc_ledger_sold.php:1107 -#: include/class_acc_ledger_purchase.php:970 -#: include/class_acc_ledger_sold.php:1111 -#: include/class_acc_ledger_purchase.php:991 -#: include/class_acc_ledger_sold.php:1127 -#: include/class_acc_ledger_purchase.php:1036 -#: include/class_acc_ledger_sold.php:1144 -#: include/class_acc_ledger_purchase.php:1043 -#: include/class_acc_ledger_sold.php:1163 -#: include/class_acc_ledger_purchase.php:1216 -#: include/class_acc_ledger_sold.php:1276 -#: include/class_acc_ledger.php:3286 -msgid "Payé par" -msgstr "Paid by" - -#: html/ajax_card.php:120 -#: html/ajax_card.php:124 -msgid "Aucune catégorie de fiche ne correspondant a" -msgstr "No card category is matching" - -#: html/ajax_card.php:158 -#: html/ajax_card.php:162 -#: html/ajax_card.php:173 -#: html/ajax_card.php:171 -#: html/ajax_card.php:170 -#: html/ajax_card.php:191 -#: html/ajax_card.php:307 -#: html/ajax_card.php:316 -msgid "Fiche contenant" -msgstr "Card containing" - -#: include/class_ipopup.php:94 -#: include/class_ipopup.php:96 -#: include/class_ipopup.php:100 -#: include/class_ipopup.php:110 -#: include/class_ipopup.php:124 -#, php-format -msgid "Fermer" -msgstr "close" - -#: include/class_acc_ledger_purchase.php:60 -#: include/class_acc_ledger_sold.php:60 -#: include/class_acc_ledger_fin.php:54 -#: include/class_acc_ledger_purchase.php:65 -#: include/class_acc_ledger_purchase.php:68 -#: include/class_acc_ledger_sold.php:61 +#: include/class_acc_ledger_fin.php:64 include/class_acc_ledger.php:1829 #: include/class_acc_ledger_purchase.php:67 -#: include/class_acc_ledger_fin.php:57 -#: include/class_acc_ledger_purchase.php:72 -#: include/class_acc_ledger_sold.php:65 -#: include/class_acc_ledger_purchase.php:73 -msgid "Double Encodage" -msgstr "Double entries" +#: include/class_acc_ledger_sold.php:71 include/ext/modop/modop_save.php:245 +#: html/export.php:41 html/recherche.php:53 +msgid "Accès interdit" +msgstr "Forbidden access" -#: include/class_acc_ledger_purchase.php:64 -#: include/class_acc_ledger_purchase.php:69 -#: include/class_acc_ledger_purchase.php:72 -#: include/class_acc_ledger_purchase.php:71 -#: include/class_acc_ledger_purchase.php:76 -#: include/class_acc_ledger_purchase.php:77 -msgid "Vous n'avez pas donné de fournisseur" -msgstr "You haven't give any supplier" +#: include/template/ledger_detail_forbidden.php:5 +msgid "" +"Accès interdit : vous n'avez pas accès à cette information, contactez votre " +"responsable" +msgstr "You are not allowed to access this , contact your administrator" -#: include/class_acc_ledger_purchase.php:68 -#: include/class_acc_ledger_sold.php:68 -#: html/annulation.php:134 -#: include/class_acc_ledger_purchase.php:73 -#: include/class_acc_ledger_sold.php:72 -#: include/class_acc_ledger_purchase.php:76 -#: include/class_acc_ledger_sold.php:73 -#: html/annulation.php:133 -#: include/class_acc_ledger_purchase.php:75 -#: include/class_acc_ledger.php:151 -#: include/class_acc_ledger_sold.php:74 -#: include/class_acc_ledger.php:159 -#: include/class_acc_ledger_purchase.php:81 -#: include/class_acc_ledger_sold.php:79 -#: include/class_acc_ledger.php:179 -#: include/class_acc_ledger_purchase.php:82 -msgid "Date invalide" -msgstr "Invalid date" +#: include/database.item.php:2 include/database.item.php:66 +#: include/database.item.php:196 +msgid "Achat" +msgstr "Purchase" -#: include/class_acc_ledger_purchase.php:80 -#: include/class_acc_ledger_sold.php:79 -#: include/class_acc_ledger_fin.php:72 -#: include/class_acc_ledger_sold.php:80 -#: include/class_acc_ledger_fin.php:77 -#: include/class_acc_ledger_purchase.php:85 -#: include/class_acc_ledger_sold.php:84 -#: include/class_acc_ledger_purchase.php:88 -#: include/class_acc_ledger_sold.php:85 -#: include/class_acc_ledger_purchase.php:87 -#: include/class_acc_ledger_fin.php:89 -#: include/class_acc_ledger.php:1553 -#: include/class_acc_ledger_sold.php:86 -#: include/class_acc_ledger_fin.php:96 -#: include/class_acc_ledger.php:1630 -#: include/class_acc_ledger_purchase.php:96 -#: include/class_acc_ledger_sold.php:92 -#: include/class_acc_ledger.php:1792 -#: include/class_acc_ledger_purchase.php:97 -msgid "Date et periode ne correspondent pas" -msgstr "Date and period do not match" +#: include/ext/amortis/include/template/listing_year.php:61 +msgid "Acquisition de l'année" +msgstr "Acquisition year" -#: include/class_acc_ledger_purchase.php:85 -#: include/class_acc_ledger_sold.php:88 -#: include/class_acc_ledger_fin.php:78 -#: include/class_acc_ledger_sold.php:89 -#: include/class_acc_ledger_fin.php:83 -#: include/class_acc_ledger_purchase.php:90 -#: include/class_acc_ledger_sold.php:93 -#: include/class_acc_ledger_purchase.php:93 -#: include/class_acc_ledger_sold.php:94 -#: include/class_acc_ledger_purchase.php:92 -#: include/class_acc_ledger_fin.php:95 -#: include/class_acc_ledger_sold.php:95 -#: include/class_acc_ledger_fin.php:102 -#: include/class_acc_ledger_purchase.php:101 -#: include/class_acc_ledger_sold.php:103 -#: include/class_acc_ledger_purchase.php:102 -msgid "Periode fermee" -msgstr "Closed Periode" +#: include/user_menu.php:149 +msgid "Actif a un an au plus" +msgstr "Asset of one year max" -#: include/class_acc_ledger_purchase.php:97 -#: include/class_acc_ledger_fin.php:86 -#: include/class_acc_ledger_purchase.php:94 -#: include/class_acc_ledger_fin.php:91 -#: include/class_acc_ledger_purchase.php:99 -#: include/class_acc_ledger_purchase.php:102 -#: include/class_acc_ledger_purchase.php:101 -#: include/class_acc_ledger_fin.php:104 -#: include/class_acc_ledger_fin.php:112 -#: include/class_acc_ledger_purchase.php:111 -#: include/class_acc_ledger_purchase.php:112 -msgid "Vous utilisez le mode strict la dernière operation est à la date du " -msgstr "You're using the strict the last accounting entry is on" +#: include/class_acc_bilan.php:147 +msgid "Actif avec un solde crediteur" +msgstr "Asset with a credit saldo" -#: include/class_acc_ledger_purchase.php:98 -#: include/class_acc_ledger_purchase.php:95 -msgid " vous ne pouvez pas encoder à une " -msgstr "You cannot enter an accounting entry" +#: include/template/dashboard.php:105 +msgid "Action" +msgstr "Action" -#: include/class_acc_ledger_purchase.php:108 -#: include/class_acc_ledger_purchase.php:120 -#: include/class_acc_ledger_purchase.php:136 -#: include/class_acc_ledger_purchase.php:138 -#: include/class_acc_ledger_purchase.php:144 -#: include/class_acc_ledger_purchase.php:154 -#: include/class_acc_ledger_sold.php:105 -#: include/class_acc_ledger_sold.php:117 -#: include/class_acc_ledger_sold.php:128 -#: include/class_acc_ledger_sold.php:130 -#: include/class_acc_ledger_sold.php:136 -#: include/class_acc_ledger_sold.php:146 -#: include/class_acc_ledger_purchase.php:105 -#: include/class_acc_ledger_purchase.php:117 -#: include/class_acc_ledger_purchase.php:133 -#: include/class_acc_ledger_purchase.php:135 -#: include/class_acc_ledger_purchase.php:141 -#: include/class_acc_ledger_purchase.php:151 -#: include/class_acc_ledger_sold.php:106 -#: include/class_acc_ledger_sold.php:118 -#: include/class_acc_ledger_sold.php:129 -#: include/class_acc_ledger_sold.php:131 -#: include/class_acc_ledger_sold.php:137 -#: include/class_acc_ledger_sold.php:147 -#: include/class_acc_ledger_purchase.php:127 -#: include/class_acc_ledger_purchase.php:143 -#: include/class_acc_ledger_purchase.php:145 -#: include/class_acc_ledger_purchase.php:172 -#: include/class_acc_ledger_sold.php:140 -#: include/class_acc_ledger_sold.php:142 -#: include/class_acc_ledger_sold.php:148 -#: include/class_acc_ledger_sold.php:167 -#: include/class_acc_ledger_purchase.php:110 -#: include/class_acc_ledger_purchase.php:132 -#: include/class_acc_ledger_purchase.php:148 -#: include/class_acc_ledger_purchase.php:150 -#: include/class_acc_ledger_purchase.php:156 -#: include/class_acc_ledger_purchase.php:177 -#: include/class_acc_ledger_sold.php:110 -#: include/class_acc_ledger_sold.php:133 -#: include/class_acc_ledger_sold.php:144 -#: include/class_acc_ledger_sold.php:152 -#: include/class_acc_ledger_sold.php:171 -#: include/class_acc_ledger_purchase.php:113 -#: include/class_acc_ledger_purchase.php:157 -#: include/class_acc_ledger_purchase.php:159 -#: include/class_acc_ledger_purchase.php:163 -#: include/class_acc_ledger_purchase.php:168 -#: include/class_acc_ledger_purchase.php:174 -#: include/class_acc_ledger_purchase.php:195 -#: include/class_acc_ledger_sold.php:111 -#: include/class_acc_ledger_sold.php:134 -#: include/class_acc_ledger_sold.php:145 -#: include/class_acc_ledger_sold.php:153 -#: include/class_acc_ledger_sold.php:157 -#: include/class_acc_ledger_sold.php:162 -#: include/class_acc_ledger_sold.php:182 -#: include/class_acc_ledger_purchase.php:112 -#: include/class_acc_ledger_purchase.php:149 -#: include/class_acc_ledger_purchase.php:162 -#: include/class_acc_ledger_purchase.php:189 -#: include/class_acc_ledger_sold.php:159 -#: include/class_acc_ledger_sold.php:164 -#: include/class_acc_ledger_sold.php:184 -#: include/class_acc_ledger_purchase.php:134 -#: include/class_acc_ledger_purchase.php:152 -#: include/class_acc_ledger_purchase.php:158 -#: include/class_acc_ledger_purchase.php:169 -#: include/class_acc_ledger_purchase.php:190 -#: include/class_acc_ledger_sold.php:112 -#: include/class_acc_ledger_sold.php:135 -#: include/class_acc_ledger_sold.php:154 -#: include/class_acc_ledger_sold.php:160 -#: include/class_acc_ledger_purchase.php:122 -#: include/class_acc_ledger_purchase.php:147 -#: include/class_acc_ledger_purchase.php:164 -#: include/class_acc_ledger_purchase.php:166 -#: include/class_acc_ledger_purchase.php:173 -#: include/class_acc_ledger_purchase.php:178 -#: include/class_acc_ledger_purchase.php:194 -#: include/class_acc_ledger_purchase.php:219 -#: include/class_acc_ledger_sold.php:121 -#: include/class_acc_ledger_sold.php:168 -#: include/class_acc_ledger_sold.php:175 -#: include/class_acc_ledger_sold.php:179 -#: include/class_acc_ledger_sold.php:213 -#: include/class_acc_ledger_purchase.php:123 -#: include/class_acc_ledger_purchase.php:165 -#: include/class_acc_ledger_purchase.php:167 -#: include/class_acc_ledger_sold.php:174 -#: include/class_acc_ledger_sold.php:178 -#: include/class_acc_ledger_sold.php:212 -msgid "La fiche " -msgstr "The card" +#: include/action.common.inc.php:218 +msgid "Action " +msgstr "Action" -#: include/class_acc_ledger_purchase.php:108 -#: include/class_acc_ledger_purchase.php:144 -#: include/class_acc_ledger_sold.php:105 -#: include/class_acc_ledger_sold.php:136 -#: include/class_acc_ledger_purchase.php:105 -#: include/class_acc_ledger_purchase.php:141 -#: include/class_acc_ledger_sold.php:106 -#: include/class_acc_ledger_sold.php:137 -#: include/class_acc_ledger_purchase.php:151 -#: include/class_acc_ledger_sold.php:148 -#: include/class_acc_ledger_purchase.php:110 -#: include/class_acc_ledger_purchase.php:156 -#: include/class_acc_ledger_sold.php:110 -#: include/class_acc_ledger_sold.php:152 -#: include/class_acc_ledger_purchase.php:113 -#: include/class_acc_ledger_purchase.php:174 -#: include/class_acc_ledger_sold.php:111 -#: include/class_acc_ledger_sold.php:153 -#: include/class_acc_ledger_purchase.php:112 -#: include/class_acc_ledger_purchase.php:168 -#: include/class_acc_ledger_purchase.php:169 -#: include/class_acc_ledger_sold.php:112 -#: include/class_acc_ledger_sold.php:154 -#: include/class_acc_ledger_purchase.php:122 -#: include/class_acc_ledger_purchase.php:194 -#: include/class_acc_ledger_sold.php:121 -#: include/class_acc_ledger_sold.php:168 -#: include/class_acc_ledger_purchase.php:123 -msgid "n'a pas de poste comptable" -msgstr "has no accounting entry" +#: include/ajax_get_profile.php:43 +msgid "Action Gestion" +msgstr "Action Management" -#: include/class_acc_ledger_purchase.php:113 -#: include/class_acc_ledger_purchase.php:148 -#: include/class_acc_ledger_sold.php:110 -#: include/class_acc_ledger_sold.php:140 -#: include/class_acc_ledger_purchase.php:110 -#: include/class_acc_ledger_purchase.php:145 -#: include/class_acc_ledger_sold.php:111 -#: include/class_acc_ledger_sold.php:141 -#: include/class_acc_ledger_purchase.php:120 -#: include/class_acc_ledger_purchase.php:166 -#: include/class_acc_ledger_sold.php:122 -#: include/class_acc_ledger_sold.php:161 -#: include/class_acc_ledger_purchase.php:125 -#: include/class_acc_ledger_purchase.php:171 -#: include/class_acc_ledger_sold.php:126 -#: include/class_acc_ledger_sold.php:165 -#: include/class_acc_ledger_purchase.php:128 -#: include/class_acc_ledger_purchase.php:189 -#: include/class_acc_ledger_sold.php:127 -#: include/class_acc_ledger_sold.php:176 -#: include/class_acc_ledger_purchase.php:127 -#: include/class_acc_ledger_purchase.php:183 -#: include/class_acc_ledger_sold.php:178 -#: include/class_acc_ledger_purchase.php:184 -#: include/class_acc_ledger_sold.php:128 -#: include/class_acc_ledger_purchase.php:141 -#: include/class_acc_ledger_purchase.php:213 -#: include/class_acc_ledger_sold.php:207 -#: include/class_acc_ledger_purchase.php:142 -#: include/class_acc_ledger_sold.php:206 -msgid "Pour la fiche " -msgstr "For the card" +#: include/action.common.inc.php:277 include/action.common.inc.php:281 +msgid "Action Sauvée" +msgstr "Saved" -#: include/class_acc_ledger_purchase.php:113 -#: include/class_acc_ledger_sold.php:110 -#: include/class_acc_ledger_sold.php:140 -#: include/class_acc_ledger_purchase.php:110 -#: include/class_acc_ledger_sold.php:111 -#: include/class_acc_ledger_sold.php:141 -#: include/class_acc_ledger_purchase.php:120 -#: include/class_acc_ledger_sold.php:122 -#: include/class_acc_ledger_sold.php:161 -#: include/class_acc_ledger_purchase.php:125 -#: include/class_acc_ledger_sold.php:126 -#: include/class_acc_ledger_sold.php:165 -#: include/class_acc_ledger_purchase.php:128 -#: include/class_acc_ledger_sold.php:127 -#: include/class_acc_ledger_sold.php:176 -#: include/class_acc_ledger_purchase.php:127 -#: include/class_acc_ledger_sold.php:178 -#: include/class_acc_ledger_sold.php:128 -#: include/class_acc_ledger_purchase.php:141 -#: include/class_acc_ledger_sold.php:207 -#: include/class_acc_ledger_purchase.php:142 -#: include/class_acc_ledger_sold.php:206 -msgid " le poste comptable [" -msgstr " The accounting item [" +#: include/template/dashboard.php:222 +msgid "Action en retard" +msgstr "Late" -#: include/class_acc_ledger_purchase.php:113 -#: include/class_acc_ledger_purchase.php:148 -#: include/class_acc_ledger_sold.php:140 -#: include/class_acc_ledger_purchase.php:110 -#: include/class_acc_ledger_purchase.php:145 -#: include/class_acc_ledger_sold.php:141 -#: include/class_acc_ledger_purchase.php:120 -#: include/class_acc_ledger_purchase.php:166 -#: include/class_acc_ledger_sold.php:161 -#: include/class_acc_ledger_purchase.php:125 -#: include/class_acc_ledger_purchase.php:171 -#: include/class_acc_ledger_sold.php:165 -#: include/class_acc_ledger_purchase.php:128 -#: include/class_acc_ledger_purchase.php:189 -#: include/class_acc_ledger_sold.php:176 -#: include/class_acc_ledger_purchase.php:127 -#: include/class_acc_ledger_purchase.php:183 -#: include/class_acc_ledger_sold.php:178 -#: include/class_acc_ledger_purchase.php:184 -#: include/class_acc_ledger_purchase.php:141 -#: include/class_acc_ledger_purchase.php:213 -#: include/class_acc_ledger_sold.php:207 -#: include/class_acc_ledger_purchase.php:142 -#: include/class_acc_ledger_sold.php:206 -msgid "n'existe pas" -msgstr "does not exist" +#: html/ajax_card.php:199 html/ajax_card.php:311 html/ajax_card.php:446 +#: html/ajax_card.php:483 html/ajax_card.php:491 html/ajax_card.php:312 +#: html/ajax_card.php:447 html/ajax_card.php:484 html/ajax_card.php:492 +msgid "Action interdite" +msgstr "Forbidden" -#: include/class_acc_ledger_purchase.php:120 -#: include/class_acc_ledger_purchase.php:154 -#: include/class_acc_ledger_sold.php:117 -#: include/class_acc_ledger_sold.php:146 -#: include/class_acc_ledger_purchase.php:117 -#: include/class_acc_ledger_purchase.php:151 -#: include/class_acc_ledger_sold.php:118 -#: include/class_acc_ledger_sold.php:147 -#: include/class_acc_ledger_purchase.php:127 -#: include/class_acc_ledger_purchase.php:172 -#: include/class_acc_ledger_sold.php:129 -#: include/class_acc_ledger_sold.php:167 -#: include/class_acc_ledger_purchase.php:132 -#: include/class_acc_ledger_purchase.php:177 -#: include/class_acc_ledger_sold.php:133 -#: include/class_acc_ledger_sold.php:171 -#: include/class_acc_ledger_purchase.php:141 -#: include/class_acc_ledger_purchase.php:195 -#: include/class_acc_ledger_sold.php:134 -#: include/class_acc_ledger_sold.php:182 -#: include/class_acc_ledger_purchase.php:133 -#: include/class_acc_ledger_purchase.php:189 -#: include/class_acc_ledger_sold.php:184 -#: include/class_acc_ledger_purchase.php:134 -#: include/class_acc_ledger_purchase.php:190 -#: include/class_acc_ledger_sold.php:135 -#: include/class_acc_ledger_purchase.php:147 -#: include/class_acc_ledger_purchase.php:219 -#: include/class_acc_ledger_sold.php:148 -#: include/class_acc_ledger_sold.php:213 -#: include/class_acc_ledger_purchase.php:148 -#: include/class_acc_ledger_sold.php:212 -msgid "n'est pas accessible à ce journal" -msgstr "is not allowed for this ledger" +#: include/class_acc_ledger.php:3684 +msgid "Action non accessible" +msgstr "Folder not available" -#: include/class_acc_ledger_purchase.php:136 -#: include/class_acc_ledger_purchase.php:133 -#: include/class_acc_ledger_purchase.php:143 -#: include/class_acc_ledger_purchase.php:148 -#: include/class_acc_ledger_purchase.php:157 -#: include/class_acc_ledger_purchase.php:149 -#: include/class_acc_ledger_purchase.php:150 -#: include/class_acc_ledger_purchase.php:164 -#: include/class_acc_ledger_purchase.php:165 -msgid "a un montant invalide" -msgstr "has an invalid amount" +#: include/template/dashboard.php:253 +msgid "Action pour aujourd'hui" +msgstr "For today" -#: include/class_acc_ledger_purchase.php:138 -#: include/class_acc_ledger_purchase.php:135 -#: include/class_acc_ledger_purchase.php:145 -#: include/class_acc_ledger_purchase.php:150 -#: include/class_acc_ledger_purchase.php:159 -#: include/class_acc_ledger_purchase.php:151 -#: include/class_acc_ledger_purchase.php:152 -#: include/class_acc_ledger_purchase.php:166 -#: include/class_acc_ledger_purchase.php:167 -msgid "a une quantité invalide" -msgstr "has an invalid quantity" +#: include/template/detail-action.php:176 +#, fuzzy +msgid "Actions concernées" +msgstr "Concerned op" -#: include/class_acc_ledger_purchase.php:148 -#: include/class_acc_ledger_purchase.php:145 -#: include/class_acc_ledger_purchase.php:166 -#: include/class_acc_ledger_purchase.php:171 -#: include/class_acc_ledger_purchase.php:189 -#: include/class_acc_ledger_purchase.php:183 -#: include/class_acc_ledger_purchase.php:184 -#: include/class_acc_ledger_purchase.php:213 -msgid " le poste comptable" -msgstr " the accounting item" +#: include/template/action_other_action.php:17 +msgid "Actions sur plusieurs documents" +msgstr "" -#: include/class_acc_ledger_purchase.php:158 -#: include/class_acc_ledger_sold.php:150 -#: include/class_acc_ledger_purchase.php:155 -#: include/class_acc_ledger_sold.php:151 -#: include/class_acc_ledger_purchase.php:176 -#: include/class_acc_ledger_sold.php:171 -#: include/class_acc_ledger_purchase.php:181 -#: include/class_acc_ledger_sold.php:175 -#: include/class_acc_ledger_purchase.php:199 -#: include/class_acc_ledger_sold.php:186 -#: include/class_acc_ledger_purchase.php:211 -#: include/class_acc_ledger_sold.php:188 -#: include/class_acc_ledger_purchase.php:212 -#: include/class_acc_ledger_purchase.php:264 -#: include/class_acc_ledger_sold.php:217 -#: include/class_acc_ledger_purchase.php:258 -#: include/class_acc_ledger_sold.php:216 -msgid "Il n'y a aucune marchandise" -msgstr "There is no item" +#: include/compta_ach.inc.php:221 include/compta_ven.inc.php:237 +#: include/template/detail-action.php:359 +#: include/template/form_ledger_detail.php:107 +#: include/template/predf_ledger_detail.php:57 +#: include/ext/modop/modop_display.php:132 +msgid "Actualiser" +msgstr "Refresh" -#: include/class_acc_ledger_purchase.php:588 -msgid "Tous les journaux d'achat" -msgstr "All the purchase ledgers" +#: include/database.item.php:125 html/user_login.php:96 +msgid "Administrateur" +msgstr "Administrator" -#: include/class_acc_ledger_purchase.php:708 -#: include/class_acc_ledger_purchase.php:1010 -#: include/class_acc_ledger_purchase.php:608 -#: include/class_acc_ledger_purchase.php:910 -#: include/class_acc_ledger_purchase.php:924 -#: include/class_acc_ledger_purchase.php:605 -#: include/class_acc_ledger_purchase.php:921 -#: include/class_acc_ledger_purchase.php:612 -#: include/class_acc_ledger_purchase.php:925 -#: include/class_acc_ledger_purchase.php:690 -#: include/class_acc_ledger_purchase.php:1003 -#: include/class_acc_ledger_purchase.php:695 -#: include/class_acc_ledger_purchase.php:1008 -#: include/class_acc_ledger_purchase.php:714 -#: include/class_acc_ledger_purchase.php:1030 -#: include/class_acc_ledger_purchase.php:753 -#: include/class_acc_ledger_purchase.php:1075 -#: include/class_acc_ledger_purchase.php:757 -#: include/class_acc_ledger_purchase.php:1082 -#: include/class_acc_ledger_purchase.php:913 -#: include/class_acc_ledger_purchase.php:1258 -#: include/class_acc_ledger_purchase.php:918 -#: include/class_acc_ledger_purchase.php:1266 -msgid "En-tête facture fournisseur" -msgstr "Header invoice supplier" +#: include/database.item.php:122 +msgid "Administration" +msgstr "Administration" -#: include/class_acc_ledger_purchase.php:709 -#: include/class_acc_ledger_purchase.php:609 -#: include/class_acc_ledger_purchase.php:606 -#: include/class_acc_ledger_purchase.php:613 -#: include/class_acc_ledger_purchase.php:691 -#: include/class_acc_ledger_purchase.php:696 -#: include/class_acc_ledger_purchase.php:715 -#: include/class_acc_ledger_purchase.php:754 -#: include/class_acc_ledger_purchase.php:758 -#: include/class_acc_ledger_purchase.php:914 -#: include/class_acc_ledger_purchase.php:919 -msgid "Détail articles acheté" -msgstr "Details item" +#: include/class_fiche.php:1570 include/stock_cfg.inc.php:66 +#: include/ajax_mod_stock_repo.php:47 include/audit_log.php:38 +#: include/template/stock_summary_list.php:39 +msgid "Adresse" +msgstr "Address" -#: include/class_acc_ledger_purchase.php:817 -#: include/class_acc_ledger_purchase.php:717 -#: include/class_acc_ledger_purchase.php:714 -#: include/class_acc_ledger_purchase.php:721 -#: include/class_acc_ledger_purchase.php:799 -#: include/class_acc_ledger_purchase.php:804 -#: include/class_acc_ledger_purchase.php:823 -#: include/class_acc_ledger_purchase.php:863 -#: include/class_acc_ledger_purchase.php:869 -#: include/class_acc_ledger_purchase.php:1033 -#: include/class_acc_ledger_purchase.php:1040 -msgid "Fournisseur " -msgstr "Supplier" +#: include/database.item.php:146 +msgid "Adresse " +msgstr "Address" -#: include/class_acc_ledger_purchase.php:1027 -#: include/class_acc_ledger_purchase.php:927 -#: include/class_acc_ledger_purchase.php:941 -#: include/class_acc_ledger_purchase.php:938 -#: include/class_acc_ledger_purchase.php:942 -#: include/class_acc_ledger_purchase.php:1020 -#: include/class_acc_ledger_purchase.php:1025 -#: include/class_acc_ledger_purchase.php:1047 -#: include/class_acc_ledger_purchase.php:1092 -#: include/class_acc_ledger_purchase.php:1099 -#: include/class_acc_ledger_purchase.php:1275 -#: include/class_acc_ledger_purchase.php:1286 -msgid "Détail articles achetés" -msgstr "Detail items" +#: include/class_document_modele.php:68 +msgid "Affect." +msgstr "Assigned" -#: include/class_acc_ledger_purchase.php:1144 -#: include/class_acc_ledger_purchase.php:1044 -#: include/class_acc_ledger_purchase.php:1058 -#: include/class_acc_ledger_purchase.php:1055 -#: include/class_acc_ledger_purchase.php:1059 -#: include/class_acc_ledger_purchase.php:1137 -#: include/class_acc_ledger_purchase.php:1142 -#: include/class_acc_ledger_purchase.php:1164 -#: include/class_acc_ledger_purchase.php:1209 -#: include/class_acc_ledger_purchase.php:1231 -#: include/class_acc_ledger_purchase.php:1422 -#: include/class_acc_ledger_purchase.php:1445 -msgid "TVA à " -msgstr "VAT " +#: include/class_document_modele.php:255 +#: include/template/modele_document.php:40 +msgid "Affectation" +msgstr "Assignment" -#: include/class_acc_ledger_purchase.php:1209 -#: include/class_acc_ledger_sold.php:752 -#: include/class_acc_ledger_purchase.php:1109 -#: include/class_acc_ledger_sold.php:684 -#: include/class_acc_ledger_purchase.php:1123 -#: include/class_acc_ledger_sold.php:686 -#: include/class_acc_ledger_purchase.php:1120 -#: include/class_acc_ledger_sold.php:687 -#: include/class_acc_ledger_sold.php:689 -#: include/class_acc_ledger_purchase.php:1164 -#: include/class_acc_ledger_sold.php:691 -#: include/class_acc_ledger_purchase.php:1219 -#: include/class_acc_ledger_sold.php:744 -#: include/class_acc_ledger_purchase.php:1224 -#: include/class_acc_ledger_sold.php:748 -#: include/class_acc_ledger_purchase.php:1246 -#: include/class_acc_ledger_sold.php:761 -#: include/class_acc_ledger_purchase.php:1291 -#: include/class_acc_ledger_sold.php:768 -#: include/class_acc_ledger_purchase.php:1313 -#: include/class_acc_ledger_sold.php:784 -#: include/class_acc_ledger_purchase.php:1509 -#: include/class_acc_ledger_sold.php:883 -#: include/class_acc_ledger_purchase.php:1539 -#: include/class_acc_ledger_sold.php:931 -msgid "Ajoutez une pièce justificative " -msgstr "Add a receipt" +#: include/template/detail-action.php:125 +msgid "Affecté" +msgstr "Responsible" -#: include/class_acc_ledger_purchase.php:1218 -#: include/class_acc_ledger_purchase.php:1118 -#: include/class_acc_ledger_purchase.php:1132 -#: include/class_acc_ledger_purchase.php:1129 -#: include/class_acc_ledger_purchase.php:1139 -msgid "ou générer une note de frais" -msgstr "or generate an expense report" +#: include/template/action_search.php:63 +#, fuzzy +msgid "Affiche aussi les actions fermées" +msgstr "The closed items" -#: include/class_acc_ledger_purchase.php:1252 -#: include/class_acc_ledger_sold.php:800 -#: include/class_acc_ledger_purchase.php:1152 -#: include/class_acc_ledger_sold.php:732 -#: include/class_acc_ledger_purchase.php:1166 -#: include/class_acc_ledger_sold.php:734 -#: include/class_acc_ledger_purchase.php:1163 -#: include/class_acc_ledger_sold.php:735 -#: include/class_acc_ledger_sold.php:737 -#: include/class_acc_ledger_purchase.php:1212 -#: include/class_acc_ledger_sold.php:739 -#: include/class_acc_ledger_purchase.php:1267 -#: include/class_acc_ledger_sold.php:792 -#: include/class_acc_ledger_purchase.php:1272 -#: include/class_acc_ledger_sold.php:796 -#: include/class_acc_ledger_purchase.php:1294 -#: include/class_acc_ledger_sold.php:809 -#: include/class_acc_ledger_purchase.php:1339 -#: include/class_acc_ledger_sold.php:816 -#: include/class_acc_ledger_purchase.php:1361 -#: include/class_acc_ledger_sold.php:832 -#: include/class_acc_ledger_purchase.php:1557 -#: include/class_acc_ledger_sold.php:932 -#: include/class_acc_ledger_purchase.php:1587 -#: include/class_acc_ledger_sold.php:980 -msgid "Echeance dépassée" -msgstr "Missed deadline" +#: include/ext/tva/class_ext_list_assujetti.php:54 +#: include/ext/tva/class_ext_tvagen.php:114 +msgid "Afficher" +msgstr "Display" -#: include/class_acc_ledger_purchase.php:1254 -#: include/class_acc_ledger_sold.php:802 -#: include/class_acc_ledger_purchase.php:1154 -#: include/class_acc_ledger_sold.php:734 -#: include/class_acc_ledger_purchase.php:1168 -#: include/class_acc_ledger_sold.php:736 -#: include/class_acc_ledger_purchase.php:1165 -#: include/class_acc_ledger_sold.php:737 -#: include/class_acc_ledger_sold.php:739 -#: include/class_acc_ledger_purchase.php:1214 -#: include/class_acc_ledger_sold.php:741 -#: include/class_acc_ledger_purchase.php:1269 -#: include/class_acc_ledger_sold.php:794 -#: include/class_acc_ledger_purchase.php:1274 -#: include/class_acc_ledger_sold.php:798 -#: include/class_acc_ledger_purchase.php:1296 -#: include/class_acc_ledger_sold.php:811 -#: include/class_acc_ledger_purchase.php:1341 -#: include/class_acc_ledger_sold.php:818 -#: include/class_acc_ledger_purchase.php:1363 -#: include/class_acc_ledger_sold.php:834 -#: include/class_acc_ledger_purchase.php:1559 -#: include/class_acc_ledger_sold.php:934 -#: include/class_acc_ledger_purchase.php:1589 -#: include/class_acc_ledger_sold.php:982 -msgid "Non Payée" -msgstr "Not paid" +#: include/company.inc.php:121 +msgid "Afficher la période comptable pour éviter les erreurs de date" +msgstr "Display the accounting period dates to AVOID errors" -#: include/class_acc_ledger_sold.php:64 -#: include/class_acc_ledger_sold.php:68 -#: include/class_acc_ledger_sold.php:69 -#: include/class_acc_ledger_sold.php:70 -#: include/class_acc_ledger_sold.php:74 -msgid "Vous n'avez pas donné de client" -msgstr "You haven't enter any customer" +#: include/database.item.php:127 +msgid "Agenda" +msgstr "Diary" -#: include/class_acc_ledger_sold.php:96 -#: include/class_acc_ledger_sold.php:97 -#: include/class_acc_ledger_sold.php:101 -#: include/class_acc_ledger_sold.php:102 -#: include/class_acc_ledger_sold.php:103 -#: include/class_acc_ledger_sold.php:112 -msgid "Vous utilisez le mode strict la dernière operation est date du " -msgstr "You are using the strict mode, the last entry was typed on " +#: include/ajax_navigator.php:59 +msgid "Aide sur le wiki" +msgstr "" -#: include/class_acc_ledger_sold.php:97 -#: include/class_acc_ledger_fin.php:87 -#: include/class_acc_ledger_sold.php:98 -#: include/class_acc_ledger_fin.php:92 -#: include/class_acc_ledger_sold.php:102 -#: include/class_acc_ledger_sold.php:103 -#: include/class_acc_ledger_fin.php:105 -#: include/class_acc_ledger_sold.php:104 -#: include/class_acc_ledger_fin.php:113 -#: include/class_acc_ledger_sold.php:113 -msgid " vous ne pouvez pas encoder à une date antérieure" -msgstr " You can not enter an entry before the last operation" +#: include/cat_document.inc.php:55 include/template/dashboard.php:188 +#: include/ext/import_account/include/template/parameter_tva_add.php:52 +#: include/anc_pa.inc.php:127 include/anc_pa.inc.php:225 +msgid "Ajout" +msgstr "Add" -#: include/class_acc_ledger_sold.php:110 -#: include/class_acc_ledger_sold.php:111 -#: include/class_acc_ledger_sold.php:122 -#: include/class_acc_ledger_sold.php:126 -#: include/class_acc_ledger_sold.php:127 -#: include/class_acc_ledger_sold.php:128 -#: include/class_acc_ledger_sold.php:141 -msgid "] n'existe pas" -msgstr "] doesn't exist" +#: include/template/action_button.php:35 +msgid "Ajout Action" +msgstr "Add Action" -#: include/class_acc_ledger_sold.php:128 -#: include/class_acc_ledger_sold.php:129 -#: include/class_acc_ledger_sold.php:140 -#: include/class_acc_ledger_sold.php:144 -#: include/class_acc_ledger_sold.php:145 -#: include/class_acc_ledger_sold.php:146 -#: include/class_acc_ledger_sold.php:160 -msgid "a un montant invalide [" -msgstr "has an invalid amount" +#: include/class_acc_ledger_purchase.php:1271 +#: include/class_acc_ledger_sold.php:1273 include/class_pre_op_ach.php:390 +#: include/class_pre_op_ven.php:384 include/compta_fin.inc.php:142 +#: include/ext/modop/modop_display.php:98 +msgid "Ajout article" +msgstr "Add item" -#: include/class_acc_ledger_sold.php:130 -#: include/class_acc_ledger_sold.php:131 -#: include/class_acc_ledger_sold.php:142 -#: include/class_acc_ledger_sold.php:146 -#: include/class_acc_ledger_sold.php:147 -#: include/class_acc_ledger_sold.php:148 -#: include/class_acc_ledger_sold.php:162 -msgid "a une quantité invalide [" -msgstr " has an invalid quantity" +#: include/template/periode_add_exercice.php:21 +#, fuzzy +msgid "Ajout d'un exercice comptable" +msgstr "Config. Chart of Accounts" -#: include/class_acc_ledger_sold.php:759 -#: include/class_acc_ledger_sold.php:691 -#: include/class_acc_ledger_sold.php:693 -#: include/class_acc_ledger_sold.php:694 -#: include/class_acc_ledger_sold.php:696 -#: include/class_acc_ledger_sold.php:698 -#: include/class_acc_ledger_sold.php:751 -#: include/class_acc_ledger_sold.php:755 -#: include/class_acc_ledger_sold.php:768 -#: include/class_acc_ledger_sold.php:775 -#: include/class_acc_ledger_sold.php:791 -#: include/class_acc_ledger_sold.php:890 -#: include/class_acc_ledger_sold.php:938 -msgid "ou générer une facture" -msgstr "or generate an invoice" +#: include/menu.inc.php:155 +#, fuzzy +msgid "Ajout d'un menu" +msgstr "Add a row" -#: include/class_acc_ledger_sold.php:770 -#: include/class_acc_ledger_sold.php:702 -#: include/class_acc_ledger_sold.php:704 -#: include/class_acc_ledger_sold.php:705 -#: include/class_acc_ledger_sold.php:707 -#: include/class_acc_ledger_purchase.php:1182 -#: include/class_acc_ledger_sold.php:709 -#: include/class_acc_ledger_purchase.php:1237 -#: include/class_acc_ledger_sold.php:762 -#: include/class_acc_ledger_purchase.php:1242 -#: include/class_acc_ledger_sold.php:766 -#: include/class_acc_ledger_purchase.php:1264 -#: include/class_acc_ledger_sold.php:779 -#: include/class_acc_ledger_purchase.php:1309 -#: include/class_acc_ledger_sold.php:786 -#: include/class_acc_ledger_purchase.php:1331 -#: include/class_acc_ledger_sold.php:802 -#: include/class_acc_ledger_purchase.php:1527 -#: include/class_acc_ledger_sold.php:901 -#: include/class_acc_ledger_purchase.php:1557 -#: include/class_acc_ledger_sold.php:949 -msgid "Numero de bon de commande : " -msgstr "Number of ordering" +#: include/anc_pa.inc.php:248 include/anc_pa.inc.php:283 +#, fuzzy +msgid "Ajout d'un plan comptable" +msgstr "Config. Chart of Accounts" -#: include/class_acc_ledger_sold.php:771 -#: include/class_acc_ledger_sold.php:703 -#: include/class_acc_ledger_sold.php:705 -#: include/class_acc_ledger_sold.php:706 -#: include/class_acc_ledger_sold.php:708 -#: include/class_acc_ledger_purchase.php:1183 -#: include/class_acc_ledger_sold.php:710 -#: include/class_acc_ledger_purchase.php:1238 -#: include/class_acc_ledger_sold.php:763 -#: include/class_acc_ledger_purchase.php:1243 -#: include/class_acc_ledger_sold.php:767 -#: include/class_acc_ledger_purchase.php:1265 -#: include/class_acc_ledger_sold.php:780 -#: include/class_acc_ledger_purchase.php:1310 -#: include/class_acc_ledger_sold.php:787 -#: include/class_acc_ledger_purchase.php:1332 -#: include/class_acc_ledger_sold.php:803 -#: include/class_acc_ledger_purchase.php:1528 -#: include/class_acc_ledger_sold.php:902 -#: include/class_acc_ledger_purchase.php:1558 -#: include/class_acc_ledger_sold.php:950 -msgid "Autre information : " -msgstr "Other info" +#: include/menu.inc.php:154 +#, fuzzy +msgid "Ajout d'un plugin" +msgstr "Add a row" -#: include/class_acc_ledger_sold.php:861 -#: include/class_acc_ledger_sold.php:793 -#: include/class_acc_ledger_sold.php:795 -#: include/class_acc_ledger_sold.php:796 -#: include/class_acc_ledger_sold.php:798 -#: include/class_acc_ledger_sold.php:800 -#: include/class_acc_ledger_sold.php:853 -#: include/class_acc_ledger_sold.php:857 -#: include/class_acc_ledger_sold.php:870 -#: include/class_acc_ledger_sold.php:880 -#: include/class_acc_ledger_sold.php:896 -#: include/class_acc_ledger_sold.php:996 -#: include/class_acc_ledger_sold.php:1048 -msgid "Echéance" -msgstr "Date Limit" +#: include/ajax_tag_list.php:30 +#, fuzzy +msgid "Ajout d'un tag" +msgstr "Add a row" -#: html/ajax_card.php:131 -msgid "Aucune catégorie de fiche ne correspondant a votre demande" -msgstr "No category matches your request" +#: include/ext/import_account/include/template/parameter_tva_add.php:30 +msgid "Ajout d'un taux de tva" +msgstr "Adding a VAT rates" -#: html/ajax_card.php:237 -#: html/ajax_card.php:236 -#: html/ajax_card.php:257 -#: html/ajax_card.php:379 -#: html/ajax_card.php:388 -msgid " de clients" -msgstr " of customes" - -#: html/ajax_card.php:241 -#: html/ajax_card.php:240 -#: html/ajax_card.php:261 -#: html/ajax_card.php:383 -#: html/ajax_card.php:392 -msgid " de fournisseurs" -msgstr " of suppliers" - -#: html/ajax_card.php:245 -#: html/ajax_card.php:244 -#: html/ajax_card.php:265 -#: html/ajax_card.php:387 -#: html/ajax_card.php:396 -msgid " d'administration" -msgstr " of administration" - -#: html/ajax_card.php:251 -#: include/client.inc.php:44 -#: include/client.inc.php:123 -#: include/adm.inc.php:45 -#: include/adm.inc.php:129 -#: include/client.inc.php:128 -#: include/supplier.inc.php:44 -#: include/supplier.inc.php:128 -#: include/adm.inc.php:141 -#: include/client.inc.php:140 -#: include/supplier.inc.php:139 -#: html/ajax_card.php:250 -#: include/adm.inc.php:44 -#: include/adm.inc.php:140 -#: include/client.inc.php:43 -#: include/client.inc.php:139 -#: include/supplier.inc.php:43 -#: include/supplier.inc.php:137 -#: html/ajax_card.php:271 -#: html/ajax_card.php:393 -#: include/client.inc.php:36 -#: include/client.inc.php:138 -#: include/supplier.inc.php:126 -#: include/adm.inc.php:127 -#: include/bank.inc.php:122 -#: include/client.inc.php:120 -#: include/contact.inc.php:133 -#: include/template/category_of_card.php:4 +#: include/adm.inc.php:128 include/bank.inc.php:124 +#: include/contact.inc.php:133 include/customer.inc.php:123 +#: include/manager.inc.php:126 include/supplier.inc.php:128 msgid "Ajout d'une catégorie" msgstr "Add a category" -#: html/ajax_card.php:293 -#: html/ajax_card.php:295 -#: html/ajax_card.php:298 -#: html/ajax_card.php:297 -#: html/ajax_card.php:318 -#: html/ajax_card.php:444 -#: html/ajax_card.php:450 -msgid "Catégorie sauvée" -msgstr "Category saved" +#: include/ext/import_account/include/template/parameter.php:4 +msgid "Ajout d'une correspondance" +msgstr "Adding a correspondence" + +#: include/operation_ods_new.inc.php:102 +#: include/ext/modop/modop_display.php:160 +#: include/ext/coprop/include/appel_fond.inc.php:82 +#: include/ext/coprop/include/appel_fond.inc.php:151 +#: include/ext/coprop/include/class_coprop_appel_fond.php:199 +msgid "Ajout d'une ligne" +msgstr "Add a row" + +#: include/template/fiche_def_list.php:84 +#, fuzzy +msgid "Ajout d'une nouvelle catégorie" +msgstr "Add a category" -#: html/ajax_card.php:295 -#: html/ajax_card.php:298 -#: html/ajax_card.php:301 -#: html/ajax_card.php:300 -#: html/ajax_card.php:321 -#: html/ajax_card.php:449 -#: html/ajax_card.php:455 -msgid "Le nom et la classe base ne peuvent être vide" -msgstr "The name and the accounting base can not be empty" - -#: html/import.php:103 -#: html/import.php:100 -#: html/import.php:107 -msgid "Choississez la période à transfèrer" -msgstr "Choose the periode to transfert" - -#: include/class_acc_ledger_purchase.php:98 -#: include/class_acc_ledger_purchase.php:95 -#: include/class_acc_ledger_purchase.php:100 -#: include/class_acc_ledger_purchase.php:103 -#: include/class_acc_ledger_purchase.php:102 -#: include/class_acc_ledger_purchase.php:112 -#: include/class_acc_ledger_purchase.php:113 -msgid " vous ne pouvez pas encoder à une date antérieure dans ce journal" -msgstr " You cannot add an entry before the last operation of this ledger" - -#: include/class_iperiod.php:106 -msgid "Aucune priode trouve" -msgstr "No periode found" - -#: include/dossier.inc.php:69 -#: include/dossier.inc.php:76 -#: include/dossier.inc.php:77 -msgid "" -"Desole la creation de ce dossier a echoue,\n" -" la cause la plus probable est deux fois le même nom de dossier" -msgstr "Sorry you can't create this folder, probably because you use twice the same name" - -#: include/fiche_def.inc.php:67 -#: include/fiche_def.inc.php:68 -#: include/fiche_def.inc.php:69 -msgid "sinon le programme fonctionnera mal, utiliser uniquement des chiffres pour la classe de base ou rien" -msgstr "Otherwise the application won't work fine. Use only digits for the accounting entry or nothing" - -#: include/import_inc.php:79 -#: include/import_inc.php:82 -#: include/import_inc.php:69 -msgid "Importation terminée" -msgstr "Import done" - -#: include/import_inc.php:115 -#: include/import_inc.php:118 -#: include/import_inc.php:106 -msgid "op. concernée" -msgstr "Concerned op" - -#: include/import_inc.php:139 -#: include/import_inc.php:142 -#: include/import_inc.php:131 -msgid "poste comptable Destination" -msgstr "Accounting item target" - -#: include/import_inc.php:167 -#: include/import_inc.php:164 -#: include/import_inc.php:158 -msgid "Enlever" -msgstr "Remove" - -#: include/import_inc.php:183 -#: include/import_inc.php:179 -#: include/import_inc.php:182 -#: include/import_inc.php:174 -msgid " opérations à complèter" -msgstr " operation to complete" - -#: include/import_inc.php:212 -#: include/import_inc.php:271 -#: include/import_inc.php:210 -#: include/import_inc.php:269 -#: include/import_inc.php:206 -#: include/import_inc.php:265 -#: include/import_inc.php:209 -#: include/import_inc.php:268 -#: include/import_inc.php:201 -#: include/import_inc.php:262 -msgid "Vous devez selectionner votre période dans vos préférences" -msgstr "You have to select a period in your preference" - -#: include/import_inc.php:227 -#: include/import_inc.php:225 -#: include/import_inc.php:221 -#: include/import_inc.php:224 -#: include/import_inc.php:216 -msgid "opérations à transfèrer" -msgstr "Operation to transfert" - -#: include/import_inc.php:245 -#: include/import_inc.php:243 -#: include/import_inc.php:239 -#: include/import_inc.php:242 -#: include/import_inc.php:235 -msgid "Commencer le transfert" -msgstr "Start the transfert" - -#: include/import_inc.php:323 -#: include/import_inc.php:321 -#: include/import_inc.php:317 -#: include/import_inc.php:320 -#: include/import_inc.php:316 -msgid "Poste comptable erronné pour l'opération " -msgstr "Wrong accounting item for the operation" - -#: include/import_inc.php:373 -#: include/import_inc.php:371 -#: include/import_inc.php:367 -#: include/import_inc.php:372 -#: include/import_inc.php:368 -msgid "Tranfert de l'opération " -msgstr "Transfert of the operation" - -#: include/import_inc.php:373 -#: include/import_inc.php:371 -#: include/import_inc.php:367 -#: include/import_inc.php:372 -#: include/import_inc.php:368 -msgid " effectué" -msgstr "Done" - -#: include/import_inc.php:412 -#: include/import_inc.php:415 -#: include/import_inc.php:413 -#: include/import_inc.php:409 -#: include/import_inc.php:414 -msgid "Import fiche" -msgstr "Import Card" - -#: include/template/category_of_card.php:3 -#: include/template/category_of_card.php:14 -msgid "Nom de la catégorie de fiche" -msgstr "Name of the category of card" - -#: include/template/category_of_card.php:21 -#: include/template/category_of_card.php:32 -msgid "Si vous n'utilisez pas la création automatique, toutes les nouvelles fiches auront par défaut le même poste comptable. Ce poste comptable par défaut est la classe de base." -msgstr "If you don't use the automatic creation, all the new cards will have the same accounting item. This accounting item will be the class base" - -#: include/template/category_of_card.php:24 -#: include/template/category_of_card.php:35 -msgid " A moins qu'en créant la fiche, vous forcez un autre poste comptable" -msgstr "Except if you give another accounting item when you create the card" - -#: include/template/detail-action.php:213 -#: include/class_acc_ledger_purchase.php:1160 -#: include/template/detail-action.php:217 -#: include/template/detail-action.php:235 -#: include/class_acc_ledger_purchase.php:1215 -#: include/class_acc_ledger_purchase.php:1220 -#: include/class_acc_ledger_purchase.php:1242 -#: include/class_acc_ledger_purchase.php:1287 -#: include/class_acc_ledger_purchase.php:1309 -#: include/class_acc_ledger_purchase.php:1505 -#: include/template/detail-action.php:231 -#: include/class_acc_ledger_purchase.php:1535 -msgid "Document à générer" -msgstr "Document to generate" - -#: include/template/detail-action.php:220 -#: include/template/detail-action.php:221 -#: include/template/detail-action.php:225 -#: include/template/detail-action.php:243 -#: include/template/detail-action.php:239 -msgid "Pièces attachées" -msgstr "Attachment" - -#: include/class_iperiod.php:106 -#: include/class_iperiod.php:124 -msgid "Aucune periode trouvée" -msgstr "No period found" - -#: html/ajax_card.php:131 -#: html/ajax_card.php:125 -#: html/ajax_card.php:124 -#: html/ajax_card.php:145 -#: html/ajax_card.php:244 -#: html/ajax_card.php:253 -msgid "Aucune catégorie de fiche ne correspondant à votre demande" -msgstr "No category of card is matching" - -#: html/ajax_card.php:293 -#: html/ajax_card.php:296 -#: html/ajax_card.php:295 -#: html/ajax_card.php:316 -#: html/ajax_card.php:442 -#: html/ajax_card.php:448 -msgid "Catégorie existe déjà" -msgstr "Category already exists" - -#: html/ajax_extension.php:87 -#: html/ajax_extension.php:144 -#: html/parametre.php:236 -#: html/ajax_extension.php:81 -#: html/ajax_extension.php:138 -#: html/parametre.php:242 -#: html/parametre.php:254 -#: html/ajax_extension.php:139 -#: html/parametre.php:256 -#: html/ajax_extension.php:89 -#: html/ajax_extension.php:148 -#: html/parametre.php:273 -#: include/company.inc.php:39 -#: include/company.inc.php:43 -#: include/company.inc.php:46 -msgid "Oui" -msgstr "yes" - -#: html/ajax_extension.php:88 -#: html/ajax_extension.php:145 -#: html/parametre.php:235 -#: html/ajax_extension.php:82 -#: html/ajax_extension.php:139 -#: html/parametre.php:241 -#: html/parametre.php:253 -#: html/ajax_extension.php:140 -#: html/parametre.php:255 -#: html/ajax_extension.php:90 -#: html/ajax_extension.php:149 -#: html/parametre.php:272 -#: include/company.inc.php:38 -#: include/company.inc.php:42 -#: include/company.inc.php:45 -msgid "Non" -msgstr "No" - -#: html/ajax_extension.php:103 -#: html/ajax_extension.php:160 -#: html/ajax_extension.php:97 -#: html/ajax_extension.php:154 -#: html/ajax_extension.php:155 -#: html/ajax_extension.php:105 -#: html/ajax_extension.php:164 -msgid "Interdit" -msgstr "Forbidden" - -#: html/compta.php:34 -#: html/compta.php:35 -msgid " Vous êtes déconnecté" -msgstr "You are disconnected" - -#: html/extension.php:64 -#: html/extension.php:62 -#: html/extension.php:54 -msgid "Retour au tableau de bord" -msgstr "return to the dashboard" - -#: html/extension.php:78 -#: html/extension.php:76 -#: html/extension.php:80 -#: html/extension.php:81 -#: html/extension.php:102 -#: html/extension.php:96 -#: include/extension_choice.inc.php:32 -msgid "Aucune extension disponible" -msgstr "No available plugin" - -#: html/extension.php:86 -#: html/parametre.php:158 -#: include/user_menu.php:451 -#: include/template/security_list_action.php:110 -#: include/template/security_list_action.php:92 -#: include/user_menu.php:337 -#: include/user_menu.php:450 -#: html/extension.php:84 -#: include/user_menu.php:329 -#: include/user_menu.php:442 -#: html/extension.php:88 -#: include/user_menu.php:339 -#: include/user_menu.php:452 -#: include/user_menu.php:340 -#: include/user_menu.php:453 -#: html/extension.php:89 -#: html/extension.php:110 -#: html/extension.php:109 -#: include/user_menu.php:354 -#: include/user_menu.php:474 -#: include/menu_translate.php:59 -msgid "Extension" -msgstr "Plugin" - -#: html/extension.php:86 -#: html/extension.php:84 -#: html/extension.php:88 -#: html/extension.php:89 -#: html/extension.php:110 -#: html/extension.php:109 -msgid "Choix de l'extension" -msgstr "Choice of the plugin" - -#: html/extension.php:100 -#: include/ext_inc.php:11 -#: include/ext_inc.php:14 -msgid "Vous ne pouvez pas utiliser cette extension. Contactez votre responsable" -msgstr "You cannot use this plugin, contact your administrator" - -#: html/extension.php:107 -#: include/ext_inc.php:18 -#: html/ajax.php:33 -#: include/ext_inc.php:20 -#: include/ext_inc.php:22 -#: html/ajax.php:32 -#: include/ext_inc.php:25 -#: html/ajax.php:37 -#: html/extension.raw.php:57 -#: include/ext_inc.php:32 -msgid "Cette extension n'existe pas " -msgstr "This plugin do not exist" - -#: html/parametre.php:156 -#: html/parametre.php:135 -#: html/parametre.php:134 -#: html/parametre.php:125 -#: include/menu_translate.php:23 -msgid "Moyen de paiement" -msgstr "Payment middle" - -#: html/parametre.php:157 -#: html/parametre.php:136 -#: html/parametre.php:135 -#: html/parametre.php:126 -msgid "Taux et poste comptable tva" -msgstr "Rate and accounting entry" - -#: html/parametre.php:230 -#: html/parametre.php:236 -#: html/parametre.php:248 -#: html/parametre.php:250 -#: html/parametre.php:267 -#: include/company.inc.php:33 -msgid "obligatoire" -msgstr "mandatory" - -#: html/parametre.php:231 -#: html/parametre.php:237 -#: html/parametre.php:249 -#: html/parametre.php:251 -#: html/parametre.php:268 -#: include/company.inc.php:34 -msgid "optionnel" -msgstr "optional" - -#: html/parametre.php:232 -#: html/parametre.php:238 -#: html/parametre.php:250 -#: html/parametre.php:252 -#: html/parametre.php:269 -#: include/company.inc.php:35 -msgid "non utilisé" -msgstr "not used" - -#: html/parametre.php:265 -#: html/parametre.php:271 -#: html/parametre.php:283 -#: html/parametre.php:287 -#: html/parametre.php:289 -#: html/parametre.php:306 -#: include/company.inc.php:87 -msgid "Nom société" -msgstr "Company name" - -#: html/parametre.php:266 -#: html/parametre.php:272 -#: html/parametre.php:284 -#: html/parametre.php:288 -#: html/parametre.php:291 -#: html/parametre.php:308 -#: include/company.inc.php:89 -msgid "Téléphone" -msgstr "Phone" - -#: html/parametre.php:267 -#: html/parametre.php:273 -#: html/parametre.php:285 -#: html/parametre.php:289 -#: html/parametre.php:293 -#: html/parametre.php:310 -#: include/company.inc.php:91 -msgid "Fax" -msgstr "Fax" - -#: html/parametre.php:268 -#: html/parametre.php:274 -#: html/parametre.php:286 -#: html/parametre.php:290 -#: html/parametre.php:295 -#: html/parametre.php:312 -#: include/company.inc.php:93 -msgid "Rue " -msgstr "Street" - -#: html/parametre.php:269 -#: html/parametre.php:275 -#: html/parametre.php:287 -#: html/parametre.php:291 -#: html/parametre.php:297 -#: html/parametre.php:314 -#: include/company.inc.php:95 -msgid "Numéro" -msgstr "Number" - -#: html/parametre.php:270 -#: html/parametre.php:276 -#: html/parametre.php:288 -#: html/parametre.php:292 -#: html/parametre.php:299 -#: html/parametre.php:316 -#: include/company.inc.php:97 -msgid "Code Postal" -msgstr "ZIP Code" - -#: html/parametre.php:271 -#: html/parametre.php:277 -#: html/parametre.php:289 -#: html/parametre.php:293 -#: html/parametre.php:301 -#: html/parametre.php:318 -#: include/company.inc.php:99 -msgid "Commune" -msgstr "Department" - -#: html/parametre.php:272 -#: html/parametre.php:278 -#: html/parametre.php:290 -#: html/parametre.php:294 -#: html/parametre.php:303 -#: html/parametre.php:320 -#: include/company.inc.php:101 -msgid "Pays" -msgstr "Country" - -#: html/parametre.php:273 -#: html/parametre.php:279 -#: html/parametre.php:291 -#: html/parametre.php:295 -#: html/parametre.php:305 -#: html/parametre.php:322 -#: include/company.inc.php:103 -msgid "Numéro de Tva" -msgstr "VAT Number" - -#: html/parametre.php:275 -#: html/parametre.php:281 -#: html/parametre.php:293 -#: html/parametre.php:297 -#: html/parametre.php:307 -#: html/parametre.php:324 -#: include/company.inc.php:104 -msgid "Utilisation de la compta. analytique" -msgstr "Use of the analytic accountancy" - -#: html/parametre.php:277 -#: html/parametre.php:283 -#: html/parametre.php:295 -#: html/parametre.php:299 -#: html/parametre.php:309 -#: html/parametre.php:326 -#: include/company.inc.php:106 -msgid "Utilisation du mode strict " -msgstr "Use of the strict mode" - -#: html/parametre.php:279 -#: html/parametre.php:285 -#: html/parametre.php:297 -#: html/parametre.php:301 -#: html/parametre.php:311 -#: html/parametre.php:328 -#: include/company.inc.php:107 -msgid "Assujetti à la tva" -msgstr "VAT users" - -#: html/parametre.php:280 -#: html/parametre.php:286 -#: html/parametre.php:298 -#: html/parametre.php:302 -#: html/parametre.php:312 -#: html/parametre.php:329 -#: include/company.inc.php:108 -msgid "Suggérer le numéro de pièce justificative" -msgstr "Suggest the receipt number" - -#: html/parametre.php:281 -#: html/parametre.php:287 -#: html/parametre.php:299 -#: html/parametre.php:304 -#: html/parametre.php:314 -#: html/parametre.php:331 -#: include/company.inc.php:110 -msgid "Afficher la période comptable pour éviter les erreurs de date" -msgstr "Display the accounting periode to avoid date errors" - -#: include/action.common.inc.php:235 -#: include/action.common.inc.php:240 -#: include/action.common.inc.php:238 -#: include/action.common.inc.php:241 -msgid "Recherche avancée" -msgstr "Advanced search" - -#: include/action.common.inc.php:274 -#: include/action.common.inc.php:285 -#: include/action.common.inc.php:290 -#: include/action.common.inc.php:287 -#: include/action.common.inc.php:299 -#: include/action.common.inc.php:291 -msgid "affecté à d'autre:" -msgstr "Concerned other" - -#: include/action.common.inc.php:293 -#: include/action.common.inc.php:305 -#: include/action.common.inc.php:304 -#: include/action.common.inc.php:318 -#: include/action.common.inc.php:309 -#: include/action.common.inc.php:323 -#: include/action.common.inc.php:306 -#: include/action.common.inc.php:320 -#: include/action.common.inc.php:319 -#: include/action.common.inc.php:335 -#: include/action.common.inc.php:311 -#: include/action.common.inc.php:327 -msgid "Afficher Recherche" -msgstr "Display search" - -#: include/action.common.inc.php:293 -#: include/action.common.inc.php:305 -#: include/action.common.inc.php:304 -#: include/action.common.inc.php:318 -#: include/action.common.inc.php:309 -#: include/action.common.inc.php:323 -#: include/action.common.inc.php:306 -#: include/action.common.inc.php:320 -#: include/action.common.inc.php:319 -#: include/action.common.inc.php:335 -#: include/action.common.inc.php:311 -#: include/action.common.inc.php:327 -msgid "Cache Recherche" -msgstr "Hide search" - -#: include/adm_card.inc.php:71 -#: include/adm_card.inc.php:63 -#: include/adm_card.inc.php:68 -msgid "Suivi adm, devis, bon de commande, courrier" -msgstr "Follow up administration,mail, " - -#: include/adm_card.inc.php:72 -#: include/adm_card.inc.php:64 -#: include/adm_card.inc.php:69 -msgid "Liste de contacts de cette administration" -msgstr "List of contact" - -#: include/adm_card.inc.php:74 -#: include/adm_card.inc.php:66 -#: include/adm_card.inc.php:73 -msgid "Retour à la liste des administration" -msgstr "return to administration" - -#: include/anc_imp.inc.php:36 -msgid "Listing" -msgstr "Listing" - -#: include/anc_imp.inc.php:36 -msgid "Listing des opérations" -msgstr "Listing of operation" - -#: include/anc_imp.inc.php:37 -#: include/menu_translate.php:5 -msgid "Balance simple" -msgstr "Simple balance" - -#: include/anc_imp.inc.php:37 -msgid "Balance simple d'un plan analytique" -msgstr "Balance a simple analytical" - -#: include/anc_imp.inc.php:38 -msgid "Balance croisée" -msgstr "Cross balance " - -#: include/anc_imp.inc.php:38 -msgid "Balance croisée de 2 plans analytiques" -msgstr "Crossed balance" - -#: include/anc_od.inc.php:39 -#: include/anc_od.inc.php:42 -#: include/anc_od.inc.php:43 -msgid "Aucun plan analytique défini" -msgstr "No analytical defined" - -#: include/anc_od.inc.php:52 -#: include/class_anticipation.php:193 -#: include/class_anticipation.php:187 -#: include/anc_od.inc.php:57 -#: include/class_anticipation.php:253 -#: include/anc_od.inc.php:58 -#: include/class_anticipation.php:261 -msgid "Nouveau" -msgstr "New" - -#: include/anc_od.inc.php:55 -#: include/anc_od.inc.php:60 -#: include/anc_od.inc.php:61 -msgid "Liste opérations" -msgstr "Operation list" - -#: include/class_action.php:372 -#: include/class_action.php:376 -#: include/class_action.php:386 -#: include/class_action.php:387 -#: include/class_action.php:385 -#: include/class_action.php:394 -#: include/class_follow_up.php:400 -msgid "Génére le document" -msgstr "Generate the document" - -#: include/class_anc_account.php:271 -#: include/class_anc_account.php:269 -#: include/class_anc_account.php:283 -msgid "Plan Analytique" -msgstr "Analytical" - -#: include/class_anc_account.php:276 -#: include/class_anc_account.php:274 -#: include/class_anc_account.php:288 -#: include/menu_translate.php:8 -#: include/menu_translate.php:67 -msgid "Groupe" -msgstr "Group" - -#: include/class_anc_group_operation.php:71 -#: include/class_anc_group_operation.php:74 -msgid "Operation non equilibrée" -msgstr "Unbalanced operation" - -#: include/class_anc_listing.php:70 -#: include/class_anc_listing.php:77 -#: include/class_anc_grandlivre.php:137 -#: include/class_anc_grandlivre.php:250 -msgid "aucune donnée" -msgstr "no data" - -#: include/class_anc_listing.php:77 -#: include/class_anc_listing.php:86 -#: include/class_anc_listing.php:90 -msgid "D/C" -msgstr "D/C" - -#: include/class_anc_print.php:89 -#: include/class_anc_print.php:88 -#: include/class_anc_print.php:93 -#: include/class_anc_print.php:94 -msgid "Aucun plan défini" -msgstr "No plan defined" - -#: include/class_anc_print.php:114 -#: include/class_anc_print.php:113 -#: include/class_anc_print.php:118 -#: include/class_anc_print.php:121 -msgid "Les dates sont en format DD.MM.YYYY" -msgstr "The date format are DD.MM.YYYY" - -#: include/class_anc_print.php:136 -#: include/class_anc_print.php:135 -#: include/class_anc_print.php:140 -#: include/class_anc_print.php:141 -msgid "Selectionnez le plan qui vous intéresse avant de cliquer sur Recherche" -msgstr "Select the plan before clicking on search" - -#: include/class_anticipation.php:161 -#: include/class_anticipation.php:155 -#: include/class_anticipation.php:195 -#: include/class_anticipation.php:203 -msgid "Modification" -msgstr "Modification" - -#: include/class_anticipation.php:198 -#: include/class_anticipation.php:192 -#: include/class_anticipation.php:285 -#: include/class_anticipation.php:293 -msgid "Ventes" -msgstr "Sales" - -#: include/class_anticipation.php:240 -#: include/class_anticipation.php:234 -#: include/class_anticipation.php:334 -#: include/class_anticipation.php:342 -msgid "Elements" -msgstr "Items" - -#: include/class_calendar.php:87 -#: include/class_calendar.php:89 -#: include/class_calendar.php:90 -#: include/class_calendar.php:98 -#: include/class_calendar.php:99 -msgid "Lundi" -msgstr "Monday" - -#: include/class_calendar.php:87 -#: include/class_calendar.php:89 -#: include/class_calendar.php:90 -#: include/class_calendar.php:98 -#: include/class_calendar.php:99 -msgid "Mardi" -msgstr "Tuesday" - -#: include/class_calendar.php:87 -#: include/class_calendar.php:89 -#: include/class_calendar.php:90 -#: include/class_calendar.php:98 -#: include/class_calendar.php:99 -msgid "Mercredi" -msgstr "Wednesday" - -#: include/class_calendar.php:87 -#: include/class_calendar.php:89 -#: include/class_calendar.php:90 -#: include/class_calendar.php:98 -#: include/class_calendar.php:99 -msgid "Jeudi" -msgstr "Thursday" - -#: include/class_calendar.php:87 -#: include/class_calendar.php:89 -#: include/class_calendar.php:90 -#: include/class_calendar.php:98 -#: include/class_calendar.php:99 -msgid "Vendredi" -msgstr "Friday" - -#: include/class_calendar.php:87 -#: include/class_calendar.php:89 -#: include/class_calendar.php:90 -#: include/class_calendar.php:98 -#: include/class_calendar.php:99 -msgid "Samedi" -msgstr "Saterday" - -#: include/class_calendar.php:87 -#: include/class_calendar.php:89 -#: include/class_calendar.php:90 -#: include/class_calendar.php:98 -#: include/class_calendar.php:99 -msgid "Dimanche" -msgstr "Sunday" - -#: include/class_fiche.php:304 -#: include/class_fiche.php:315 -#: include/class_fiche.php:313 -#: include/class_fiche.php:346 -#: include/class_fiche.php:398 -#: include/class_fiche.php:400 -msgid "Cette categorie de card n'existe pas" -msgstr "This category do not exist" - -#: include/class_forecast.php:66 -#: include/class_forecast.php:62 -#: include/class_forecast.php:71 -msgid "Le nom ne peut pas être vide" -msgstr "the name cannot be empty" - -#: include/extension.inc.php:52 -#: include/template/extension-detail.php:4 -#: include/extension.inc.php:51 -#: include/extension.inc.php:50 -#: include/extension.inc.php:45 -#: include/extension.inc.php:41 -msgid "Détail extension" -msgstr "Plugin detail" - -#: include/extension.inc.php:60 -#: include/extension.inc.php:59 -#: include/extension.inc.php:58 -#: include/extension.inc.php:53 -#: include/extension.inc.php:49 -msgid "Nouvelle extension" -msgstr "New plugin" - -#: include/forecast.inc.php:197 -#: include/forecast.inc.php:249 -#: include/forecast.inc.php:241 -msgid "Ajout prévision" -msgstr "Add forecast" - -#: include/forecast.inc.php:197 -#: include/forecast.inc.php:249 #: include/forecast.inc.php:241 msgid "Ajout d'une prévision" msgstr "Add a forecast" -#: include/forecast.inc.php:330 -#: include/forecast.inc.php:309 -#: include/forecast.inc.php:369 -#: include/forecast.inc.php:360 -msgid "Modifier nom ou catégories" -msgstr "Modify name or categories" - -#: include/forecast.inc.php:331 -#: include/forecast.inc.php:310 -#: include/forecast.inc.php:370 -#: include/forecast.inc.php:361 -msgid "Modifier éléments" -msgstr "Modify items" - -#: include/forecast.inc.php:333 -msgid "Vous confirmez l\\' effacement ?" -msgstr "Do you confirm the removal ?" - -#: include/payment_middle.inc.php:58 -#: include/payment_middle.inc.php:60 -#: include/payment_middle.inc.php:95 -#: include/payment_middle.inc.php:53 -#: include/payment_middle.inc.php:88 -#: include/payment_middle.inc.php:59 -#: include/payment_middle.inc.php:97 -msgid "Retour sans sauvez" -msgstr "Return without saving" - -#: include/payment_middle.inc.php:87 -#: include/payment_middle.inc.php:122 -#: include/template/new_mod_payment.php:16 -#: include/payment_middle.inc.php:115 -#: include/payment_middle.inc.php:126 -#: include/template/new_mod_payment.php:25 -msgid "Type de fiche" -msgstr "Type of card" - -#: include/payment_middle.inc.php:88 -#: include/payment_middle.inc.php:123 -#: include/payment_middle.inc.php:116 -#: include/payment_middle.inc.php:127 -msgid "enregistré dans le journal" -msgstr "recorded in the ledger" - -#: include/payment_middle.inc.php:89 -#: include/payment_middle.inc.php:124 -#: include/payment_middle.inc.php:117 -#: include/payment_middle.inc.php:128 -msgid " Avec la fiche" -msgstr " With the card" - -#: include/supplier_card.inc.php:71 -#: include/supplier_card.inc.php:67 -#: include/supplier_card.inc.php:69 -#: include/category_card.inc.php:65 -msgid "Suivi Fournisseur, devis, bon de commande, courrier" -msgstr "Orderinf, follow-up, mail" - -#: include/supplier_card.inc.php:72 -#: include/supplier_card.inc.php:68 -#: include/supplier_card.inc.php:70 -#: include/category_card.inc.php:66 -msgid "Liste de contacts de ce fournisseur" -msgstr "Contact list of this supplier" - -#: include/supplier_card.inc.php:74 -#: include/supplier_card.inc.php:71 -msgid "Retour à la liste des fournisseurs" -msgstr "return to suppliers" - -#: include/template/dashboard.php:10 -#: include/template/dashboard.php:125 -#: include/template/dashboard.php:123 -msgid "Dernières opérations" -msgstr "Last entries" - -#: include/template/dashboard.php:40 -#: include/template/dashboard.php:155 -#: include/template/dashboard.php:153 -#: include/template/dashboard.php:157 -#: include/template/dashboard.php:158 -msgid "Dernières actions" -msgstr "Last actions" - -#: include/template/extension-detail.php:23 -msgid "description" -msgstr "description" - -#: include/template/extension-detail.php:31 -msgid "chemin et nom de fichier" -msgstr "Path and name of the file" - -#: include/template/extension.php:18 -#: include/template/extension-detail.php:39 -msgid "Activé" -msgstr "Activated" - -#: include/template/extension.php:18 -msgid "Désactivé" -msgstr "Deactivated" - -#: include/template/extension.php:23 -msgid "Effacer extension" -msgstr "Remove plugin" - -#: include/template/extension.php:24 -msgid "Confirmez effacement de l'extension ??" -msgstr "Do you confirm the removal of this plugin ?" - -#: include/template/extension-sec.php:6 -msgid "login" -msgstr "login" - -#: include/template/extension-sec.php:7 -msgid "Prénom" -msgstr "First Name" - -#: include/template/forecast_cat.php:5 -#: include/template/forecast_cat.php:8 -msgid "Catégories" -msgstr "Categories" - -#: include/template/forecast_cat.php:8 -#: include/template/forecast_cat.php:11 -msgid "Ordre" -msgstr "Order" - -#: include/template/forecast-detail.php:7 -#: include/class_document_modele.php:63 -#: include/impress.inc.php:35 -#: include/class_document_modele.php:68 -msgid "Catégorie" -msgstr "Category" - -#: include/template/forecast-detail.php:9 -msgid "QuickCode" -msgstr "QuickCode" - -#: include/template/forecast-detail.php:12 -msgid "Débit ou Crédit" -msgstr "Debit or credit" - -#: include/template/forecast_result.php:27 -#: include/template/forecast_result.php:28 -#: include/class_acc_ledger.php:1492 -msgid "Totaux" -msgstr "Total" - -#: include/template/forecast_result.php:32 -#: include/template/forecast_result.php:33 -msgid "Estimé" -msgstr "Estimated" - -#: include/template/forecast_result.php:67 -#: include/template/forecast_result.php:68 -msgid "Réel" -msgstr "Real" - -#: include/template/forecast_result.php:81 -#: include/template/forecast_result.php:125 -#: include/template/forecast_result.php:82 -#: include/template/forecast_result.php:162 -msgid "Différence" -msgstr "Difference" - -#: include/template/forecast_result.php:93 -#: include/template/forecast_result.php:108 -msgid "Diff. cumul." -msgstr "Cumulated diff" - -#: include/template/forecast_result.php:119 -#: include/template/forecast_result.php:156 -msgid "Total Catégorie estimé" -msgstr "Total Cat. Estimated" - -#: include/template/forecast_result.php:122 -#: include/template/forecast_result.php:159 -msgid "Total Catégorie réel" -msgstr "Total Cat. real" - -#: include/template/form_ledger_detail.php:34 -#: include/template/form_ledger_detail.php:28 -#: include/template/form_ledger_detail.php:31 -msgid "tvac" -msgstr "VAT included" - -#: include/template/security_list_action.php:104 -#: include/template/security_list_action.php:87 -#: include/menu_translate.php:58 -msgid "Prévision" -msgstr "Forecast" - -#: include/class_acc_ledger_fin.php:58 -#: include/class_acc_ledger_fin.php:63 -msgid "Vous n'avez pas donné de banque" -msgstr "You didn't give any bank" - -#: include/class_acc_ledger_fin.php:734 -#: include/class_acc_ledger_fin.php:735 -#: include/class_acc_ledger_fin.php:790 -#: include/class_acc_ledger_fin.php:795 -#: include/class_acc_ledger_fin.php:794 -#: include/class_acc_ledger_fin.php:831 -#: include/class_acc_ledger_fin.php:796 -#: include/class_acc_ledger_fin.php:848 -#: include/class_acc_ledger_fin.php:909 -msgid "Tous les journaux financiers" -msgstr "All the financial ledgers" - -#: include/detail_adm.inc.php:67 -#: include/detail_client.inc.php:67 -#: include/detail_supplier.inc.php:67 -#: include/category_detail.inc.php:67 -msgid "Sauver les modifications" -msgstr "Save modification" - -#: include/detail_client.inc.php:50 -#: include/detail_supplier.inc.php:50 -#: include/category_detail.inc.php:49 -msgid "Information sauvée" -msgstr "Data saved" - -#: include/detail_client.inc.php:69 -#: include/detail_supplier.inc.php:69 -#: include/category_detail.inc.php:69 -msgid "Effacer cette fiche" -msgstr "Remove this card" - -#: include/forecast.inc.php:333 -#: include/forecast.inc.php:312 -#: include/forecast.inc.php:372 -#: include/forecast.inc.php:363 -msgid "Vous confirmez l\\' effacement" -msgstr "Do you confirm the removal " - -#: html/ajax_card.php:107 -#: html/ajax_card.php:158 -#: html/ajax_card.php:278 -#: html/ajax_card.php:309 -#: html/ajax_card.php:106 -#: html/ajax_card.php:157 -#: html/ajax_card.php:277 -#: html/ajax_card.php:308 -#: html/ajax_card.php:127 -#: html/ajax_card.php:178 -#: html/ajax_card.php:298 -#: html/ajax_card.php:329 -#: html/ajax_card.php:190 -#: html/ajax_card.php:288 -#: html/ajax_card.php:422 -#: html/ajax_card.php:459 -#: html/ajax_card.php:468 -#: html/ajax_card.php:199 -#: html/ajax_card.php:299 -#: html/ajax_card.php:426 -#: html/ajax_card.php:463 -#: html/ajax_card.php:472 -msgid "Action interdite" -msgstr "Forbidden action" - -#: html/ajax_card.php:125 -msgid "Aucune catégorie de fiche ne correspondant à" -msgstr "No category is matching" - -#: html/parametre.php:138 -#: html/parametre.php:137 -#: html/parametre.php:128 -msgid "Modifie les classe de base, les attribut,..." -msgstr "Modify the account base, attributes...." - -#: include/class_acc_ledger_purchase.php:474 -#: include/class_acc_ledger_sold.php:355 -#: include/class_acc_ledger_purchase.php:478 -#: include/class_acc_ledger_sold.php:357 -#: include/class_acc_ledger_purchase.php:546 -#: include/class_acc_ledger_sold.php:400 -#: include/class_acc_ledger_purchase.php:551 -#: include/class_acc_ledger_sold.php:404 -#: include/class_acc_ledger_purchase.php:570 -#: include/class_acc_ledger_sold.php:415 -#: include/class_acc_ledger_purchase.php:579 -#: include/class_acc_ledger_sold.php:422 -#: include/class_acc_ledger_purchase.php:583 -#: include/class_acc_ledger_sold.php:425 -#: include/class_acc_ledger_purchase.php:717 -#: include/class_acc_ledger_sold.php:479 -#: include/class_acc_ledger_purchase.php:726 -#: include/class_acc_ledger_sold.php:501 -msgid "Document généré" -msgstr "Generated document" - -#: include/class_acc_ledger_purchase.php:475 -#: include/class_acc_ledger_purchase.php:479 -#: include/class_acc_ledger_purchase.php:547 -#: include/class_acc_ledger_purchase.php:552 -#: include/class_acc_ledger_purchase.php:571 -#: include/class_acc_ledger_purchase.php:580 -#: include/class_acc_ledger_purchase.php:584 -msgid "Note de frais" -msgstr "Note of free" - -#: include/class_document.php:258 -#: include/class_document.php:240 -#: include/class_document.php:255 -#: include/class_document.php:272 -msgid "Ne peut pas sauver " -msgstr "Cannot save" - -#: include/impress.inc.php:36 -#: include/impress.inc.php:37 -#: include/impress.inc.php:38 -msgid "Balance des comptes" -msgstr "Balance" - -#: include/impress.inc.php:37 -#: include/impress.inc.php:38 -#: include/impress.inc.php:39 -#: include/menu_translate.php:100 -msgid "Bilan" -msgstr "Bilan" - -#: include/impress.inc.php:38 -msgid "Liste Clients Assujettis" -msgstr "List Customer" - -#: include/impress_poste.inc.php:114 -#: include/class_acc_bilan.php:68 -#: include/impress_gl_comptes.inc.php:62 -#: include/impress_poste.inc.php:101 -#: include/template/impress_cat_card.php:11 -#: include/impress_poste.inc.php:92 -#: include/class_acc_bilan.php:71 -#: include/impress_poste.inc.php:93 -msgid "Depuis" -msgstr "From" - -#: include/impress_poste.inc.php:115 -#: include/impress_gl_comptes.inc.php:63 -#: include/impress_poste.inc.php:102 -#: include/impress_poste.inc.php:93 -#: include/impress_poste.inc.php:94 -msgid "Jusque " -msgstr "Until" - -#: html/ajax_card.php:261 -#: include/class_acc_report.php:142 -#: html/ajax_card.php:260 -#: include/class_acc_report.php:141 -#: html/ajax_card.php:281 -#: html/ajax_card.php:403 -#: include/class_acc_report.php:152 -#: html/ajax_card.php:410 -msgid "Recherche poste" -msgstr "Search account" - -#: include/class_anc_balance_double.php:288 -#: include/class_anc_balance_double.php:295 -#: include/class_anc_balance_double.php:307 -#: include/class_anc_balance_double.php:339 -msgid "Selectionnez le plan qui vous intéresse avant de cliquer sur Recherche" -msgstr "Select the plan you are interested before clicking on Search" - -#: include/action.common.inc.php:273 -#: include/action.common.inc.php:278 -#: include/action.common.inc.php:275 -#: include/action.common.inc.php:279 -msgid "Tous les types" -msgstr "Any types" - -#: include/action.common.inc.php:282 -#: include/action.common.inc.php:287 -#: include/action.common.inc.php:284 -#: include/action.common.inc.php:297 -#: include/action.common.inc.php:289 -msgid "les actions fermées aussi:" -msgstr "The closed items" - -#: include/class_acc_ledger_purchase.php:1171 -#: include/class_acc_ledger_purchase.php:1226 -#: include/class_acc_ledger_purchase.php:1231 -#: include/class_acc_ledger_purchase.php:1253 -#: include/class_acc_ledger_purchase.php:1298 -#: include/class_acc_ledger_purchase.php:1320 -#: include/class_acc_ledger_purchase.php:1516 -#: include/class_acc_ledger_purchase.php:1546 -msgid "ou générer un document" -msgstr "or generate a document" - -#: include/compta_ach.inc.php:59 -#: include/compta_ach.inc.php:62 -#: include/compta_ach.inc.php:72 -#: include/compta_ach.inc.php:42 -msgid "Fournisseurs" -msgstr "Suppliers" - -#: html/annulation.php:143 -#: html/annulation.php:142 -msgid "Période ou date incorrecte" -msgstr "Wrong date" - -#: html/annulation.php:149 -#: html/annulation.php:148 -msgid "Cette période est fermée" -msgstr "This periode is closed" - -#: include/class_acc_payment.php:342 -#: include/class_acc_payment.php:338 -#: include/class_acc_payment.php:386 -#: include/menu_translate.php:2 -#: include/menu_translate.php:74 -msgid "Achat" -msgstr "Purchase" - -#: include/payment_middle.inc.php:47 -#: include/class_document_type.php:65 -#: include/payment_middle.inc.php:40 -#: include/class_document_type.php:67 -#: include/payment_middle.inc.php:46 -msgid "Vous confirmez" -msgstr "Do you confirm" - -#: include/payment_middle.inc.php:59 -#: include/payment_middle.inc.php:52 -#: include/payment_middle.inc.php:58 -#: include/payment_middle.inc.php:55 -msgid "Efface" -msgstr "Remove" - -#: include/payment_middle.inc.php:93 -#: include/payment_middle.inc.php:86 -#: include/payment_middle.inc.php:95 -#: include/payment_middle.inc.php:103 -msgid "Enregistre" -msgstr "Record" - -#: include/template/fiche_def_input.php:12 -msgid "Création automatique du poste comptable uniquement s'il n\\y a qu'un seul poste" -msgstr "Automatic creation of the accounting entry only if unique" - -#: include/template/new_mod_payment.php:2 -msgid "Nouveau moyen de paiement" -msgstr "new middle of payment" - -#: include/template/new_mod_payment.php:25 -msgid "Pour le type de journal" -msgstr "For the type of ledger" - -#: include/template/new_mod_payment.php:34 -#: include/template/new_mod_payment.php:35 -msgid "Paiement enregistré dans " -msgstr "Payment recorded in " - -#: include/template/new_mod_payment.php:43 -#: include/template/new_mod_payment.php:44 -msgid "Avec la fiche" -msgstr "With the card" - -#: include/class_acc_ledger_sold.php:714 -#: include/class_acc_ledger_sold.php:718 -#: include/class_acc_ledger_sold.php:731 -#: include/class_acc_ledger_sold.php:738 -#: include/class_acc_ledger_sold.php:754 -#: include/class_acc_ledger_sold.php:850 -msgid "Payé par " -msgstr "Paid by" - -#: include/class_acc_payment.php:282 -#: include/class_acc_payment.php:323 -#: include/class_acc_payment.php:329 -msgid "Paiement encodé plus tard" -msgstr "Payment encoded later" - -#: include/class_acc_payment.php:313 -#: include/class_acc_payment.php:301 -#: include/class_acc_payment.php:345 -#: include/class_acc_payment.php:351 -msgid " paiement par " -msgstr "Paid by" - -#: include/class_anc_print.php:122 -#: include/class_anc_print.php:121 -#: include/class_anc_print.php:126 -#: include/class_anc_print.php:129 -msgid "Plan Analytique :" -msgstr "Analytic Plan" - -#: include/class_anc_print.php:126 -#: include/class_anc_print.php:125 -#: include/class_anc_print.php:130 -msgid "Entre le poste " -msgstr "Between the account" - -#: include/class_anc_print.php:128 -#: include/class_anc_print.php:127 -#: include/class_anc_print.php:132 -#: include/class_anc_print.php:133 -msgid "Choix Poste" -msgstr "Account choice" - -#: include/class_anc_print.php:133 -#: include/class_anc_print.php:132 -#: include/class_anc_print.php:137 -msgid " et le poste " -msgstr "and the account" - -#: include/fiche.inc.php:71 -#: include/fiche.inc.php:69 -#: include/fiche.inc.php:59 -#: include/fiche.inc.php:61 -#: include/fiche.inc.php:65 -msgid "Recherche :" -msgstr "search :" - -#: include/jrn.php:291 -#: include/jrn.php:292 -#: include/jrn.php:287 -#: include/deprecated_jrn.php:287 -msgid "Echéance " -msgstr "Limit of payment" - -#: include/class_fiche.php:1076 -#: include/class_fiche.php:1078 -#: include/class_fiche.php:1040 -#: include/class_fiche.php:1017 -#: include/class_fiche.php:1116 -#: include/class_fiche.php:1278 -#: include/class_fiche.php:1322 -msgid "Code interne" -msgstr "Internal code" - -#: include/class_fiche.php:1248 -#: include/class_fiche.php:1250 -#: include/class_fiche.php:1212 -#: include/class_fiche.php:1189 -#: include/class_fiche.php:1302 -#: include/template/ledger_detail_ach.php:53 -#: include/template/ledger_detail_ach.php:158 -#: include/template/ledger_detail_fin.php:72 -#: include/template/ledger_detail_misc.php:57 -#: include/template/ledger_detail_ven.php:53 -#: include/template/ledger_detail_ven.php:160 -#: include/class_fiche.php:1513 -#: include/template/ledger_detail_ach.php:86 -#: include/template/ledger_detail_ach.php:209 -#: include/template/ledger_detail_fin.php:99 -#: include/template/ledger_detail_misc.php:87 -#: include/template/ledger_detail_ven.php:88 -#: include/template/ledger_detail_ven.php:205 -#: include/class_fiche.php:1596 -#: include/template/ledger_detail_ach.php:107 -#: include/template/ledger_detail_ach.php:249 -#: include/template/ledger_detail_fin.php:105 -#: include/template/ledger_detail_ven.php:107 -#: include/template/ledger_detail_ven.php:247 -msgid "Quick Code" -msgstr "Quick Code" - -#: include/class_fiche.php:1250 -#: include/class_fiche.php:1252 -#: include/class_fiche.php:1214 -#: include/class_fiche.php:1191 -#: include/class_fiche.php:1304 -#: include/class_fiche.php:1515 -#: include/class_fiche.php:1598 -msgid "Adresse" -msgstr "Address" - -#: include/class_fiche.php:1251 -#: include/class_fiche.php:1253 -#: include/class_fiche.php:1215 -#: include/class_fiche.php:1192 -#: include/class_fiche.php:1305 -#: include/class_fiche.php:1516 -#: include/class_fiche.php:1599 -msgid "Total débit" -msgstr "Total Debit" - -#: include/class_fiche.php:1252 -#: include/class_fiche.php:1254 -#: include/class_fiche.php:1216 -#: include/class_fiche.php:1193 -#: include/class_fiche.php:1306 -#: include/class_fiche.php:1517 -#: include/class_fiche.php:1600 -msgid "Total crédit" -msgstr "Total credit" - -#: include/client.inc.php:72 -#: include/client.inc.php:71 -#: include/client.inc.php:65 -#: include/client.inc.php:50 -#: include/contact.inc.php:50 -msgid "Vous ne pouvez pas enlever de fiche" -msgstr "You can not remove a card" - -#: include/class_acc_account.php:167 -#: include/class_acc_account.php:192 -#: include/class_acc_account.php:186 -#, php-format -msgid "Numéro de classe" -msgstr "Class nummer" - -#: include/class_acc_account.php:171 -#: include/class_acc_account.php:196 -#: include/class_acc_account.php:190 -#, php-format -msgid "Classe Parent" -msgstr "Parent accouting" - -#: include/class_acc_bilan.php:72 -#: include/class_acc_bilan.php:75 -msgid " jusque " -msgstr "until" - -#: include/class_acc_bilan.php:81 -#: include/class_acc_bilan.php:84 -msgid "Choix du bilan" -msgstr "Report choice" - -#: include/class_acc_ledger_fin.php:59 -#: include/class_acc_ledger.php:1436 -#: include/class_acc_ledger_purchase.php:60 -#: include/class_acc_ledger_sold.php:64 -#: include/class_acc_ledger_purchase.php:63 -#: include/class_acc_ledger_sold.php:65 -#: include/class_acc_ledger.php:1343 -#: include/class_acc_ledger_purchase.php:62 -#: include/class_acc_ledger.php:1534 -#: include/class_acc_ledger_sold.php:66 -#: include/class_acc_ledger_fin.php:62 -#: include/class_acc_ledger.php:1607 -#: include/class_acc_ledger_purchase.php:67 -#: include/class_acc_ledger_sold.php:70 -#: include/class_acc_ledger.php:1769 -#: include/class_acc_ledger_purchase.php:68 -msgid "Accès interdit" -msgstr "Forbidden access" - -#: include/impress_bilan.inc.php:46 -#: include/impress_bilan.inc.php:47 -#: include/impress_bilan.inc.php:65 -#: include/impress_bilan.inc.php:64 -msgid "Verification comptabilite" -msgstr "Check accountancy" - -#: include/impress_bilan.inc.php:66 -#: include/impress_bilan.inc.php:67 -msgid "" -" Attention : si le bilan n'est pas équilibré.
Vérifiez
    \n" -"
  • L'affectation du résultat est fait
  • \n" -"
  • Vos comptes actifs ont un solde débiteur (sauf les comptes dit inversés)
  • \n" -"
  • les comptes passifs ont un solde créditeur (sauf les comptes dit inversés)
  • \n" -"
\n" -"Utilisez la balance des comptes pour vérifier.
" -msgstr "" -"Attention : if the outcome is not balanced
check
    \n" -"
  • You allocate the results
  • \n" -"
  • The asset has a saldo on debit (except the reverse accounting)
  • \n" -"
  • The liability has a saldo on credit(except the reverse accounting)
  • \n" -"
\n" -"Use the report of accouting to check
" - -#: html/parametre.php:139 -#: html/parametre.php:138 -#: html/parametre.php:129 -#: include/menu_translate.php:87 -msgid "Catégorie de documents" -msgstr "Document category" - -#: html/parametre.php:139 -#: html/parametre.php:138 -#: html/parametre.php:129 -msgid "Ajoute des catégories de documents,..." -msgstr "Add or remove category of documents" - -#: html/access.php:74 -#: html/access.php:82 -#: html/access.php:86 -#: html/do.php:101 -msgid "Attention: la version de base de donnée est supérieure à la version du programme, vous devriez mettre à jour" -msgstr "Warning the database version is superior to the program, you must upgrade" - -#: html/ajax_misc.php:131 -#: html/ajax_misc.php:129 -#: html/ajax_misc.php:160 -#: html/ajax_misc.php:181 -#: html/ajax_misc.php:183 -msgid "code" -msgstr "code" - -#: html/ajax_misc.php:132 -#: html/ajax_misc.php:130 -#: html/ajax_misc.php:161 -#: html/ajax_misc.php:182 -#: html/ajax_misc.php:184 -msgid "Taux" -msgstr "Rate" - -#: html/ajax_misc.php:133 -#: html/ajax_misc.php:131 -#: html/ajax_misc.php:162 -#: html/ajax_misc.php:183 -#: html/ajax_misc.php:185 -msgid "Symbole" -msgstr "Symbol" - -#: html/ajax_misc.php:134 -#: html/ajax_misc.php:132 -#: html/ajax_misc.php:163 -#: html/ajax_misc.php:184 -#: html/ajax_misc.php:186 -msgid "Explication" -msgstr "Explanation" - -#: html/ajax_misc.php:177 -#: html/ajax_misc.php:181 -#: html/ajax_misc.php:175 -#: html/ajax_misc.php:179 -#: html/ajax_misc.php:206 -#: html/ajax_misc.php:210 -#: html/ajax_misc.php:237 -#: html/ajax_misc.php:242 -#: html/ajax_misc.php:238 -#: html/ajax_misc.php:243 -msgid "tva inconnue" -msgstr "unknown VAT" - -#: html/ajax_misc.php:215 -#: include/client_card.inc.php:69 -#: include/supplier_card.inc.php:70 -#: include/user_menu.php:198 -#: include/template/letter_all.php:17 -#: include/template/letter_prop.php:20 -#: html/ajax_misc.php:213 -#: include/user_menu.php:197 -#: include/template/letter_prop.php:19 -#: html/ajax_misc.php:244 -#: include/client_card.inc.php:66 -#: html/ajax_misc.php:276 -#: include/adm_card.inc.php:72 -#: include/client_card.inc.php:70 -#: include/supplier_card.inc.php:73 -#: include/user_menu.php:206 -#: html/ajax_misc.php:278 -#: include/category_card.inc.php:69 -#: include/menu_translate.php:51 -#: include/template/letter_prop.php:59 -msgid "Lettrage" -msgstr "Lettering" - -#: html/ajax_misc.php:235 -#: html/ajax_misc.php:232 -#: html/ajax_misc.php:266 -#: html/ajax_misc.php:298 -#: html/ajax_misc.php:303 -msgid "Montant min. " -msgstr "min amount" - -#: html/ajax_misc.php:242 -#: html/ajax_misc.php:239 -#: html/ajax_misc.php:273 -#: html/ajax_misc.php:305 -#: html/ajax_misc.php:310 -msgid "Montant max. " -msgstr "Max amount" - -#: html/ajax_misc.php:264 -#: include/impress_fiche.inc.php:177 -#: html/ajax_misc.php:261 -#: include/impress_fiche.inc.php:176 -#: html/ajax_misc.php:295 -#: include/impress_fiche.inc.php:226 -#: html/ajax_misc.php:327 -#: include/impress_fiche.inc.php:270 -#: html/ajax_misc.php:332 -#: include/class_anc_grandlivre.php:161 -#: include/impress_fiche.inc.php:339 -msgid "Debit" -msgstr "Debit" - -#: html/ajax_misc.php:265 -#: include/impress_fiche.inc.php:180 -#: html/ajax_misc.php:262 -#: include/impress_fiche.inc.php:179 -#: html/ajax_misc.php:296 -#: include/impress_fiche.inc.php:229 -#: html/ajax_misc.php:328 -#: include/impress_fiche.inc.php:274 -#: html/ajax_misc.php:333 -#: include/class_anc_grandlivre.php:162 -#: include/impress_fiche.inc.php:343 -msgid "Credit" -msgstr "Credit" - -#: html/ajax_misc.php:266 -#: html/ajax_misc.php:263 -#: html/ajax_misc.php:297 -#: html/ajax_misc.php:329 -#: html/ajax_misc.php:334 -msgid "Les 2" -msgstr "Both" - -#: include/action.common.inc.php:35 -#: include/compta_ach.inc.php:49 -#: include/compta_ven.inc.php:50 -#: include/compta_fin.inc.php:40 -#: include/fiche.inc.php:48 -#: include/quick_writing.inc.php:58 -#: include/compta_ach.inc.php:39 -#: include/compta_fin.inc.php:29 -#: include/compta_ven.inc.php:41 -#: include/fiche.inc.php:38 -#: include/quick_writing.inc.php:46 -#: include/fiche.inc.php:39 -#: include/fiche.inc.php:40 -msgid "Choix TVA" -msgstr "Choice VAT" - -#: include/adm.inc.php:106 -#: include/client.inc.php:105 -#: include/supplier.inc.php:106 -#: include/adm.inc.php:105 -#: include/client.inc.php:104 -#: include/supplier.inc.php:104 -#: include/adm.inc.php:93 -#: include/client.inc.php:98 -#: include/supplier.inc.php:86 -#: include/adm.inc.php:89 -#: include/bank.inc.php:82 -#: include/client.inc.php:80 -#: include/contact.inc.php:81 -msgid "Catégorie :" -msgstr "Category" - -#: include/class_acc_ledger_purchase.php:163 -#: include/class_acc_ledger_purchase.php:168 -#: include/class_acc_ledger_sold.php:157 -#: include/class_acc_ledger_sold.php:162 -#: include/class_acc_ledger_purchase.php:157 -#: include/class_acc_ledger_purchase.php:162 -#: include/class_acc_ledger_sold.php:159 -#: include/class_acc_ledger_sold.php:164 -#: include/class_acc_ledger_purchase.php:158 -#: include/class_acc_ledger_sold.php:160 -#: include/class_acc_ledger_purchase.php:173 -#: include/class_acc_ledger_purchase.php:178 -#: include/class_acc_ledger_sold.php:175 -#: include/class_acc_ledger_sold.php:179 -#: include/class_acc_ledger_sold.php:174 -#: include/class_acc_ledger_sold.php:178 -msgid "a un code tva invalide" -msgstr "has an invalid VAT code" - -#: include/class_document_modele.php:64 -#: include/class_document_modele.php:69 -msgid "Affect." -msgstr "Assigned" - -#: include/class_document_modele.php:65 -#: include/class_document_modele.php:70 -msgid "Fichier" -msgstr "File" - -#: include/class_document_modele.php:247 -#: include/class_document_modele.php:243 -#: include/class_document_modele.php:255 -msgid "Affectation" -msgstr "Affectation" - -#: include/class_document_modele.php:251 -#: include/class_document_modele.php:247 -#: include/class_document_modele.php:259 -#: include/template/modele_document.php:47 -#: include/template/modele_document.php:45 -msgid "Uniquement journaux achat" -msgstr "Only ledger of purchase" - -#: include/class_document_modele.php:252 -#: include/class_document_modele.php:248 -#: include/class_document_modele.php:260 -#: include/template/modele_document.php:48 -#: include/template/modele_document.php:46 -msgid "Uniquement journaux vente" -msgstr "Only ledger of sales" - -#: include/class_document_modele.php:253 -#: include/class_document_modele.php:249 -#: include/class_document_modele.php:261 -#: include/template/modele_document.php:49 -#: include/template/modele_document.php:47 -msgid "Partie gestion" -msgstr "Management" - -#: include/class_itva_popup.php:117 -#: include/class_itva_popup.php:116 -#: include/class_itva_popup.php:122 -msgid "Le nom ne peut être vide" -msgstr "The name can not be empty" - -#: include/class_itva_popup.php:120 -#: include/class_itva_popup.php:119 -#: include/class_itva_popup.php:125 -msgid " TVA " -msgstr "VAT" - -#: include/class_periode.php:185 -#: include/class_periode.php:183 -#: include/class_periode.php:238 -msgid "Confirmez cloture" -msgstr "Confirm closing" - -#: include/class_periode.php:196 -#: include/class_periode.php:194 -#: include/class_periode.php:264 -msgid "Confirmez effacement ?" -msgstr "Confirm removal" - -#: include/class_periode.php:198 -#: include/class_periode.php:196 -#, php-format -msgid "Nombre opération %d" -msgstr "Number of operation %d" - -#: include/client_card.inc.php:69 -#: include/supplier_card.inc.php:70 -#: include/client_card.inc.php:66 -#: include/adm_card.inc.php:72 -#: include/client_card.inc.php:70 -#: include/supplier_card.inc.php:73 -#: include/category_card.inc.php:69 -msgid "Opérations & Lettrages" -msgstr "Operation & Lettering" - -#: include/fiche.inc.php:290 -#: include/fiche.inc.php:293 -#: include/fiche.inc.php:285 -#: include/fiche.inc.php:303 -#: include/fiche.inc.php:312 -msgid "Déplacer vers" -msgstr "Move to" - -#: include/impress_fiche.inc.php:56 -#: include/user_menu.php:189 -#: html/ajax_card.php:152 -#: include/fiche.inc.php:302 -#: include/impress.inc.php:31 -#: include/user_menu.php:198 -#: html/ajax_card.php:161 -#: include/fiche.inc.php:311 -#: include/impress_fiche.inc.php:61 -#: include/menu_translate.php:3 -#: include/menu_translate.php:71 -#: include/menu_translate.php:96 -msgid "Historique" -msgstr "Historical account" - -#: include/impress_fiche.inc.php:57 -#: include/impress_fiche.inc.php:62 -msgid "Historique Lettré" -msgstr "Historical lettered" - -#: include/impress_fiche.inc.php:58 -#: include/impress_fiche.inc.php:64 -msgid "Historique non Lettré" -msgstr "Historical not lettered" - -#: include/impress_fiche.inc.php:59 -#: include/impress_fiche.inc.php:65 -msgid "Résumé" -msgstr "Summary" - -#: include/impress_fiche.inc.php:147 -#: include/impress_fiche.inc.php:146 -#: include/impress_fiche.inc.php:194 -#: include/impress_fiche.inc.php:226 -#: include/export_fiche_balance_csv.php:139 -#: include/impress_fiche.inc.php:289 -msgid "ref" -msgstr "Ref" - -#: include/impress_fiche.inc.php:148 -#: include/impress_fiche.inc.php:147 -#: include/impress_fiche.inc.php:196 -#: include/impress_fiche.inc.php:228 -#: include/export_fiche_balance_csv.php:141 -#: include/impress_fiche.inc.php:291 -msgid "Comm" -msgstr "Comment" - -#: include/impress_fiche.inc.php:150 -#: include/impress_fiche.inc.php:149 -#: include/impress_fiche.inc.php:198 -#: include/impress_fiche.inc.php:231 -#: include/export_fiche_balance_csv.php:145 -#: include/impress_fiche.inc.php:294 -msgid "Let." -msgstr "Let." - -#: include/letter.inc.php:28 -msgid "Par poste" -msgstr "By account" - -#: include/letter.inc.php:29 -msgid "Lettrage par poste" -msgstr "Lettering for accounting" - -#: include/letter.inc.php:30 -msgid "Par fiche" -msgstr "By card" - -#: include/letter.inc.php:31 -#: include/menu_translate.php:89 -msgid "Lettrage par fiche" -msgstr "Lettering by card" - -#: include/lettering.account.inc.php:57 -#: include/lettering.card.php:57 -#: include/lettering.account.inc.php:55 -#: include/lettering.account.inc.php:47 -msgid "Lettrage pour le poste comptable " -msgstr "Lettering for the accounting" - -#: include/lettering.account.inc.php:68 -#: include/lettering.card.inc.php:75 -#: include/lettering.card.php:68 -#: include/lettering.gestion.inc.php:22 -#: include/lettering.account.inc.php:66 -#: include/lettering.card.inc.php:74 -#: include/lettering.gestion.inc.php:21 -#: include/lettering.account.inc.php:58 -#: include/lettering.card.inc.php:61 -msgid "Date début" -msgstr "Start date" - -#: include/lettering.account.inc.php:74 -#: include/lettering.card.inc.php:81 -#: include/lettering.card.php:74 -#: include/lettering.gestion.inc.php:28 -#: include/lettering.account.inc.php:72 -#: include/lettering.card.inc.php:80 -#: include/lettering.gestion.inc.php:27 -#: include/lettering.account.inc.php:64 -#: include/lettering.card.inc.php:67 -msgid "Date fin" -msgstr "End date" - -#: include/lettering.account.inc.php:81 -#: include/lettering.card.inc.php:88 -#: include/lettering.card.php:81 -#: include/lettering.gestion.inc.php:35 -#: include/lettering.account.inc.php:79 -#: include/lettering.card.inc.php:87 -#: include/lettering.gestion.inc.php:34 -#: include/lettering.account.inc.php:71 -#: include/lettering.card.inc.php:74 -msgid "Toutes opérations" -msgstr "All operations" - -#: include/lettering.account.inc.php:82 -#: include/lettering.card.inc.php:89 -#: include/lettering.card.php:82 -#: include/lettering.gestion.inc.php:36 -#: include/lettering.account.inc.php:80 -#: include/lettering.card.inc.php:88 -#: include/lettering.gestion.inc.php:35 -#: include/lettering.account.inc.php:72 -#: include/lettering.card.inc.php:75 -msgid "Opérations lettrées" -msgstr "Lettered operations" - -#: include/lettering.account.inc.php:83 -#: include/lettering.card.inc.php:90 -#: include/lettering.card.php:83 -#: include/lettering.gestion.inc.php:37 -#: include/lettering.account.inc.php:81 -#: include/lettering.card.inc.php:89 -#: include/lettering.gestion.inc.php:36 -#: include/lettering.account.inc.php:73 -#: include/lettering.card.inc.php:76 -#: include/lettering.account.inc.php:74 -#: include/lettering.card.inc.php:77 -msgid "Opérations NON lettrées" -msgstr "Not Lettered operations" - -#: include/lettering.card.inc.php:64 -#: include/lettering.card.inc.php:63 -#: include/lettering.card.inc.php:50 -msgid "Lettrage pour la fiche " -msgstr "Lettering for the card" - -#: include/periode.inc.php:65 -#: include/periode.inc.php:82 -#: include/periode.inc.php:46 -#: include/periode.inc.php:58 -#: include/periode.inc.php:45 -#: include/periode.inc.php:56 -msgid "Valeurs invalides" -msgstr "invalid values" - -#: include/user_menu.php:194 -#: include/user_menu.php:193 -#: include/user_menu.php:202 -msgid "Opération Diverses" -msgstr "Miscellaneous operation" - -#: include/user_menu.php:194 -#: include/user_menu.php:193 -#: include/user_menu.php:202 -msgid "Journaux d'OD: salaires, déclarations TVA,..." -msgstr "Ledger for MO : salary, VAT ..." - -#: include/user_menu.php:198 -#: include/user_menu.php:197 -#: include/user_menu.php:206 -msgid "Ajouter, modifier ou effacer des lettrage" -msgstr "Add, modify or remove lettering" - -#: include/template/impress_cat_card.php:3 -msgid "Categorie" -msgstr "Category" - -#: include/template/impress_cat_card.php:15 -msgid "Jusque" -msgstr "until" - -#: include/template/letter_all.php:10 -#: include/template/letter_prop.php:10 -#: include/template/letter_prop.php:9 -msgid "Désolé aucun résultat trouvé" -msgstr "Sorry no data found" - -#: include/template/letter_all.php:23 -#: include/template/letter_prop.php:26 -#: include/template/letter_prop.php:25 -#: include/template/letter_prop.php:65 -msgid "Ref" -msgstr "Ref" - -#: include/template/letter_all.php:32 -#: include/template/letter_prop.php:35 -#: include/template/letter_prop.php:34 -#: include/template/letter_all.php:35 -#: include/template/letter_prop.php:74 -msgid "Debit / Credit" -msgstr "Debit / Credit" - -#: include/template/letter_all.php:35 -#: include/template/letter_prop.php:38 -#: include/template/letter_prop.php:37 -#: include/template/letter_all.php:38 -#: include/template/letter_prop.php:77 -msgid "Op. concerné" -msgstr "Concerned Op." - -#: include/template/letter_prop.php:104 -#: include/template/letter_prop.php:103 -#: include/template/letter_prop.php:105 -#: include/template/letter_prop.php:145 -msgid "Total Debit" -msgstr "Total Debit" - -#: include/template/letter_prop.php:105 -#: include/template/letter_prop.php:104 -#: include/template/letter_prop.php:106 -#: include/template/letter_prop.php:146 -msgid "Total Credit" -msgstr "Only Credit" - -#: include/template/param_jrn.php:40 -#: include/template/param_jrn.php:88 -#: include/template/param_jrn.php:89 -msgid "Uniquement des chiffres" -msgstr "Only digits" - -#: include/template/param_jrn.php:46 -#: include/template/param_jrn.php:94 -#: include/template/param_jrn.php:95 -msgid "Dernière pièce numérotée" -msgstr "Last numbered receipt" - -#: include/template/param_jrn.php:60 -#: include/template/param_jrn.php:109 -#: include/template/param_jrn.php:110 -msgid "Laissez à 0 pour ne pas changer le numéro" -msgstr "0 for no change" - -#: html/parametre.php:303 -#: html/parametre.php:313 -#: html/parametre.php:330 -#: include/company.inc.php:109 -msgid "Suggérer la date" -msgstr "Suggest the date" - -#: include/class_acc_ledger_purchase.php:205 -#: include/class_acc_ledger_purchase.php:206 -#: include/class_acc_ledger_purchase.php:237 -msgid "ce code n'a pas de poste comptable, créez ce poste : [" -msgstr "This code has no accounting, please create it [" - -#: include/fiche.inc.php:293 -msgid "Attention, certains attributs pourraient être effacés, vous confirmez ?" -msgstr "Warning some attributes could be removed, do you confirm" - -#: include/param_pcmn.inc.php:53 -msgid "Poste comptable" -msgstr "Accounting" - -#: include/param_pcmn.inc.php:57 -msgid "Parent" -msgstr "Parent" - -#: include/param_pcmn.inc.php:59 -msgid "Type " -msgstr "Type" - -#: include/user_menu.php:392 -#: include/user_menu.php:410 -#: include/user_menu.php:138 -msgid " Hors Bilan" -msgstr "Out Balance Sheet" - -#: html/access.php:76 -#: html/user_login.php:62 -#: html/access.php:79 -#: html/user_login.php:64 -#: html/do.php:94 -msgid "Base de donnée invalide" -msgstr "Invalid Database" - -#: html/ajax_ledger.php:113 -#: html/ajax_ledger.php:136 -#: html/ajax_ledger.php:129 -msgid "Opération Effacée" -msgstr "Removed accounting" - -#: html/ajax_ledger.php:184 -#: html/ajax_ledger.php:226 -#: html/ajax_ledger.php:236 -msgid "Aucun fichier" +#: include/user.inc.php:74 +msgid "Ajout d'utilisateur" +msgstr "Add users" + +#: include/template/action_other_action.php:35 +#, fuzzy +msgid "Ajout d'étiquettes" +msgstr "Configuration label" + +#: include/database.item.php:182 +msgid "Ajout de fiche" +msgstr "Adding Record" + +#: include/ext/invoicing/include/invoice_to_zip.inc.php:43 +msgid "Ajout facture " +msgstr "Adding invoice" + +#: include/forecast.inc.php:241 +msgid "Ajout prévision" +msgstr "Add forecast" + +#: include/action.common.inc.php:186 +msgid "Ajoute une action à celle-ci" +msgstr "Add an Action here" + +#: include/dossier.inc.php:160 include/anc_group.inc.php:81 +msgid "Ajouter" +msgstr "Add" + +#: include/ajax_plugin_detail.php:54 +#, fuzzy +msgid "Ajouter ce plugin" +msgstr "Add a row" + +#: include/ext/tools/index.php:43 +msgid "Ajouter des années comptables" +msgstr "Add accounting years" + +#: include/template/detail-action.php:462 +#, fuzzy +msgid "Ajouter un fichier" msgstr "No file" -#: html/ajax_ledger.php:371 -#: html/ajax_ledger.php:438 -#: html/ajax_ledger.php:495 -msgid "Opération extournée" -msgstr "Reversed accounting" - -#: html/extension.php:80 -#: html/extension.php:72 -msgid "Retour accueil" -msgstr "Back to home" - -#: html/extension.php:88 -#: html/extension.php:80 -msgid "Déconnexion" -msgstr "Logout" - -#: html/parametre.php:130 -#: html/parametre.php:140 -#: include/menu_translate.php:80 -msgid "Attribut de fiche" -msgstr "Card attribute" - -#: html/parametre.php:130 -#: html/parametre.php:140 -msgid "Modifie les attributs des catégories de fiches" -msgstr "Modify category of card attributes" - -#: html/show_pj.php:77 -#: html/show_pj.php:81 -msgid "Fichier effacé" -msgstr "Removed file" - -#: include/class_acc_ledger.php:161 -#: include/class_acc_ledger.php:165 -#: include/class_acc_ledger.php:169 -#: include/class_acc_ledger.php:173 -#: include/class_acc_ledger.php:189 -#: include/class_acc_ledger.php:193 -msgid "Cette opération n'existe pas" -msgstr "This account doesn't exist" - -#: include/class_acc_ledger.php:173 -#: include/class_acc_ledger.php:181 -#: include/class_acc_ledger.php:201 -msgid "PERIODE FERMEE" -msgstr "Close period" - -#: include/class_anc_group_operation.php:176 -#: include/class_anticipation.php:312 -#: include/class_anc_group_operation.php:190 -#: include/class_anticipation.php:419 -#: include/class_anticipation.php:431 +#: include/class_anc_group_operation.php:189 +#: include/class_anticipation.php:430 include/template/stock_inv.php:103 msgid "Ajouter une ligne" msgstr "Add a row" -#: include/compta_fin.inc.php:59 -#: include/compta_fin.inc.php:39 -msgid "Rapprochements banquaires" -msgstr "Bank reconciliation" +#: include/class_fiche_def.php:783 +msgid "Ajoutez cet élément" +msgstr "Add this item" -#: include/ext_inc.php:21 -#: include/ext_inc.php:25 -#: include/extension_get.inc.php:34 -msgid "Ce fichier n'existe pas " -msgstr "This file doesn't exist" - -#: include/fiche.inc.php:285 -#: include/fiche.inc.php:303 -#: include/fiche.inc.php:312 -msgid "Attention, certains attributs pourraient être ajoutés à la catégorie de destination, vous confirmez ?" -msgstr "Caution some attributes will be add to the destination, do you confirm ?" - -#: include/impress_fiche.inc.php:60 -#: include/adm_card.inc.php:71 -#: include/client_card.inc.php:69 -#: include/supplier_card.inc.php:72 -#: include/category_card.inc.php:68 -#: include/impress_fiche.inc.php:66 -#: include/menu_translate.php:102 -#: include/menu_translate.php:84 -msgid "Balance" -msgstr "Balance" - -#: include/impress_fiche.inc.php:195 -#: include/template/letter_all.php:26 -#: include/impress_fiche.inc.php:227 -#: include/export_fiche_balance_csv.php:140 -#: include/impress_fiche.inc.php:290 -msgid "Interne" -msgstr "Internal" - -#: include/impress.inc.php:37 -#: include/template/ledger_detail_bottom.php:4 -#: include/impress.inc.php:36 -#: include/template/ledger_detail_bottom.php:3 -#: include/menu_translate.php:77 -#: include/menu_translate.php:97 -msgid "Rapprochement" -msgstr "Reconciliation" - -#: include/impress_rec.inc.php:62 -#: include/impress_reconciliation.php:47 -#: include/impress_rec.inc.php:78 -msgid "Visualisation" -msgstr "View" - -#: include/pref.inc.php:39 -#: include/pref.inc.php:41 -#: include/pref.inc.php:66 -msgid "Les mots de passe ne correspondent pas. Mot de passe inchangé" -msgstr "The password don't match, the password is not changed" - -#: include/user_menu.php:189 -#: include/user_menu.php:198 -msgid "Historique : toutes les opérations" -msgstr "Historic : all operation" - -#: include/user_menu.php:418 -#: include/user_menu.php:437 -msgid "Purge CSV" -msgstr "Prune CSV" - -#: include/template/ledger_detail_ach.php:48 -#: include/template/ledger_detail_fin.php:62 -#: include/template/ledger_detail_misc.php:47 -#: include/template/ledger_detail_ven.php:48 -#: include/template/ledger_detail_ach.php:81 -#: include/template/ledger_detail_fin.php:89 -#: include/template/ledger_detail_misc.php:77 -#: include/template/ledger_detail_ven.php:83 -#: include/template/ledger_detail_ach.php:102 -#: include/template/ledger_detail_fin.php:95 -#: include/template/ledger_detail_ven.php:102 -msgid "Détail" -msgstr "Detail" - -#: include/template/ledger_detail_ach.php:56 -#: include/template/ledger_detail_ven.php:56 -#: include/template/ledger_detail_ach.php:89 -#: include/template/ledger_detail_ven.php:91 -#: include/template/ledger_detail_ach.php:110 -#: include/template/ledger_detail_ven.php:112 -msgid "Taux TVA" -msgstr "VAT rate" - -#: include/template/ledger_detail_ach.php:60 -#: include/template/ledger_detail_ven.php:59 -msgid "P.Unit." -msgstr "Unit P" - -#: include/template/ledger_detail_ach.php:61 -#: include/template/ledger_detail_ven.php:60 -#: include/template/ledger_detail_ach.php:93 -#: include/template/ledger_detail_ven.php:94 -#: include/template/ledger_detail_ach.php:115 -#: include/template/ledger_detail_ven.php:110 -msgid "Quantité" -msgstr "Quantity" - -#: include/template/ledger_detail_ach.php:63 -#: include/template/ledger_detail_ven.php:62 -#: include/template/ledger_detail_ach.php:97 -#: include/template/ledger_detail_ven.php:96 -#: include/template/ledger_detail_ach.php:119 -#: include/template/ledger_detail_ven.php:116 -msgid "HTVA" -msgstr "wo VAT" - -#: include/template/ledger_detail_ach.php:64 -#: include/template/ledger_detail_ven.php:63 -#: include/template/ledger_detail_ach.php:99 -#: include/template/ledger_detail_ven.php:98 -#: include/template/ledger_detail_ach.php:121 -#: include/template/ledger_detail_ven.php:118 -msgid "TVAC" -msgstr "with VAT" - -#: include/template/ledger_detail_ach.php:134 -#: include/template/ledger_detail_ven.php:135 -#: include/template/ledger_detail_ach.php:185 -#: include/template/ledger_detail_ven.php:180 -#: include/template/ledger_detail_ach.php:225 -#: include/template/ledger_detail_ven.php:222 -msgid "Ecritures comptables" -msgstr "Accounting" - -#: include/template/ledger_detail_bottom.php:73 -#: include/template/ledger_detail_bottom.php:77 -#: include/template/ledger_detail_bottom.php:81 -msgid "Extourner" -msgstr "Reverse" - -#: include/template/ledger_search.php:23 -msgid "Et contenant dans le libellé, pièce justificative ou n° interne" -msgstr "And containing in the label, receipt or internal number" - -#: include/template/param_jrn.php:11 -msgid "Postes utilisables journal (débit/crédit) " -msgstr "Available accounting ledger (debit/credit)" - -#: include/template/param_jrn.php:17 -msgid "Uniquement pour les journaux d'Opérations Diverses" -msgstr "Only for the Ledger for various operations" - -#: include/template/param_jrn.php:28 -#: include/template/param_jrn.php:29 -msgid "Numérotation de chaque opération" -msgstr "Numbering of each operation" - -#: include/template/param_jrn.php:36 -#: include/template/param_jrn.php:37 -msgid "Compte en banque" -msgstr "Bank account" - -#: include/template/param_jrn.php:55 -#: include/template/param_jrn.php:56 -msgid "Obligatoire pour les journaux FIN : donner ici la fiche de la banque utilisée" -msgstr "Mandatory for FIN ledger : give here the card of the bank" - -#: html/ajax_card.php:134 -#: html/ajax_card.php:143 -msgid "Fiche non trouvée" -msgstr "Card not found" - -#: html/ajax_card.php:161 -#: html/ajax_card.php:170 -msgid "Aucune fiche demandée" -msgstr "No card asked" - -#: html/ajax_card.php:176 -#: html/ajax_card.php:185 -msgid "Nouvelle fiche " -msgstr "New card" - -#: html/ajax_card.php:474 -#: html/ajax_card.php:478 -msgid "Fiche non valide" -msgstr "Invalid file" - -#: html/ajax_misc.php:384 -#: include/lettering.account.inc.php:102 -#: include/lettering.card.inc.php:105 -#: include/lettering.gestion.inc.php:67 -#: html/ajax_misc.php:395 -#: include/lettering.account.inc.php:103 -#: include/lettering.card.inc.php:106 -#: include/lettering.gestion.inc.php:68 -msgid "Date malformée, désolé" -msgstr "Wrong date sorry" - -#: include/action.common.inc.php:155 -#: include/action.common.inc.php:154 -msgid "Vous confirmez l\\'effacement" -msgstr "Confirm the removing ?" - -#: include/adm_card.inc.php:71 -#: include/supplier_card.inc.php:72 -#: include/category_card.inc.php:68 -msgid "Balance du fournisseur" -msgstr "Supplier balance" - -#: include/balance.inc.php:46 -#: include/impress_bilan.inc.php:48 -#: include/impress_jrn.inc.php:82 -#: include/impress_rapport.inc.php:180 -#: include/impress_rapport.inc.php:182 -msgid "Choississez un autre exercice" -msgstr "Choose another year" - -#: include/class_acc_ledger.php:1685 -#: include/class_acc_ledger.php:1853 -msgid "Poste invalide [" -msgstr "Invalid accounting [" - -#: include/class_acc_ledger.php:1687 -#: include/class_acc_ledger.php:1855 -msgid "Poste Inexistant [" -msgstr "non-existent accounting" - -#: include/class_acc_ledger.php:2479 -#: include/class_acc_ledger.php:2687 -msgid "Filtrer" -msgstr "Filter" - -#: include/class_acc_ledger_purchase.php:187 -#: include/class_acc_ledger_sold.php:189 -#: include/class_acc_ledger_sold.php:188 -msgid " La TVA " -msgstr "The VAT" - -#: include/class_acc_ledger_purchase.php:253 -#, php-format -msgid "Pour la fiche %s, le compte %s n'existe pas" -msgstr "For the card %s the accounting %s doesn't exist" - -#: include/class_anticipation.php:120 -#: include/class_anticipation.php:122 -msgid "Période de début non valable" -msgstr "Invalid start period" - -#: include/class_anticipation.php:121 -#: include/class_anticipation.php:123 -msgid "Période de fin non valable" -msgstr "Invalid end period" - -#: include/class_fiche.php:1277 -#: include/class_fiche.php:1321 -msgid "n° pièce" -msgstr "receipt #" - -#: include/class_ibutton.php:56 -msgid "Inverser la sélection" -msgstr "Invert selection" - -#: include/class_ibutton.php:63 -msgid "Cocher tous" -msgstr "check all" - -#: include/class_ibutton.php:70 -msgid "Décocher tous" -msgstr "Uncheck all" - -#: include/class_ibutton.php:77 -msgid "Calculatrice" -msgstr "calculator" - -#: include/class_periode.php:230 -#: include/class_periode.php:268 -#, php-format -msgid "Nombre opérations %d" -msgstr "Number of operation %d" - -#: include/class_periode.php:232 -#: include/class_periode.php:328 -msgid "Confirmez Réouverture" -msgstr "Confirm reopening" - -#: include/class_periode.php:334 -msgid "Confirmez Cloture" -msgstr "Confirm closing" - -#: include/client_card.inc.php:69 -msgid "Balance du client" -msgstr "Customer balance" - -#: include/client.inc.php:102 -#: include/client.inc.php:84 -msgid "Inclure les clients sans opération :" -msgstr "Including customer wo operation" - -#: include/fiche.inc.php:117 -#: include/fiche.inc.php:125 -msgid "" -"Attention : il n'y aura pas de demande de confirmation pour enlever les\n" -" attributs sélectionnés. Il ne sera pas possible de revenir en arrière" +#: include/ajax_bookmark.php:113 +msgid "Ajoutez le menu actuel à vos favoris" msgstr "" -"Caution : there is no confirm when you remove the selected attributes, \n" -" This operation is not reversible" -#: include/forecast.inc.php:373 -#: include/forecast.inc.php:364 -msgid "Cloner" -msgstr "Clone" +#: include/class_acc_ledger_purchase.php:1632 +#: include/class_acc_ledger_sold.php:898 +msgid "Ajoutez une pièce justificative " +msgstr "Add a receipt" -#: include/forecast.inc.php:373 -#: include/forecast.inc.php:364 -msgid "Vous confirmez le clonage " -msgstr "Confirm cloning" +#: include/ext/amortis/include/class_pdf_card.php:103 +msgid "Am. actés" +msgstr "Am charge for the year" -#: include/forecast.inc.php:383 -#: include/forecast.inc.php:373 -msgid "Erreur : " -msgstr "Error :" +#: include/ext/amortis/include/template/material_detail.php:122 +#: include/ext/amortis/include/template/material_display.php:96 +msgid "Amorti" +msgstr "Cushioning" -#: include/forecast.inc.php:383 -#: include/forecast.inc.php:373 -msgid "Vous devez corriger" -msgstr "You must correct " +#: include/ext/amortis/raw.php:51 +#: include/ext/amortis/include/template/listing_year.php:15 +#: include/ext/amortis/include/template/listing_year.php:69 +msgid "Amortissement" +msgstr "Amortization" -#: include/impress_bilan.inc.php:89 -msgid "" -" Attention : si le bilan n'est pas équilibré.
Vérifiez
    \n" -"
  • L'affectation du résultat est fait
  • \n" -"
  • Vos comptes actifs ont un solde débiteur (sauf les comptes dit inversés)
  • \n" -"
  • les comptes passifs ont un solde créditeur (sauf les comptes dit inversés)
  • \n" -"
\n" -" Utilisez la balance des comptes pour vérifier.
" -msgstr " Caution the result is not balanced
" +#: include/ext/amortis/include/class_am_generate.php:164 +msgid "Amortissement " +msgstr "Amortization" -#: include/impress_fiche.inc.php:230 -#: include/export_fiche_balance_csv.php:144 -#: include/impress_fiche.inc.php:293 -msgid "Prog." -msgstr "Progr." - -#: include/stock_inc.php:107 -msgid "Sortie /Vente " -msgstr "In/out" - -#: include/stock_inc.php:107 -msgid "Entrée/Achat " -msgstr "Sale/Purchase" - -#: include/supplier.inc.php:89 -msgid "Inclure les fournisseurs sans opération :" -msgstr "Including supplier wo operation" - -#: include/user_menu.php:199 -msgid "Recette" -msgstr "Income" - -#: include/user_menu.php:199 -msgid "Journal de vente, produit et recette" -msgstr "Ledger of sale" - -#: include/user_menu.php:327 -#: include/user_menu.php:113 -msgid "Audit" -msgstr "Audit" - -#: include/user_menu.php:327 -#: include/user_menu.php:113 -msgid "Utilisateurs qui se sont connectés" -msgstr "Connected users" - -#: include/template/ledger_detail_ach.php:94 -#: include/template/ledger_detail_ach.php:116 -msgid "Non ded" -msgstr "No ded" - -#: include/template/ledger_detail_ach.php:98 -#: include/template/ledger_detail_ven.php:97 -#: include/menu_translate.php:18 -#: include/template/ledger_detail_ach.php:120 -#: include/template/ledger_detail_ven.php:117 -msgid "TVA" -msgstr "VAT" - -#: html/user_login.php:124 -msgid "Bienvenue " -msgstr "Welcome" - -#: html/user_login.php:140 -msgid "Donnez une partie du nom du dossier ou de la description à rechercher" -msgstr "Give the name of the folder or the description" - -#: include/bank.inc.php:85 -msgid "Inclure les banques sans opération :" -msgstr "Including without operation" - -#: include/class_acc_ledger.php:1382 -msgid "Quick Code ou " -msgstr "Quickcode or" - -#: include/class_acc_ledger.php:1495 -msgid "verifie Imputation Analytique" -msgstr "Verify Analytic " - -#: include/class_acc_ledger.php:1839 -#: include/class_acc_ledger.php:1965 -#, php-format -msgid "La fiche %s n'a pas de poste comptable" -msgstr "The card %s has no accountancy " - -#: include/class_acc_ledger.php:1843 -msgid "Poste Inexistant pour la fiche [" -msgstr "Inexisting accountancy" - -#: include/class_acc_ledger.php:3129 -msgid "Journal n'existe pas" -msgstr "The ledger doesn't exist" - -#: include/class_acc_ledger_purchase.php:247 -#, php-format -msgid "Pour la fiche %s, le compte contrepartie %s n'existe pas" -msgstr "For the card %s, the otherside %s doesn't exist" - -#: include/class_acc_ledger_purchase.php:1426 -msgid "Vérifiez imputation analytique" -msgstr "Verify analytic" - -#: include/class_acc_ledger_purchase.php:1449 -msgid " TVAC" -msgstr "Included VAT" - -#: include/class_acc_ledger_sold.php:775 -msgid "Attention Différence entre TVA calculée et donnée" -msgstr "Warning difference with computed VAT" - -#: include/class_acc_ledger_sold.php:816 -msgid "Vérifiez Imputation Analytique" -msgstr "Verify analytic" - -#: include/class_anc_grandlivre.php:158 -#: include/class_anc_listing.php:84 -msgid "Quick_code" -msgstr "Quick_code" - -#: include/class_anc_grandlivre.php:159 -#: include/class_anc_listing.php:87 -msgid "libelle" -msgstr "label" - -#: include/class_anc_grandlivre.php:160 -#: include/class_anc_listing.php:88 -msgid "Num.interne" -msgstr "Internal number" +#: include/ext/amortis/include/template/material_detail.php:57 +#: include/ext/amortis/include/template/material_display.php:43 +msgid "Amortissement acté" +msgstr "Officially recorded amortization" #: include/class_anc_listing.php:85 msgid "Analytique" msgstr "Analytic" -#: include/class_anc_print.php:131 -msgid "Entre l'activité " -msgstr "Between activity " +#: include/ajax_preference.php:166 include/ajax_preference.php:167 +msgid "Anglais" +msgstr "English" -#: include/class_anc_print.php:138 -msgid " et l'activité " -msgstr "and activity" +#: include/ext/amortis/include/template/material_detail.php:53 +#: include/ext/amortis/include/template/material_display.php:39 +msgid "Annuités" +msgstr "Annuities" -#: include/company.inc.php:111 -msgid "Utilisez des postes comptables alphanumérique" -msgstr "Use alphanumeric accountancy" +#: include/category_detail.inc.php:68 include/param_pcmn.inc.php:63 +#: include/template/dashboard.php:343 +#: include/ext/amortis/include/template/material_add.php:51 +#: html/ajax_card.php:284 include/ajax_mod_predf_op.php:56 +msgid "Annuler" +msgstr "Cancel" -#: include/company.inc.php:112 -msgid "Changer le libellé des détails en VEN ou ACH" -msgstr "Change label for the detail in Purchase and sale" +#: include/ext/tva/form_periode.php:6 +#: include/ext/amortis/include/am_histo.inc.php:36 +#: include/ext/amortis/include/class_pdf_card.php:103 +#: include/ext/amortis/include/template/material_detail.php:55 +#: include/ext/amortis/include/template/material_display.php:41 +#: include/ext/amortis/include/template/util_generate.php:35 +msgid "Année" +msgstr "Year" -#: include/compta_fin.inc.php:78 -msgid "Confirmation" -msgstr "Confirm" +#: include/ext/amortis/raw.php:100 +msgid "Année Achat" +msgstr "Purchase year" -#: include/contact.inc.php:90 -msgid "Société :" -msgstr "Company" +#: include/ext/amortis/raw.php:51 +#: include/ext/amortis/include/template/material_listing.php:12 +msgid "Année achat" +msgstr "Purchase year" -#: include/export_fiche_balance_csv.php:143 +#: include/ext/amortis/include/template/material_add.php:20 +#: include/ext/amortis/include/template/material_detail.php:22 +#: include/ext/amortis/include/template/material_display.php:20 +msgid "Année comptable d'achat" +msgstr "Purchase accounting year" + +#: include/ext/amortis/include/class_pdf_card.php:78 +#: include/ext/amortis/include/template/listing_year.php:11 +msgid "Année d'achat" +msgstr "Year of purchase" + +#: include/ext/amortis/include/class_am_card.php:177 +msgid "Année invalide" +msgstr "Invalid year" + +#: include/ext/tva/decl_tva.inc.php:32 +#: include/ext/tva/list_assujetti.inc.php:30 +#: include/ext/tva/list_intra.inc.php:31 +msgid "Année invalide [" +msgstr "Invalid year [" + +#: include/ext/coprop/index.php:45 +msgid "Appel de fond" +msgstr "Distance call" + +#: include/template/action_search.php:119 +#, php-format +msgid "Après le " +msgstr "After" + +#: include/company.inc.php:118 +msgid "Assujetti à la tva" +msgstr "VAT users" + +#: include/ext/import_account/include/class_impacc_operation.php:61 +#, php-format +msgid "Attention %s ne contient pas 11 colonnes" +msgstr "Warning% s does not contain 11 columns" + +#: include/card_attr.inc.php:124 +msgid "Attention : effacera les données qui y sont liées" +msgstr "" + +#: include/class_fiche_def.php:792 +#, fuzzy +msgid "" +"Attention : il n'y aura pas de demande de confirmation pour enlever les\n" +" attributs sélectionnés. Il ne sera pas " +"possible de revenir en arrière" +msgstr "" +"Warning : there is no confirmation to remove the selected attributes. \n" +"It won't be possible to get back" + +#: include/class_acc_ledger.php:1421 +msgid "Attention : il vaut mieux utiliser les fiches que les postes comptables" +msgstr "" + +#: include/class_acc_ledger.php:1983 +msgid "" +"Attention : il vaut mieux utiliser les fiches que les postes comptables " +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_3.inc.php:37 +#, php-format +msgid "Attention : il y a %d enregistrements incorrects " +msgstr "Attention:% d records incorrect" + +#: include/class_acc_ledger_purchase.php:1484 +#: include/class_acc_ledger_sold.php:755 +msgid "Attention Différence entre TVA calculée et donnée" +msgstr "Warning difference computed with VAT" + +#: include/ajax_preference.php:102 include/ajax_preference.php:103 +msgid "" +"Attention cette période est fermée, vous ne pourrez rien modifier dans le " +"module comptable" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1344 +#: include/class_acc_ledger_sold.php:640 include/compta_ods.inc.php:94 +#: include/opening.inc.php:79 include/ext/modop/modop_save.php:86 +#: include/ext/modop/modop_save.php:167 +msgid "Attention numéro pièce existante, elle a du être adaptée" +msgstr "Deposit, the receipt number already exists and has been changed" + +#: include/ext/amortis/include/material_add.inc.php:37 +#: include/ext/amortis/include/print_fiche.inc.php:75 +msgid "Attention pas de catégorie de fiche à amortir" +msgstr "Be careful not grade sheet cushion" + +#: include/ac_common.php:608 +#, php-format +msgid "" +"Attention periode \n" +"\t\t non trouvee periode p_from= %s p_to_periode = %s" +msgstr "" + +#: include/fiche_def.inc.php:67 +msgid "Attention, ne changer pas la signification de ce poste." +msgstr "Warning, do not change the meaning of this accounting item" + +#: html/do.php:104 +msgid "" +"Attention: la version de base de donnée est supérieure à la version du " +"programme, vous devriez mettre à jour" +msgstr "" + +#: include/database.item.php:90 +msgid "Attribut de fiche" +msgstr "Card attribute" + +#: include/class_follow_up.php:1196 +msgid "Aucun" +msgstr "No" + +#: include/class_profile_menu.php:238 include/class_profile_menu.php:262 +msgid "Aucun accès" +msgstr "No access" + +#: include/ext/transform/ajax_modify_intervat_assujetti.php:27 +msgid "Aucun client" +msgstr "No customer" + +#: include/ext/import_account/include/class_impacc_operation.php:191 +msgid "Aucun client ou fournisseur" +msgstr "No customer or supplier" + +#: include/ext/import_account/include/class_impacc_operation.php:177 +msgid "Aucun code TVA ne correspond à ce taux" +msgstr "No VAT code corresponds to the rate" + +#: include/class_acc_ledger.php:3416 include/class_acc_ledger.php:3461 +#: include/class_acc_ledger.php:3594 +#, fuzzy +msgid "Aucun compte en banque n'est donné" +msgstr "No analytical defined" + +#: include/ext/rapport_avance/ajax_parameter_send_mail.php:23 +msgid "Aucun document" +msgstr "No document" + +#: include/class_acc_bilan.php:256 +#, fuzzy +msgid "Aucun enregistrement trouve" +msgstr "No record found" + +#: include/class_acc_ledger.php:649 include/class_acc_ledger.php:843 +#: include/ext/invoicing/include/class_acc_ledger_sold_generate.php:97 +msgid "Aucun enregistrement trouvé" +msgstr "No record found" + +#: html/ajax_ledger.php:263 +msgid "Aucun fichier" +msgstr "No file" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:108 +msgid "Aucun fichier donné" +msgstr "Any given file" + +#: include/balance.inc.php:101 +#, fuzzy +msgid "Aucun filtre, tous les journaux" +msgstr "Write directly in a ledger" + +#: include/ajax_preference.php:152 include/ajax_preference.php:153 +msgid "Aucun mini rapport" +msgstr "No mini-report" + +#: include/anc_od.inc.php:43 +msgid "Aucun plan analytique défini" +msgstr "No analytical defined" + +#: include/anc_pa.inc.php:255 +#, fuzzy +msgid "Aucun plan analytique n'est défini" +msgstr "No analytical defined" + +#: include/class_anc_print.php:93 +msgid "Aucun plan défini" +msgstr "No plane defined" + +#: include/ajax_anc_search.php:74 +#, fuzzy +msgid "Aucun poste trouvé" +msgstr "No period found" + +#: include/template/dashboard.php:59 +msgid "Aucun rapport défini" +msgstr "No report defined" + +#: include/ajax_boxcard_search.php:71 +#, fuzzy +msgid "Aucun résultat" +msgstr "Result" + +#: include/template/dashboard.php:247 +#, fuzzy +msgid "Aucune action en retard" +msgstr "No customer" + +#: include/ext/invoicing/include/invoice_send_mail.inc.php:123 +msgid "Aucune adresse email trouvée" +msgstr "No email address found" + +#: html/ajax_card.php:265 +msgid "Aucune catégorie de fiche ne correspond à votre demande" +msgstr "No class plug will match your request" + +#: html/ajax_card.php:253 html/ajax_card.php:356 html/ajax_card.php:357 +#, fuzzy +msgid "" +"Aucune catégorie de fiche ne correspond à votre demande, le journal pourrait " +"n'avoir accès à aucune fiche" +msgstr "No class plug will match your request" + +#: include/ext/import_account/include/class_import_card.php:145 +msgid "Aucune colonne n'est définie" +msgstr "No column is defined" + +#: include/ac_common.php:1091 +#, fuzzy +msgid "Aucune donnée" +msgstr "no data" + +#: include/extension_choice.inc.php:37 +msgid "Aucune extension disponible" +msgstr "No plugin available" + +#: html/ajax_card.php:172 +msgid "Aucune fiche demandée" +msgstr "No card Abebooks web sites" + +#: include/fiche.inc.php:305 +msgid "Aucune fiche trouvée" +msgstr "No record found" + +#: include/ajax_add_menu.php:122 +#, fuzzy +msgid "Aucune impression disponible à ajouter" +msgstr "No plugin available" + +#: include/ext/import_account/include/class_impacc_operation.php:196 +msgid "Aucune marchandise ou service" +msgstr "No goods or services" + +#: html/ajax_history.php:113 html/ajax_history.php:184 +#: include/balance_card.inc.php:70 +#, fuzzy +msgid "Aucune opération pour l'exercice courant" +msgstr "Other entry in this ledger" + +#: include/template/dashboard.php:35 +msgid "Aucune periode par defaut" +msgstr "There is no default period" + +#: include/class_iperiod.php:123 +msgid "Aucune periode trouvée" +msgstr "No period found" + +#: include/ext/invoicing/include/invoice_send_mail.inc.php:120 +msgid "Aucune pièce à envoyer" +msgstr "No room to send" + +#: include/class_acc_ledger.php:1633 +#: include/class_acc_ledger_purchase.php:1009 +#: include/class_acc_ledger_sold.php:1034 +#: include/ext/amortis/include/class_am_generate.php:86 +msgid "Aucune période ouverte" +msgstr "No period opened" + +#: include/class_user.php:405 +msgid "Aucune période trouvéee !!!" +msgstr "No period found" + +#: include/template/tag_choose.php:8 include/template/tag_search_select.php:8 +#: include/template/tag_select.php:8 +#, fuzzy +msgid "Aucune étiquette disponible" +msgstr "No plugin available" + +#: include/user_menu.php:114 include/user_menu.php:121 +msgid "Audit" +msgstr "Audit" + +#: include/template/fiche_def_list.php:66 +#, fuzzy +msgid "Automatique" +msgstr "Analytic" + +#: html/ajax_history.php:90 html/ajax_history.php:96 html/ajax_history.php:161 +#: html/ajax_history.php:167 +#, fuzzy +msgid "Autre exercice" +msgstr "Exercise" + +#: include/template/ledger_detail_bottom.php:12 +#, fuzzy +msgid "Autre information" +msgstr "Other info" + +#: include/class_acc_ledger_purchase.php:1650 +#: include/class_acc_ledger_sold.php:916 +msgid "Autre information : " +msgstr "Other info" + +#: include/template/action_other_action.php:7 +#, fuzzy +msgid "Autres actions" +msgstr "Add Action" + +#: include/database.item.php:117 +msgid "Avancé" +msgstr "Advanced" + +#: include/template/action_search.php:126 +msgid "Avant le" +msgstr "Before" + +#: include/template/profile.php:41 +#, fuzzy +msgid "Avec Calculatrice" +msgstr "calculator" + +#: include/template/profile.php:45 +msgid "Avec Direct Form" +msgstr "" + +#: include/template/form_ledger_fin.php:12 +#, fuzzy +msgid "Avec date d'extrait" +msgstr "new entry" + +#: include/template/form_ledger_fin.php:13 +#, fuzzy +msgid "Avec date opérations" +msgstr "Operation by date" + +#: include/balance.inc.php:172 +msgid "Avec la balance de l'année précédente" +msgstr "" + +#: include/template/new_mod_payment.php:47 +msgid "Avec la fiche" +msgstr "With the card" + +#: include/dossier.inc.php:225 +msgid "Backup" +msgstr "Backup" + +#: include/ext/backup_noadmin/include/template/home.php:1 +msgid "Backup du dossier courant" +msgstr "Backup the current folder" + +#: include/category_card.inc.php:68 include/database.item.php:65 +#: include/database.item.php:100 include/fiche.inc.php:69 +msgid "Balance" +msgstr "Balance" + +#: include/database.item.php:6 +msgid "Balance Analytique/comptabilité" +msgstr "Analytical Balance / Accounting" + +#: include/database.item.php:82 +msgid "Balance croisée double" +msgstr "Crossed balance" + +#: include/database.item.php:82 +msgid "Balance double croisées des imputations analytiques" +msgstr "Double crossed balance" + +#: include/category_card.inc.php:68 +msgid "Balance du fournisseur" +msgstr "Supplier balance" + +#: include/class_acc_ledger.php:2083 +#, fuzzy +msgid "Balance incorrecte" +msgstr "wrong balance" + +#: include/class_acc_ledger.php:1934 +msgid "Balance incorrecte " +msgstr "wrong balance" + +#: include/fiche.inc.php:70 +msgid "Balance non soldée" +msgstr "Balance not voided" + +#: include/database.item.php:100 +msgid "Balance par catégorie de fiche" +msgstr "Balance sheet by category" + +#: include/database.item.php:7 +msgid "Balance par groupe" +msgstr "Balance group" + +#: include/database.item.php:4 +msgid "Balance simple" +msgstr "Simple balance" + +#: include/database.item.php:4 +msgid "Balance simple des imputations analytiques" +msgstr "Simple analytic balance for record" + +#: include/class_anticipation.php:292 include/database.item.php:69 +#: include/template/form_ledger_fin.php:25 +#: include/ext/modop/template_ledger_fin.php:5 +msgid "Banque" +msgstr "Bank" + +#: include/dossier.inc.php:365 +msgid "Base de donnée " +msgstr "Database" + +#: html/do.php:97 html/user_login.php:66 +msgid "Base de donnée invalide" +msgstr "Invalid Database" + +#: include/ext/amortis/include/material_delete.inc.php:5 +msgid "Bien à amortir" +msgstr "Although damping" + +#: include/ext/amortis/include/material_modify.inc.php:41 +msgid "Bien à amortir effacé" +msgstr "Although damping deleted" + +#: include/ext/amortis/index.php:52 +msgid "Biens amortissables" +msgstr "Depreciable property" + +#: html/user_login.php:155 +msgid "Bienvenue" +msgstr "Welcome" + +#: html/user_login.php:155 +msgid "Bienvenue " +msgstr "Welcome" + +#: include/database.item.php:105 +msgid "Bilan" +msgstr "Balance sheet" + +#: include/database.item.php:169 +msgid "Bon de commande Fournisseur" +msgstr "Order Supplier" + +#: include/database.item.php:168 +msgid "Bons de commande client" +msgstr "Good customer order" + +#: include/ext/coprop/index.php:46 +msgid "Budget" +msgstr "Budget" + +#: include/template/detail-action.php:337 +msgid "Cacher les détails" +msgstr "Hide details" + +#: include/database.item.php:190 include/database.item.php:192 +msgid "Caisse" +msgstr "Fund" + +#: include/class_ibutton.php:82 +msgid "Calculatrice" +msgstr "calculator" + +#: include/template/dashboard.php:9 include/ajax_calendar_zoom.php:23 +msgid "Calendrier" +msgstr "Calendar" + +#: include/template/impress_cat_card.php:6 include/ajax_boxcard_search.php:57 +msgid "Categorie" +msgstr "Category" + +#: include/class_document_modele.php:67 +#: include/template/forecast-detail.php:11 include/template/fiche_list.php:45 +msgid "Catégorie" +msgstr "Category" + +#: include/adm.inc.php:90 include/bank.inc.php:83 include/contact.inc.php:81 +#: include/customer.inc.php:82 include/manager.inc.php:85 +#: include/supplier.inc.php:87 +msgid "Catégorie :" +msgstr "Category" + +#: include/template/modele_document.php:23 +#, fuzzy +msgid "Catégorie de document" +msgstr "Document category" + +#: include/database.item.php:58 +msgid "Catégorie de documents" +msgstr "Document category" + +#: include/database.item.php:108 +#: include/ext/import_account/include/template/input_file.php:22 +#: include/ext/import_account/include/template/test_file.php:23 +#: include/ext/import_account/include/template/test_operation.php:23 +#: include/template/fiche_def_input.php:6 +msgid "Catégorie de fiche" +msgstr "Card Category" + +#: include/class_fiche_def.php:236 +msgid "Catégorie existante" +msgstr "Existing category" + +#: html/ajax_card.php:468 html/ajax_card.php:469 +msgid "Catégorie existe déjà" +msgstr "Category already exists" + +#: html/ajax_card.php:470 html/ajax_card.php:471 +msgid "Catégorie sauvée" +msgstr "Category saved" + +#: include/template/forecast_cat.php:11 +msgid "Catégories" +msgstr "Categories" + +#: include/action.common.inc.php:197 include/ajax_view_action.php:51 +msgid "Ce document n'est pas accessible" +msgstr "This document is not available" + +#: include/ajax_bookmark.php:46 +msgid "Ce favori a déjà été ajouté" +msgstr "" + +#: include/extension_get.inc.php:38 +msgid "Ce fichier n'existe pas " +msgstr "This file does not exist" + +#: include/ajax_anc_search.php:65 +#, fuzzy +msgid "Ce plan n'existe pas" +msgstr "This account does not exist" + +#: include/class_acc_ledger.php:2376 +#, fuzzy +msgid "Celui qui paie n' a pas de poste comptable" +msgstr "Has No accounting entry" + +#: include/ac_common.php:409 include/action.common.inc.php:125 +msgid "Cette action ne vous est pas autorisée Contactez votre responsable" +msgstr "This work is not allowed, please contact your administrator" + +#: include/class_fiche.php:406 +msgid "Cette categorie de card n'existe pas" +msgstr "This category do not exist" + +#: include/ext/rapport_avance/ajax_parameter_send_mail.php:14 +msgid "Cette catégorie n'a pas d'attribut email" +msgstr "This category has no email attribute" + +#: include/ext/tva/class_ext_tva.php:200 +msgid "Cette exercice comptable n'est pas dans ce dossier" +msgstr "This accounting exercise is not in this folder" + +#: html/ajax.php:48 html/extension.raw.php:59 +msgid "Cette extension n'existe pas " +msgstr "This plugin do not exist" + +#: include/ext/import_account/include/class_impacc_operation.php:146 +msgid "Cette fiche n'a pas de poste comptable valide" +msgstr "This record has no valid accounting item" + +#: include/ext/import_account/include/class_impacc_operation.php:133 +msgid "Cette fiche n'existe pas" +msgstr "This record does not exist" + +#: include/class_acc_ledger.php:200 include/class_acc_ledger.php:203 +msgid "Cette opération n'existe pas" +msgstr "This account does not exist" + +#: include/ext/import_account/include/imd_parameter.inc.php:41 +#: include/ext/import_account/include/imd_parameter.inc.php:68 +msgid "Cette tva est invalide" +msgstr "This vat is invalid" + +#: include/template/action_other_action.php:26 +#, fuzzy +msgid "Changement des états" +msgstr "Change the wording details" + +#: html/ajax_ledger.php:504 +msgid "" +"Changement impossible: on ne peut pas changer la date dans une période fermée" +msgstr "" + +#: include/template/stock_summary_list.php:87 +#, fuzzy +msgid "Changement manuel" +msgstr "Change language" + +#: include/company.inc.php:123 +msgid "Changer le libellé des détails" +msgstr "Change the wording details" + +#: include/ext/tools/index.php:41 +msgid "Changer poste comptable ou fiche" +msgstr "Change position or accounting record" + +#: include/class_fiche_def.php:475 +msgid "Chaque fiche aura automatiquement son propre poste comptable : " +msgstr "Each card Automatically Will Have His Own accounting item" + +#: html/ajax_ledger.php:353 +msgid "Chargement" +msgstr "Loading" + +#: include/user_menu.php:153 +msgid "Charges" +msgstr "Expenses" + +#: include/ajax_navigator.php:52 +msgid "Chemin" +msgstr "" + +#: html/ajax_card.php:273 +msgid "" +"Choississez la catégorie de fiche à laquelle vous aimeriez ajouter une fiche" +msgstr "" + +#: include/balance.inc.php:45 include/impress_bilan.inc.php:48 +#: include/impress_jrn.inc.php:84 include/impress_rapport.inc.php:182 +msgid "Choississez un autre exercice" +msgstr "Choose another year" + +#: html/user_login.php:160 +msgid "Choississez votre dossier" +msgstr "Select your folder" + +#: include/ajax_anc_search.php:78 include/ajax_anc_search.php:79 +msgid "Choix" +msgstr "Choice" + +#: include/class_anc_print.php:132 +msgid "Choix Poste" +msgstr "Account choice" + +#: include/ext/modop/modop_display.php:84 +#: include/ext/modop/modop_display.php:117 +msgid "Choix TVA" +msgstr "Choice VAT" + +#: html/ajax_card.php:251 html/ajax_card.php:261 html/ajax_card.php:298 +msgid "Choix de la catégorie" +msgstr "Category" + +#: include/class_acc_bilan.php:83 +msgid "Choix du bilan" +msgstr "Report choice" + +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:186 +msgid "Choix du type de journal " +msgstr "Select the type of paper" + +#: include/class_acc_account.php:189 +#, php-format +msgid "Classe Parent" +msgstr "Parent accouting" + +#: include/template/category_of_card.php:21 +#: include/template/fiche_def_input.php:18 +msgid "Classe de base" +msgstr "Basic accounting item" + +#: include/ext/coprop/index.php:44 +msgid "Clef de répartition" +msgstr "Key distribution" + +#: include/class_acc_ledger_sold.php:663 +#: include/class_acc_ledger_sold.php:1005 +#: include/class_acc_ledger_sold.php:1260 include/class_pre_op_ven.php:371 +#: include/database.item.php:15 include/template/ledger_detail_ven.php:52 +#: include/ext/transform/ajax_modify_intervat_assujetti.php:24 +#: include/template/print_ledger_simple.php:10 +msgid "Client" +msgstr "Customer" + +#: include/ext/transform/ajax_save_intervat_assujetti.php:27 +msgid "Client incorrect" +msgstr "Incorrect customer" + +#: include/template/dashboard.php:284 +#, fuzzy +msgid "Clients en retard" +msgstr "Incorrect customer" + +#: include/template/dashboard.php:60 +msgid "Cliquez ici pour mettre à jour vos préférences" +msgstr "Click here to update your preference" + +#: include/forecast.inc.php:364 +msgid "Cloner" +msgstr "Clone" + +#: include/class_ibutton.php:68 +msgid "Cocher tous" +msgstr "check all" + +#: include/ext/amortis/include/template/util_generate.php:62 +msgid "Cochez ce qu'il faut amortir" +msgstr "Check what to amortize" + +#: include/ajax_get_menu_detail.php:97 +#, fuzzy +msgid "Cochez cette case si vous souhaitez effacer ce menu" +msgstr "Check the box if you are about to remove this folder" + +#: include/ajax_get_menu_detail.php:107 +msgid "" +"Cochez cette case si vous souhaitez effacer ce menu ainsi que ceux qui en " +"dépendent" +msgstr "" + +#: include/dossier.inc.php:332 +msgid "Cochez la case si vous êtes sûr de vouloir effacer ce dossier" +msgstr "Check the box if you are about to remove this folder" + +#: include/template/tag_detail.php:24 +#, fuzzy +msgid "Cochez pour cette case pour effacer ce tag" +msgstr "Check the box if you are about to remove this folder" + +#: include/ajax_view_mod_stock.php:52 +#, fuzzy +msgid "Cochez pour confirmer effacement" +msgstr "You confirm the removal" + +#: include/ext/transform/ajax_modify_intervat_assujetti.php:78 +msgid "Cochez pour effacer cette fiche" +msgstr "Tick ​​to delete this record" + +#: include/class_acc_ledger_purchase.php:1376 +#: include/class_acc_ledger_sold.php:670 include/ext/amortis/raw.php:51 +#: include/ext/amortis/include/template/listing_year.php:8 +#: include/ajax_get_menu_detail.php:75 include/ajax_plugin_detail.php:39 +#: include/anc_group.inc.php:62 include/template/stock_summary_list.php:45 +#: include/menu.inc.php:112 include/ext/tools/raw.php:80 +msgid "Code" +msgstr "Code" + +#: include/ac_common.php:1062 +#, fuzzy +msgid "Code Interne" +msgstr "Internal code" + +#: include/ext/transform/include/template/listing_assujetti_declarant.php:45 +#: include/ext/transform/include/template/listing_assujetti_representative.php:48 +msgid "Code Pays" +msgstr "Country code" + +#: include/ext/transform/include/class_transform_declarant.php:166 +#: include/ext/transform/include/class_transform_representative.php:201 +msgid "Code Pays incorrect" +msgstr "Country code incorrect" + +#: include/company.inc.php:107 +msgid "Code Postal" +msgstr "ZIP Code" + +#: include/template/stock_histo_search.php:35 +#: include/template/stock_inv.php:60 +#: include/template/stock_summary_table.php:33 +#, fuzzy +msgid "Code Stock" +msgstr "Stock" + +#: include/template/detail-action.php:308 +msgid "Code TVA" +msgstr "VAT Code" + +#: include/ext/tva/form_parameter.php:183 +msgid "Code TVA pour clients Intracommunataire" +msgstr "VAT code for Intracommunataire customers" + +#: include/ext/tva/form_parameter.php:189 +msgid "Code TVA pour clients nationaux" +msgstr "VAT code for domestic customers" + +#: include/template/menu_detail.php:27 +#, fuzzy +msgid "Code du menu" +msgstr "New" + +#: include/class_fiche.php:1283 +msgid "Code interne" +msgstr "Internal code" + +#: include/ext/modop/index.php:42 +msgid "Code interne de l'opération à modifier" +msgstr "Internal operation code to change" + +#: html/login.php:67 +#, fuzzy +msgid "Code invalide" +msgstr "Invalid Accounting item" + +#: include/ext/transform/include/template/listing_assujetti_declarant.php:35 +#: include/ext/transform/include/template/listing_assujetti_representative.php:36 +msgid "Code postal" +msgstr "Postal code" + +#: include/class_default_menu.php:49 +msgid "Code pour appel gestion" +msgstr "Code for call management" + +#: include/class_default_menu.php:48 +msgid "Code pour création facture depuis gestion" +msgstr "Code for invoice creation from management" + +#: include/export_fiche_balance_csv.php:142 include/fiche.inc.php:440 +msgid "Comm" +msgstr "How" + +#: include/template/detail-action.php:232 +#: include/template/form_ledger_fin.php:43 +#: include/ext/modop/template_ledger_fin.php:19 +#: include/ext/transform/ajax_modify_intervat_assujetti.php:71 +#: include/ext/transform/include/template/listing_client_display.php:48 +msgid "Commentaire" +msgstr "How" + +#: include/company.inc.php:109 +msgid "Commune" +msgstr "Department" + +#: include/class_acc_ledger_fin.php:551 include/class_acc_ledger.php:1445 +#: include/class_acc_ledger_purchase.php:1399 +#: include/class_acc_ledger_sold.php:690 +#: include/template/ledger_detail_ach.php:146 +#: include/template/ledger_detail_fin.php:115 +#: include/template/ledger_detail_misc.php:99 +#: include/template/ledger_detail_ven.php:144 +msgid "Compt. Analytique" +msgstr "Cost Accounting" + +#: include/database.item.php:115 +msgid "Compta Analytique" +msgstr "Analytic accountancy" + +#: include/database.item.php:74 +msgid "Comptabilité" +msgstr "Accountancy" + +#: include/database.item.php:138 +msgid "Compte bancaire" +msgstr "Bank account" + +#: include/class_acc_bilan.php:149 +msgid "Compte de resultat : Charge avec un solde crediteur" +msgstr "" + +#: include/class_acc_bilan.php:150 +msgid "Compte de resultat : produit avec un solde debiteur" +msgstr "" + +#: include/template/param_jrn.php:41 include/template/ledger_detail_fin.php:34 +#: include/template/operation_detail_fin.php:31 +msgid "Compte en banque" +msgstr "Bank account" + +#: include/class_acc_bilan.php:155 +msgid "Compte inverse : Charge avec un solde debiteur" +msgstr "" + +#: include/class_acc_bilan.php:153 +msgid "Compte inverse : actif avec un solde debiteur" +msgstr "" + +#: include/class_acc_bilan.php:154 +msgid "Compte inverse : passif avec un solde crediteur" +msgstr "" + +#: include/class_acc_bilan.php:156 +msgid "Compte inverse : produit avec un solde crediteur" +msgstr "" + +#: include/user_menu.php:151 +msgid "Compte tiers" +msgstr "Other account" + +#: include/class_acc_bilan.php:152 +#, fuzzy +msgid "Comptes inverses" +msgstr "Other account" + +#: include/class_acc_bilan.php:146 +#, fuzzy +msgid "Comptes normaux" +msgstr "Bank account" + +#: include/class_acc_ledger.php:669 include/class_acc_ledger.php:867 +#: include/ext/invoicing/include/class_acc_ledger_sold_generate.php:124 +msgid "Concerne" +msgstr "Regarding" + +#: include/database.item.php:202 +#, fuzzy +msgid "" +"Concerne tous les achats, factures reçues, notes de crédit reçues et notes " +"de frais" +msgstr "Relates to all sales, credit notes sent" + +#: include/database.item.php:203 +#, fuzzy +msgid "" +"Concerne tous les mouvements financiers (comptes en banque, caisses, visa...)" +msgstr "Balance of bank accounts, cash ..." + +#: include/database.item.php:204 +msgid "" +"Concerne toutes les opérations comme les amortissements, les comptes TVA, ..." +msgstr "" + +#: include/database.item.php:205 +msgid "Concerne toutes les ventes, notes de crédit envoyées" +msgstr "Relates to all sales, credit notes sent" + +#: include/database.item.php:10 +msgid "Config. Menu" +msgstr "Config. Menu" + +#: include/database.item.php:58 +msgid "Config. catégorie de documents" +msgstr "Config. category of documents" + +#: include/database.item.php:8 +msgid "Config. de la tva" +msgstr "VAT setting" + +#: include/database.item.php:121 +msgid "Config. des méthodes de paiement" +msgstr "Payment method configuration" + +#: include/database.item.php:101 +msgid "Config. du plan comptable" +msgstr "Config. Chart of Accounts" + +#: include/database.item.php:87 +msgid "Config. modèle de document" +msgstr "Of paper template parameters" + +#: include/database.item.php:78 +msgid "Config. poste comptable de base" +msgstr "Config accountancy" + +#: include/database.item.php:109 +msgid "Configuration de catégorie de fiches" +msgstr "Configuration category pages" + +#: include/database.item.php:106 +msgid "Configuration des dépôts" +msgstr "Repository configuration" + +#: include/database.item.php:88 +msgid "Configuration des journaux" +msgstr "ledger parameter" + +#: include/database.item.php:10 +msgid "Configuration des menus et plugins" +msgstr "Setting menus and plugins" + +#: include/database.item.php:126 +msgid "Configuration des menus par défaut" +msgstr "Configuring default menu" + +#: include/database.item.php:81 +msgid "Configuration des tags" +msgstr "Configuration tags" + +#: include/database.item.php:106 +msgid "Configuration dépôts" +msgstr "Deposits configuration" + +#: include/ext/coprop/index.php:48 +msgid "Configuration et paramètre" +msgstr "Configuration and parameter" + +#: include/database.item.php:77 +msgid "Configuration profil" +msgstr "Profile configuration" + +#: include/database.item.php:81 +msgid "Configuration étiquette" +msgstr "Configuration label" + +#: include/compta_fin.inc.php:83 +msgid "Confirmer" +msgstr "Confirmed" + +#: include/class_periode.php:242 include/class_periode.php:360 +msgid "Confirmez Réouverture" +msgstr "Confirm reopening" + +#: include/class_periode.php:265 +msgid "Confirmez effacement ?" +msgstr "Confirm removal" + +#: include/template/periode_add_exercice.php:15 +msgid "Confirmez vous l'ajout d\\'un exercice comptable ?" +msgstr "" + +#: include/category_card.inc.php:66 include/database.item.php:51 +#: include/template/detail-action.php:74 +msgid "Contact" +msgstr "Contact" + +#: include/database.item.php:158 +msgid "Contrepartie pour TVA non Ded." +msgstr "Consideration for VAT not Ded." + +#: include/database.item.php:157 +msgid "Contrepartie pour TVA récup par impot" +msgstr "Consideration for VAT tax by Recycling" + +#: include/database.item.php:160 +msgid "Contrepartie pour dépense fiscal. non déd." +msgstr "Consideration for tax expenditure. not ded." + +#: include/database.item.php:159 +msgid "Contrepartie pour dépense à charge du gérant" +msgstr "Consideration for expenditure from the manager" + +#: include/ext/invoicing/include/invoicing.inc.php:106 +msgid "Conversion en PDF" +msgstr "PDF conversion" + +#: include/compta_ach.inc.php:78 include/compta_fin.inc.php:84 +#: include/compta_ven.inc.php:87 +#: include/ext/amortis/include/class_am_generate.php:214 +msgid "Corriger" +msgstr "Correct" + +#: include/database.item.php:172 +msgid "Courrier" +msgstr "Email" + +#: include/dossier.inc.php:286 +msgid "Creation Dossier" +msgstr "Folder Creation" + +#: html/ajax_misc.php:365 include/class_anc_grandlivre.php:162 +#: include/fiche.inc.php:499 +msgid "Credit" +msgstr "Credit" + +#: include/class_acc_ledger.php:3280 include/user_menu.php:51 +msgid "Création" +msgstr "Creation" + +#: include/template/category_of_card.php:28 +msgid "Création automatique du poste comptable" +msgstr "Automatic Creation of the accounting item" + +#: include/template/fiche_def_input.php:23 +#, fuzzy +msgid "" +"Création automatique du poste comptable uniquement s'il n'y a qu'un seul " +"poste" +msgstr "Automatic Creation of the accounting entry if only single" + +#: include/template/fiche_def_input.php:23 +msgid "" +"Création automatique du poste comptable uniquement s'il n\\y a qu'un seul " +"poste" +msgstr "Automatic Creation of the accounting entry if only single" + +#: include/ext/tva/class_ext_tva.php:340 +msgid "Création de l'écriture comptable" +msgstr "Creating the accounting entry" + +#: include/database.item.php:13 +msgid "Création de rapport" +msgstr "Create a raport" + +#: include/ext/tva/class_ext_tva.php:341 +msgid "Création du fichier xml" +msgstr "Creation of xml file" + +#: include/ext/coprop/index.php:45 +msgid "Création décompte pour appel de fond" +msgstr "Creation statement for distance call" + +#: include/database.item.php:183 +msgid "Création, modification et effacement de fiche" +msgstr "Creation, modification and deletion of record" + +#: include/ext/rapport_avance/index.php:59 +msgid "Création, modification, Paramètre" +msgstr "Creating, Setting" + +#: include/ext/rapport_avance/index.php:58 +msgid "Création, modification, Paramètre de listes, mailing list" +msgstr "Creation, modification, parameter lists, mailing list" + +#: include/export_fiche_balance_csv.php:144 +#: include/template/anc_balance_group.php:50 msgid "Crébit" msgstr "Credit" -#: include/export_fiche_balance_csv.php:146 -msgid "Diff Let." -msgstr "Diff Let." +#: include/class_acc_ledger.php:1437 include/class_anticipation.php:420 +#: include/class_fiche.php:1286 include/operation_ods_new.inc.php:92 +#: include/template/ledger_detail_ach.php:277 +#: include/template/ledger_detail_fin.php:109 +#: include/template/ledger_detail_misc.php:93 +#: include/template/ledger_detail_ven.php:276 +#: include/template/letter_all.php:38 include/template/letter_prop.php:37 +#: include/template/letter_prop.php:77 +#: include/template/operation_detail_misc.php:36 +#: include/ext/modop/modop_display.php:164 +#: include/ext/coprop/include/appel_fond.inc.php:86 +#: include/ext/coprop/include/appel_fond.inc.php:155 +#: include/ext/coprop/include/class_coprop_appel_fond.php:203 +#: include/anc_od.inc.php:150 +msgid "Crédit" +msgstr "Credit" -#: include/impress_fiche.inc.php:63 -msgid "Historique Lettré et montants différents" -msgstr "Lettered history and different amounts" +#: include/template/letter_prop.php:151 +#, fuzzy +msgid "Créditeur" +msgstr "Credit" -#: include/impress_fiche.inc.php:67 -msgid "Balance non soldée" -msgstr "Balance not voided" +#: include/adm.inc.php:117 include/bank.inc.php:114 +#: include/category_card.inc.php:131 include/class_acc_ledger_fin.php:242 +#: include/class_acc_ledger.php:1586 include/class_acc_ledger.php:3493 +#: include/class_acc_ledger_purchase.php:949 +#: include/class_acc_ledger_sold.php:972 include/class_acc_ledger_sold.php:979 +#: include/class_follow_up.php:293 include/class_pre_op_ach.php:159 +#: include/class_pre_op_ach.php:167 include/class_pre_op_advanced.php:160 +#: include/class_pre_op_ven.php:153 include/class_pre_op_ven.php:160 +#: include/contact.inc.php:124 include/customer.inc.php:112 +#: include/fiche.inc.php:112 include/manager.inc.php:116 +#: include/supplier.inc.php:118 include/ext/modop/modop_display.php:188 +#: include/ext/coprop/include/class_copro_budget.php:114 +#: include/ext/coprop/include/lot.inc.php:34 +msgid "Créer une nouvelle fiche" +msgstr "Add a new card" + +#: include/class_anc_listing.php:90 include/export_fiche_balance_csv.php:146 +msgid "D/C" +msgstr "D / C" + +#: include/ext/tools/raw.php:83 +#, fuzzy +msgid "DC" +msgstr "D / C" + +#: include/template/stock_summary_table.php:89 +#: include/template/stock_summary_table.php:123 +msgid "DIFF" +msgstr "" + +#: include/template/ledger_search.php:8 +msgid "Dans le journal" +msgstr "In the ledger" + +#: include/class_acc_ledger.php:1424 include/class_acc_ledger.php:1610 +#: include/class_acc_ledger_purchase.php:1350 +#: include/class_acc_ledger_sold.php:647 include/class_anc_grandlivre.php:156 +#: include/class_anc_listing.php:82 include/class_fiche.php:1281 +#: include/export_fiche_balance_csv.php:139 include/fiche.inc.php:437 +#: include/template/dashboard.php:337 include/template/detail-action.php:36 +#: include/template/form_ledger_detail.php:16 +#: include/template/form_ledger_fin.php:20 +#: include/template/form_ledger_fin.php:40 include/template/letter_all.php:23 +#: include/template/letter_prop.php:25 include/template/letter_prop.php:65 +#: include/ext/modop/template_ledger_fin.php:3 +#: include/ext/import_account/include/class_impacc_operation.php:248 +#: include/ext/import_account/include/class_impacc_operation.php:486 +#: include/ac_common.php:1061 include/audit_log.php:37 +#: include/template/action_search_result.php:44 include/card_attr.inc.php:79 +#: include/class_acc_ledger.php:663 include/class_acc_ledger.php:816 +#: include/template/impress_reconciliation.php:10 +#: include/template/ledger_detail_ach.php:23 +#: include/template/ledger_detail_fin.php:24 +#: include/template/ledger_detail_misc.php:27 +#: include/template/ledger_detail_ven.php:25 +#: include/template/print_ledger_simple.php:7 +#: include/template/stock_inv.php:34 +msgid "Date" +msgstr "Date" + +#: include/ext/amortis/include/template/material_display.php:108 +msgid "Date " +msgstr "Date" + +#: include/ext/amortis/include/template/material_detail.php:13 +msgid "Date Acquisition" +msgstr "Date Acquisition" + +#: include/ext/tools/raw.php:75 +#, fuzzy +msgid "Date DMY" +msgstr "Date" + +#: include/database.item.php:162 +msgid "Date Fin" +msgstr "End Date" + +#: include/ext/amortis/raw.php:51 include/ext/amortis/raw.php:100 +#: include/ext/amortis/include/template/material_listing.php:11 +msgid "Date acquisition" +msgstr "Date acquisition" + +#: include/ext/amortis/include/template/listing_year.php:10 +#: include/ext/amortis/include/template/material_add.php:10 +#: include/ext/amortis/include/template/material_display.php:10 +msgid "Date d'acquisition" +msgstr "Date of acquisition" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:67 +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:71 +msgid "Date de calcul incorrect" +msgstr "Date incorrect calculation" + +#: include/template/forecast_cat.php:8 +#, fuzzy +msgid "Date de début" +msgstr "Start date" + +#: include/template/forecast_cat.php:9 +#, fuzzy +msgid "Date de fin" +msgstr "End date" + +#: include/ext/amortis/include/template/util_generate.php:43 +msgid "Date de l'opération" +msgstr "Date of transaction" + +#: include/template/action_search.php:51 +#, fuzzy +msgid "Date de rappel après" +msgstr "Reminder" + +#: include/template/action_search.php:57 +#, fuzzy +msgid "Date de rappel avant" +msgstr "Reminder" + +#: include/database.item.php:139 include/lettering.account.inc.php:65 +#: include/lettering.card.inc.php:69 include/lettering.gestion.inc.php:28 +#: include/ext/tools/include/export_operation.inc.php:32 +msgid "Date début" +msgstr "Start date" + +#: include/class_acc_ledger_fin.php:100 include/class_acc_ledger_fin.php:184 +#: include/class_acc_ledger.php:1852 include/class_acc_ledger_purchase.php:96 +#: include/class_acc_ledger_sold.php:91 +msgid "Date et periode ne correspondent pas" +msgstr "Date and period do not match" + +#: include/lettering.account.inc.php:77 include/lettering.card.inc.php:82 +#: include/lettering.gestion.inc.php:34 +#: include/ext/tools/include/export_operation.inc.php:33 +msgid "Date fin" +msgstr "End date" + +#: include/class_acc_ledger.php:191 include/class_acc_ledger_purchase.php:81 +#: include/class_acc_ledger_sold.php:79 include/ext/tools/raw.php:42 +msgid "Date invalide" +msgstr "Invalid Date" + +#: include/ext/amortis/include/class_am_generate.php:121 +msgid "Date invalide " +msgstr "Invalid date" + +#: include/template/detail-action.php:55 +msgid "Date limite" +msgstr "Deadline" + +#: html/ajax_misc.php:338 html/ajax_misc.php:352 +msgid "Date malformée" +msgstr "Date malformed" + +#: include/lettering.account.inc.php:59 include/lettering.account.inc.php:72 +#: include/lettering.account.inc.php:116 include/lettering.card.inc.php:62 +#: include/lettering.card.inc.php:76 include/lettering.gestion.inc.php:74 +msgid "Date malformée, désolé" +msgstr "Wrong time sorry" + +#: include/template/ledger_detail_ach.php:36 +#: include/template/ledger_detail_ven.php:38 +#, fuzzy +msgid "Date paiement" +msgstr "Payment date" + +#: html/ajax_misc.php:364 include/class_anc_grandlivre.php:161 +#: include/fiche.inc.php:495 +msgid "Debit" +msgstr "Debit" + +#: html/user_login.php:151 +msgid "Deconnexion" +msgstr "Disconnect" + +#: include/class_acc_bilan.php:70 include/impress_gl_comptes.inc.php:62 +#: include/impress_poste.inc.php:93 include/template/impress_cat_card.php:14 +msgid "Depuis" +msgstr "From" #: include/impress_gl_comptes.inc.php:80 msgid "Depuis le poste" msgstr "From the accountancy" +#: include/template/modele_document.php:80 +msgid "Dernier numéro utilisé pour ce type de document" +msgstr "" + +#: include/template/param_jrn.php:102 +msgid "Dernière pièce numérotée" +msgstr "Last numbered receipt" + +#: include/template/dashboard.php:291 +msgid "Dernières opérations" +msgstr "Last entries" + +#: include/class_anc_account.php:277 include/class_anc_listing.php:86 +#: include/class_anc_plan.php:124 include/class_fiche.php:1284 +#: include/database.item.php:143 include/dossier.inc.php:278 +#: include/dossier.inc.php:312 include/param_pcmn.inc.php:53 +#: include/template/dashboard.php:339 include/template/detail-action.php:208 +#: include/template/detail-action.php:305 +#: include/template/ledger_detail_ach.php:119 +#: include/template/ledger_detail_ven.php:123 +#: include/template/letter_all.php:32 include/template/letter_prop.php:31 +#: include/template/letter_prop.php:71 +#: include/template/operation_detail_ach.php:36 +#: include/template/operation_detail_ven.php:36 +#: include/template/param_jrn.php:124 include/ext/amortis/raw.php:51 +#: include/ext/tva/form_parameter.php:117 +#: include/ext/amortis/include/template/listing_year.php:9 +#: include/ext/amortis/include/template/util_generate.php:68 +#: include/ac_common.php:1063 include/ajax_boxcard_search.php:60 +#: include/ajax_plugin_detail.php:43 include/anc_group.inc.php:62 +#: include/anc_pa.inc.php:196 include/card_attr.inc.php:95 +#: include/class_acc_ledger.php:666 include/class_acc_ledger.php:822 +#: include/template/menu_detail.php:43 +#: include/template/print_ledger_simple.php:11 include/template/profile.php:37 +#: include/template/tag_detail.php:18 include/template/tag_list.php:14 +#: include/template/tag_search_select.php:19 +#: include/template/tag_select.php:19 include/menu.inc.php:114 +msgid "Description" +msgstr "Description" + +#: include/ajax_mod_predf_op.php:44 +#, fuzzy +msgid "Description (max 50 car.)" +msgstr "Description" + +#: include/ajax_navigator.php:56 +#, fuzzy +msgid "Description complète" +msgstr "Description" + +#: include/dossier.inc.php:76 +#, fuzzy +msgid "" +"Desole la creation de ce dossier a echoue,\n" +" la cause la plus probable est deux fois le même nom de dossier" +msgstr "" +"Sorry the folder creation failed,\n" +" it is likely due to " + +#: include/template/action_search.php:94 include/template/detail-action.php:65 +#: include/template/action_search_result.php:53 +msgid "Destinataire" +msgstr "Recipient" + +#: include/export_fiche_balance_csv.php:148 +msgid "Diff Let." +msgstr "Let Diff." + +#: include/template/forecast_result.php:128 +msgid "Diff. cumul." +msgstr "Cumulated diff" + +#: include/operation_ods_new.inc.php:93 +#: include/ext/modop/modop_display.php:165 +#: include/ext/coprop/include/appel_fond.inc.php:87 +#: include/ext/coprop/include/appel_fond.inc.php:156 +#: include/ext/coprop/include/class_coprop_appel_fond.php:204 +#: include/anc_od.inc.php:151 +msgid "Difference" +msgstr "Difference" + +#: include/class_acc_bilan.php:230 +msgid "Difference Produit - Charge" +msgstr "" + +#: include/template/forecast_result.php:102 +#: include/template/forecast_result.php:182 +msgid "Différence" +msgstr "Difference" + +#: include/ext/amortis/include/template/material_detail.php:128 +#: include/ext/amortis/include/template/material_display.php:102 +msgid "Différence entre le montant à amortir et le montant amorti =" +msgstr "Difference between the amount to be amortized and depreciated amount =" + +#: include/class_calendar.php:168 include/class_calendar.php:256 +msgid "Dimanche" +msgstr "Sunday" + +#: include/template/stock_histo_search.php:64 +#, fuzzy +msgid "Direction" +msgstr "Description" + +#: include/database.item.php:75 include/database.item.php:175 +#: include/ext/tva/form_parameter.php:111 +msgid "Divers" +msgstr "Miscelleanous" + +#: html/ajax_ledger.php:284 html/ajax_ledger.php:324 html/ajax_ledger.php:348 +#: include/class_acc_ledger.php:868 include/database.item.php:87 +#: include/ext/invoicing/include/class_acc_ledger_sold_generate.php:125 +msgid "Document" +msgstr "Document" + +#: include/database.item.php:167 +msgid "Document Interne" +msgstr "Internal Document" + +#: include/database.item.php:120 +msgid "Document de suivi sous forme de liste" +msgstr "Consignment as list" + +#: include/ext/rapport_avance/ajax_parameter_send_mail.php:24 +msgid "Document en PDF" +msgstr "PDF document" + +#: include/ext/rapport_avance/ajax_parameter_send_mail.php:25 +msgid "Document généré" +msgstr "Generated Document" + +#: include/template/detail-action.php:382 +#: include/ext/invoicing/include/invoicing.inc.php:95 +msgid "Document à générer" +msgstr "Document to generate" + +#: include/class_acc_account.php:138 +msgid "Donnee member inconnue " +msgstr "" + +#: include/ac_common.php:782 +#, fuzzy +msgid "Données non disponibles" +msgstr "No plugin available" + +#: include/dossier.inc.php:214 +msgid "Dossier inexistant" +msgstr "Folder does not exist" + +#: include/class_user.php:897 +msgid "Dossier non accessible" +msgstr "Folder not available" + +#: include/user_menu.php:111 +msgid "Dossiers" +msgstr "Folders" + +#: include/ext/amortis/include/class_am_generate.php:157 +msgid "Dotation à " +msgstr "Staffing" + +#: include/class_acc_ledger_fin.php:60 +#: include/class_acc_ledger_purchase.php:72 +#: include/class_acc_ledger_sold.php:67 +msgid "Double Encodage" +msgstr "Double entries" + +#: include/database.item.php:132 +msgid "Durée Amortissement" +msgstr "Amortization term" + +#: include/class_acc_ledger.php:1436 include/class_acc_ledger.php:1690 +#: include/class_anticipation.php:419 include/class_fiche.php:1285 +#: include/class_pre_op_advanced.php:186 +#: include/export_fiche_balance_csv.php:143 +#: include/operation_ods_new.inc.php:91 +#: include/template/ledger_detail_ach.php:276 +#: include/template/ledger_detail_fin.php:108 +#: include/template/ledger_detail_misc.php:92 +#: include/template/ledger_detail_ven.php:275 +#: include/template/letter_all.php:35 include/template/letter_prop.php:34 +#: include/template/letter_prop.php:74 +#: include/template/operation_detail_misc.php:35 +#: include/ext/modop/modop_display.php:163 +#: include/ext/coprop/include/appel_fond.inc.php:85 +#: include/ext/coprop/include/appel_fond.inc.php:154 +#: include/ext/coprop/include/class_coprop_appel_fond.php:202 +#: include/anc_od.inc.php:149 include/template/anc_balance_group.php:49 +msgid "Débit" +msgstr "Debit" + +#: include/template/forecast-detail.php:16 +msgid "Débit ou Crédit" +msgstr "Debit or credit" + +#: include/template/letter_prop.php:153 +#, fuzzy +msgid "Débiteur" +msgstr "Debit" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:60 +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:271 +msgid "Déclarant" +msgstr "Declarer" + +#: include/ext/skel/index.php:43 include/ext/tva/index.php:32 +msgid "Déclaration TVA" +msgstr "VAT return" + +#: include/ext/skel/index.php:43 include/ext/tva/index.php:32 +msgid "Déclaration Trimestriel ou annuel de TVA" +msgstr "Quarterly or annual VAT return" + +#: include/ext/tva/decl_tva.inc.php:49 +#: include/ext/tva/list_assujetti.inc.php:48 +#: include/ext/tva/list_intra.inc.php:49 +msgid "Déclaration sauvée" +msgstr "Declaration saved" + +#: include/class_ibutton.php:75 +msgid "Décocher tous" +msgstr "Uncheck all" + +#: include/ac_common.php:784 +#, fuzzy +msgid "Déconnecté" +msgstr "Logout" + +#: include/class_acc_ledger_purchase.php:1608 +#: include/class_acc_ledger_sold.php:864 +msgid "Déduction acompte " +msgstr "Deposit deduction" + +#: include/report.inc.php:97 +msgid "Définition" +msgstr "Definition" + +#: include/ext/import_account/include/template/input_file.php:16 +#: include/ext/import_account/include/template/test_file.php:16 +#: include/ext/import_account/include/template/test_operation.php:16 +msgid "Délimiteur" +msgstr "Delimiter" + +#: include/class_acc_ledger_purchase.php:1377 +#: include/class_acc_ledger_sold.php:671 +#: include/template/form_ledger_detail.php:67 +#: include/template/predf_ledger_detail.php:17 +msgid "Dénomination" +msgstr "Name" + +#: include/ajax_get_menu_detail.php:82 +#, fuzzy +msgid "Dépendant de" +msgstr "Purchase" + +#: include/class_anticipation.php:292 +msgid "Dépense" +msgstr "Purchase" + +#: include/database.item.php:137 +msgid "Dépense charge du grant (partie privé) " +msgstr "Expenditure charged to the grant (private party)" + +#: include/template/fiche_list.php:89 +#, fuzzy +msgid "Déplacer la sélection vers" +msgstr "Clear selection" + +#: include/template/profile_sec_repository.php:35 +#: include/template/stock_inv.php:42 +msgid "Dépot" +msgstr "Deposit" + +#: include/template/stock_histo_search.php:51 +#, fuzzy +msgid "Dépôt" +msgstr "Deposits" + +#: include/ajax_get_profile.php:44 +msgid "Dépôts" +msgstr "Deposits" + +#: include/template/letter_all.php:13 include/template/letter_prop.php:11 +msgid "Désolé aucun résultat trouvé" +msgstr "Sorry no data found" + +#: html/ajax_ledger.php:200 +msgid "Désolé il y a une erreur" +msgstr "Sorry there was an error" + +#: include/ext/invoicing/include/invoice_send_mail.inc.php:39 +msgid "Désolé mais il faut donner l'email de celui qui envoie" +msgstr "Sorry, but you have to give the email of sender" + +#: include/dossier.inc.php:56 +msgid "Désolé vous devez migrer ce modèle en unicode" +msgstr "Sorry you-have to migrate this template in unicpde" + +#: include/dossier.inc.php:345 +msgid "Désolé, vous n'avez pas coché la case" +msgstr "Sorry the box is not checked" + +#: include/template/ledger_detail_ach.php:112 +#: include/template/ledger_detail_fin.php:96 +#: include/template/ledger_detail_misc.php:81 +#: include/template/ledger_detail_ven.php:115 +#: include/template/result_cat_card_summary.php:14 +#: include/template/stock_summary_list.php:46 +msgid "Détail" +msgstr "Detail" + +#: include/ajax_get_profile.php:42 +msgid "Détail Impressions" +msgstr "Retail Impressions" + +#: include/ajax_get_profile.php:41 +msgid "Détail Menus" +msgstr "Detailed Menus" + +#: include/ajax_view_action.php:33 +msgid "Détail action" +msgstr "Detailed Action" + +#: include/class_pre_op_ach.php:183 +msgid "Détail articles acheté" +msgstr "Details item" + +#: include/class_acc_ledger_purchase.php:972 +#: include/class_acc_ledger_purchase.php:1372 +msgid "Détail articles achetés" +msgstr "Detail items" + +#: include/class_acc_ledger_sold.php:666 +#: include/class_acc_ledger_sold.php:1138 include/class_pre_op_ven.php:241 +msgid "Détail articles vendus" +msgstr "Detail sold items" + +#: include/ajax_view_mod_stock.php:33 +#, fuzzy +msgid "Détail changement" +msgstr "Detailed sheet" + +#: include/category_card.inc.php:64 +msgid "Détail de la fiche" +msgstr "Details of the card" + +#: include/ext/amortis/include/material_modify.inc.php:40 +#: include/ext/amortis/include/template/material_display.php:1 +msgid "Détail de matériel" +msgstr "Equipment detail" + +#: include/template/detail-action.php:290 +msgid "Détail des articles" +msgstr "Item details" + +#: include/ajax_tag_detail.php:15 +#, fuzzy +msgid "Détail du dossier ou tag" +msgstr "Backup the current folder" + +#: include/extension.inc.php:41 +msgid "Détail extension" +msgstr "Plugin detail" + +#: include/ext/amortis/include/am_print.php:32 html/ajax_card.php:130 +#: html/ajax_card.php:322 +msgid "Détail fiche" +msgstr "Detailed sheet" + +#: html/ajax_card.php:504 +#, fuzzy +msgid "Détail fiche (sauvée)" +msgstr "Detailed sheet" + +#: include/class_acc_ledger_purchase.php:1328 +#: include/class_acc_ledger_sold.php:624 +msgid "Détail opération " +msgstr "Retail operation" + +#: include/class_acc_ledger_purchase.php:1353 +#: include/class_acc_ledger_sold.php:650 +#: include/template/form_ledger_detail.php:24 include/class_acc_ledger.php:817 +#: include/template/ledger_detail_ach.php:30 +#: include/template/ledger_detail_ven.php:33 +msgid "Echeance" +msgstr "Limit Date" + +#: include/class_acc_ledger_purchase.php:1678 +#: include/class_acc_ledger_sold.php:943 +msgid "Echeance dépassée" +msgstr "Missed deadline" + +#: include/class_acc_ledger_sold.php:1012 +msgid "Echéance" +msgstr "Date Limit" + +#: include/class_profile_menu.php:237 include/class_profile_menu.php:261 +msgid "Ecriture" +msgstr "Writing" + +#: include/database.item.php:86 +msgid "Ecriture Ouverture" +msgstr "Opening writing" + +#: include/ext/tva/class_ext_tva.php:340 +msgid "Ecriture comptable" +msgstr "Booking services" + +#: include/database.item.php:86 +msgid "Ecriture d'ouverture" +msgstr "Opening" + +#: include/database.item.php:53 +msgid "Ecriture prédefinie" +msgstr "Predefined accounting" + +#: include/template/ledger_detail_ach.php:249 +#: include/template/ledger_detail_ven.php:247 +msgid "Ecritures comptables" +msgstr "Accounting" + +#: include/payment_middle.inc.php:55 include/anc_pa.inc.php:100 +#: include/cfgledger.inc.php:124 +msgid "Efface" +msgstr "Remove" + +#: include/action.common.inc.php:187 +msgid "Efface cette action" +msgstr "Remobe this Action" + +#: include/report.inc.php:134 +msgid "Effacement" +msgstr "Remove" + +#: include/ext/tva/class_ext_tva.php:342 +msgid "Effacement déclaration" +msgstr "Erase statement" + +#: include/class_document_modele.php:70 include/class_document_type.php:82 +#: include/compta_fin.inc.php:144 include/dossier.inc.php:220 +#: include/dossier.inc.php:334 include/forecast.inc.php:363 +#: include/template/ledger_detail_bottom.php:123 +#: include/ext/transform/ajax_save_intervat_assujetti.php:72 +#: include/ext/amortis/include/template/material_detail.php:137 +#: include/ajax_view_mod_stock.php:55 include/anc_group.inc.php:88 +#: include/card_attr.inc.php:86 include/template/detail-action.php:159 +#: include/template/detail-action.php:189 +msgid "Effacer" +msgstr "Remove" + +#: include/compta_ach.inc.php:223 include/compta_ven.inc.php:239 +msgid "Effacer " +msgstr "Remove" + +#: include/ajax_get_profile.php:87 +#, fuzzy +msgid "Effacer ce profil" +msgstr "Remove this card" + +#: include/class_fiche_def.php:785 +msgid "Effacer cette catégorie" +msgstr "Remove this category" + +#: include/category_detail.inc.php:69 +msgid "Effacer cette fiche" +msgstr "Remove this card" + +#: include/ext/amortis/include/template/listing_histo.php:50 +msgid "Effacer la sélection" +msgstr "Clear selection" + +#: include/template/fiche_list.php:87 +#, fuzzy +msgid "Effacer la sélection " +msgstr "Clear selection" + +#: include/template/action_other_action.php:55 +#, fuzzy +msgid "Effacer les documents choisis" +msgstr "Clear documentation of monitoring" + +#: include/database.item.php:185 +msgid "Effacer les documents du suivi" +msgstr "Clear documentation of monitoring" + +#: include/ext/amortis/include/material_delete.inc.php:6 +msgid "Effacé" +msgstr "Erased" + +#: include/class_anticipation.php:341 +msgid "Elements" +msgstr "Items" + +#: include/database.item.php:174 +msgid "Email" +msgstr "E-mail" + +#: include/ext/invoicing/include/invoicing.inc.php:109 +msgid "Email envoyé par" +msgstr "Email sent" + +#: include/ext/transform/include/class_transform_declarant.php:163 +#: include/ext/transform/include/class_transform_representative.php:198 +msgid "Email incorrect" +msgstr "Incorrect Email" + +#: include/template/stock_summary_list.php:49 +#, fuzzy +msgid "En Stock" +msgstr "Stock" + +#: include/ext/amortis/include/template/material_detail.php:52 +msgid "" +"En changeant le montant à amortir, l'année ou le nombre d'années, les " +"annuités seront recalculées et l'historique effacé" +msgstr "" + +#: include/template/dashboard.php:100 +msgid "En retard" +msgstr "" + +#: include/class_pre_op_ven.php:176 +msgid "En-tête facture client" +msgstr "Customer invoice header" + +#: include/class_pre_op_ach.php:182 +msgid "En-tête facture fournisseur" +msgstr "Supplier invoice header" + +#: include/template/dashboard.php:283 +msgid "Encaissement clients aujourd'hui" +msgstr "" + +#: include/ext/import_account/include/template/test_file.php:26 +#: include/ext/import_account/include/template/test_operation.php:26 +msgid "Encodage" +msgstr "Encoding" + +#: include/ext/import_account/include/template/input_file.php:25 +msgid "Encodage unicode" +msgstr "Unicode encoding" + +#: include/class_fiche_def.php:789 +msgid "Enleve les éléments cochés" +msgstr "Remove the checked items" + +#: include/template/action_other_action.php:43 +msgid "Enlever des étiquettes" +msgstr "" + +#: include/template/action_other_action.php:51 +msgid "Enlever toutes les étiquettes des documents choisis" +msgstr "" + +#: include/payment_middle.inc.php:103 include/anc_pa.inc.php:52 +#: include/anc_pa.inc.php:99 +msgid "Enregistre" +msgstr "Record" + +#: include/compta_ach.inc.php:77 include/compta_fin.inc.php:114 +#: include/compta_ven.inc.php:86 +msgid "Enregistrement" +msgstr "Record" + +#: include/action.common.inc.php:160 include/action.common.inc.php:258 +#: include/compta_ach.inc.php:222 include/compta_ven.inc.php:238 +msgid "Enregistrer" +msgstr "Submit" + +#: include/class_anc_print.php:130 +msgid "Entre l'activité " +msgstr "Between activity" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:99 +#, php-format +msgid "Entre les date %s et %s" +msgstr "Between the date% s and% s" + +#: include/ext/tva/form_periode.php:3 +msgid "Entrez la période de la déclaration" +msgstr "Enter the date of the declaration" + +#: include/ext/rapport_avance/include/template/parameter_send_mail_input.php:23 +msgid "Envoi" +msgstr "Sending" + +#: include/ext/invoicing/include/invoicing.inc.php:102 +msgid "Envoi des factures par email" +msgstr "Send invoices by email" + +#: include/ext/invoicing/include/invoice_send_mail.inc.php:116 +msgid "Envoi echoué" +msgstr "Sending fails" + +#: include/ext/invoicing/include/invoice_send_mail.inc.php:113 +msgid "Envoi facture " +msgstr "Shipping bill" + +#: include/ext/rapport_avance/ajax_parameter_send_mail.php:17 +msgid "Envoi par email" +msgstr "Send by email" + +#: include/ext/invoicing/include/invoicing.inc.php:104 +msgid "Envoi uniquement à ceux ayant une adresse email et une facture" +msgstr "Sending only those with an email address and an invoice" + +#: include/ext/invoicing/include/invoicing.inc.php:124 +msgid "Envoyer copie à l'expéditeur" +msgstr "Send copy to sender" + +#: include/forecast.inc.php:373 +msgid "Erreur : " +msgstr "Error:" + +#: include/ext/import_account/include/class_sql_impacc.php:36 +#: include/ext/import_account/include/class_sql_impacc.php:47 +#: include/class_acc_account.php:66 include/class_acc_account.php:77 +#: include/class_acc_compute.php:94 include/class_acc_compute.php:104 +msgid "Erreur attribut inexistant" +msgstr "Error nonexistent attribute" + +#: include/ext/import_account/include/class_impacc_operation.php:284 +msgid "Erreur ce type journal n' est pas encore supporté" +msgstr "Error log this type is not yet supported" + +#: include/template/forecast_result.php:36 +msgid "Estimé" +msgstr "Estimated" + +#: include/template/ledger_search.php:22 +msgid "Et Compris entre les date" +msgstr "And Between the date" + +#: include/template/ledger_search.php:48 +msgid "Et compris entre les montants" +msgstr "And Between the Amounts" + +#: include/template/ledger_search.php:39 +msgid "Et contenant dans le libellé, pièce justificative ou n° interne" +msgstr "And Containing in the label, receipt or internal number" + +#: include/template/ledger_search.php:30 +msgid "Et paiement compris entre les date " +msgstr "And payment between the time" + +#: include/template/ledger_search.php:74 +msgid "Et uniquement non payées" +msgstr "And not only paid" + +#: include/template/ledger_search.php:56 +msgid "Et utilisant la fiche (quick code)" +msgstr "And using the card (quick code)" + +#: include/template/ledger_search.php:64 +msgid "Et utilisant le poste comptable" +msgstr "And using the accounting item" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:45 +msgid "Etape 1/3" +msgstr "Step 1/3" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:266 +msgid "Etape 2/3" +msgstr "Step 2/3" + +#: include/ext/transform/include/intervat_listing_assujetti_step_3.inc.php:34 +msgid "Etape 3/3" +msgstr "Step 3/3" + +#: include/template/action_search.php:103 +#: include/template/detail-action.php:105 +msgid "Etat" +msgstr "State" + +#: include/database.item.php:110 +msgid "Etat des documents" +msgstr "State documents" + +#: include/database.item.php:91 +msgid "Etat des stock" +msgstr "State of the stock" + +#: include/dossier.inc.php:329 +msgid "Etes vous sûr et certain de vouloir effacer " +msgstr "Are you sure to remove this folder" + +#: include/template/action_search.php:67 include/template/tag_choose.php:5 +msgid "Etiquette" +msgstr "Etiquette" + +#: include/template/tag_detail.php:15 +#, fuzzy +msgid "Etiquette (tag)" +msgstr "Etiquette" + +#: include/template/action_search.php:107 +msgid "Exclure Etat" +msgstr "Exclude State" + +#: include/ext/tools/index.php:43 include/bank.inc.php:73 +#: include/template/stock_state_search.php:35 +msgid "Exercice" +msgstr "Exercise" + +#: html/ajax_misc.php:197 +msgid "Explication" +msgstr "Explanation" + +#: include/ext/tools/index.php:44 +#, fuzzy +msgid "Export" +msgstr "Export CSV" + +#: include/database.item.php:46 +msgid "Export Action Gestion" +msgstr "Export Management Action" + +#: include/database.item.php:38 include/database.item.php:39 +msgid "Export Balance comptable" +msgstr "Export accountancy balance" + +#: include/database.item.php:42 +msgid "Export Balance groupe analytique" +msgstr "Export Balance analytic group" + +#: include/database.item.php:43 +msgid "Export Bilan" +msgstr "Export balance" + +#: include/ext/amortis/include/print_all.inc.php:40 html/popup.php:54 +#: include/ext/tools/include/export_operation.inc.php:36 +msgid "Export CSV" +msgstr "Export CSV" + +#: include/database.item.php:33 include/database.item.php:35 +msgid "Export Comptabilité analytique" +msgstr "Export Analytic" + +#: include/database.item.php:36 include/database.item.php:37 +msgid "Export Comptabilité analytique balance double" +msgstr "Export Double crossed analytic balance" + +#: include/database.item.php:34 +msgid "Export Comptabilité analytique balance simple" +msgstr "Export single analytic balance" + +#: include/database.item.php:28 include/database.item.php:29 +msgid "Export Fiche" +msgstr "Export Card" + +#: include/database.item.php:24 include/database.item.php:25 +msgid "Export Fiche balance" +msgstr "Export card balance" + +#: include/database.item.php:22 include/database.item.php:23 +msgid "Export Fiche détail" +msgstr "Export card detail" + +#: include/database.item.php:30 include/database.item.php:31 +msgid "Export Grand Livre" +msgstr "Export Great Ledger" + +#: include/database.item.php:17 +msgid "Export Historique" +msgstr "Export History" + +#: include/database.item.php:41 +msgid "Export Historique Compt. Analytique" +msgstr "Export for analytic history" + +#: include/database.item.php:47 +msgid "Export Historique mouvement stock" +msgstr "Export Background stock movement" + +#: include/database.item.php:18 include/database.item.php:19 +msgid "Export Journaux" +msgstr "Export Ledger" + +#: html/popup.php:55 +#, fuzzy +msgid "Export PDF" +msgstr "Export Card" + +#: include/database.item.php:20 include/database.item.php:21 +msgid "Export Poste détail" +msgstr "Export Accountancy" + +#: include/database.item.php:48 +msgid "Export Résumé list stock" +msgstr "Export Summary list stock" + +#: include/database.item.php:32 +msgid "Export Sécurité" +msgstr "Export Security" + +#: include/database.item.php:40 +msgid "Export Tableau Analytique" +msgstr "Export analytic tabel" + +#: include/database.item.php:45 +msgid "Export définition d'un raport" +msgstr "Export definition of Hours of Operation" + +#: include/database.item.php:124 +msgid "Export opérations rapprochées" +msgstr "Export close operations" + +#: include/database.item.php:124 +msgid "Export opérations rapprochées en CSV" +msgstr "Export CSV close operations" + +#: include/database.item.php:26 include/database.item.php:27 +msgid "Export report" +msgstr "Export report" + +#: include/ext/tools/index.php:44 +#, fuzzy +msgid "Exporter les opérations" +msgstr "All entries" + +#: include/database.item.php:52 include/ajax_navigator.php:102 +msgid "Extension" +msgstr "Plugin" + +#: include/menu.inc.php:132 +#, fuzzy +msgid "Extension / Plugin" +msgstr "Plugin" + +#: include/database.item.php:52 +msgid "Extensions (plugins)" +msgstr "Plugin" + +#: include/template/ledger_detail_bottom.php:129 +msgid "Extourner" +msgstr "Reverse" + +#: include/template/form_ledger_fin.php:31 +#: include/ext/modop/template_ledger_fin.php:10 +msgid "Extrait de compte" +msgstr "Bank receipt" + +#: include/database.item.php:170 +#: include/ext/invoicing/include/invoice_to_zip.inc.php:64 +msgid "Facture" +msgstr "Invoice" + +#: include/database.item.php:118 +msgid "Favori" +msgstr "Favorite" + +#: include/ajax_bookmark.php:28 +msgid "Favoris" +msgstr "Bookmark" + +#: include/company.inc.php:101 include/database.item.php:152 +msgid "Fax" +msgstr "Fax" + +#: include/doc_state.inc.php:57 +msgid "Ferme l'action" +msgstr "Firm action" + +#: include/class_html_input.php:686 include/class_ipopup.php:123 +#: include/template/action_search.php:142 +#: include/ext/amortis/include/material_delete.inc.php:7 +#: include/ext/amortis/include/material_modify.inc.php:42 +#: include/ext/amortis/include/template/material_detail.php:138 +#: include/ext/import_account/include/template/parameter_tva_add.php:55 +#: html/ajax_card.php:173 html/ajax_card.php:314 +#: include/template/action_search.php:31 include/template/action_search.php:35 +#: include/class_acc_ledger.php:2854 include/template/history_top.php:12 +#: include/template/ledger_detail_bottom.php:101 +#: include/template/ledger_detail_bottom.php:102 +#: include/template/ledger_detail_top.php:11 +#: include/template/search_top.php:36 +#, php-format +msgid "Fermer" +msgstr "close" + +#: include/category_card.inc.php:64 include/database.item.php:79 +#: include/database.item.php:109 include/template/detail-action.php:304 +#: include/template/form_ledger_fin.php:42 +#: include/template/security_list_action.php:54 +#: include/ext/amortis/include/print_fiche.inc.php:44 +#: include/ext/amortis/include/template/material_add.php:6 +#: include/ext/amortis/include/template/material_detail.php:8 +#: include/ext/amortis/include/template/material_display.php:5 +#: include/card_attr.inc.php:82 include/template/stock_histo_search.php:39 +#: include/template/stock_inv.php:64 +msgid "Fiche" +msgstr "Card" + +#: include/ext/import_account/include/template/parameter.php:11 +msgid "Fiche TVA" +msgstr "VAT record" + +#: html/ajax_card.php:326 html/ajax_card.php:327 +msgid "Fiche contenant" +msgstr "Containing Card" + +#: include/fiche.inc.php:175 +msgid "Fiche non effacées" +msgstr "Undeleted record" + +#: html/ajax_card.php:145 +msgid "Fiche non trouvée" +msgstr "Card not found" + +#: html/ajax_card.php:497 html/ajax_card.php:498 +msgid "Fiche non valide" +msgstr "Invalid file" + +#: html/ajax_card.php:304 +msgid "Fiche sauvée" +msgstr "Card saved" + +#: include/ext/import_account/index.php:57 +#: include/ext/import_doli/index.php:57 +msgid "Fiches" +msgstr "Sheets" + +#: include/class_document_modele.php:69 include/ajax_plugin_detail.php:47 +#: include/template/modele_document.php:61 include/menu.inc.php:116 +msgid "Fichier" +msgstr "Queue" + +#: html/show_pj.php:82 include/ext/rapport_avance/raw.php:65 +#: include/ext/rapport_avance/raw.php:109 +#: include/ext/rapport_avance/raw.php:163 +#: include/ext/rapport_avance/raw.php:210 +msgid "Fichier effacé" +msgstr "Removed file" + +#: include/ext/import_account/include/template/input_file.php:19 +#: include/ext/import_account/include/template/test_file.php:20 +#: include/ext/import_account/include/template/test_operation.php:20 +#: include/ext/import_account/include/template/upload_operation.php:40 +msgid "Fichier à charger" +msgstr "File to load" + +#: include/template/menu_detail.php:59 +msgid "Fichier à inclure (depuis le répertoire include)" +msgstr "" + +#: html/user_login.php:163 include/balance.inc.php:278 +#: include/compta_fin_rec.inc.php:126 include/dossier.inc.php:177 +#: include/modele.inc.php:237 include/user.inc.php:117 +#: include/ext/rapport_avance/ajax_listing_search_code.php:34 +#: include/ext/rapport_avance/ajax_rapav_search_code.php:32 +#: include/ext/rapport_avance/include/historique.inc.php:54 +#: include/ext/amortis/include/template/listing_histo.php:10 +#: include/ajax_boxcard_search.php:46 +#: include/template/result_cat_card_summary.php:5 include/menu.inc.php:150 +msgid "Filtre" +msgstr "Filter" + +#: include/class_html_input.php:323 +msgid "Filtre " +msgstr "Filter" + +#: include/compta_fin_saldo.inc.php:38 +msgid "Filtre :" +msgstr "Filter:" + +#: include/fiche.inc.php:312 +msgid "Filtre rapide:" +msgstr "Rapid filter:" + +#: include/class_acc_ledger.php:2860 +#: include/template/stock_state_search.php:50 +msgid "Filtrer" +msgstr "Filter" + +#: include/ext/tva/list_tva.inc.php:35 +msgid "Filtrer par " +msgstr "Filter by" + +#: include/balance.inc.php:109 +#, fuzzy +msgid "Filtré par catégorie" +msgstr "Category" + +#: include/balance.inc.php:104 +#, fuzzy +msgid "Filtré par journal" +msgstr "recorded in the ledger" + +#: include/database.item.php:197 include/user_menu.php:152 +msgid "Financier" +msgstr "Financial" + +#: include/ext/rapport_avance/index.php:59 +msgid "Formulaire" +msgstr "Form" + +#: include/template/forecast-detail.php:12 +msgid "Formules" +msgstr "Formula" + +#: include/class_acc_ledger_purchase.php:1262 +#: include/class_acc_ledger_purchase.php:1369 include/class_pre_op_ach.php:381 +#: include/database.item.php:11 include/template/ledger_detail_ach.php:50 +#: include/template/print_ledger_simple.php:10 +msgid "Fournisseur" +msgstr "Beg" + +#: include/class_acc_ledger_purchase.php:1096 include/class_pre_op_ach.php:216 +msgid "Fournisseur " +msgstr "Beg" + +#: include/template/dashboard.php:282 +#, fuzzy +msgid "Fournisseurs en retad" +msgstr "Suppliers" + +#: include/template/dashboard.php:281 +msgid "Fournisseurs à payer aujourd'hui" +msgstr "" + +#: include/ajax_preference.php:165 include/ajax_preference.php:166 +msgid "Français" +msgstr "French" + +#: include/database.item.php:153 +msgid "GSM" +msgstr "GSM" + +#: include/database.item.php:71 +msgid "Gestion" +msgstr "Management" + +#: include/database.item.php:108 +msgid "Gestion catégorie de fiche" +msgstr "Category record management" + +#: include/database.item.php:90 +msgid "Gestion des attributs de fiches " +msgstr "Management attributes sheets" + +#: include/user_menu.php:111 +msgid "Gestion des dossiers" +msgstr "Folders managements" + +#: include/user_menu.php:112 +msgid "Gestion des modèles" +msgstr "Template management" + +#: include/database.item.php:53 +msgid "Gestion des opérations prédéfinifies" +msgstr "Manage predefined accounting" + +#: include/database.item.php:84 +msgid "Gestion des périodes" +msgstr "Setting period" + +#: include/user_menu.php:110 include/user_menu.php:120 +msgid "Gestion des utilisateurs" +msgstr "Users managements" + +#: include/database.item.php:163 +msgid "Gestion stock" +msgstr "Stock management" + +#: include/database.item.php:64 include/class_acc_ledger.php:342 +msgid "Grand Livre" +msgstr "Ledger" + +#: include/database.item.php:70 +msgid "Grand livre analytique" +msgstr "Great analytical book" + +#: include/database.item.php:70 +msgid "Grand'Livre" +msgstr "Great ledger" + +#: include/ext/tva/form_parameter.php:68 +msgid "Grille 00 : opérations soumises à un régime particulier" +msgstr "Grid 00: transactions subject to special rules" + +#: include/ext/tva/form_parameter.php:69 +msgid "Grille 01 : Opérations pour lesquelles la TVA est due (6%)" +msgstr "Grid 01: Operations for which the VAT is due (6%)" + +#: include/ext/tva/form_parameter.php:70 +msgid "Grille 02 : Opérations pour lesquelles la TVA est due (12%)" +msgstr "Grid 02: Operations for which the VAT is due (12%)" + +#: include/ext/tva/form_parameter.php:71 +msgid "Grille 03 : Opérations pour lesquelles la TVA est due (21%)" +msgstr "Grid 03: Operations for which the VAT is due (21%)" + +#: include/ext/tva/form_parameter.php:72 +#, fuzzy +msgid "" +"Grille 44 : Opérations pour lesquelles la TVA étrangère est due par le " +"cocontractant" +msgstr "Grid 01: Operations for which the VAT is due (6%)" + +#: include/ext/tva/form_parameter.php:73 +#, fuzzy +msgid "" +"Grille 45 : Opérations pour lesquelles la TVA est due par le cocontractant" +msgstr "Grid 01: Operations for which the VAT is due (6%)" + +#: include/ext/tva/form_parameter.php:74 +msgid "" +"Grille 46 : Livraisons intracommunautaires exemptées effectuées en Belgique " +"et ventes ABC" +msgstr "" + +#: include/ext/tva/form_parameter.php:75 +msgid "" +"Grille 47 :Autres opérations exemptées et autres opérations effectuées à " +"l’étranger" +msgstr "" + +#: include/ext/tva/form_parameter.php:76 +#, fuzzy +msgid "" +"Grille 48 : Opérations relatives aux notes de crédit des grilles 44 et 48" +msgstr "Grid 49: Operations relating to credit ratings" + +#: include/ext/tva/form_parameter.php:77 +msgid "Grille 49 : Opérations relatives aux notes de crédit" +msgstr "Grid 49: Operations relating to credit ratings" + +#: include/ext/tva/form_parameter.php:94 +msgid "Grille 54 : tva due sur opération grille 01,02 et 03" +msgstr "Grid 54: VAT due on grid operation 01,02 and 03" + +#: include/ext/tva/form_parameter.php:95 +msgid "Grille 55 : tva due sur opération grille 86 et 88" +msgstr "Grid 55: VAT due on 86 and 88 grid operation" + +#: include/ext/tva/form_parameter.php:106 +#, fuzzy +msgid "" +"Grille 56 : T.V.A. à récupérer mentionnée sur les notes de crédit délivrées " +msgstr "Grid 63: VAT to be repaid mentioned on credit notes received" + +#: include/ext/tva/form_parameter.php:96 +msgid "Grille 56 : tva due sur opération grille 87" +msgstr "Grid 56: VAT due on grid operation 87" + +#: include/ext/tva/form_parameter.php:97 +msgid "Grille 57 :T.V.A. relative aux importations avec report de perception " +msgstr "Grid 57: VAT on imports deferred collection" + +#: include/ext/tva/form_parameter.php:104 +msgid "Grille 59 : taxe déductible" +msgstr "Grille 59 tax deductible" + +#: include/ext/tva/form_parameter.php:98 +msgid "Grille 61 :Diverses régularisations T.V.A. en faveur de l'Etat" +msgstr "Grid 61: Various adjustments VAT for the State" + +#: include/ext/tva/form_parameter.php:105 +msgid "Grille 62 : Diverses régularisations T.V.A. en faveur du déclarant" +msgstr "Grid 62: Various adjustments in favor of declaring VAT" + +#: include/ext/tva/form_parameter.php:99 +msgid "Grille 63 :T.V.A. à reverser mentionnée sur les notes de crédit reçues" +msgstr "Grid 63: VAT to be repaid mentioned on credit notes received" + +#: include/ext/tva/form_parameter.php:82 +msgid "Grille 81 : Opération sur les marchandises, matières premières..." +msgstr "Grid 81: Operation on goods, commodities ..." + +#: include/ext/tva/form_parameter.php:83 +msgid "Grille 82 : Opération sur les services et biens divers" +msgstr "Grid 82: Operation on miscellaneous goods and services" + +#: include/ext/tva/form_parameter.php:84 +msgid "Grille 83 : Opération sur les biens d'investissements" +msgstr "Grid 83: Operation on investment property" + +#: include/ext/tva/form_parameter.php:85 +msgid "" +"Grille 84 : Montant des notes de crédit reçues et des corrections négatives " +"relatif aux opérations inscrites en grilles 86 et 88" +msgstr "" + +#: include/ext/tva/form_parameter.php:86 +msgid "" +"Grille 85 : Montant des notes de crédit reçues et des corrections négatives " +"relatif aux autres opérations du cadre III " +msgstr "" + +#: include/ext/tva/form_parameter.php:87 +msgid "" +"Grille 86 : Acquisitions intracommunautaires effectuées en Belgique et " +"ventes ABC " +msgstr "" + +#: include/class_anc_account.php:287 include/database.item.php:7 +#: include/database.item.php:50 include/anc_pa.inc.php:197 +msgid "Groupe" +msgstr "Group" + +#: include/database.item.php:50 +msgid "Groupe analytique" +msgstr "Analytical group" + +#: include/action.common.inc.php:161 +msgid "Génère le document" +msgstr "Generate the document" + +#: include/ext/rapport_avance/index.php:61 +msgid "Génération" +msgstr "Generation" + +#: include/ext/rapport_avance/index.php:61 +msgid "Génération Déclaration / listing" +msgstr "Generation Statement / listing" + +#: include/ext/amortis/index.php:54 include/ext/amortis/include/am_util.php:30 +msgid "Génération écriture comptable" +msgstr "Accounting entry generation" + +#: include/class_follow_up.php:407 +msgid "Génére le document" +msgstr "Generate the document" + +#: include/ext/amortis/include/am_util.php:30 +msgid "Génére écriture" +msgstr "Generate writing" + +#: include/ext/tva/class_ext_tva.php:341 +msgid "Générer fichier" +msgstr "Generate File" + +#: include/ext/amortis/include/template/util_generate.php:98 +msgid "Générer l'écriture" +msgstr "Generate writing" + +#: include/ext/invoicing/include/invoicing.inc.php:93 +msgid "Générer les factures" +msgstr "Generate invoices" + +#: include/template/ledger_detail_ach.php:133 +#: include/template/ledger_detail_ven.php:132 +#: include/template/operation_detail_ach.php:52 +#: include/template/operation_detail_ven.php:44 +msgid "HTVA" +msgstr "wo VAT" + +#: include/template/detail-action.php:45 +msgid "Heure" +msgstr "Hour" + +#: include/database.item.php:93 +msgid "Histo. Changement" +msgstr "Histo. Change" + +#: html/ajax_card.php:163 include/database.item.php:3 +#: include/database.item.php:96 include/fiche.inc.php:64 +#: include/ext/coprop/index.php:47 include/ext/rapport_avance/index.php:62 +#: include/ext/amortis/include/am_util.php:31 +#: include/ext/amortis/include/template/listing_histo.php:2 +msgid "Historique" +msgstr "Historical account" + +#: include/fiche.inc.php:65 +msgid "Historique Lettré" +msgstr "Historical lettered" + +#: include/fiche.inc.php:66 +msgid "Historique Lettré et montants différents" +msgstr "Lettered history and different Amounts" + +#: include/database.item.php:60 +msgid "Historique achat" +msgstr "Buy log" + +#: include/ext/coprop/index.php:47 +msgid "Historique des appels" +msgstr "Call History" + +#: include/ext/skel/index.php:46 include/ext/tva/index.php:35 +msgid "Historique des déclarations TVA" +msgstr "History of VAT returns" + +#: include/ext/rapport_avance/index.php:62 +msgid "Historique des déclarations faites" +msgstr "Historical statements" + +#: include/ext/importbank/index.php:57 +msgid "Historique des imports effectués" +msgstr "History made imports" + +#: include/database.item.php:3 +msgid "Historique des imputations analytiques" +msgstr "History analytic record" + +#: include/database.item.php:16 +msgid "Historique des mouvement de stock" +msgstr "History movement of stock" + +#: include/ext/amortis/include/am_util.php:31 +msgid "Historique des opérations" +msgstr "Transaction History" + +#: include/database.item.php:102 +msgid "Historique des ventes" +msgstr "Sales History" + +#: include/database.item.php:103 +msgid "Historique financier" +msgstr "Financial History" + +#: include/fiche.inc.php:67 +msgid "Historique non Lettré" +msgstr "Historical not lettered" + +#: include/database.item.php:61 +msgid "Historique opérations diverses" +msgstr "Historical various operations" + +#: include/database.item.php:16 +msgid "Historique stock" +msgstr "Stock History" + +#: include/database.item.php:102 +msgid "Historique vente" +msgstr "Historical sales" + +#: include/user_menu.php:155 include/user_menu.php:156 +msgid "Hors Comptabilité" +msgstr "Out of accountancy system" + +#: include/template/stock_summary_list.php:47 +#: include/template/stock_summary_table.php:73 +#: include/template/stock_summary_table.php:107 +msgid "IN" +msgstr "" + +#: include/class_acc_ledger_purchase.php:258 +#: include/class_acc_ledger_sold.php:201 +msgid "Il n'y a aucune marchandise" +msgstr "There is no item" + +#: include/ajax_preference.php:129 include/ajax_preference.php:131 +#: include/ajax_preference.php:130 include/ajax_preference.php:132 +msgid "Illimité" +msgstr "Unlimited" + +#: include/ext/transform/include/intervat_listing_assujetti_step_3.inc.php:38 +msgid "Ils ne seront inclus pas dans le fichier XML" +msgstr "They are not included in the XML file" + +#: include/ext/coprop/index.php:43 +msgid "Immeubles,lots et copropriétaires" +msgstr "Buildings, lots, and condominium" + +#: include/ext/importbank/index.php:56 +msgid "Importation" +msgstr "Import" + +#: include/ext/import_account/index.php:58 +#: include/ext/import_doli/index.php:58 +msgid "Importation d'opérations de vente ou d'achat" +msgstr "Import transactions of sale or purchase" + +#: include/ext/import_account/include/template/input_file.php:3 +#: include/ext/import_account/include/template/test_file.php:4 +#: include/ext/import_account/include/template/test_operation.php:4 +#: include/ext/importbank/include/template/input_file.php:3 +#: include/ext/importbank/include/template/test_file.php:4 +#: include/ext/import_card/include/template/input_file.php:3 +#: include/ext/import_card/include/template/test_file.php:4 +#: include/ext/import_doli/include/template/input_file.php:3 +#: include/ext/import_doli/include/template/test_file.php:4 +#: include/ext/import_doli/include/template/test_operation.php:4 +msgid "Importation de données" +msgstr "Importing Data" + +#: include/ext/importbank/index.php:56 +msgid "Importation de nouveaux fichiers" +msgstr "Import new files" + +#: include/ext/import_account/index.php:57 +#: include/ext/import_doli/index.php:57 +msgid "Importation de nouvelles fiches" +msgstr "Import new records" + +#: include/ext/import_account/include/template/upload_operation.php:32 +#: include/ext/import_doli/include/template/upload_operation.php:32 +msgid "Importation des opération" +msgstr "Import operation" + +#: include/report.inc.php:116 +msgid "Importer ce rapport" +msgstr "Import this report" + +#: include/class_acc_ledger.php:3611 +#, fuzzy +msgid "Impossible d'effacer un journal qui contient des opérations" +msgstr "" +"It is not possible to remove this ledger.\n" +"It is still in use\n" + +#: include/cfgfiche.inc.php:69 +msgid "" +"Impossible d'enlever cette catégorie, certaines fiches sont encore " +"utilisées\n" +"Les fiches non utilisées ont cependant été effacées" +msgstr "" + +#: include/class_acc_account.php:222 +#, fuzzy +msgid "Impossible de changer la valeur: poste déjà utilisé" +msgstr "" +"It is not possible to remove this ledger.\n" +"It is still in use\n" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:117 +msgid "Impossible de sauver ce fichier" +msgstr "Unable to save this file" + +#: include/database.item.php:68 include/database.item.php:114 +#: include/ajax_get_profile.php:98 include/template/action_other_action.php:22 +#: include/template/menu_detail.php:18 include/menu.inc.php:131 +msgid "Impression" +msgstr "Print" + +#: include/database.item.php:44 +msgid "Impression Grand-Livre" +msgstr "Print Great Ledger" + +#: include/database.item.php:112 +msgid "Impression Journaux" +msgstr "Newspapers Printing" + +#: include/database.item.php:114 +msgid "Impression compta. analytique" +msgstr "Print analytic" + +#: include/database.item.php:105 +msgid "Impression de bilan" +msgstr "Print balance sheet" + +#: include/database.item.php:63 +msgid "Impression de rapport" +msgstr "Print report" + +#: include/database.item.php:65 +msgid "Impression des balances comptables" +msgstr "Print balance" + +#: include/database.item.php:112 +msgid "Impression des journaux" +msgstr "Printing of newspapers" + +#: include/database.item.php:104 +msgid "Impression des rapprochements" +msgstr "Print reconciliations" + +#: include/database.item.php:62 +msgid "Impression du détail d'un poste comptable" +msgstr "Detail of a print job accounting" + +#: include/database.item.php:64 +msgid "Impression du grand livre" +msgstr "Print great ledger" + +#: include/bank.inc.php:86 +msgid "Inclure les banques sans opération :" +msgstr "Including without operation" + +#: include/customer.inc.php:86 +msgid "Inclure les clients sans opération :" +msgstr "Including customer wo operation" + +#: include/manager.inc.php:88 +msgid "Inclure les employés sans opération :" +msgstr "Include employees without operation:" + +#: include/supplier.inc.php:90 +msgid "Inclure les fournisseurs sans opération :" +msgstr "Including beg wo operation" + +#: html/ajax_ledger.php:100 html/ajax_ledger.php:122 +msgid "Information" +msgstr "Information" + +#: include/database.item.php:69 +msgid "Information Banque" +msgstr "Information Bank" + +#: include/category_detail.inc.php:49 +msgid "Information sauvée" +msgstr "Data saved" + +#: include/template/ledger_detail_bottom.php:6 +#, fuzzy +msgid "Informations" +msgstr "Information" + +#: include/template/detail-action.php:6 +msgid "Informations générales" +msgstr "General Information" + +#: include/class_acc_ledger.php:656 +#, fuzzy +msgid "Internal" +msgstr "Internal" + +#: include/export_fiche_balance_csv.php:141 include/fiche.inc.php:439 +#: include/template/letter_all.php:29 +msgid "Interne" +msgstr "Internal" + +#: include/class_ibutton.php:61 +msgid "Inverser la sélection" +msgstr "Invert selection" + +#: include/menu.inc.php:119 +msgid "Javascript" +msgstr "" + +#: include/template/detail-action.php:446 +msgid "Je ne peux pas ajouter de fichier" +msgstr "I can not add this file" + +#: include/class_calendar.php:168 include/class_calendar.php:256 +msgid "Jeudi" +msgstr "Thursday" + +#: include/class_acc_ledger_purchase.php:1361 +#: include/class_acc_ledger_sold.php:656 +#: include/template/form_ledger_detail.php:11 include/class_acc_ledger.php:660 +#: include/ext/tools/raw.php:76 +msgid "Journal" +msgstr "Ledger" + +#: include/ext/amortis/include/template/util_generate.php:39 +msgid "Journal dans lequel l'écriture sera passée" +msgstr "Journal in which writing will be passed" + +#: include/cfgledger.inc.php:50 +msgid "Journal inexistant" +msgstr "No existent ledger" + +#: include/class_acc_ledger.php:3305 +msgid "Journal n'existe pas" +msgstr "The ledger does not exist" + +#: include/class_acc_ledger.php:3232 +#, fuzzy +msgid "Journaux de vente" +msgstr "Ledger of sales" + #: include/impress_gl_comptes.inc.php:84 msgid "Jusqu'au poste" msgstr "Until accountancy" -#: include/lettering.account.inc.php:73 -#: include/lettering.card.inc.php:76 -msgid "Opérations lettrées montants différents" -msgstr "Lettered writing with different amounts" +#: include/template/impress_cat_card.php:18 +#: include/template/stock_histo_search.php:47 +msgid "Jusque" +msgstr "Until" -#: include/menu_translate.php:3 -msgid "Historique des imputations analytiques" -msgstr "History analytic record" +#: include/impress_gl_comptes.inc.php:63 include/impress_poste.inc.php:94 +msgid "Jusque " +msgstr "Until" -#: include/menu_translate.php:4 -msgid "Grand" -msgstr "Great" +#: include/ext/coprop/index.php:84 include/ext/rapport_avance/index.php:39 +#: include/ext/skel/index.php:82 include/ext/tva/index.php:69 +msgid "L'extension est installée, pourriez-vous en vérifier le paramètrage ?" +msgstr "The extension is installed, could you check the settings?" -#: include/menu_translate.php:5 -msgid "Balance simple des imputations analytiques" -msgstr "Simple balance for analytic record" +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:54 +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:58 +msgid "La date donnée est invalide" +msgstr "The date given is invalid" -#: include/menu_translate.php:6 -msgid "Balance croisée double" -msgstr "Crossed balance" +#: include/ext/import_account/include/class_impacc_operation.php:125 +msgid "La date est invalide, format n'est pas JJ.MM.AAAA" +msgstr "The date is invalid, format is dd.mm.yyyy" -#: include/menu_translate.php:6 -msgid "Balance double croisées des imputations analytiques" -msgstr "Double crossed balance" +#: include/class_acc_ledger_purchase.php:122 +#: include/class_acc_ledger_purchase.php:147 +#: include/class_acc_ledger_purchase.php:164 +#: include/class_acc_ledger_purchase.php:166 +#: include/class_acc_ledger_purchase.php:172 +#: include/class_acc_ledger_purchase.php:177 +#: include/class_acc_ledger_purchase.php:193 +#: include/class_acc_ledger_purchase.php:218 +#: include/class_acc_ledger_sold.php:116 include/class_acc_ledger_sold.php:139 +#: include/class_acc_ledger_sold.php:151 include/class_acc_ledger_sold.php:153 +#: include/class_acc_ledger_sold.php:158 include/class_acc_ledger_sold.php:163 +#: include/class_acc_ledger_sold.php:167 include/class_acc_ledger_sold.php:197 +msgid "La fiche " +msgstr "The card" -#: include/menu_translate.php:7 -msgid "Tableau" -msgstr "Table" +#: include/class_acc_ledger.php:1898 include/class_acc_ledger.php:2028 +#, php-format +msgid "La fiche %s n'a pas de poste comptable" +msgstr "The card% s Has No accountancy" -#: include/menu_translate.php:7 -msgid "Tableau lié à la comptabilité" -msgstr "Table with accountancy" +#: include/template/param_jrn.php:117 +msgid "La numérotation est propre à chaque journal" +msgstr "The numbering is only the for each ledger" -#: include/menu_translate.php:8 -msgid "Balance par groupe" -msgstr "Balance group" +#: include/class_fiche_def.php:453 include/ajax_plugin_detail.php:35 +msgid "Label" +msgstr "Label" -#: include/menu_translate.php:9 -msgid "Impression Grand-Livre" -msgstr "Print Great Ledger" +#: include/template/param_jrn.php:118 +msgid "Laissez à 0 pour ne pas changer le numéro" +msgstr "0 for no change" -#: include/menu_translate.php:10 -msgid "Export Balance groupe analytique" -msgstr "export Balance analytic group" +#: include/ajax_preference.php:163 include/ajax_preference.php:164 +msgid "Langue" +msgstr "Language" -#: include/menu_translate.php:11 -msgid "Export Bilan" -msgstr "Export Bilan" +#: include/ajax_preference.php:158 include/ajax_preference.php:159 +msgid "Le mini rapport est un rapport qui s'affiche sur votre page d'accueil" +msgstr "The mini-report" -#: include/menu_translate.php:12 -#: include/menu_translate.php:47 -msgid "Export Journaux" -msgstr "Export Ledger" +#: include/class_fiche_def.php:210 +msgid "Le nom de la catégorie ne peut pas être vide" +msgstr "The category name can not be empty" -#: include/menu_translate.php:13 -#: include/menu_translate.php:14 -msgid "Export Poste détail" -msgstr "Export Accountancy" +#: include/dossier.inc.php:49 +msgid "Le nom du dossier est vide" +msgstr "The name is empty" -#: include/menu_translate.php:15 -#: include/menu_translate.php:29 -msgid "Export Fiche détail" -msgstr "Export card detail" +#: html/ajax_card.php:475 html/ajax_card.php:476 +msgid "Le nom et la classe base ne peuvent être vide" +msgstr "The name and the accounting base can not be empty" -#: include/menu_translate.php:17 -msgid "Paramètres divers" -msgstr "Misc. parameters" +#: include/cat_document.inc.php:42 include/class_forecast.php:70 +msgid "Le nom ne peut pas être vide" +msgstr "the name cannot be empty" -#: include/menu_translate.php:18 -msgid "Config. de la tva" -msgstr "VAT setting" +#: include/class_itva_popup.php:125 +msgid "Le nom ne peut être vide" +msgstr "The name can not be empty" -#: include/menu_translate.php:21 +#: include/class_acc_ledger.php:1910 +msgid "Le poste" +msgstr "The accounting item" + +#: include/template/param_jrn.php:94 +#, fuzzy +msgid "" +"Le préfixe des pièces doit être différent pour chaque journal, on peut aussi " +"utiliser l'année" +msgstr "Prefix of receipt can be different for each ledgers" + +#: include/ext/invoicing/include/invoice_send_mail.inc.php:42 +msgid "Le sujet est obligatoire" +msgstr "The subject is compulsory" + +#: include/class_profile_menu.php:236 include/class_profile_menu.php:260 +msgid "Lecture" +msgstr "Reading" + +#: html/ajax_misc.php:366 +msgid "Les 2" +msgstr "Both" + +#: include/class_anc_print.php:120 +msgid "Les dates sont en format DD.MM.YYYY" +msgstr "The date formats are DD.MM.YYYY" + +#: include/ext/import_account/include/class_import_card.php:150 +msgid "Les fiches doivent avoir au minimum un nom" +msgstr "The plugs must have at least one name" + +#: include/report.inc.php:105 include/report.inc.php:120 +#: include/report.inc.php:144 +msgid "Les lignes vides seront effacées" +msgstr "The empty rows Will Be removed" + +#: include/class_user.php:1141 +msgid "Les mots de passe ne correspondent pas. Mot de passe inchangé" +msgstr "The password do not match, the password is not changed" + +#: include/ext/import_account/include/imd_operation.inc.php:55 +msgid "" +"Les opérations qui ne sont pas marquées comme correctes ne seront pas " +"transfèrées" +msgstr "" + +#: include/export_fiche_balance_csv.php:147 include/fiche.inc.php:443 +msgid "Let." +msgstr "Let." + +#: html/ajax_misc.php:291 include/category_card.inc.php:69 +#: include/database.item.php:72 include/template/letter_all.php:20 +#: include/template/letter_prop.php:22 include/template/letter_prop.php:62 +msgid "Lettrage" +msgstr "Lettering" + +#: include/database.item.php:59 +msgid "Lettrage par Fiche" +msgstr "Lettering Sheet" + +#: include/database.item.php:99 +msgid "Lettrage par Poste" +msgstr "Lettering Post" + +#: include/database.item.php:59 +msgid "Lettrage par fiche" +msgstr "Lettering by card" + +#: include/lettering.card.inc.php:50 +msgid "Lettrage pour la fiche " +msgstr "Lettering for the card" + +#: include/lettering.account.inc.php:47 +msgid "Lettrage pour le poste comptable " +msgstr "Lettering for the accounting" + +#: include/database.item.php:171 +msgid "Lettre de rappel" +msgstr "Reminder" + +#: include/class_acc_account.php:187 include/class_acc_ledger.php:1428 +#: include/class_acc_ledger.php:1435 include/class_acc_ledger.php:1661 +#: include/class_acc_ledger.php:1688 +#: include/class_acc_ledger_purchase.php:1364 +#: include/class_acc_ledger_sold.php:659 include/class_pre_op_advanced.php:184 +#: include/template/forecast-detail.php:14 +#: include/template/form_ledger_detail.php:50 +#: include/template/ledger_detail_ach.php:71 +#: include/template/ledger_detail_ach.php:275 +#: include/template/ledger_detail_fin.php:53 +#: include/template/ledger_detail_fin.php:107 +#: include/template/ledger_detail_misc.php:38 +#: include/template/ledger_detail_misc.php:91 +#: include/template/ledger_detail_ven.php:73 +#: include/template/ledger_detail_ven.php:274 +#: include/template/new_mod_payment.php:19 +#: include/template/operation_detail_misc.php:34 +#: include/ext/import_account/include/class_impacc_operation.php:251 +#: include/ext/import_account/include/class_impacc_operation.php:487 +#: include/template/impress_reconciliation.php:19 +#: include/template/operation_detail_fin.php:33 +#, php-format +msgid "Libellé" +msgstr "Label" + +#: include/class_acc_ledger_purchase.php:1609 +#: include/class_acc_ledger_sold.php:865 +msgid "Libellé :" +msgstr "Follows:" + +#: include/template/menu_detail.php:35 +#, fuzzy +msgid "Libellé du menu" +msgstr "Wording of payment" + +#: include/database.item.php:6 +msgid "Lien entre comptabilité et Comptabilité analytique" +msgstr "Link between Accounting and Cost Accounting" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:130 +msgid "Ligne non importée" +msgstr "Not imported online" + +#: include/fiche.inc.php:63 include/ext/rapport_avance/index.php:58 +msgid "Liste" +msgstr "List" + +#: include/ext/importbank/index.php:57 +msgid "Liste Import " +msgstr "Import List" + +#: include/database.item.php:120 +msgid "Liste Suivi" +msgstr "Tracking list" + +#: include/category_card.inc.php:66 +msgid "Liste de contacts" +msgstr "List of contacts" + +#: include/ext/amortis/index.php:52 +msgid "Liste des biens amortissables" +msgstr "List depreciable property" + +#: include/database.item.php:93 +msgid "Liste des changements manuels des stocks" +msgstr "List of books stock changes" + +#: include/database.item.php:51 +msgid "Liste des contacts" +msgstr "List of contacts" + +#: include/ext/skel/index.php:46 include/ext/tva/index.php:35 +msgid "Liste des déclarations TVA" +msgstr "List of VAT returns" + +#: include/anc_od.inc.php:61 +msgid "Liste opérations" +msgstr "Operation list" + +#: include/database.item.php:79 +msgid "Liste,Balance,Historique par fiche" +msgstr "List, Balance, History by Record" + +#: include/ext/coprop/index.php:43 +msgid "Listes des immeubles, copropriétaire et lots " +msgstr "Lists of buildings, co-owner and prizes" + +#: include/ext/amortis/include/am_print.php:33 +msgid "Listing" +msgstr "Listing" + +#: include/ext/skel/index.php:45 include/ext/tva/index.php:34 +msgid "Listing Assujetti" +msgstr "Subject Listing" + +#: include/ext/skel/index.php:45 include/ext/tva/index.php:34 +msgid "Listing des clients assujettis" +msgstr "Listing of taxable customers" + +#: include/ext/skel/index.php:44 include/ext/tva/index.php:33 +msgid "Listing intracommunautaire" +msgstr "Intra Listing" + +#: include/ext/skel/index.php:44 include/ext/tva/index.php:33 +msgid "Listing intracommunautaire trimestriel" +msgstr "Quarterly intra Listing" + +#: include/class_calendar.php:168 include/class_calendar.php:256 +msgid "Lundi" +msgstr "Monday" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:49 +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:267 +msgid "Mandataire" +msgstr "Representative" + +#: include/template/fiche_def_list.php:66 +msgid "Manuel" +msgstr "" + +#: include/class_calendar.php:168 include/class_calendar.php:256 +msgid "Mardi" +msgstr "Tuesday" + +#: include/ext/amortis/include/material_add.inc.php:36 +#: include/ext/amortis/include/print_fiche.inc.php:74 +msgid "Matériel à amortir" +msgstr "Material damping" + +#: html/ajax_misc.php:458 +msgid "Mauvais type objet" +msgstr "" + +#: include/anc_pa.inc.php:60 include/anc_pa.inc.php:73 +msgid "Maximum de plan analytique est atteint" +msgstr "" + +#: include/template/menu_detail.php:19 include/menu.inc.php:113 +#: include/menu.inc.php:130 +#, fuzzy +msgid "Menu" +msgstr "Menu" + +#: include/database.item.php:67 +msgid "Menu " +msgstr "Menu" + +#: include/database.item.php:119 +msgid "Menu Financier" +msgstr "Financial Menu" + +#: include/database.item.php:66 +msgid "Menu achat" +msgstr "Purchase menu" + +#: include/ajax_bookmark.php:109 +#, fuzzy +msgid "Menu actuel" +msgstr "Purchase menu" + +#: include/database.item.php:117 +msgid "Menu avancé" +msgstr "Advanced Menu" + +#: include/database.item.php:67 msgid "Menu et profil" msgstr "Menu and Profile" -#: include/menu_translate.php:21 -msgid "Menu " -msgstr "Menu " - -#: include/menu_translate.php:22 -msgid "Profil" -msgstr "Profil" - -#: include/menu_translate.php:22 -msgid "Configuration profil" -msgstr "Configuration profile" - -#: include/menu_translate.php:23 -msgid "Config. des méthodes de paiement" -msgstr "Payment method configuration" - -#: include/menu_translate.php:24 -msgid "Config. poste comptable de base" -msgstr "Config accountancy" - -#: include/menu_translate.php:25 -msgid "Nouvelle vente ou recette" -msgstr "New sale" - -#: include/menu_translate.php:26 -msgid "Config. Menu" -msgstr "Config. Menu" - -#: include/menu_translate.php:26 -msgid "Configuration des menus et plugins" -msgstr "Setting menus and plugins" - -#: include/menu_translate.php:28 -msgid "Gestion des périodes" -msgstr "Setting periode" - -#: include/menu_translate.php:30 -#: include/menu_translate.php:31 -msgid "Export Fiche balance" -msgstr "Export card balance" - -#: include/menu_translate.php:32 -#: include/menu_translate.php:33 -msgid "Export report" -msgstr "Export report" - -#: include/menu_translate.php:34 -#: include/menu_translate.php:35 -msgid "Export Fiche" -msgstr "Export Card" - -#: include/menu_translate.php:36 -#: include/menu_translate.php:37 -msgid "Export Grand Livre" -msgstr "Export Great Ledger" - -#: include/menu_translate.php:38 -msgid "Export Sécurité" -msgstr "Export Security" - -#: include/menu_translate.php:39 -#: include/menu_translate.php:41 -msgid "Export Comptabilité analytique" -msgstr "Export Analytic" - -#: include/menu_translate.php:40 -msgid "Export Comptabilité analytique balance simple" -msgstr "Export simple analytic balance" - -#: include/menu_translate.php:42 -#: include/menu_translate.php:43 -msgid "Export Comptabilité analytique balance double" -msgstr "Export double crossed analytic balance" - -#: include/menu_translate.php:44 -#: include/menu_translate.php:45 -msgid "Export Balance comptable" -msgstr "Export accountancy balance" - -#: include/menu_translate.php:46 -msgid "Export Historique" -msgstr "Export History" - -#: include/menu_translate.php:48 -msgid "Export Tableau Analytique" -msgstr "Export analytic tabel" - -#: include/menu_translate.php:49 -msgid "Export Historique Compt. Analytique" -msgstr "Export for analytic history" - -#: include/menu_translate.php:50 -msgid "Suivi fournisseur" -msgstr "Follow up supplier" - -#: include/menu_translate.php:52 -#: include/menu_translate.php:75 -msgid "Opérations diverses" -msgstr "Misc. writing" - -#: include/menu_translate.php:52 -msgid "OD analytique" -msgstr "MW analytic" - -#: include/menu_translate.php:53 -msgid "Vérification " -msgstr "Verifying" - -#: include/menu_translate.php:53 -msgid "Vérification de la comptabilité" -msgstr "Verifying accountancy writing" - -#: include/menu_translate.php:54 -msgid "Création de rapport" -msgstr "Create a raport" - -#: include/menu_translate.php:55 -msgid "Ecriture Ouverture" -msgstr "Opening writing" - -#: include/menu_translate.php:55 -msgid "Ecriture d" -msgstr "Writing of" - -#: include/menu_translate.php:99 -msgid "Impression de rapport" -msgstr "Print report " - -#: include/menu_translate.php:100 -msgid "Impression de bilan" -msgstr "Print balance sheet" - -#: include/menu_translate.php:101 -msgid "Impression du grand livre" -msgstr "Print great ledger" - -#: include/menu_translate.php:102 -msgid "Impression des balances comptables" -msgstr "Print balance" - -#: include/menu_translate.php:103 -msgid "Catégorie de Fiches" -msgstr "Category of card" - -#: include/menu_translate.php:103 -msgid "Impression catégorie de fiches" -msgstr "Print category of card" - -#: include/menu_translate.php:104 +#: include/database.item.php:68 msgid "Menu impression" msgstr "Printing menu" -#: include/menu_translate.php:106 -msgid "Impression compta. analytique" -msgstr "Print analytic" +#: include/database.item.php:111 +msgid "Menu opérations diverses" +msgstr "Menu various operations" -#: include/menu_translate.php:107 -msgid "saut de ligne" -msgstr "new line" +#: include/database.item.php:126 include/ajax_get_menu_detail.php:91 +msgid "Menu par défaut" +msgstr "Default menu" -#: include/menu_translate.php:107 -msgid "Saut de ligne" -msgstr "new line" +#: include/database.item.php:94 +msgid "Menu simplifié pour retrouver rapidement un menu" +msgstr "Simplified menu to quickly locate a menu" -#: include/menu_translate.php:108 -msgid "Export définition d" -msgstr "export " +#: include/database.item.php:113 +msgid "Menu ventes et recettes" +msgstr "Menu Sales and revenue" -#: include/payment_middle.inc.php:56 -#: include/payment_middle.inc.php:104 -msgid "Retour sans sauver" -msgstr "Return without saving" +#: include/class_calendar.php:168 include/class_calendar.php:256 +msgid "Mercredi" +msgstr "Wednesday" -#: include/template/forecast-detail.php:8 -msgid "Formules" -msgstr "Formula" +#: include/ext/import_account/include/class_impacc_operation.php:259 +#: include/ext/invoicing/include/invoicing.inc.php:120 +msgid "Message" +msgstr "Message" -#: include/template/forecast-detail.php:9 -msgid "ou QuickCode" -msgstr "or QuickCode" +#: include/template/action_search_result.php:32 +#: include/template/action_search_result.php:88 +#, fuzzy +msgid "Mettre à jour" +msgstr "Update" -#: include/template/ledger_detail_ach.php:114 -msgid "Prix/Un." -msgstr "Price/unit" +#: include/ajax_preference.php:149 include/ajax_preference.php:150 +msgid "Mini-Rapport : " +msgstr "Mini-Report" -#: include/template/ledger_detail_ven.php:109 -msgid "Prix/Un" -msgstr "Price/unit" +#: include/report.inc.php:133 +msgid "Mise a jour" +msgstr "Update" -#: include/template/new_mod_payment.php:7 -msgid "Pour le journal" -msgstr "For the ledger" +#: include/anc_pa.inc.php:93 +msgid "Mise à jour" +msgstr "Update" -#: include/template/param_jrn.php:17 -msgid "" -"Uniquement pour les journaux d'Opérations Diverses, les valeurs sont séparées par des espaces, on peut aussi\n" -"\tutiliser le * pour indiquer 'tous les postes qui en dépendent' exemple: 4*" -msgstr "" -"Only for the ledger of miscellaneous writing, values are separated by space, you can also \n" -"use * to get the child accountancy example : 4*" +#: include/ext/tva/index.php:98 +msgid "Mise à jour du plugin, pourriez-vous en vérifier le paramètrage ?" +msgstr "Update plugin, could you check the parameter setting?" -#: include/template/param_jrn.php:88 -msgid "Le préfixe des pièces doit être différent pour chaque journal, on peut aussi utiliser l'année" -msgstr "Prefix must be different for each ledger, you can also use the current year" +#: include/class_acc_ledger_purchase.php:1689 +#: include/class_acc_ledger_sold.php:954 include/history_operation.inc.php:140 +msgid "Mise à jour paiement" +msgstr "Update payment" -#: html/do.php:41 -msgid "Vous êtes déconnecté" -msgstr "You are disconnected" +#: include/class_anticipation.php:202 +#: include/ext/import_account/include/imd_parameter.inc.php:86 +#: include/ajax_plugin_detail.php:29 +msgid "Modification" +msgstr "Change" -#: include/ac_common.php:807 +#: include/database.item.php:92 +msgid "Modification Stocks" +msgstr "Changing Stocks" + +#: include/ext/amortis/include/template/material_detail.php:1 +msgid "Modification de matériel" +msgstr "Hardware modification" + +#: include/database.item.php:92 +msgid "Modification des stocks (inventaire)" +msgstr "Changing stocks (inventory)" + +#: include/ajax_mod_predf_op.php:32 +msgid "Modification du nom" +msgstr "Name modification" + +#: include/dossier.inc.php:315 include/template/list_mod_payment.php:79 +msgid "Modifie" +msgstr "Modify" + +#: include/class_document_type.php:75 include/dossier.inc.php:222 +#: include/stock_cfg.inc.php:110 +#: include/ext/transform/ajax_save_intervat_assujetti.php:61 +#: include/ext/transform/include/template/listing_client_display.php:89 +#: include/ajax_get_profile.php:70 +msgid "Modifier" +msgstr "Modify" + +#: include/ajax_plugin_detail.php:58 +msgid "Modifier ce plugin" +msgstr "Modify" + +#: include/database.item.php:187 +msgid "Modifier le type de document" +msgstr "Change the document type" + +#: include/forecast.inc.php:360 +msgid "Modifier nom ou catégories" +msgstr "Modify name or categories" + +#: include/forecast.inc.php:361 +msgid "Modifier éléments" +msgstr "Modify items" + +#: include/audit_log.php:39 +msgid "Module" +msgstr "Module ERP" + +#: include/database.item.php:74 +msgid "Module comptabilité" +msgstr "Accountancy Module" + +#: include/database.item.php:115 +msgid "Module comptabilité analytique" +msgstr "Cost Accounting Module" + +#: include/database.item.php:71 +msgid "Module gestion" +msgstr "Module ERP" + +#: include/ac_common.php:825 msgid "Module inexistant" msgstr "Module not found" -#: include/ac_common.php:865 -msgid "Utilisateur n'a pas de profile" -msgstr "User without a profile" - -#: include/ac_common.php:873 -msgid "Plusieurs modules sont le module par défaut" -msgstr "Several modules marked as default" - -#: include/menu_translate.php:4 -msgid "Grand'Livre" -msgstr "Great ledger" - -#: include/menu_translate.php:4 -#, fuzzy -msgid "Grand livre d'plan analytique" -msgstr "" - -#: include/menu_translate.php:55 -msgid "Ecriture d'ouverture" -msgstr "Opening" - -#: include/menu_translate.php:56 -msgid "Historique achat" -msgstr "Buy log" - -#: include/menu_translate.php:57 -msgid "Courrier" -msgstr "mail" - -#: include/menu_translate.php:57 -msgid "Suivi, courrier, devis" -msgstr "Follow up" - -#: include/menu_translate.php:59 -msgid "Extensions (plugins)" -msgstr "Plugin" - -#: include/menu_translate.php:60 -msgid "Config. modèle de document" -msgstr "Template of document parameters" - -#: include/menu_translate.php:61 -msgid "journaux" -msgstr "ledger" - -#: include/menu_translate.php:61 -msgid "Configuration des journaux" -msgstr "ledger parameter" - -#: include/menu_translate.php:62 -msgid "Ecriture prédefinie" -msgstr "Predefined accounting" - -#: include/menu_translate.php:62 -msgid "Gestion des opérations prédéfinifies" -msgstr "Manage predefined accounting" - -#: include/menu_translate.php:63 -msgid "Menu avancé" -msgstr "Menu Advanced" - -#: include/menu_translate.php:64 -msgid "Compta Analytique" -msgstr "Analytic accountancy" - -#: include/menu_translate.php:64 -msgid "Module comptabilité analytique" -msgstr "" - -#: include/menu_translate.php:65 -msgid "configuration de la sécurité" -msgstr "" - -#: include/menu_translate.php:66 -msgid "Plan Compt. analytique" -msgstr "" - -#: include/menu_translate.php:66 -msgid "Plan analytique" -msgstr "" - -#: include/menu_translate.php:67 -msgid "Groupe analytique" -msgstr "" - -#: include/menu_translate.php:68 -msgid "Historique opérations diverses" -msgstr "" - -#: include/menu_translate.php:69 -msgid "Vente / Recette" -msgstr "" - -#: include/menu_translate.php:69 -msgid "Menu ventes et recettes" -msgstr "" - -#: include/menu_translate.php:72 -msgid "Menu Financier" -msgstr "" - -#: include/menu_translate.php:73 -msgid "Historique financier" -msgstr "" - -#: include/menu_translate.php:74 -msgid "Menu achat" -msgstr "" - -#: include/menu_translate.php:75 -msgid "Menu opérations diverses" -msgstr "" - -#: include/menu_translate.php:76 -msgid "Opérations Diverses" -msgstr "" - -#: include/menu_translate.php:76 -msgid "Nouvelle opérations diverses" -msgstr "" - -#: include/menu_translate.php:77 -msgid "Rapprochement bancaire" -msgstr "" - -#: include/menu_translate.php:78 -msgid "Suivi administration, banque" -msgstr "" - -#: include/menu_translate.php:79 -msgid "Nouvel extrait bancaire" -msgstr "" - -#: include/menu_translate.php:80 -msgid "Gestion des modèles de fiches" -msgstr "" - -#: include/menu_translate.php:81 -msgid "Soldes" -msgstr "" - -#: include/menu_translate.php:81 -msgid "Solde des comptes en banques, caisse..." -msgstr "" - -#: include/menu_translate.php:83 -msgid "Lettrage par Poste" -msgstr "" - -#: include/menu_translate.php:83 -msgid "lettrage par poste comptable" -msgstr "" - -#: include/menu_translate.php:84 -msgid "Balance par catégorie de fiche" -msgstr "" - -#: include/menu_translate.php:85 -msgid "Suivi client" -msgstr "" - -#: include/menu_translate.php:86 -msgid "Gestion catégorie de fiche" -msgstr "" - -#: include/menu_translate.php:87 -msgid "Config. catégorie de documents" -msgstr "" - -#: include/menu_translate.php:88 -msgid "Historique vente" -msgstr "" - -#: include/menu_translate.php:88 -msgid "Historique des ventes" -msgstr "" - -#: include/menu_translate.php:89 -msgid "Lettrage par Fiche" -msgstr "" - -#: include/menu_translate.php:90 -msgid "Config. du plan comptable" -msgstr "" - -#: include/menu_translate.php:93 -msgid "Comptabilité" -msgstr "Accountancy" - -#: include/menu_translate.php:93 -msgid "Module comptabilité" -msgstr "Accountancy module" - -#: include/menu_translate.php:94 -msgid "Module gestion" -msgstr "ERP module" - -#: include/menu_translate.php:95 +#: include/database.item.php:57 msgid "Module paramètre" msgstr "Setting" -#: include/menu_translate.php:96 -msgid "Impression historique" +#: include/dossier.inc.php:281 +msgid "Modèle" +msgstr "Template" + +#: include/ajax_update_predef.php:54 +msgid "Modèle d'opérations" +msgstr "Operation template" + +#: include/template/modele_document.php:5 +#, fuzzy +msgid "Modèle de document" +msgstr "Of paper template parameters" + +#: include/user_menu.php:112 +msgid "Modèles" +msgstr "Template" + +#: include/ext/tva/form_periode.php:7 +msgid "Mois" +msgstr "Month" + +#: include/class_acc_ledger.php:1689 +#: include/class_acc_ledger_purchase.php:1388 +#: include/class_acc_ledger_sold.php:682 include/class_anc_account.php:271 +#: include/class_anc_listing.php:89 include/class_pre_op_advanced.php:185 +#: include/fiche.inc.php:441 include/template/forecast-detail.php:15 +#: include/template/form_ledger_fin.php:44 +#: include/ext/modop/template_ledger_fin.php:20 +#: include/ext/transform/ajax_modify_intervat_assujetti.php:55 +#: include/ext/amortis/include/am_histo.inc.php:35 +#: include/ext/amortis/include/class_pdf_card.php:74 +#: include/ext/amortis/include/class_pdf_card.php:103 +#: include/ext/amortis/include/template/material_detail.php:56 +#: include/ext/amortis/include/template/material_display.php:42 +#: include/ext/transform/include/template/listing_client_display.php:42 +#: include/ac_common.php:1065 include/anc_pa.inc.php:195 +#: include/class_acc_ledger.php:668 include/class_acc_ledger.php:821 +#: include/template/impress_reconciliation.php:22 +#: include/template/ledger_detail_misc.php:44 +#: include/template/operation_detail_fin.php:34 +msgid "Montant" +msgstr "Amount" + +#: include/ext/import_account/include/class_impacc_operation.php:253 +msgid "Montant / unité" +msgstr "Amount / unit" + +#: include/ext/amortis/raw.php:51 +msgid "Montant Achats" +msgstr "Amount Purchases" + +#: include/ext/amortis/include/template/material_listing.php:14 +msgid "Montant Amorti" +msgstr "Amount Cushioning" + +#: include/class_acc_ledger_purchase.php:1385 +#: include/class_acc_ledger_sold.php:679 +msgid "Montant HTVA" +msgstr "Amount without VAT" + +#: include/ext/amortis/include/template/material_listing.php:13 +msgid "Montant Initial" +msgstr "Initial amount" + +#: include/class_acc_ledger_purchase.php:1384 +#: include/class_acc_ledger_sold.php:678 +#: include/template/detail-action.php:309 +#: include/ext/import_account/include/class_impacc_operation.php:149 +msgid "Montant TVA" +msgstr "VAT Amount" + +#: include/ext/transform/include/class_transform_client.php:102 +msgid "Montant TVA incorrect" +msgstr "VAT amount incorrect" + +#: include/class_acc_ledger_purchase.php:1386 +#: include/class_acc_ledger_sold.php:680 +#: include/template/detail-action.php:310 +msgid "Montant TVAC" +msgstr "Amount VAT included" + +#: include/ext/import_account/include/class_impacc_operation.php:254 +msgid "Montant Total TVA" +msgstr "Total VAT amount" + +#: include/ext/amortis/raw.php:100 +msgid "Montant a amortir" +msgstr "Amount cushion" + +#: include/ext/amortis/raw.php:100 +msgid "Montant achat" +msgstr "Purchase amount" + +#: include/ext/amortis/raw.php:100 +msgid "Montant amorti" +msgstr "Amortized amount" + +#: include/ext/transform/include/class_transform_client.php:98 +msgid "Montant incorrect" +msgstr "Incorrect amount" + +#: include/template/stock_histo_search.php:59 +msgid "Montant inférieur ou égal à" msgstr "" -#: include/menu_translate.php:97 -msgid "Impression des rapprochements" +#: include/database.item.php:133 +msgid "Montant initial" +msgstr "Initial amount" + +#: include/ext/amortis/include/class_am_card.php:179 +#: include/class_acc_compute.php:194 +msgid "Montant invalide" +msgstr "Invalid amount" + +#: html/ajax_misc.php:323 +msgid "Montant max. " +msgstr "Max Amount" + +#: html/ajax_misc.php:316 +msgid "Montant min. " +msgstr "min Amount" + +#: include/template/stock_histo_search.php:55 +msgid "Montant supérieur ou égal à" msgstr "" -#: include/menu_translate.php:98 -msgid "Impression du détail d'un poste comptable" +#: include/ext/import_account/include/class_impacc_operation.php:149 +msgid "Montant total" +msgstr "Total" + +#: include/ext/import_account/include/class_impacc_operation.php:257 +msgid "Montant total TVAC" +msgstr "Total amount including VAT" + +#: include/ext/amortis/raw.php:51 +#: include/ext/amortis/include/template/listing_year.php:14 +#: include/ext/amortis/include/template/material_add.php:15 +#: include/ext/amortis/include/template/material_detail.php:17 +#: include/ext/amortis/include/template/material_display.php:15 +#: include/ext/amortis/include/template/material_listing.php:15 +msgid "Montant à amortir" +msgstr "Amount to be amortized" + +#: include/ext/amortis/include/template/listing_year.php:12 +msgid "Montant à l'achat" +msgstr "Amount to purchase" + +#: include/template/detail-action.php:336 +msgid "Montrer les détails" +msgstr "Show details" + +#: include/template/stock_inv.php:50 +#, fuzzy +msgid "Motif de changement" +msgstr "Detailed sheet" + +#: include/database.item.php:121 +msgid "Moyen de paiement" +msgstr "Payment middle" + +#: include/database.item.php:94 +msgid "Navigateur" +msgstr "Navigator" + +#: include/ext/amortis/raw.php:100 +msgid "Nbre annuité" +msgstr "Number annuity" + +#: include/ext/amortis/include/class_pdf_card.php:96 +msgid "Nbre annuités" +msgstr "Number annuities" + +#: include/ext/import_account/include/class_impacc_operation.php:255 +msgid "Nbre unités" +msgstr "Number of units" + +#: include/class_acc_bilan.php:134 +#, fuzzy +msgid "Nbres anomalies" +msgstr "Number annuities" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:150 +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:261 +msgid "Ne peut pas ajouter " +msgstr "Can not add" + +#: include/class_document.php:297 +#: include/ext/rapport_avance/include/class_rapav_declaration.php:267 +#: include/ext/rapport_avance/include/class_rapav_declaration.php:339 +#: include/ext/rapport_avance/include/class_rapav_listing_compute_fiche.php:218 +#: include/ext/rapport_avance/include/class_rapav_listing_compute_fiche.php:297 +#: include/ext/rapport_avance/include/class_rapav_listing_compute_fiche.php:459 +msgid "Ne peut pas sauver " +msgstr "Can not save" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:52 +msgid "Ne remplissez pas s'il n'y a pas de mandataire" +msgstr "Do not complete if there is no representative" + +#: include/balance.inc.php:128 +#, fuzzy +msgid "Niveau 1" +msgstr "New" + +#: include/balance.inc.php:129 +#, fuzzy +msgid "Niveau 2" +msgstr "New" + +#: include/balance.inc.php:130 +#, fuzzy +msgid "Niveau 3" +msgstr "New" + +#: include/ext/transform/ajax.php:23 +msgid "No action" +msgstr "No action" + +#: include/ajax_get_profile.php:40 include/class_anc_account.php:266 +#: include/class_anc_plan.php:123 include/class_document_modele.php:66 +#: include/class_fiche.php:1569 include/database.item.php:140 +#: include/dossier.inc.php:307 include/stock_cfg.inc.php:65 +#: include/template/document_mod_change.php:34 +#: include/template/forecast_cat.php:15 include/ext/amortis/raw.php:100 +#: include/ext/transform/ajax_modify_intervat_assujetti.php:39 +#: include/ext/amortis/include/am_histo.inc.php:34 +#: include/ext/amortis/include/template/util_generate.php:67 +#: include/ext/transform/include/template/listing_assujetti_declarant.php:25 +#: include/ext/transform/include/template/listing_assujetti_representative.php:25 +#: include/ext/transform/include/template/listing_client_display.php:36 +#: include/ajax_mod_stock_repo.php:39 include/anc_pa.inc.php:194 +#: include/template/fiche_list.php:37 include/template/profile.php:33 +msgid "Nom" +msgstr "Name" + +#: include/database.item.php:142 +msgid "Nom de la banque" +msgstr "Name of bank" + +#: include/template/category_of_card.php:17 +msgid "Nom de la catégorie de fiche" +msgstr "Name of the category of card" + +#: include/template/modele_document.php:10 +#, fuzzy +msgid "Nom du document" +msgstr "Document No." + +#: include/dossier.inc.php:275 +msgid "Nom du dossier" +msgstr "Folder name" + +#: include/template/param_jrn.php:7 +msgid "Nom journal" +msgstr "Name of the ledger" + +#: include/company.inc.php:97 +msgid "Nom société" +msgstr "Company name" + +#: include/card_attr.inc.php:78 +msgid "Nombre" msgstr "" -#: include/menu_translate.php:108 -msgid "Export définition d'un raport" +#: include/ext/amortis/include/template/listing_year.php:13 +msgid "Nombre amortissement" +msgstr "Total amortization" + +#: include/ext/amortis/raw.php:51 +msgid "Nombre annuités" +msgstr "Number annuities" + +#: include/ext/amortis/include/class_am_card.php:178 +msgid "Nombre annuités invalide" +msgstr "Invalid number annuities" + +#: include/ext/amortis/include/template/material_add.php:34 +msgid "Nombre d'années amortissement" +msgstr "Number of years amortization" + +#: include/ext/amortis/include/template/material_detail.php:36 +#: include/ext/amortis/include/template/material_display.php:34 +msgid "Nombre d'années amortissement (non modifiable)" +msgstr "Number of years amortization (not editable)" + +#: include/template/account_result.php:59 +msgid "Nombre d'enregistrements" +msgstr "Number of records" + +#: include/ext/import_account/include/class_impacc_operation.php:149 +msgid "Nombre d'unité" +msgstr "Number of unit" + +#: include/class_acc_ledger.php:3406 +#, fuzzy +msgid "Nombre de ligne incorrect" +msgstr "Number of recorded lines" + +#: include/ext/import_account/include/class_impacc_operation.php:80 +msgid "Nombre de lignes enregistrées" +msgstr "Number of recorded lines" + +#: include/class_periode.php:240 include/class_periode.php:269 +#, php-format +msgid "Nombre opérations %d" +msgstr "Number of operation% d" + +#: include/company.inc.php:40 include/company.inc.php:44 +#: include/company.inc.php:47 include/company.inc.php:85 +msgid "Non" +msgstr "No" + +#: include/template/impress_reconciliation_detail.php:13 +#, fuzzy +msgid "Non Deductible" +msgstr "Tax Deductible" + +#: include/class_acc_ledger_purchase.php:1680 +#: include/class_acc_ledger_sold.php:945 +msgid "Non Payée" +msgstr "Not paid" + +#: include/ext/import_account/include/template/test_file.php:81 +#: include/ext/import_account/include/template/test_operation.php:81 +msgid "Non Utilisé" +msgstr "Not Used" + +#: include/template/ledger_detail_ach.php:129 +#: include/template/operation_detail_ach.php:48 +msgid "Non ded" +msgstr "No ded" + +#: include/class_acc_ledger.php:1023 +#, fuzzy +msgid "Non payé" +msgstr "Not paid" + +#: include/ext/amortis/include/class_am_card.php:245 html/fid_card.php:169 +msgid "Non trouvé" +msgstr "Not found" + +#: include/template/ledger_detail_ven.php:95 +#, fuzzy +msgid "Note" +msgstr "Notes" + +#: include/database.item.php:176 +msgid "Note de frais" +msgstr "Note of free" + +#: include/class_calendar.php:129 include/class_acc_ledger.php:667 +msgid "Notes" +msgstr "Notes" + +#: include/anc_od.inc.php:58 include/class_anticipation.php:260 +#: include/class_follow_up.php:152 +msgid "Nouveau" +msgstr "New" + +#: include/ext/amortis/include/template/material_add.php:3 +msgid "Nouveau matériel" +msgstr "New equipment" + +#: include/ajax_add_menu.php:70 include/ajax_add_menu.php:119 +msgid "Nouveau menu" +msgstr "New" + +#: include/anc_pa.inc.php:47 +msgid "Nouveau plan" +msgstr "New" + +#: include/database.item.php:2 +msgid "Nouvel achat ou dépense" +msgstr "New purchase" + +#: include/database.item.php:55 +msgid "Nouvel extrait" +msgstr "new entry" + +#: include/database.item.php:55 +msgid "Nouvel extrait bancaire" +msgstr "New bank statement" + +#: include/extension.inc.php:49 include/ajax_plugin_detail.php:29 +msgid "Nouvelle extension" +msgstr "New plugin" + +#: html/ajax_card.php:182 +msgid "Nouvelle fiche" +msgstr "New card" + +#: include/ext/coprop/include/appel_fond.inc.php:214 +msgid "Nouvelle fiche " +msgstr "New card" + +#: include/database.item.php:54 +msgid "Nouvelle opérations diverses" +msgstr "New various operations" + +#: include/database.item.php:9 +msgid "Nouvelle vente ou recette" +msgstr "New sale" + +#: include/class_anc_grandlivre.php:160 include/class_anc_listing.php:88 +msgid "Num.interne" +msgstr "Internal number" + +#: include/class_acc_ledger_purchase.php:1649 +#: include/class_acc_ledger_sold.php:915 +msgid "Numero de bon de commande : " +msgstr "Number of ordering" + +#: include/database.item.php:155 +msgid "Numero de client" +msgstr "Number of customer" + +#: include/company.inc.php:105 +msgid "Numéro" +msgstr "Number" + +#: include/class_acc_ledger_purchase.php:1338 +#: include/class_acc_ledger_purchase.php:1343 +#: include/class_acc_ledger_purchase.php:1346 +#: include/class_acc_ledger_sold.php:634 include/class_acc_ledger_sold.php:639 +#: include/class_acc_ledger_sold.php:642 +#: include/template/form_ledger_detail.php:42 +msgid "Numéro Pièce" +msgstr "Part Number" + +#: include/ext/transform/include/template/listing_client_display.php:39 +#: include/ajax_boxcard_search.php:63 +msgid "Numéro TVA" +msgstr "VAT number" + +#: include/ext/transform/include/class_transform_declarant.php:173 +msgid "Numéro de TVA incorrect" +msgstr "VAT number incorrect" + +#: include/company.inc.php:113 +msgid "Numéro de Tva" +msgstr "VAT Number" + +#: include/class_acc_account.php:185 +#, php-format +msgid "Numéro de classe" +msgstr "Class nummer" + +#: include/ext/transform/include/class_transform_client.php:94 +msgid "Numéro de tva incorrect" +msgstr "VAT number incorrect" + +#: include/ext/transform/include/class_transform_declarant.php:170 +#: include/ext/transform/include/class_transform_representative.php:205 +msgid "Numéro de téléphone incorrect" +msgstr "Incorrect phone number" + +#: include/template/action_search.php:88 +#, fuzzy +msgid "Numéro document" +msgstr "Document No." + +#: include/template/form_ledger_fin.php:32 +#: include/ext/modop/template_ledger_fin.php:11 +msgid "Numéro extrait" +msgstr "Number of Bank receipt" + +#: include/template/param_jrn.php:33 +msgid "Numérotation de chaque opération" +msgstr "Numbering Each of operation" + +#: include/template/impress_reconciliation.php:7 +#, fuzzy +msgid "N°" +msgstr "No VAT" + +#: include/ext/transform/include/template/listing_assujetti_declarant.php:74 +msgid "N° TVA" +msgstr "No VAT" + +#: include/template/detail-action.php:19 +msgid "N° document" +msgstr "Document No." + +#: include/ext/amortis/include/am_histo.inc.php:38 +msgid "N° interne" +msgstr "No internal" + +#: include/template/impress_reconciliation.php:13 +#, fuzzy +msgid "N° op" +msgstr "No operation" + +#: include/ext/import_account/include/class_impacc_operation.php:489 +msgid "N° opération" +msgstr "No operation" + +#: include/template/param_jrn.php:110 +msgid "N° pièce justificative" +msgstr "Receipt number" + +#: include/ajax_preference.php:167 include/ajax_preference.php:168 +msgid "Néerlandais" +msgstr "Dutch" + +#: include/database.item.php:12 +msgid "OD analytique" +msgstr "MW analytic" + +#: include/class_acc_ledger.php:2120 +msgid "OPERATION ANNULEE " msgstr "" -#: include/menu_translate.php:109 -msgid "PCMN" +#: include/template/stock_summary_list.php:48 +#: include/template/stock_summary_table.php:81 +#: include/template/stock_summary_table.php:115 +msgid "OUT" msgstr "" -#: include/menu_translate.php:109 -msgid "Outils plan comptable" +#: include/ext/transform/include/class_transform_representative.php:208 +#: include/ext/transform/include/class_transform_representative.php:211 +#: include/ext/transform/include/class_transform_representative.php:214 +msgid "Obligatoire" +msgstr "Mandatory" + +#: include/template/param_jrn.php:61 +msgid "" +"Obligatoire pour les journaux FIN : donner ici la fiche de la banque utilisée" +msgstr "Mandatory for FIN ledger: give here the card of the bank" + +#: include/template/form_ledger_fin.php:45 +msgid "Op. Concernée(s)" +msgstr "Concerned entry" + +#: include/template/letter_all.php:41 include/template/letter_prop.php:40 +#: include/template/letter_prop.php:80 +msgid "Op. concernée" +msgstr "Op concerned" + +#: include/class_anc_group_operation.php:73 +msgid "Operation non equilibrée" +msgstr "Unbalanced operation" + +#: include/ajax_preference.php:69 include/ajax_preference.php:70 +msgid "Options Générales" +msgstr "General paramater" + +#: include/export_ledger_csv.php:49 +msgid "Options invalides" +msgstr "Invalid options" + +#: include/ajax_preference.php:148 include/ajax_preference.php:149 +msgid "Options pour la page d'accueil" +msgstr "Option for the welcome page" + +#: include/ext/tools/index.php:41 +msgid "Opération" +msgstr "Operation" + +#: include/database.item.php:198 +msgid "Opération Diverses" +msgstr "Miscellaneous operation" + +#: html/ajax_ledger.php:156 +msgid "Opération Effacée" +msgstr "Removed accounting" + +#: include/class_acc_ledger.php:762 include/class_acc_ledger.php:990 +#, fuzzy +msgid "Opération annulée" +msgstr "Entry saved" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:129 +msgid "Opération de vente" +msgstr "Sale transaction" + +#: include/ext/import_account/include/class_impacc_operation.php:113 +msgid "Opération déjà transférée : doublon " +msgstr "Operation already transferred: duplicate" + +#: html/ajax_ledger.php:546 +msgid "Opération extournée" +msgstr "Reversed accounting" + +#: html/ajax_ledger.php:498 include/anc_od.inc.php:122 +#: include/ext/modop/modop_save.php:80 include/ext/modop/modop_save.php:162 +#: include/ext/amortis/include/am_generate.inc.php:76 +msgid "Opération sauvée" +msgstr "Entry saved" + +#: include/ext/tva/form_parameter.php:81 +msgid "Opération à l'entrée" +msgstr "Operation at the entrance" + +#: include/ext/tva/form_parameter.php:66 +msgid "Opération à la sortie" +msgstr "Operation output" + +#: include/category_card.inc.php:67 include/template/form_ledger_fin.php:37 +#: include/ext/modop/template_ledger_fin.php:15 +msgid "Opérations" +msgstr "Entries" + +#: include/category_card.inc.php:69 +msgid "Opérations & Lettrages" +msgstr "Operation & Lettering" + +#: include/database.item.php:54 +msgid "Opérations Diverses" +msgstr "Various operations" + +#: include/lettering.account.inc.php:87 include/lettering.card.inc.php:92 +#: include/lettering.gestion.inc.php:43 +msgid "Opérations NON lettrées" +msgstr "Not Lettered operations" + +#: include/ext/import_account/index.php:58 +#: include/ext/import_doli/index.php:58 +msgid "Opérations Ventes/Achats" +msgstr "Operations Sales / Purchases" + +#: include/database.item.php:12 include/database.item.php:111 +msgid "Opérations diverses" +msgstr "Misc. writing" + +#: include/lettering.account.inc.php:85 include/lettering.card.inc.php:90 +#: include/lettering.gestion.inc.php:42 +msgid "Opérations lettrées" +msgstr "Lettered operations" + +#: include/lettering.account.inc.php:86 include/lettering.card.inc.php:91 +msgid "Opérations lettrées montants différents" +msgstr "Lettered writing with different Amounts" + +#: include/template/print_ledger_simple.php:31 +#, fuzzy +msgid "Opérations rapprochées" +msgstr "Export close operations" + +#: include/ext/import_account/include/class_impacc_operation.php:483 +msgid "Opérations sauvées" +msgstr "Saved operations" + +#: include/template/forecast_cat.php:14 +msgid "Ordre" +msgstr "Order" + +#: include/ajax_get_menu_detail.php:87 +msgid "Ordre d'apparition" msgstr "" -#: include/menu_translate.php:110 -msgid "Module de TVA" +#: include/company.inc.php:41 include/company.inc.php:45 +#: include/company.inc.php:48 include/company.inc.php:86 +msgid "Oui" +msgstr "yes" + +#: include/class_acc_ledger.php:211 +msgid "PERIODE FERMEE" +msgstr "Close period" + +#: include/class_acc_ledger.php:1429 +msgid "PJ Num" +msgstr "Receipt #" + +#: include/class_acc_ledger.php:818 include/template/print_ledger_simple.php:8 +#, fuzzy +msgid "Paiement" +msgstr "Loading" + +#: include/template/dashboard.php:160 +#, fuzzy +msgid "Paiement client" +msgstr "Electronic payment" + +#: include/class_acc_payment.php:305 +msgid "Paiement encodé plus tard" +msgstr "Payment encoded later" + +#: include/template/new_mod_payment.php:38 +msgid "Paiement enregistré dans " +msgstr "Payment Recorded in" + +#: include/template/dashboard.php:135 +#, fuzzy +msgid "Paiement fournisseur" +msgstr "of suppliers" + +#: include/database.item.php:191 +msgid "Paiement électronique" +msgstr "Electronic payment" + +#: include/ext/tva/form_periode.php:13 +msgid "Par année" +msgstr "Per year" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:94 +msgid "Par calcul" +msgstr "By calculation" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:191 +msgid "Par calcul : date opération" +msgstr "Calculation: Date operation" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:194 +msgid "Par calcul : date paiement" +msgstr "Calculation: Payment Date" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:35 +msgid "Par date opération" +msgstr "Operation by date" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:34 +msgid "Par date paiement" +msgstr "Payment date" + +#: include/ext/import_account/include/template/input_file.php:10 +msgid "" +"Par défaut, correspond à un export CSV depuis Calc (OpenOffice.org ou " +"libreoffice)" msgstr "" -#: include/menu_translate.php:110 -msgid "Cette extension permet de faire les listings et declarations TVA" +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:80 +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:152 +msgid "Par fichier" +msgstr "Per file" + +#: include/database.item.php:193 +msgid "Par gérant ou administrateur" +msgstr "By the manager or administrator" + +#: html/ajax_card.php:106 +msgid "Parametre ad_id est invalide" +msgstr "Invalid parameter" + +#: include/database.item.php:83 +msgid "Parametre societe" +msgstr "Company parametes" + +#: include/class_acc_ledger.php:1248 +msgid "Parametres journaux non trouves" +msgstr "Ledger parameters not found" + +#: include/ext/import_account/index.php:59 +#: include/ext/import_doli/index.php:59 +msgid "Paramètrage" +msgstr "Parameterization" + +#: include/ext/skel/index.php:47 include/ext/tva/index.php:36 +msgid "Paramètrage " +msgstr "Parameterization" + +#: include/database.item.php:57 include/ext/coprop/index.php:48 +#: include/card_attr.inc.php:98 include/menu.inc.php:118 +msgid "Paramètre" +msgstr "Parameter" + +#: include/ext/rapport_avance/ajax_modify_param_detail.php:68 +msgid "Paramètre invalide" +msgstr "Invalid parameter" + +#: include/ext/skel/index.php:47 include/ext/tva/index.php:36 +msgid "Paramètre pour la TVA" +msgstr "Parameter for VAT" + +#: include/database.item.php:75 +msgid "Paramètres divers" +msgstr "Misc. parameters" + +#: include/param_pcmn.inc.php:55 +msgid "Parent" +msgstr "Relative" + +#: include/template/account_search.php:5 +msgid "Partie du poste comptable ou du libellé" +msgstr "Part of the name or share of the accounting item" + +#: include/database.item.php:136 +msgid "Partie fiscalement non déductible" +msgstr "Non-tax deductible portion" + +#: include/class_document_modele.php:261 +#: include/template/modele_document.php:50 +msgid "Partie gestion" +msgstr "Management" + +#: include/template/security_list_action.php:7 +msgid "Pas d'accès" +msgstr "No access" + +#: include/class_acc_bilan.php:137 +msgid "Pas d'anomalie détectée" msgstr "" -#: include/menu_translate.php:111 -msgid "Balance Analytique/comptabilité" +#: include/ext/invoicing/include/invoice_send_mail.inc.php:75 +msgid "Pas de conversion en PDF disponible" +msgstr "No PDF conversion available" + +#: include/ext/import_account/include/class_impacc_operation.php:38 +msgid "Pas de fichier donné" +msgstr "Not given file" + +#: include/class_acc_ledger_fin.php:1002 include/class_acc_ledger.php:1594 +#: include/class_acc_ledger_purchase.php:1035 +#: include/class_acc_ledger_sold.php:1055 +msgid "Pas de journal disponible" +msgstr "No available ledger" + +#: include/class_acc_bilan.php:148 +msgid "Passif avec un solde debiteur" msgstr "" -#: include/menu_translate.php:111 -msgid "Lien entre comptabilité et Comptabilité analytique" +#: include/company.inc.php:111 include/stock_cfg.inc.php:68 +#: include/ajax_mod_stock_repo.php:63 +#: include/template/stock_summary_list.php:41 +msgid "Pays" +msgstr "Country" + +#: include/class_acc_ledger.php:865 +#: include/ext/invoicing/include/class_acc_ledger_sold_generate.php:122 +#: include/class_acc_ledger.php:1019 include/template/ledger_detail_ven.php:79 +msgid "Payé" +msgstr "Paid" + +#: include/class_acc_ledger.php:3478 +msgid "Payé par" +msgstr "Paid by" + +#: include/template/dashboard.php:185 +msgid "Pense-Bête" +msgstr "Todo List" + +#: include/class_acc_ledger_fin.php:106 include/class_acc_ledger_fin.php:190 +#: include/class_acc_ledger_purchase.php:101 +#: include/class_acc_ledger_sold.php:100 +msgid "Periode fermee" +msgstr "Closed Period" + +#: include/database.item.php:144 +msgid "Personne de contact " +msgstr "Contact person" + +#: include/template/operation_detail_ach.php:47 +msgid "Personnel" +msgstr "Staff" + +#: include/class_acc_ledger.php:1654 include/template/ledger_detail_ach.php:62 +#: include/template/ledger_detail_fin.php:65 +#: include/template/ledger_detail_misc.php:50 +#: include/template/ledger_detail_ven.php:64 include/ext/tools/index.php:42 +#: include/ext/amortis/include/am_histo.inc.php:37 +#: include/ext/amortis/include/class_pdf_card.php:103 +#: include/ext/import_account/include/class_impacc_operation.php:488 +#: include/ext/amortis/include/template/material_detail.php:58 +#: include/ext/amortis/include/template/material_display.php:44 +#: include/ext/amortis/include/template/util_generate.php:57 +#: include/class_acc_ledger.php:664 include/class_acc_ledger.php:819 +#: include/template/print_ledger_simple.php:6 +msgid "Pièce" +msgstr "Receipt" + +#: include/template/detail-action.php:393 +msgid "Pièces attachées" +msgstr "Attachment" + +#: include/balance.inc.php:162 +#, fuzzy +msgid "Plage de postes" +msgstr "By account" + +#: include/anc_group.inc.php:62 +msgid "Plan" msgstr "" -#: include/menu_translate.php:112 -msgid "test" +#: include/anc_pa.inc.php:198 +msgid "Plan A" msgstr "" +#: include/class_anc_account.php:282 +msgid "Plan Analytique" +msgstr "Analytical" + +#: include/class_anc_print.php:128 +msgid "Plan Analytique :" +msgstr "Analytic Plan" + +#: include/database.item.php:49 +msgid "Plan Compt. analytique" +msgstr "Plan Compt. analytical" + +#: include/database.item.php:101 +msgid "Plan Comptable" +msgstr "Accounting system" + +#: include/database.item.php:49 +msgid "Plan analytique" +msgstr "Analytically" + +#: include/ext/import_account/include/class_impacc_operation.php:172 +msgid "Plusieurs code TVA correspondent à ce taux" +msgstr "Several tax code match that rate" + +#: include/class_acc_ledger.php:1434 include/class_acc_ledger.php:1687 +#: include/class_anc_grandlivre.php:157 include/class_anc_listing.php:83 +#: include/class_pre_op_advanced.php:183 include/database.item.php:62 +#: include/database.item.php:78 +msgid "Poste" +msgstr "Account. Item" + +#: include/ext/amortis/raw.php:100 +msgid "Poste Charge" +msgstr "Post Charge" + +#: html/ajax_poste.php:86 include/database.item.php:161 +#: include/template/ledger_detail_ach.php:273 +#: include/template/ledger_detail_fin.php:105 +#: include/template/ledger_detail_misc.php:89 +#: include/template/ledger_detail_ven.php:272 +#: include/template/operation_detail_misc.php:32 include/card_attr.inc.php:81 +#: include/template/fiche_list.php:41 +msgid "Poste Comptable" +msgstr "Accounting item" + +#: include/class_fiche_def.php:466 +msgid "Poste Comptable de base" +msgstr "Accounting basis of item" + +#: include/class_acc_ledger.php:1914 +msgid "Poste Inexistant [" +msgstr "non-existent accounting" + +#: include/class_acc_ledger.php:1902 +msgid "Poste Inexistant pour la fiche [" +msgstr "Inexisting accountancy" + +#: include/ext/amortis/raw.php:100 +msgid "Poste amortis" +msgstr "Post amortized" + +#: include/ext/amortis/include/template/material_add.php:29 +#: include/ext/amortis/include/template/material_detail.php:31 +#: include/ext/amortis/include/template/material_display.php:29 +msgid "Poste amortissement en contrepartie" +msgstr "Position damping consideration" + +#: include/ext/amortis/include/class_pdf_card.php:82 +msgid "Poste charge" +msgstr "Post load" + +#: include/param_pcmn.inc.php:51 include/ext/tva/form_parameter.php:116 +#: include/ajax_boxcard_search.php:66 +msgid "Poste comptable" +msgstr "Accounting" + +#: include/ext/tva/form_parameter.php:137 +msgid "Poste comptable utilisé pour les avances faites à la TVA" +msgstr "Accounting item used for advances to VAT" + +#: include/ext/tva/form_parameter.php:173 +msgid "Poste comptable utilisé pour les dettes envers la TVA" +msgstr "Accounting item used for VAT debts" + +#: include/ext/amortis/include/class_pdf_card.php:89 +msgid "Poste contrepartie" +msgstr "Position return" + +#: include/ext/amortis/include/template/material_add.php:24 +#: include/ext/amortis/include/template/material_detail.php:26 +#: include/ext/amortis/include/template/material_display.php:24 +msgid "Poste de charge dotations amortissement (débit)" +msgstr "Charging station depreciation amortization (debit)" + +#: include/ext/amortis/include/class_am_card.php:181 +msgid "Poste de charge incorrect" +msgstr "Post incorrect load" + +#: include/class_acc_account.php:97 +#, fuzzy +msgid "Poste inconnu" +msgstr "VAT unknown" + +#: include/class_acc_ledger.php:1912 +msgid "Poste invalide [" +msgstr "Invalid accounting [" + +#: include/ext/amortis/include/class_am_card.php:182 +msgid "Poste à créditer incorrect" +msgstr "Post crediting incorrect" + +#: include/template/param_jrn.php:15 +msgid "Postes utilisables journal (débit/crédit) " +msgstr "Available accounting ledger (debit / credit)" + +#: include/template/dashboard.php:97 +msgid "Pour aujourd'hui" +msgstr "" + +#: include/ext/import_account/include/template/test_operation.php:9 +msgid "" +"Pour importer des données, c'est-à-dire transformer des fichiers CSV (Valeur " +"séparé par des virgules) en des fiches. Vous devez choisir, un fichier et " +"donner une catégorie de fiche existante. Ensuite, il suffit d'indiquer " +"quelles colonnes correspondent à quelle attribut" +msgstr "" + +#: include/ext/import_account/include/template/input_file.php:7 +#: include/ext/import_account/include/template/test_file.php:9 +msgid "" +"Pour importer des données, c'est-à-dire transformer des fichiers CSV (Valeur " +"séparé par des virgules) en des fiches. Vous devez choisir, un fichier et " +"donner une catégorie de fiche existante. Ensuite, il suffit d'indiquer " +"quelles colonnes correspondent à quelle attribut." +msgstr "" + +#: include/class_acc_ledger_purchase.php:141 +#: include/class_acc_ledger_purchase.php:212 +#: include/class_acc_ledger_sold.php:132 include/class_acc_ledger_sold.php:191 +msgid "Pour la fiche " +msgstr "For the card" + +#: include/class_acc_ledger.php:2393 +#, fuzzy, php-format +msgid "Pour la fiche %s le poste comptable [%s] n'existe pas" +msgstr "For the card %s the accounting %s doesn't exist" + +#: include/class_acc_ledger_purchase.php:246 +#, php-format +msgid "Pour la fiche %s, le compte contrepartie %s n'existe pas" +msgstr "For the card% s,% s the otherside does not exist" + +#: include/ext/tva/ajax.php:188 +msgid "Pour la grille " +msgstr "To the gate" + +#: include/template/new_mod_payment.php:10 +msgid "Pour le journal" +msgstr "For the ledger" + +#: include/dossier.inc.php:59 +msgid "" +"Pour le passer en unicode, faites-en un backup puis restaurez le fichier reçu" +msgstr "To convert it in unicode, do first year in backup restore it" + +#: html/user_login.php:41 +msgid "" +"Pour une meilleure expérience web, prenez le temps de mettre votre " +"navigateur à jour" +msgstr "For a better web experience, take the time to update your brower" + +#: include/ext/amortis/include/template/material_detail.php:62 +#: include/ext/amortis/include/template/material_display.php:48 +msgid "Pourcent" +msgstr "Percent" + +#: include/ext/amortis/include/template/listing_year.php:16 +msgid "Pourcentage" +msgstr "Percentage" + +#: include/template/detail-action.php:115 +msgid "Priorité" +msgstr "Priority" + +#: include/template/impress_reconciliation_detail.php:10 +#, fuzzy +msgid "Prix HTVA" +msgstr "wo VAT" + +#: include/database.item.php:131 +msgid "Prix achat" +msgstr "Purchase price" + +#: include/database.item.php:130 +msgid "Prix vente" +msgstr "Sale Price" + +#: include/template/ledger_detail_ven.php:124 +#: include/template/operation_detail_ven.php:37 +msgid "Prix/Un" +msgstr "Price / unit" + +#: include/template/ledger_detail_ach.php:127 +#: include/template/operation_detail_ach.php:45 +msgid "Prix/Un." +msgstr "Price / unit" + +#: include/template/document_mod_change.php:71 +msgid "Prochain numéro" +msgstr "Next issue" + +#: include/user_menu.php:154 +msgid "Produits" +msgstr "Products" + +#: include/database.item.php:77 include/param_sec.inc.php:271 +#: include/template/action_search.php:99 +#: include/template/user_sec_profile.php:35 +msgid "Profil" +msgstr "Profile" + +#: include/export_fiche_balance_csv.php:145 include/fiche.inc.php:442 +msgid "Prog." +msgstr "Progr." + +#: include/database.item.php:173 +msgid "Proposition" +msgstr "Proposal" + +#: include/template/document_mod_change.php:45 +msgid "Préfixe" +msgstr "Prefix" + +#: include/template/param_jrn.php:84 +msgid "Préfixe code interne" +msgstr "Prefix for internal code" + +#: include/template/param_jrn.php:88 +msgid "Préfixe pièce justificative" +msgstr "Prefix for receipt" + +#: html/user_login.php:149 include/ajax_preference.php:31 +#: include/database.item.php:80 html/user_pref.php:87 +msgid "Préférence" +msgstr "Setting" + +#: include/database.item.php:156 +msgid "Prénom" +msgstr "First Name" + +#: include/template/stock_state_search.php:43 +#, fuzzy +msgid "Présentation" +msgstr "Creation" + +#: include/database.item.php:123 +msgid "Prévision" +msgstr "Forecast" + +#: include/ajax_preference.php:114 include/database.item.php:84 +#: include/template/forecast_result.php:25 +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:67 +#: include/ajax_preference.php:115 +msgid "Période" +msgstr "Period" + +#: include/class_acc_ledger.php:1427 +#: include/class_acc_ledger_purchase.php:1358 +#: include/class_acc_ledger_sold.php:653 +msgid "Période Comptable" +msgstr "Accounting Period" + +#: include/class_acc_ledger.php:1638 +#: include/class_acc_ledger_purchase.php:1016 +#: include/class_acc_ledger_sold.php:1039 +#: include/ext/amortis/include/class_am_generate.php:91 +msgid "Période comptable" +msgstr "Accounting period" + +#: include/class_anticipation.php:122 +msgid "Période de début non valable" +msgstr "Invalid start period" + +#: include/class_anticipation.php:123 +msgid "Période de fin non valable" +msgstr "Invalid end period" + +#: include/template/ledger_detail_ach.php:128 +#: include/template/ledger_detail_ven.php:125 +#: include/template/operation_detail_ach.php:46 +#: include/template/operation_detail_ven.php:38 +#: include/template/stock_inv.php:68 +msgid "Quantité" +msgstr "Quantity" + +#: include/class_fiche.php:1568 include/database.item.php:150 +#: include/template/ledger_detail_ach.php:118 +#: include/template/ledger_detail_ach.php:274 +#: include/template/ledger_detail_fin.php:106 +#: include/template/ledger_detail_misc.php:90 +#: include/template/ledger_detail_ven.php:122 +#: include/template/ledger_detail_ven.php:273 +#: include/template/operation_detail_ach.php:35 +#: include/template/operation_detail_misc.php:33 +#: include/template/operation_detail_ven.php:35 +#: include/ext/amortis/include/template/util_generate.php:66 +#: include/ajax_boxcard_search.php:50 include/template/fiche_list.php:34 +msgid "Quick Code" +msgstr "Quick Code" + +#: include/class_acc_ledger.php:1433 +msgid "Quick Code ou " +msgstr "QuickCode gold" + +#: include/ext/import_account/include/class_impacc_operation.php:250 +msgid "QuickCode" +msgstr "QuickCode" + +#: include/class_anc_grandlivre.php:158 include/class_anc_listing.php:84 +msgid "Quick_code" +msgstr "Quick_code" + +#: include/ext/amortis/include/template/material_listing.php:6 +msgid "Quickcode" +msgstr "QuickCode" + +#: include/database.item.php:118 +msgid "Raccourci vers vos menus préférés" +msgstr "Shortcut to your favorite menus" + +#: include/dossier.inc.php:159 +msgid "Rafraîchir" +msgstr "Refresh" + +#: include/class_fiche.php:451 +msgid "Rappel: Poste créé automatiquement à partir de " +msgstr "Warning: Automatically create accounting item from" + +#: include/class_fiche.php:459 +msgid "Rappel: Poste par défaut sera " +msgstr "Warning: by default, the accounting item Will Be" + +#: include/database.item.php:63 include/ext/amortis/index.php:53 +msgid "Rapport" +msgstr "Postponement" + +#: include/database.item.php:97 include/database.item.php:104 +#: include/template/ledger_detail_bottom.php:18 +msgid "Rapprochement" +msgstr "Reconciliation" + +#: include/database.item.php:97 +msgid "Rapprochement bancaire" +msgstr "Bank Reconciliation" + +#: html/ajax_card.php:328 html/ajax_poste.php:83 html/recherche.php:65 +#: include/adm.inc.php:81 include/ajax_anc_search.php:45 +#: include/ajax_anc_search.php:56 include/bank.inc.php:75 +#: include/class_anc_balance_double.php:330 include/class_anc_print.php:133 +#: include/class_icard.php:290 include/class_iposte.php:133 +#: include/contact.inc.php:73 include/customer.inc.php:75 +#: include/database.item.php:56 include/database.item.php:95 +#: include/fiche.inc.php:83 include/lettering.account.inc.php:97 +#: include/lettering.card.inc.php:102 include/lettering.gestion.inc.php:54 +#: include/manager.inc.php:78 include/search.inc.php:70 +#: include/supplier.inc.php:79 include/user_menu.php:52 +#: include/template/action_button.php:39 +#: include/ext/amortis/include/am_card.php:44 +#: include/ext/tools/include/operation.inc.php:9 html/ajax_card.php:329 +#: include/anc_acc_balance.inc.php:11 include/anc_acc_table.inc.php:11 +#: include/anc_great_ledger.inc.php:11 include/anc_group_balance.inc.php:11 +#: include/template/search_top.php:41 +#: include/template/stock_histo_search.php:30 +#: include/template/stock_histo_search.php:68 include/menu.inc.php:147 +#, php-format +msgid "Recherche" +msgstr "Search" + +#: include/ajax_anc_search.php:41 +msgid "Recherche activité" +msgstr "Search activity" + +#: include/template/action_search.php:39 +msgid "Recherche avancée" +msgstr "Advanced search" + +#: html/ajax_card.php:354 include/fiche.inc.php:90 +#: include/forecast.inc.php:264 include/forecast.inc.php:329 +#: include/impress_poste.inc.php:43 include/ext/modop/modop_display.php:80 +#: include/ext/modop/modop_display.php:113 +#: include/ext/modop/modop_display.php:147 +#: include/ext/modop/modop_display.php:183 html/ajax_card.php:355 +msgid "Recherche de fiche" +msgstr "Search Card" + +#: html/ajax_card.php:430 include/class_acc_report.php:151 +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:121 +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:163 +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:279 +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:286 +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:346 +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:353 +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:360 +#: include/ext/rapport_avance/include/class_rapav_listing_formula.php:375 +#: include/ext/rapport_avance/include/class_rapav_listing_formula.php:795 +#: html/ajax_card.php:431 +msgid "Recherche poste" +msgstr "Search accounting" + +#: include/class_acc_ledger_fin.php:1037 include/class_acc_ledger.php:2842 +msgid "Rechercher" +msgstr "Search" + +#: include/template/modele_document.php:101 +msgid "Redémarrer la séquence (laisser à 0 pour ne pas changer)" +msgstr "" + +#: include/template/letter_all.php:26 include/template/letter_prop.php:28 +#: include/template/letter_prop.php:68 +#: include/template/action_search_result.php:47 +#: include/template/print_ledger_simple.php:9 +msgid "Ref" +msgstr "Ref" + +#: include/template/detail-action.php:27 +msgid "Reference" +msgstr "Reference" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:287 +msgid "Rejeté" +msgstr "Rejected" + +#: include/user_menu.php:113 +msgid "Restaure" +msgstr "Restore" + +#: include/user_menu.php:113 +msgid "Restaure une base de données" +msgstr "Restore a folder" + +#: include/ext/amortis/include/template/material_detail.php:123 +#: include/ext/amortis/include/template/material_display.php:97 +msgid "Reste" +msgstr "Rest" + +#: include/ext/amortis/include/template/listing_year.php:17 +msgid "Reste à amortir" +msgstr "Rest cushion" + +#: html/ajax_misc.php:281 include/dossier.inc.php:288 +#: include/dossier.inc.php:316 include/dossier.inc.php:335 +#: include/ext/tva/ajax.php:17 +msgid "Retour" +msgstr "Return" + +#: include/action.inc.php:26 +msgid "Retour liste" +msgstr "Return to list" + +#: include/payment_middle.inc.php:56 include/payment_middle.inc.php:104 +msgid "Retour sans sauver" +msgstr "Return without saving" + +#: include/ajax_fiche_def_detail.php:40 +msgid "Retour à la liste" +msgstr "Return to list" + +#: include/ext/transform/include/template/listing_assujetti_declarant.php:30 +#: include/ext/transform/include/template/listing_assujetti_representative.php:30 +msgid "Rue" +msgstr "Street" + +#: include/company.inc.php:103 +msgid "Rue " +msgstr "Street" + +#: include/database.item.php:178 +msgid "Réception commande Client" +msgstr "Client command reception" + +#: include/database.item.php:177 +msgid "Réception commande Fournisseur" +msgstr "Command reception Supplier" + +#: include/database.item.php:179 +msgid "Réception magazine" +msgstr "Front magazine" + +#: include/template/forecast_result.php:71 +msgid "Réel" +msgstr "Real" + +#: include/template/action_search.php:82 +#, fuzzy +msgid "Référence" +msgstr "Setting" + +#: include/ext/tools/index.php:42 +msgid "Rénuméroter des pièces justificative" +msgstr "Renumber the supporting parts" + +#: include/ext/rapport_avance/ajax_send_mail.php:10 include/audit_log.php:40 +msgid "Résultat" +msgstr "Result" + +#: include/ajax_boxcard_search.php:43 +#, php-format +msgid "Résultat limité à %d , %d nombre de fiches trouvées" +msgstr "" + +#: html/fid_card.php:164 +#, php-format +msgid "Résultat limité à 12" +msgstr "" + +#: include/ajax_boxcard_search.php:39 +msgid "Résultat recherche" +msgstr "Search result" + +#: include/template/account_result.php:6 include/template/card_result.php:6 +msgid "Résultats" +msgstr "Results" + +#: include/fiche.inc.php:68 +msgid "Résumé" +msgstr "Summary" + +#: include/class_calendar.php:168 include/class_calendar.php:256 +msgid "Samedi" +msgstr "Saterday" + +#: include/database.item.php:14 +msgid "Saut de ligne" +msgstr "new line" + +#: html/ajax_card.php:437 include/company.inc.php:126 +#: include/compta_fin.inc.php:143 include/param_pcmn.inc.php:62 +#: include/payment_middle.inc.php:54 include/report.inc.php:103 +#: include/report.inc.php:118 include/template/dashboard.php:342 +#: include/ext/modop/modop_display.php:311 html/ajax_card.php:193 +#: html/ajax_card.php:438 include/ajax_mod_predf_op.php:55 +#: include/cfgledger.inc.php:122 +msgid "Sauve" +msgstr "Save" + +#: include/ext/tva/decl_tva.inc.php:105 +#: include/ext/tva/list_assujetti.inc.php:95 +#: include/ext/tva/list_intra.inc.php:117 +msgid "Sauvegarde" +msgstr "Safeguard" + +#: html/ajax_misc.php:461 include/class_fiche_def.php:773 +#: include/forecast.inc.php:274 include/forecast.inc.php:289 +#: include/forecast.inc.php:309 include/forecast.inc.php:339 +#: include/forecast.inc.php:382 include/template/document_mod_change.php:86 +#: include/template/ledger_detail_bottom.php:114 +#: include/ext/rapport_avance/ajax_listing_detail_modify.php:73 +#: include/ext/amortis/include/template/material_add.php:52 +#: include/ext/amortis/include/template/material_detail.php:135 +#: html/ajax_card.php:160 include/ajax_mod_stock_repo.php:79 +#: include/template/modele_document.php:118 +#: include/template/profile_sec_repository.php:59 +#: include/template/stock_inv.php:104 include/template/user_sec_profile.php:58 +msgid "Sauver" +msgstr "Save" + +#: include/category_detail.inc.php:67 +msgid "Sauver les modifications" +msgstr "Save changes" + +#: include/class_fiche_def.php:784 include/operation_ods_new.inc.php:103 +msgid "Sauvez" +msgstr "Save" + +#: include/ext/amortis/include/template/util_generate.php:65 +#: include/card_attr.inc.php:83 include/class_acc_ledger.php:655 +#: include/template/fiche_list.php:49 +msgid "Selection" +msgstr "Selection" + +#: include/class_anc_balance_double.php:338 +msgid "" +"Selectionnez le plan qui vous intéresse avant de cliquer sur Recherche" +msgstr "Select the map you are interested before clicking close on Search" + +#: include/class_anc_print.php:140 +msgid "Selectionnez le plan qui vous intéresse avant de cliquer sur Recherche" +msgstr "Select the map before clicking close on search" + +#: include/ajax_preference.php:164 include/ajax_preference.php:165 +msgid "Selectionnez votre langue" +msgstr "Select your language" + +#: include/ext/tva/form_parameter.php:89 +msgid "Services intracommunautaires avec report de perception" +msgstr "Services intra-deferred perception" + +#: include/class_user.php:51 +msgid "Session expirée
Utilisateur déconnecté" +msgstr "Session expired
User disconnected" + +#: include/template/category_of_card.php:35 +msgid "" +"Si vous n'utilisez pas la création automatique, toutes les nouvelles fiches " +"auront par défaut le même poste comptable. Ce poste comptable par défaut est " +"la classe de base." +msgstr "" + +#: include/template/category_of_card.php:32 +msgid "" +"Si vous utilisez la création automatique de poste, chaque nouvelle fiche de " +"cette catégorie aura son propre poste comptable. Ce poste comptable sera la " +"classe de base augmenté de 1." +msgstr "" + +#: include/ajax_preference.php:34 +msgid "" +"Si vous validez, la page sera rechargée et vous pourriez perdre ce que vous " +"faisiez" +msgstr "" + +#: include/template/dashboard.php:90 +#, fuzzy +msgid "Situation" +msgstr "View" + +#: include/database.item.php:164 +msgid "Société" +msgstr "Company" + +#: include/contact.inc.php:90 +msgid "Société :" +msgstr "Company" + +#: include/database.item.php:83 +msgid "Sociétés" +msgstr "Company" + +#: include/class_fiche.php:1573 include/template/anc_balance_group.php:51 +#: include/template/anc_balance_group.php:72 include/class_acc_bilan.php:157 +msgid "Solde" +msgstr "Balance" + +#: include/template/form_ledger_fin.php:34 +msgid "Solde Fin" +msgstr "End balance" + +#: include/template/letter_all.php:109 +#, fuzzy +msgid "Solde crédit" +msgstr "Total credit" + +#: include/template/letter_all.php:117 +#, fuzzy +msgid "Solde créditeur" +msgstr "Total credit" + +#: include/database.item.php:98 +msgid "Solde des comptes en banques, caisse..." +msgstr "Balance of bank accounts, cash ..." + +#: include/template/letter_all.php:108 +#, fuzzy +msgid "Solde débit" +msgstr "Start balance" + +#: include/template/letter_all.php:115 +#, fuzzy +msgid "Solde débiteur" +msgstr "Start balance" + +#: include/template/form_ledger_fin.php:33 +msgid "Solde début" +msgstr "Start balance" + +#: include/database.item.php:98 +msgid "Soldes" +msgstr "Sales" + +#: include/database.item.php:76 +msgid "Sortie" +msgstr "Logout" + +#: include/database.item.php:107 +msgid "Stock" +msgstr "Stock" + +#: include/user_menu.php:150 +msgid "Stock et commande" +msgstr "Stock and Order" + +#: include/company.inc.php:120 +msgid "Suggérer la date" +msgstr "Suggest the date" + +#: include/company.inc.php:119 +msgid "Suggérer le numéro de pièce justificative" +msgstr "Suggest the receipt number" + +#: include/category_card.inc.php:65 +#: include/template/security_list_action.php:57 +msgid "Suivi" +msgstr "Follow up" + +#: include/category_card.inc.php:65 +msgid "Suivi Fournisseur, client, banque, devis, bon de commande, courrier" +msgstr "Followed Supplier, customer, bank, quote, order, mail" + +#: include/database.item.php:122 +msgid "Suivi administration, banque" +msgstr "Followed administration, bank" + +#: include/database.item.php:15 +msgid "Suivi client" +msgstr "Customer care" + +#: include/database.item.php:125 +msgid "Suivi des gérants, administrateurs et salariés" +msgstr "Monitoring of managers, directors and employees" + +#: include/database.item.php:11 +msgid "Suivi fournisseur" +msgstr "Follow up supplier" + +#: include/ext/invoicing/include/invoicing.inc.php:115 +msgid "Sujet" +msgstr "Topic" + +#: include/ajax_bookmark.php:103 +msgid "Supprimez favoris sélectionnés" +msgstr "" + +#: html/ajax_misc.php:196 +msgid "Symbole" +msgstr "Symbol" + +#: include/database.item.php:89 +msgid "Sécurité" +msgstr "Security" + +#: include/template/action_other_action.php:18 +msgid "Sélectionner les documents et l' action :" +msgstr "" + +#: include/ext/amortis/include/template/util_generate.php:100 +#: include/template/letter_prop.php:164 +msgid "Sélectionner tout" +msgstr "Select all" + +#: include/database.item.php:8 include/template/ledger_detail_ach.php:135 +#: include/template/ledger_detail_ven.php:133 +#: include/template/operation_detail_ach.php:53 +#: include/template/operation_detail_ven.php:45 +#: include/ext/transform/ajax_modify_intervat_assujetti.php:47 +#: include/ext/transform/ajax_modify_intervat_assujetti.php:63 +#: include/ext/transform/include/template/listing_client_display.php:45 +#: include/template/impress_reconciliation_detail.php:19 +msgid "TVA" +msgstr "VAT" + +#: include/ext/tva/form_parameter.php:93 +msgid "TVA Due" +msgstr "Tax Due" + +#: include/ext/tva/form_parameter.php:103 +msgid "TVA Déductible" +msgstr "Tax Deductible" + +#: include/template/ledger_detail_ach.php:134 +msgid "TVA ND" +msgstr "VAT ND" + +#: include/database.item.php:134 +msgid "TVA non déductible" +msgstr "Non-deductible VAT" + +#: include/database.item.php:135 +msgid "TVA non déductible récupérable par l'impôt" +msgstr "Non-deductible VAT recoverable by the Tax" + +#: include/template/ledger_detail_ach.php:136 +#: include/template/ledger_detail_ven.php:134 +#: include/template/operation_detail_ach.php:54 +#: include/template/operation_detail_ven.php:46 +#: include/template/impress_reconciliation_detail.php:25 +msgid "TVAC" +msgstr "with VAT" + +#: include/database.item.php:5 +msgid "Tableau" +msgstr "Table" + +#: include/ext/amortis/include/am_print.php:34 +msgid "Tableau / année" +msgstr "Table / year" + +#: include/ext/amortis/include/am_print.php:34 +msgid "Tableau amortissement par année" +msgstr "Table depreciation per year" + +#: include/database.item.php:116 +msgid "Tableau de bord" +msgstr "Dashboard" + +#: include/database.item.php:5 +msgid "Tableau lié à la comptabilité" +msgstr "Table with accountancy" + +#: include/template/tag_list.php:11 include/template/tag_search_select.php:16 +#: include/template/tag_select.php:16 +#, fuzzy +msgid "Tag" +msgstr "VAT" + +#: include/card_attr.inc.php:97 +#, fuzzy +msgid "Taille" +msgstr "City" + +#: include/ajax_preference.php:120 include/ajax_preference.php:121 +msgid "Taille des pages" +msgstr "Page size" + +#: html/ajax_misc.php:195 +msgid "Taux" +msgstr "Spleen" + +#: include/database.item.php:141 include/template/ledger_detail_ach.php:122 +#: include/template/ledger_detail_ven.php:127 +#: include/template/operation_detail_ach.php:39 +#: include/template/operation_detail_ven.php:40 +msgid "Taux TVA" +msgstr "VAT rate" + +#: include/ext/import_account/include/template/parameter.php:12 +msgid "Taux correspondant" +msgstr "Corresponding rate" + +#: include/ext/import_account/include/class_impacc_operation.php:149 +msgid "Taux de TVA" +msgstr "VAT rate" + +#: include/card_attr.inc.php:77 +msgid "Texte" +msgstr "" + +#: include/ext/import_account/include/template/input_file.php:28 +msgid "Texte entouré du signe" +msgstr "Text surrounded sign" + +#: include/ext/import_account/include/template/test_file.php:29 +#: include/ext/import_account/include/template/test_operation.php:29 +msgid "Texte entouré par" +msgstr "Text surrounded by" + +#: include/ajax_preference.php:81 include/ajax_preference.php:82 +msgid "Thème" +msgstr "Theme" + +#: include/class_acc_ledger.php:820 include/template/ledger_detail_fin.php:44 +#: include/template/operation_detail_fin.php:32 +#, fuzzy +msgid "Tiers" +msgstr "Folders" + +#: include/template/dashboard.php:338 include/template/detail-action.php:227 +#: include/template/action_search_result.php:50 +#: include/template/dashboard.php:191 +msgid "Titre" +msgstr "Title" + +#: include/template/form_ledger_detail.php:128 +#: include/template/ledger_detail_ach.php:138 +#: include/template/ledger_detail_ach.php:236 +#: include/template/ledger_detail_ach.php:238 +#: include/template/ledger_detail_ven.php:136 +#: include/template/ledger_detail_ven.php:229 +#: include/template/ledger_detail_ven.php:231 +#: include/template/operation_detail_ach.php:56 +#: include/template/operation_detail_ach.php:116 +#: include/template/operation_detail_ach.php:118 +#: include/template/operation_detail_ven.php:48 +#: include/template/operation_detail_ven.php:99 +#: include/template/operation_detail_ven.php:101 +#: include/template/predf_ledger_detail.php:78 +#: include/ext/amortis/include/template/material_detail.php:121 +#: include/ext/amortis/include/template/material_display.php:95 +#: include/template/letter_prop.php:161 +#: include/template/stock_summary_table.php:41 +msgid "Total" +msgstr "Total" + +#: include/template/form_ledger_detail.php:78 +#: include/template/letter_prop.php:161 +#: include/template/predf_ledger_detail.php:28 +msgid "Total " +msgstr "Total" + +#: include/template/forecast_result.php:176 +msgid "Total Catégorie estimé" +msgstr "Total Cat. Estimated" + +#: include/template/forecast_result.php:179 +msgid "Total Catégorie réel" +msgstr "Total Cat. real" + +#: include/template/letter_prop.php:160 +msgid "Total Credit" +msgstr "Only Credit" + +#: include/template/letter_prop.php:159 +msgid "Total Debit" +msgstr "Total Debit" + +#: include/template/form_ledger_detail.php:71 +#: include/template/form_ledger_detail.php:124 +#: include/template/predf_ledger_detail.php:21 +#: include/template/predf_ledger_detail.php:74 +msgid "Total HTVA" +msgstr "Total VAT excluded" + +#: include/class_acc_ledger_purchase.php:1539 +#: include/class_acc_ledger_sold.php:810 +#: include/template/form_ledger_detail.php:125 +#: include/template/predf_ledger_detail.php:75 +msgid "Total TVA" +msgstr "Total VAT" + +#: include/class_acc_ledger_purchase.php:1540 +#: include/class_acc_ledger_sold.php:811 +#: include/template/form_ledger_detail.php:126 +#: include/template/predf_ledger_detail.php:76 +msgid "Total TVAC" +msgstr "Total VAT included" + +#: include/class_acc_bilan.php:175 +#, fuzzy +msgid "Total actif" +msgstr "Total" + +#: include/class_acc_bilan.php:211 +#, fuzzy +msgid "Total charge " +msgstr "Post load" + +#: include/class_fiche.php:1572 +msgid "Total crédit" +msgstr "Total credit" + +#: include/class_fiche.php:1571 +msgid "Total débit" +msgstr "Total Debit" + +#: include/template/letter_prop.php:158 +#, fuzzy +msgid "Total lettré" +msgstr "Actual total" + +#: include/class_acc_bilan.php:192 +#, fuzzy +msgid "Total passif" +msgstr "Total" + +#: include/class_acc_bilan.php:226 +#, fuzzy +msgid "Total produit" +msgstr "Only Credit" + +#: include/template/forecast_result.php:84 +msgid "Total réel" +msgstr "Actual total" + +#: include/class_acc_ledger.php:1543 include/export_fiche_balance_pdf.php:153 +#: include/fiche.inc.php:357 include/template/forecast_result.php:31 +msgid "Totaux" +msgstr "Total" + +#: include/balance.inc.php:111 +msgid "Totaux par sous-niveaux" +msgstr "" + +#: include/class_follow_up.php:1187 +msgid "Tous les Etats" +msgstr "All States" + +#: include/ext/amortis/include/am_card.php:43 +msgid "Tous les biens y compris ceux qui sont complétement amortis" +msgstr "All properties including those fully depreciated" + +#: include/class_acc_ledger_fin.php:1007 +msgid "Tous les journaux financiers" +msgstr "All the financial ledgers" + +#: include/class_follow_up.php:1218 +msgid "Tous les profiles" +msgstr "All profiles" + +#: include/class_follow_up.php:1180 +msgid "Tous les types" +msgstr "Any type" + +#: include/menu.inc.php:129 +msgid "Tout" +msgstr "" + +#: include/ext/amortis/include/template/util_generate.php:101 +#: include/template/letter_prop.php:165 +msgid "Tout Désélectionner" +msgstr "Uncheck all" + +#: include/ext/amortis/include/print_fiche.inc.php:63 +msgid "Toutes les fiches en PDF" +msgstr "All sheets in PDF" + +#: include/category_card.inc.php:67 +msgid "Toutes les opérations" +msgstr "All entries" + +#: include/lettering.account.inc.php:84 include/lettering.card.inc.php:89 +#: include/lettering.gestion.inc.php:41 +msgid "Toutes opérations" +msgstr "All operations" + +#: include/ext/import_account/include/class_impacc_operation.php:258 +msgid "Transfert" +msgstr "Transfer" + +#: include/ext/import_account/include/imd_operation.inc.php:64 +msgid "Transfert des opérations" +msgstr "Transfer operations" + +#: include/ext/tva/form_periode.php:8 +msgid "Trimestre" +msgstr "Quarter" + +#: include/database.item.php:119 +msgid "Trésorerie" +msgstr "Treasury" + +#: include/template/impress_reconciliation_detail.php:22 +msgid "Tva ND" +msgstr "" + +#: include/template/detail-action.php:95 +#: include/template/impress_cat_card.php:10 +#: include/ext/transform/include/template/listing_assujetti_representative.php:71 +#: include/template/action_search_result.php:56 include/card_attr.inc.php:96 +#: include/template/menu_detail.php:51 include/menu.inc.php:115 +msgid "Type" +msgstr "Type" + +#: include/param_pcmn.inc.php:57 +msgid "Type " +msgstr "Type" + +#: include/template/action_search.php:114 +#: include/template/document_mod_change.php:25 +msgid "Type de document" +msgstr "Type of document" + +#: include/template/new_mod_payment.php:28 +msgid "Type de fiche" +msgstr "Type of card" + +#: include/template/param_jrn.php:78 +msgid "Type de journal" +msgstr "Type of ledgers" + +#: include/class_calendar.php:85 +msgid "Tâches" +msgstr "Tasks" + +#: include/ext/invoicing/include/invoice_to_zip.inc.php:76 +msgid "Télécharger le fichier" +msgstr "Download file" + +#: include/ext/invoicing/include/invoice_generate.inc.php:65 +#: include/ext/invoicing/include/invoicing.inc.php:87 +msgid "Télécharger toutes les factures" +msgstr "Download all invoices" + +#: include/company.inc.php:99 include/stock_cfg.inc.php:69 +#: include/ext/transform/include/template/listing_assujetti_declarant.php:64 +#: include/ext/transform/include/template/listing_assujetti_representative.php:60 +#: include/ajax_mod_stock_repo.php:71 +#: include/template/stock_summary_list.php:42 +msgid "Téléphone" +msgstr "Phone" + +#: include/menu.inc.php:117 +msgid "URL" +msgstr "" + +#: include/class_acc_ledger.php:3410 +#, fuzzy +msgid "Un journal avec ce nom existe déjà" +msgstr "This name is already used" + +#: include/template/action_search.php:133 +msgid "Uniquement actions internes" +msgstr "Only internal actions" + +#: include/balance.inc.php:169 +#, fuzzy +msgid "Uniquement comptes non soldés" +msgstr "Only mes action" + +#: include/template/param_jrn.php:95 +msgid "Uniquement des chiffres" +msgstr "Only digits" + +#: include/class_document_modele.php:259 +#: include/template/modele_document.php:48 +msgid "Uniquement journaux achat" +msgstr "Only ledger of purchase" + +#: include/class_document_modele.php:260 +#: include/template/modele_document.php:49 +msgid "Uniquement journaux vente" +msgstr "Only ledger of sales" + +#: include/template/param_jrn.php:21 +msgid "" +"Uniquement pour les journaux d'Opérations Diverses, les valeurs sont " +"séparées par des espaces, on peut aussi\n" +"\tutiliser le * pour indiquer 'tous les postes qui en dépendent' exemple: 4*" +msgstr "" + +#: html/user_login.php:96 include/audit_log.php:36 +msgid "Utilisateur" +msgstr "Users" + +#: include/ac_common.php:907 +msgid "" +"Utilisateur n'a pas de profile, votre administrateur doit en configurer un " +"dans CFGSEC" +msgstr "" + +#: include/class_user.php:175 +msgid "Utilisateur ou mot de passe incorrect" +msgstr "User or password incorrect" + +#: include/user_menu.php:110 include/user_menu.php:120 +msgid "Utilisateurs" +msgstr "Users" + +#: include/user_menu.php:114 include/user_menu.php:121 +msgid "Utilisateurs qui se sont connectés" +msgstr "Connected users" + +#: include/company.inc.php:114 +msgid "Utilisation de la compta. analytique" +msgstr "Use of the analytic accountancy" + +#: include/company.inc.php:115 +msgid "Utilisation des stocks" +msgstr "Use of stocks" + +#: include/company.inc.php:117 +msgid "Utilisation du mode strict " +msgstr "Use of the strict mode" + +#: include/company.inc.php:122 +msgid "Utilisez des postes comptables alphanumérique" +msgstr "Use alphanumeric accountancy" + +#: include/ext/amortis/index.php:54 +msgid "Utilitaire" +msgstr "Utility" + +#: include/ext/amortis/include/template/listing_year.php:75 +msgid "Valeur net " +msgstr "Net value" + +#: include/periode.inc.php:45 include/periode.inc.php:56 +msgid "Valeurs invalides" +msgstr "invalid values" + +#: include/menu.inc.php:133 +#, fuzzy +msgid "Valeurs spéciales" +msgstr "invalid values" + +#: include/ajax_preference.php:182 include/template/action_other_action.php:60 +#: include/ext/transform/ajax_modify_intervat_assujetti.php:81 +#: include/ext/import_account/include/template/input_file.php:31 +#: include/ext/import_account/include/template/test_file.php:39 +#: include/ext/import_account/include/template/test_operation.php:39 +#: include/ext/import_account/include/template/upload_operation.php:43 +#: include/ajax_add_menu.php:142 include/ajax_get_menu_detail.php:115 +#: include/ajax_preference.php:183 +msgid "Valider" +msgstr "Validate" + +#: include/class_calendar.php:168 include/class_calendar.php:256 +msgid "Vendredi" +msgstr "Friday" + +#: include/database.item.php:9 include/database.item.php:199 +msgid "Vente" +msgstr "Dirty" + +#: include/database.item.php:113 +msgid "Vente / Recette" +msgstr "Sales / Recipe" + +#: include/class_anticipation.php:292 +msgid "Ventes" +msgstr "Sales" + +#: include/impress_bilan.inc.php:64 +msgid "Verification comptabilite" +msgstr "Check accountancy" + +#: html/login.php:53 html/login.php:85 +msgid "Version de base de données incorrectes, vous devez mettre à jour" +msgstr "Your database is not updated" + +#: include/ac_common.php:783 +msgid "Veuillez vous reconnecter" +msgstr "Please reconnect" + +#: include/database.item.php:151 include/stock_cfg.inc.php:67 +#: include/ext/transform/include/template/listing_assujetti_declarant.php:40 +#: include/ext/transform/include/template/listing_assujetti_representative.php:42 +#: include/ajax_mod_stock_repo.php:55 +#: include/template/stock_summary_list.php:40 +msgid "Ville" +msgstr "City" + +#: include/ext/amortis/raw.php:100 +#: include/ext/amortis/include/template/material_detail.php:40 +msgid "Visible" +msgstr "Visible" + +#: include/ext/amortis/include/class_am_card.php:180 +msgid "Visible Y ou N" +msgstr "Visible Y or N" + +#: include/impress_rec.inc.php:79 include/balance.inc.php:175 +msgid "Visualisation" +msgstr "View" + +#: include/database.item.php:186 +msgid "Voir les documents du suivi" +msgstr "See documents monitoring" + +#: html/do.php:108 html/user_login.php:75 +msgid "Votre base de données n'est pas à jour" +msgstr "Your database is not updated" + +#: include/ext/backup_noadmin/include/template/home.php:3 +msgid "Voulez-vous avoir une copie de ce dossier" +msgstr "Do you have a copy of this issue" + +#: include/template/detail-action.php:240 +#, fuzzy, php-format +msgid "Voulez-vous effacer ce commentaire" +msgstr "Do you want to delete this comment" + +#: include/template/detail-action.php:240 +#, php-format +msgid "Voulez-vous effacer ce commentaire " +msgstr "Do you want to delete this comment" + +#: include/ajax_plugin_detail.php:57 +msgid "Voulez-vous effacer ce plugin ?" +msgstr "Do you want to delete this action ?" + +#: include/template/detail-action.php:185 +#, php-format +msgid "Voulez-vous effacer cette action " +msgstr "Do you want to delete this action" + +#: include/template/detail-action.php:156 +#, php-format +msgid "Voulez-vous effacer cette opération " +msgstr "Do you want to delete this transaction" + +#: include/template/detail-action.php:426 +#, php-format +msgid "Voulez-vous effacer le document" +msgstr "Would you remove this Document" + +#: include/fiche_def.inc.php:65 +msgid "Voulez-vous modifier ?" +msgstr "Do you want to modify" + +#: include/contact.inc.php:50 include/customer.inc.php:51 +#: include/bank.inc.php:49 +msgid "Vous ne pouvez pas enlever de fiche" +msgstr "You can not remove a card" + +#: html/do.php:44 +msgid "Vous êtes déconnecté" +msgstr "You are disconnected" + +#: include/ext/import_account/include/class_import_card.php:155 +msgid "Vous avez défini plusieurs fois la même colonne" +msgstr "You have defined more than once in the same column" + +#: include/class_document_type.php:83 include/payment_middle.inc.php:46 +#: include/ajax_add_menu.php:72 include/ajax_get_menu_detail.php:70 +#: include/ajax_plugin_detail.php:32 +msgid "Vous confirmez" +msgstr "Do you confirm" + +#: include/class_fiche_def.php:785 include/ajax_add_menu.php:126 +#: include/template/fiche_list.php:30 include/template/stock_inv.php:31 +msgid "Vous confirmez ?" +msgstr "Do you confirm?" + +#: include/forecast.inc.php:363 +msgid "Vous confirmez l\\' effacement" +msgstr "Do you confirm the removal" + +#: include/action.common.inc.php:187 +msgid "Vous confirmez l\\'effacement" +msgstr "Removing the Confirm?" + +#: include/forecast.inc.php:364 +msgid "Vous confirmez le clonage " +msgstr "Confirm cloning" + +#: include/category_card.inc.php:125 +msgid "Vous devez aller dans fiche et créer une catégorie pour les contacts" +msgstr "You have to first create a category of card in the card menu" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:62 +msgid "Vous devez choisir au moins un taux TVA" +msgstr "You must select at least one VAT rate" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:41 +msgid "Vous devez choisir par fichier ou par calcul" +msgstr "You must choose by file or by calculation" + +#: include/forecast.inc.php:373 +msgid "Vous devez corriger" +msgstr "You must correctly" + +#: include/ext/import_account/include/class_import_card.php:160 +msgid "Vous devez donner la colonne quick_code" +msgstr "You must give the quick_code column" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:45 +msgid "Vous devez donner la période" +msgstr "You must give the period" + +#: include/ext/modop/modop_save.php:248 +msgid "Vous n'avez pas donné de banque" +msgstr "Any bank you did not give" + +#: include/class_acc_ledger_sold.php:75 +msgid "Vous n'avez pas donné de client" +msgstr "You have not enter Any customer" + +#: include/class_acc_ledger_purchase.php:76 +msgid "Vous n'avez pas donné de fournisseur" +msgstr "You have not give Any supplier" + +#: include/stock_cfg.inc.php:37 +msgid "Vous n'utilisez pas de gestion de stock" +msgstr "You do not use stock management" + +#: html/backup.php:34 +msgid "Vous n\\'êtes pas administrateur" +msgstr "You are not an administrator" + +#: include/ajax_navigator.php:37 +msgid "" +"Vous permet d'accèder rapidement au menu qui vous intéresse, utiliser le " +"filtre pour trouver plus rapidement" +msgstr "" + +#: include/cfgtags.inc.php:51 +msgid "" +"Vous pouvez utiliser ceci comme des étiquettes pour marquer des documents " +"ou \n" +" comme des dossiers pour rassembler des documents. Un document peut " +"appartenir\n" +" à plusieurs dossiers ou avoir plusieurs étiquettes." +msgstr "" + +#: include/class_acc_ledger_sold.php:108 +msgid "Vous utilisez le mode strict la dernière operation est date du " +msgstr "You are using the strict mode, the last entry was typed on" + +#: include/class_acc_ledger.php:1869 +msgid "Vous utilisez le mode strict la dernière operation est la date du " +msgstr "You're using the strict mod and the last entry is one" + +#: include/class_acc_ledger_fin.php:116 include/class_acc_ledger_fin.php:200 +#: include/class_acc_ledger_purchase.php:111 +msgid "Vous utilisez le mode strict la dernière operation est à la date du " +msgstr "You're using the strict accounting entry is the last one" + +#: html/user_login.php:40 +msgid "Vous utilisez un navigateur dépassé depuis près de 8 ans!" +msgstr "Your browser is outdated for 8 years!" + +#: html/logout.php:30 +msgid "Vous êtes déconnecté" +msgstr "You are disconnected" + +#: include/database.item.php:85 +msgid "Vérification " +msgstr "Verifying" + +#: include/database.item.php:85 +msgid "Vérification de la comptabilité" +msgstr "Verifying accountancy writing" + +#: include/class_acc_ledger_sold.php:794 +msgid "Vérifiez Imputation Analytique" +msgstr "Verify analytic" + +#: include/class_acc_ledger_purchase.php:1523 +msgid "Vérifiez imputation analytique" +msgstr "Verify analytic" + +#: include/ext/amortis/include/template/material_detail.php:40 +msgid "Y pour oui ou N pour non" +msgstr "Y for yes or N for no" + +#: include/card_attr.inc.php:80 +msgid "Zone de texte" +msgstr "" + +#: include/class_acc_ledger_sold.php:132 +msgid "] n'existe pas" +msgstr "] Does not exist" + +#: include/class_acc_ledger_purchase.php:172 +#: include/class_acc_ledger_purchase.php:177 +#: include/class_acc_ledger_sold.php:163 include/class_acc_ledger_sold.php:167 +msgid "a un code tva invalide" +msgstr "Has an invalid VAT code" + +#: include/class_acc_ledger_purchase.php:164 +msgid "a un montant invalide" +msgstr "Has an invalid Amount" + +#: include/class_acc_ledger_sold.php:151 +msgid "a un montant invalide [" +msgstr "Has an invalid Amount" + +#: include/class_acc_ledger_purchase.php:166 +msgid "a une quantité invalide" +msgstr "Has an invalid quantity" + +#: include/class_acc_ledger_sold.php:153 +msgid "a une quantité invalide [" +msgstr "Has an invalid quantity" + +#: include/ext/rapport_avance/ajax.php:4 +msgid "act invalide" +msgstr "invalid act" + +#: include/class_anc_grandlivre.php:136 include/class_anc_grandlivre.php:250 +#: include/class_anc_listing.php:77 +msgid "aucune donnée" +msgstr "no data" + +#: include/ext/coprop/index.php:46 +msgid "budgets" +msgstr "budgets" + +#: include/class_acc_ledger_purchase.php:236 +msgid "ce code n'a pas de poste comptable, créez ce poste : [" +msgstr "This Code Has No accounting, please create it [" + +#: include/class_acc_ledger.php:3527 +#, fuzzy +msgid "choix du type de journal" +msgstr "Select the type of paper" + +#: html/do.php:109 html/user_login.php:76 +msgid "cliquez ici pour appliquer le patch" +msgstr "Click here to apply the patch" + +#: html/ajax_misc.php:194 +msgid "code" +msgstr "code" + +#: include/database.item.php:154 +msgid "code postal" +msgstr "postal code" + +#: include/template/impress_reconciliation_detail.php:16 +#, fuzzy +msgid "code tva" +msgstr "postal code" + +#: include/database.item.php:89 +msgid "configuration de la sécurité" +msgstr "Security Configuration" + +#: include/template/action_search.php:110 +#, php-format +msgid "contenant le mot" +msgstr "containing the word" + +#: include/database.item.php:184 +msgid "création, modification et effacement de catégorie de fiche" +msgstr "creation, modification and deletion of category record" + +#: html/user_login.php:155 +msgid "dans NOALYSS" +msgstr "in NOALYSS" + +#: include/template/dashboard.php:112 include/template/dashboard.php:124 +#: include/template/dashboard.php:140 include/template/dashboard.php:150 +#: include/template/dashboard.php:165 include/template/dashboard.php:175 +#, fuzzy +msgid "détail" +msgstr "Detail" + +#: include/ext/transform/include/template/listing_assujetti_declarant.php:54 +#: include/ext/transform/include/template/listing_assujetti_representative.php:54 +msgid "email" +msgstr "e-mail" + +#: include/database.item.php:149 +msgid "email " +msgstr "e-mail" + +#: html/ajax_ledger.php:288 html/ajax_ledger.php:326 +#, php-format +msgid "enlever" +msgstr "Remove" + +#: html/ajax_ledger.php:527 +msgid "entrez une date" +msgstr "Give a date" + +#: include/class_acc_bilan.php:348 include/class_acc_bilan.php:656 +#: include/class_acc_bilan.php:681 +#, fuzzy +msgid "erreur Ouverture fichier" +msgstr "Opening writing" + +#: html/ajax_history.php:61 html/ajax_history.php:131 +#: include/balance_card.inc.php:36 +msgid "" +"erreur aucune période par défaut, allez dans préférence pour en choisir une" +msgstr "" + +#: include/class_acc_bilan.php:662 +msgid "erreur écriture fichier" +msgstr "" + +#: include/dossier.inc.php:112 include/dossier.inc.php:366 +msgid "est accèdée, déconnectez-vous d'abord" +msgstr "Accessed is, first disconnect" + +#: include/template/ledger_search.php:25 include/template/ledger_search.php:33 +#: include/template/ledger_search.php:51 +msgid "et" +msgstr "and" + +#: include/ext/import_account/include/class_import_card.php:242 +msgid "fiches sont insérées dans la catégorie" +msgstr "plugs are inserted in the category" + +#: include/card_attr.inc.php:94 +#, fuzzy +msgid "id" +msgstr "Help" + +#: include/dossier.inc.php:355 +msgid "inexistant" +msgstr "inexistent" + +#: include/database.item.php:88 +msgid "journaux" +msgstr "ledger" + +#: include/balance.inc.php:164 +#, fuzzy +msgid "jusque" +msgstr "Until" + +#: include/dossier.inc.php:58 +msgid "le modele " +msgstr "the template" + +#: include/ext/import_account/include/class_impacc_operation.php:120 +msgid "le numéro de ligne pour dolibarr est invalide" +msgstr "line number is invalid for dolibarr" + +#: include/ext/import_account/include/imd_parameter.inc.php:38 +#: include/ext/import_account/include/imd_parameter.inc.php:65 +msgid "le taux est invalide" +msgstr "rate is invalid" + +#: include/ext/import_account/include/imd_parameter.inc.php:63 +msgid "le taux n'est pas un nombre" +msgstr "rate is not a number" + +#: include/ext/transform/include/template/listing_client_display.php:31 +msgid "les enregistrements incorrects ne seront inclus pas dans le fichier XML" +msgstr "incorrect records will not include in the XML file" + +#: include/ext/tools/raw.php:84 +#, fuzzy +msgid "lettrage" +msgstr "Lettering" + +#: include/database.item.php:99 +msgid "lettrage par poste comptable" +msgstr "lettering accounting item" + +#: include/class_anc_grandlivre.php:159 include/class_anc_listing.php:87 +msgid "libelle" +msgstr "label" + +#: include/ext/transform/include/template/listing_assujetti_representative.php:66 +msgid "listing id" +msgstr "listing id" + +#: html/ajax_misc.php:297 include/template/ledger_detail_fin.php:59 +#: include/ext/tools/raw.php:82 +msgid "montant" +msgstr "Amount" + +#: include/class_acc_ledger_purchase.php:122 +#: include/class_acc_ledger_purchase.php:193 +#: include/class_acc_ledger_sold.php:116 include/class_acc_ledger_sold.php:158 +msgid "n'a pas de poste comptable" +msgstr "Has No accounting entry" + +#: include/class_acc_ledger_purchase.php:147 +#: include/class_acc_ledger_purchase.php:218 +#: include/class_acc_ledger_sold.php:139 include/class_acc_ledger_sold.php:197 +msgid "n'est pas accessible à ce journal" +msgstr "is not allowed for this ledger" + +#: include/class_acc_ledger.php:1910 +msgid "n'est pas dans ce journal" +msgstr "Does not belong to this ledger" + +#: include/class_acc_ledger_purchase.php:141 +#: include/class_acc_ledger_purchase.php:212 +#: include/class_acc_ledger_sold.php:191 +msgid "n'existe pas" +msgstr "does not exist" + +#: include/company.inc.php:37 +msgid "non utilisé" +msgstr "not used" + +#: include/template/document_mod_change.php:56 +msgid "numéro actuel" +msgstr "current issue" + +#: include/database.item.php:145 +msgid "numéro de tva " +msgstr "VAT number" + +#: include/ext/import_account/include/class_impacc_operation.php:252 +msgid "n° Pièce" +msgstr "No Room" + +#: include/ext/amortis/include/class_pdf_card.php:103 +#: include/ext/amortis/include/template/material_detail.php:59 +#: include/ext/amortis/include/template/material_display.php:45 +#: include/class_acc_ledger.php:849 include/ext/tools/raw.php:77 +msgid "n° interne" +msgstr "No internal" + +#: include/ext/import_account/include/class_impacc_operation.php:246 +msgid "n° ligne" +msgstr "No online" + +#: include/class_fiche.php:1282 include/template/impress_reconciliation.php:16 +msgid "n° pièce" +msgstr "receipt #" + +#: include/company.inc.php:35 +msgid "obligatoire" +msgstr "mandatory" + +#: include/ext/importbank/include/class_bank_item.php:63 +msgid "op. concernée" +msgstr "Concerned op" + +#: include/company.inc.php:36 +msgid "optionnel" +msgstr "optional" + +#: include/ext/amortis/ajax.php:32 +msgid "opération non trouvée" +msgstr "operation not found" + +#: include/template/forecast-detail.php:13 +msgid "ou QuickCode" +msgstr "or QuickCode" + +#: include/class_acc_ledger_purchase.php:1638 +msgid "ou générer un document" +msgstr "or generate a paper" + +#: include/class_acc_ledger_sold.php:904 +msgid "ou générer une facture" +msgstr "or generate an invoice" + +#: include/fiche_def.inc.php:68 +msgid "par exemple ne pas changer Client par fournisseur" +msgstr "For example, do not change customer by supplier" + +#: include/dossier.inc.php:254 +msgid "pas de modèle disponible" +msgstr "No template" + +#: include/database.item.php:147 +msgid "pays " +msgstr "country" + +#: include/ext/tools/raw.php:78 +msgid "piece" +msgstr "" + +#: include/ext/tools/raw.php:79 +#, fuzzy +msgid "poste" +msgstr "Account. Item" + +#: include/class_acc_ledger_purchase.php:1378 +#: include/class_acc_ledger_sold.php:672 +msgid "prix" +msgstr "price" + +#: include/template/detail-action.php:306 +msgid "prix unitaire" +msgstr "Price unit" + +#: include/template/form_ledger_detail.php:76 +#: include/template/predf_ledger_detail.php:26 +msgid "prix/unité " +msgstr "price / unit" + +#: include/template/form_ledger_detail.php:69 +#: include/template/predf_ledger_detail.php:19 +msgid "prix/unité htva" +msgstr "price / unit without vat" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:264 +#, php-format +msgid "période %s entre [%s] et [%s]" +msgstr "period between% s [% s] and [% s]" + +#: include/ext/amortis/raw.php:100 +msgid "qcode" +msgstr "QCode" + +#: include/class_acc_ledger_purchase.php:1379 +#: include/class_acc_ledger_purchase.php:1389 +#: include/class_acc_ledger_sold.php:673 +#: include/template/detail-action.php:307 +#: include/template/form_ledger_detail.php:70 +#: include/template/form_ledger_detail.php:77 +#: include/template/predf_ledger_detail.php:20 +#: include/template/predf_ledger_detail.php:27 +msgid "quantité" +msgstr "quantity" + +#: include/ext/amortis/index.php:53 +msgid "rapport et tableaux sur les biens amortissables" +msgstr "Report and tables on depreciable assets" + +#: include/adm.inc.php:93 include/bank.inc.php:89 include/contact.inc.php:93 +#: include/customer.inc.php:88 include/manager.inc.php:90 +#: include/supplier.inc.php:93 include/template/action_search.php:138 +msgid "recherche" +msgstr "Search" + +#: include/export_fiche_balance_csv.php:140 include/fiche.inc.php:438 +msgid "ref" +msgstr "Ref" + +#: include/database.item.php:14 +msgid "saut de ligne" +msgstr "new line" + +#: include/fiche_def.inc.php:69 +msgid "" +"sinon le programme fonctionnera mal, utiliser uniquement des chiffres pour " +"la classe de base ou rien" +msgstr "" + +#: include/ajax_navigator.php:106 +msgid "sur le wiki" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:256 +msgid "taux TVA" +msgstr "VAT rate" + +#: include/ext/tools/raw.php:81 +msgid "texte" +msgstr "" + +#: include/class_acc_ledger.php:187 +msgid "this->jr_id is not set ou opération inconnue" +msgstr "" + +#: include/class_acc_ledger.php:665 +#, fuzzy +msgid "tiers" +msgstr "Folders" + +#: include/template/form_ledger_detail.php:73 +#: include/template/predf_ledger_detail.php:23 +msgid "tot.tva" +msgstr "tot. vat" + +#: include/ext/amortis/include/class_pdf_card.php:133 +msgid "toutes_les_fiches.pdf" +msgstr "toutes_les_fiches.pdf" + +#: include/class_acc_ledger_purchase.php:1383 +#: include/class_acc_ledger_sold.php:677 +#: include/template/form_ledger_detail.php:72 +#: include/template/predf_ledger_detail.php:22 +msgid "tva" +msgstr "vat" + +#: html/ajax_misc.php:250 html/ajax_misc.php:255 +msgid "tva inconnue" +msgstr "VAT unknown" + +#: include/template/form_ledger_detail.php:74 +#: include/template/predf_ledger_detail.php:24 +msgid "tvac" +msgstr "VAT included" + +#: include/class_acc_account.php:136 +#, fuzzy +msgid "type de compte incorrect " +msgstr "Post incorrect load" + +#: include/database.item.php:148 +msgid "téléphone " +msgstr "phone" + +#: include/template/ledger_detail_bottom.php:117 +msgid "verifie CA" +msgstr "Check CA" + +#: include/class_acc_ledger.php:1546 +msgid "verifie Imputation Analytique" +msgstr "Verify Analytic" + +#: include/ajax_get_profile.php:74 include/ajax_get_profile.php:82 +msgid "vous confirmez" +msgstr "Do you confirm" + +#: include/class_acc_ledger.php:1870 +msgid "vous ne pouvez pas encoder à une date antérieure" +msgstr "You cannot record to an ealier time" + +#~ msgid " Avec la fiche" +#~ msgstr " With the card" + +#~ msgid " TVAC" +#~ msgstr "Included VAT" + +#~ msgid " effectué" +#~ msgstr "Done" + +#~ msgid " et le poste " +#~ msgstr "and the account" + +#~ msgid " opérations à complèter" +#~ msgstr " operation to complete" + +#~ msgid " vous ne pouvez pas encoder à une " +#~ msgstr "You cannot enter an accounting entry" + +#~ msgid "Actif" +#~ msgstr "Asset" + +#~ msgid "Activé" +#~ msgstr "Activated" + +#~ msgid "Afficher Recherche" +#~ msgstr "Display search" + +#~ msgid "Afficher recherche" +#~ msgstr "Display search" + +#~ msgid "Ajoute des catégories de documents,..." +#~ msgstr "Add or remove category of documents" + +#~ msgid "Ajouter, modifier ou effacer des fiches" +#~ msgstr "Add,modifier or remove card" + +#~ msgid "Ajouter, modifier ou effacer des lettrage" +#~ msgstr "Add, modify or remove lettering" + +#~ msgid "Attention Différence" +#~ msgstr "Warning difference" + +#~ msgid "" +#~ "Attention, certains attributs pourraient être ajoutés à la catégorie de " +#~ "destination, vous confirmez ?" +#~ msgstr "" +#~ "Caution some attributes will be add to the destination, do you confirm ?" + +#~ msgid "" +#~ "Attention, certains attributs pourraient être effacés, vous confirmez ?" +#~ msgstr "Warning some attributes could be removed, do you confirm" + +#~ msgid "Aucune catégorie de fiche ne correspondant a" +#~ msgstr "No card category is matching" + +#~ msgid "Aucune catégorie de fiche ne correspondant a votre demande" +#~ msgstr "No category matches your request" + +#~ msgid "Aucune catégorie de fiche ne correspondant à" +#~ msgstr "No category is matching" + +#~ msgid "Aucune catégorie de fiche ne correspondant à votre demande" +#~ msgstr "No category of card is matching" + +#~ msgid "Aucune priode trouve" +#~ msgstr "No periode found" + +#~ msgid "Autre Dossier" +#~ msgstr "Other folder" + +#~ msgid "Autre journal" +#~ msgstr "other ledger" + +#~ msgid "Balance croisée" +#~ msgstr "Cross balance " + +#~ msgid "Balance croisée de 2 plans analytiques" +#~ msgstr "Crossed balance" + +#~ msgid "Balance des comptes" +#~ msgstr "Balance" + +#~ msgid "Balance du client" +#~ msgstr "Customer balance" + +#~ msgid "Balance simple d'un plan analytique" +#~ msgstr "Balance a simple analytical" + +#~ msgid "Bienvenu sur mon site" +#~ msgstr "Welcome on my website" + +#~ msgid "Cache Recherche" +#~ msgstr "Hide search" + +#~ msgid "Catégorie de Fiches" +#~ msgstr "Category of card" + +#~ msgid "Centralisation" +#~ msgstr "Centralization" + +#~ msgid "Centralise" +#~ msgstr "Centralize" + +#~ msgid "Cette période est fermée" +#~ msgstr "This periode is closed" + +#~ msgid "Changer le libellé des détails en VEN ou ACH" +#~ msgstr "Change label for the detail in Purchase and sale" + +#~ msgid "Changez vos préférences" +#~ msgstr "Change your preferences" + +#~ msgid "Cherche" +#~ msgstr "Search" + +#~ msgid "Choisir un autre journal" +#~ msgstr "Choose another ledger" + +#~ msgid "Choississez la période à transfèrer" +#~ msgstr "Choose the periode to transfert" + +#~ msgid "Choississez votre langue" +#~ msgstr "Select your language" + +#~ msgid "Choix de l'extension" +#~ msgstr "Choice of the plugin" + +#~ msgid "Choix du journal" +#~ msgstr "Ledgers" + +#~ msgid "Clients" +#~ msgstr "Customers" + +#~ msgid "Commencer le transfert" +#~ msgstr "Start the transfert" + +#~ msgid "Compta Générale" +#~ msgstr "Accountancy" + +#~ msgid "Comptabilité Analytique" +#~ msgstr "Cost Accounting" + +#~ msgid "Confirmation" +#~ msgstr "Confirm" + +#~ msgid "Confirmez Cloture" +#~ msgstr "Confirm closing" + +#~ msgid "Confirmez cloture" +#~ msgstr "Confirm closing" + +#~ msgid "Confirmez effacement de l'extension ??" +#~ msgstr "Do you confirm the removal of this plugin ?" + +#~ msgid "Creation et modification de journaux" +#~ msgstr "Creation and modification of ledger" + +#~ msgid "Critères de Recherche" +#~ msgstr "Search Criteria" + +#~ msgid "Debit / Credit" +#~ msgstr "Debit / Credit" + +#~ msgid "Dernières actions" +#~ msgstr "Last actions" + +#~ msgid "Devise, moyen de paiement" +#~ msgstr "Currency, " + +#~ msgid "" +#~ "Donnez une partie du nom du dossier ou de la description à rechercher" +#~ msgstr "Give the name of the folder or the description" + +#~ msgid "Donnez une partie du nom du dossier à rechercher" +#~ msgstr "Give the a part of the folder name " + +#~ msgid "Déplacer vers" +#~ msgstr "Move to" + +#~ msgid "Désactivé" +#~ msgstr "Deactivated" + +#~ msgid "Désolé mais cette periode est fermee pour ce journal" +#~ msgstr "Sorry but this period is closed" + +#~ msgid "Ech" +#~ msgstr "Date limit" + +#~ msgid "Echéance " +#~ msgstr "Limit of payment" + +#~ msgid "Ecriture d" +#~ msgstr "Writing of" + +#~ msgid "Ecriture directe" +#~ msgstr "Direct Writing" + +#~ msgid "Ecriture ouverture" +#~ msgstr "Opening entries" + +#~ msgid "Ecritures definies" +#~ msgstr "Defined entries" + +#~ msgid "Ecritures définies" +#~ msgstr "Defined entries" + +#~ msgid "Effacer extension" +#~ msgstr "Remove plugin" + +#~ msgid "Encodage d'un nouvel extrait" +#~ msgstr "Write an new entry" + +#~ msgid "Encoder une Operation" +#~ msgstr "Write an entry" + +#~ msgid "Encoder une operation dans ce journal" +#~ msgstr "Write an entry in this ledger" + +#~ msgid "Entre le poste " +#~ msgstr "Between the account" + +#~ msgid "Entrée/Achat " +#~ msgstr "Sale/Purchase" + +#~ msgid "Essayer de vous y amuser" +#~ msgstr "I hope you will enjoy it" + +#~ msgid "Et contenant dans la description, pièce justificative ou n° interne" +#~ msgstr "And having in its description, receipt or internal number" + +#~ msgid "Export définition d" +#~ msgstr "export " + +#~ msgid "Facture, lettre de rappel, proposition..." +#~ msgstr "Invoice, delivery, mail..." + +#~ msgid "Fiche contenant " +#~ msgstr "Card containing" + +#~ msgid "Fiches Crédit" +#~ msgstr "Card at the credit" + +#~ msgid "Fiches Débit" +#~ msgstr "Card at the debit" + +#~ msgid "Fin de programme" +#~ msgstr "End of program" + +#~ msgid "Gestion des periodes" +#~ msgstr "Period management" + +#~ msgid "Gestion des stocks" +#~ msgstr "Stock control" + +#~ msgid "Grand" +#~ msgstr "Great" + +#~ msgid "Grand livre : toutes les opérations" +#~ msgstr "Ledger : all entries" + +#~ msgid "Historique : toutes les opérations" +#~ msgstr "Historic : all operation" + +#~ msgid "Immobilisé" +#~ msgstr "Fixed asset" + +#~ msgid "Import Banque" +#~ msgstr "Bank import" + +#~ msgid "Import fiche" +#~ msgstr "Import Card" + +#~ msgid "Importation terminée" +#~ msgstr "Import done" + +#~ msgid "Importer CSV" +#~ msgstr "Import CSV" + +#~ msgid "Impression catégorie de fiches" +#~ msgstr "Print category of card" + +#~ msgid "Interdit" +#~ msgstr "Forbidden" + +#~ msgid "Journal de vente, produit et recette" +#~ msgstr "Ledger of sale" + +#~ msgid "Journaux" +#~ msgstr "Ledgers" + +#~ msgid "Journaux d'OD: salaires, déclarations TVA,..." +#~ msgstr "Ledger for MO : salary, VAT ..." + +#~ msgid "Journaux de dépense, d'achat" +#~ msgstr "Ledger of purchase" + +#~ msgid "Journaux financiers: les banques, la caisse" +#~ msgstr "Financial ledger : bank,.." + +#~ msgid "" +#~ "L'acces a ce journal est interdit, \n" +#~ " contactez votre responsable" +#~ msgstr "" +#~ "You are not allowed to access this ledger,\n" +#~ " contact your administrator" + +#~ msgid "Lettrage par poste" +#~ msgstr "Lettering for accounting" + +#~ msgid "Liste Clients Assujettis" +#~ msgstr "List Customer" + +#~ msgid "Liste achat" +#~ msgstr "List purchase" + +#~ msgid "Liste de contacts de ce client" +#~ msgstr "Constact list of this customer" + +#~ msgid "Liste de contacts de ce fournisseur" +#~ msgstr "Contact list of this supplier" + +#~ msgid "Liste de contacts de cette administration" +#~ msgstr "List of contact" + +#~ msgid "Liste des achats" +#~ msgstr "List of purchase" + +#~ msgid "Liste des tâches" +#~ msgstr "Todo list" + +#~ msgid "Liste des ventes" +#~ msgstr "List sales" + +#~ msgid "Liste des ventes non payées" +#~ msgstr "List of unpaid sales" + +#~ msgid "Liste dépenses non payées" +#~ msgstr "List of unpaid purchase" + +#~ msgid "Liste opération bancaire" +#~ msgstr "List financial entries" + +#~ msgid "Liste vente non payées" +#~ msgstr "List unpaid sales" + +#~ msgid "Liste ventes" +#~ msgstr "List Sales" + +#~ msgid "Listing des opérations" +#~ msgstr "Listing of operation" + +#~ msgid "Modifie les attributs des catégories de fiches" +#~ msgstr "Modify category of card attributes" + +#~ msgid "Modifie les classe de base" +#~ msgstr "Modify the fondamental accounting item" + +#~ msgid "Modifie les classe de base, les attribut,..." +#~ msgstr "Modify the account base, attributes...." + +#~ msgid "Mot de passe est modifiée" +#~ msgstr "Password modified" + +#~ msgid "Nombre opération %d" +#~ msgstr "Number of operation %d" + +#~ msgid "Nouveau moyen de paiement" +#~ msgstr "new middle of payment" + +#~ msgid "Nouvelle dépense" +#~ msgstr "New expense" + +#~ msgid "Nouvelle vente" +#~ msgstr "New sale" + +#~ msgid "Num Pj" +#~ msgstr "Receipt #" + +#~ msgid "Op. Concernée" +#~ msgstr "Concerned entry" + +#~ msgid "Op. concerné" +#~ msgstr "Concerned Op." + +#~ msgid "Opération sauvée" +#~ msgstr "Entry saved" + +#~ msgid "Opérations délicates" +#~ msgstr "Advanced operation" + +#~ msgid "P.Unit." +#~ msgstr "Unit P" + +#~ msgid "PJ" +#~ msgstr "Receipt" + +#~ msgid "Par fiche" +#~ msgstr "By card" + +#~ msgid "Pas dans la periode active" +#~ msgstr "Not in the active period" + +#~ msgid "Payé par " +#~ msgstr "Paid by" + +#~ msgid "Periode" +#~ msgstr "Period" + +#~ msgid "Plusieurs modules sont le module par défaut" +#~ msgstr "Several modules marked as default" + +#~ msgid "Poste Inexistant" +#~ msgstr "Inexistant accouting item" + +#~ msgid "Poste comptable constant" +#~ msgstr "Constant accounting item " + +#~ msgid "Poste comptable erronné pour l'opération " +#~ msgstr "Wrong accounting item for the operation" + +#~ msgid "Postes utilisables journal (débit/crédit)" +#~ msgstr "Allowed accouting item (debit/credit)" + +#~ msgid "Pour le type de journal" +#~ msgstr "For the type of ledger" + +#~ msgid "Preference" +#~ msgstr "Preference" + +#~ msgid "Prevision" +#~ msgstr "Expectation" + +#~ msgid "Purge CSV" +#~ msgstr "Prune CSV" + +#~ msgid "Période ou date incorrecte" +#~ msgstr "Wrong date" + +#~ msgid "Quick Code ou" +#~ msgstr "Quick code or" + +#~ msgid "Rapprochements banquaires" +#~ msgstr "Bank reconciliation" + +#~ msgid "Recette" +#~ msgstr "Income" + +#~ msgid "Recherche :" +#~ msgstr "search :" + +#~ msgid "Retour accueil" +#~ msgstr "Back to home" + +#~ msgid "Retour au tableau de bord" +#~ msgstr "return to the dashboard" + +#~ msgid "Retour sans sauvez" +#~ msgstr "Return without saving" + +#~ msgid "Retour à la liste des administration" +#~ msgstr "return to administration" + +#~ msgid "Retour à la liste des clients" +#~ msgstr "Return to the customers list" + +#~ msgid "Retour à la liste des fournisseurs" +#~ msgstr "return to suppliers" + +#~ msgid "Sauvez cette opération comme modèle ?" +#~ msgstr "Save this entry as template" + +#~ msgid "Si vous n" +#~ msgstr "if you " + +#~ msgid "Solde des clients" +#~ msgstr "Customer balance" + +#~ msgid "Solde des comptes" +#~ msgstr "Balance of accounting system" + +#~ msgid "Solde des fournisseurs" +#~ msgstr "Supplier account" + +#~ msgid "Sortie /Vente " +#~ msgstr "In/out" + +#~ msgid "Suivi Courrier" +#~ msgstr "Follow up" + +#~ msgid "Suivi Fournisseur, devis, bon de commande, courrier" +#~ msgstr "Orderinf, follow-up, mail" + +#~ msgid "Suivi adm, devis, bon de commande, courrier" +#~ msgstr "Follow up administration,mail, " + +#~ msgid "Suivi client, devis, bon de commande, courrier" +#~ msgstr "Follow up, mail, invoice, ordering" + +#~ msgid "Suivi, courrier, devis" +#~ msgstr "Follow up" + +#~ msgid "TVA à " +#~ msgstr "VAT " + +#~ msgid "Taux & poste pour la TVA" +#~ msgstr "Rate and accounting item for VAT" + +#~ msgid "Taux et poste comptable tva" +#~ msgstr "Rate and accounting entry" + +#~ msgid "Titre ou référence" +#~ msgstr "Title or reference" + +#~ msgid "Tranfert de l'opération " +#~ msgstr "Transfert of the operation" + +#~ msgid "Transfert CSV" +#~ msgstr "CSV Transfert" + +#~ msgid "Un paramètre manque" +#~ msgstr "A parameter is missing" + +#~ msgid "Uniquement pour les journaux d'Opérations Diverses" +#~ msgstr "Only for the Ledger for various operations" + +#~ msgid "Utilisateur n'a pas de profile" +#~ msgstr "User without a profile" + +#~ msgid "Utilisez une operation" +#~ msgstr "Use an entry" + +#~ msgid "Utilisez une operation " +#~ msgstr "Use an operation" + +#~ msgid "Verif CSV" +#~ msgstr "Verif CSV" + +#~ msgid "Voir Operation" +#~ msgstr "See entries" + +#~ msgid "Voir les operations de ce journal" +#~ msgstr "See entries of this ledger" + +#~ msgid "Vous confirmez l\\' effacement ?" +#~ msgstr "Do you confirm the removal ?" + +#~ msgid "Vous devez choisir un dossier " +#~ msgstr "You must choose a folder" + +#~ msgid "Vous devez choisir une categorie" +#~ msgstr "You must select a category" + +#~ msgid "Vous devez choisir une catgorie" +#~ msgstr "You must use a category" + +#~ msgid "Vous devez selectionner votre période dans vos préférences" +#~ msgstr "You have to select a period in your preference" + +#~ msgid "" +#~ "Vous ne pouvez pas utiliser cette extension. Contactez votre responsable" +#~ msgstr "You cannot use this plugin, contact your administrator" + +#~ msgid "Vérification" +#~ msgstr "Check in" + +#~ msgid "affecté à d'autre:" +#~ msgstr "Concerned other" + +#~ msgid "chemin et nom de fichier" +#~ msgstr "Path and name of the file" + +#~ msgid "description" +#~ msgstr "description" + +#~ msgid "login" +#~ msgstr "login" + +#~ msgid "opérations à transfèrer" +#~ msgstr "Operation to transfert" + +#~ msgid "ou générer une note de frais" +#~ msgstr "or generate an expense report" + +#~ msgid "poste comptable Destination" +#~ msgstr "Accounting item target" + +#~ msgid "securite" +#~ msgstr "security" + +#~ msgid "sinon le programme fonctionnera mal, " +#~ msgstr "Otherwise the programm may have misfunctions" diff --git a/html/lang/messages.po b/html/lang/messages.po new file mode 100644 index 000000000..528f14622 --- /dev/null +++ b/html/lang/messages.po @@ -0,0 +1,6442 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-02-16 12:54+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: html/admin_repo.php:42 +msgid " Administration Globale" +msgstr "" + +#: html/ajax_card.php:145 +msgid "Fiche non trouvée" +msgstr "" + +#: html/ajax_card.php:163 include/database.item.php:3 +#: include/database.item.php:96 include/fiche.inc.php:64 +#: include/ext/coprop/index.php:47 include/ext/rapport_avance/index.php:62 +#: include/ext/amortis/include/am_util.php:31 +#: include/ext/amortis/include/template/listing_histo.php:2 +msgid "Historique" +msgstr "" + +#: html/ajax_card.php:172 +msgid "Aucune fiche demandée" +msgstr "" + +#: html/ajax_card.php:199 html/ajax_card.php:311 html/ajax_card.php:446 +#: html/ajax_card.php:483 html/ajax_card.php:491 html/ajax_card.php:312 +#: html/ajax_card.php:447 html/ajax_card.php:484 html/ajax_card.php:492 +msgid "Action interdite" +msgstr "" + +#: html/ajax_card.php:253 html/ajax_card.php:356 html/ajax_card.php:357 +msgid "" +"Aucune catégorie de fiche ne correspond à votre demande, le journal pourrait " +"n'avoir accès à aucune fiche" +msgstr "" + +#: html/ajax_card.php:265 +msgid "Aucune catégorie de fiche ne correspond à votre demande" +msgstr "" + +#: html/ajax_card.php:326 html/ajax_card.php:327 +msgid "Fiche contenant" +msgstr "" + +#: html/ajax_card.php:328 html/ajax_poste.php:83 html/recherche.php:65 +#: include/adm.inc.php:81 include/ajax_anc_search.php:45 +#: include/ajax_anc_search.php:56 include/bank.inc.php:75 +#: include/class_anc_balance_double.php:330 include/class_anc_print.php:133 +#: include/class_icard.php:290 include/class_iposte.php:133 +#: include/contact.inc.php:73 include/customer.inc.php:75 +#: include/database.item.php:56 include/database.item.php:95 +#: include/fiche.inc.php:83 include/lettering.account.inc.php:97 +#: include/lettering.card.inc.php:102 include/lettering.gestion.inc.php:54 +#: include/manager.inc.php:78 include/search.inc.php:70 +#: include/supplier.inc.php:79 include/user_menu.php:52 +#: include/template/action_button.php:39 +#: include/ext/amortis/include/am_card.php:44 +#: include/ext/tools/include/operation.inc.php:9 html/ajax_card.php:329 +#: include/anc_acc_balance.inc.php:11 include/anc_acc_table.inc.php:11 +#: include/anc_great_ledger.inc.php:11 include/anc_group_balance.inc.php:11 +#: include/template/search_top.php:41 +#: include/template/stock_histo_search.php:30 +#: include/template/stock_histo_search.php:68 include/menu.inc.php:147 +#, php-format +msgid "Recherche" +msgstr "" + +#: html/ajax_card.php:354 include/fiche.inc.php:90 +#: include/forecast.inc.php:264 include/forecast.inc.php:329 +#: include/impress_poste.inc.php:43 include/ext/modop/modop_display.php:80 +#: include/ext/modop/modop_display.php:113 +#: include/ext/modop/modop_display.php:147 +#: include/ext/modop/modop_display.php:183 html/ajax_card.php:355 +msgid "Recherche de fiche" +msgstr "" + +#: html/ajax_card.php:408 html/ajax_card.php:409 +msgid " de clients" +msgstr "" + +#: html/ajax_card.php:412 html/ajax_card.php:413 +msgid " de fournisseurs" +msgstr "" + +#: html/ajax_card.php:416 html/ajax_card.php:417 +msgid " d'administration" +msgstr "" + +#: html/ajax_card.php:430 include/class_acc_report.php:151 +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:121 +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:163 +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:279 +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:286 +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:346 +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:353 +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:360 +#: include/ext/rapport_avance/include/class_rapav_listing_formula.php:375 +#: include/ext/rapport_avance/include/class_rapav_listing_formula.php:795 +#: html/ajax_card.php:431 +msgid "Recherche poste" +msgstr "" + +#: html/ajax_card.php:437 include/company.inc.php:126 +#: include/compta_fin.inc.php:143 include/param_pcmn.inc.php:62 +#: include/payment_middle.inc.php:54 include/report.inc.php:103 +#: include/report.inc.php:118 include/template/dashboard.php:342 +#: include/ext/modop/modop_display.php:311 html/ajax_card.php:193 +#: html/ajax_card.php:438 include/ajax_mod_predf_op.php:55 +#: include/cfgledger.inc.php:122 +msgid "Sauve" +msgstr "" + +#: html/ajax_card.php:468 html/ajax_card.php:469 +msgid "Catégorie existe déjà" +msgstr "" + +#: html/ajax_card.php:470 html/ajax_card.php:471 +msgid "Catégorie sauvée" +msgstr "" + +#: html/ajax_card.php:475 html/ajax_card.php:476 +msgid "Le nom et la classe base ne peuvent être vide" +msgstr "" + +#: html/ajax_card.php:497 html/ajax_card.php:498 +msgid "Fiche non valide" +msgstr "" + +#: html/ajax_ledger.php:100 html/ajax_ledger.php:122 +msgid "Information" +msgstr "" + +#: html/ajax_ledger.php:156 +msgid "Opération Effacée" +msgstr "" + +#: html/ajax_ledger.php:200 +msgid "Désolé il y a une erreur" +msgstr "" + +#: html/ajax_ledger.php:263 +msgid "Aucun fichier" +msgstr "" + +#: html/ajax_ledger.php:284 html/ajax_ledger.php:324 html/ajax_ledger.php:348 +#: include/class_acc_ledger.php:868 include/database.item.php:87 +#: include/ext/invoicing/include/class_acc_ledger_sold_generate.php:125 +msgid "Document" +msgstr "" + +#: html/ajax_ledger.php:498 include/anc_od.inc.php:122 +#: include/ext/modop/modop_save.php:80 include/ext/modop/modop_save.php:162 +#: include/ext/amortis/include/am_generate.inc.php:76 +msgid "Opération sauvée" +msgstr "" + +#: html/ajax_ledger.php:504 +msgid "" +"Changement impossible: on ne peut pas changer la date dans une période fermée" +msgstr "" + +#: html/ajax_ledger.php:546 +msgid "Opération extournée" +msgstr "" + +#: html/ajax_misc.php:194 +msgid "code" +msgstr "" + +#: html/ajax_misc.php:195 +msgid "Taux" +msgstr "" + +#: html/ajax_misc.php:196 +msgid "Symbole" +msgstr "" + +#: html/ajax_misc.php:197 +msgid "Explication" +msgstr "" + +#: html/ajax_misc.php:250 html/ajax_misc.php:255 +msgid "tva inconnue" +msgstr "" + +#: html/ajax_misc.php:281 include/dossier.inc.php:288 +#: include/dossier.inc.php:316 include/dossier.inc.php:335 +#: include/ext/tva/ajax.php:17 +msgid "Retour" +msgstr "" + +#: html/ajax_misc.php:291 include/category_card.inc.php:69 +#: include/database.item.php:72 include/template/letter_all.php:20 +#: include/template/letter_prop.php:22 include/template/letter_prop.php:62 +msgid "Lettrage" +msgstr "" + +#: html/ajax_misc.php:316 +msgid "Montant min. " +msgstr "" + +#: html/ajax_misc.php:323 +msgid "Montant max. " +msgstr "" + +#: html/ajax_misc.php:338 html/ajax_misc.php:352 +msgid "Date malformée" +msgstr "" + +#: html/ajax_misc.php:364 include/class_anc_grandlivre.php:161 +#: include/fiche.inc.php:495 +msgid "Debit" +msgstr "" + +#: html/ajax_misc.php:365 include/class_anc_grandlivre.php:162 +#: include/fiche.inc.php:499 +msgid "Credit" +msgstr "" + +#: html/ajax_misc.php:366 +msgid "Les 2" +msgstr "" + +#: html/ajax_misc.php:461 include/class_fiche_def.php:773 +#: include/forecast.inc.php:274 include/forecast.inc.php:289 +#: include/forecast.inc.php:309 include/forecast.inc.php:339 +#: include/forecast.inc.php:382 include/template/document_mod_change.php:86 +#: include/template/ledger_detail_bottom.php:114 +#: include/ext/rapport_avance/ajax_listing_detail_modify.php:73 +#: include/ext/amortis/include/template/material_add.php:52 +#: include/ext/amortis/include/template/material_detail.php:135 +#: html/ajax_card.php:160 include/ajax_mod_stock_repo.php:79 +#: include/template/modele_document.php:118 +#: include/template/profile_sec_repository.php:59 +#: include/template/stock_inv.php:104 include/template/user_sec_profile.php:58 +msgid "Sauver" +msgstr "" + +#: html/ajax.php:48 html/extension.raw.php:59 +msgid "Cette extension n'existe pas " +msgstr "" + +#: html/ajax_poste.php:86 include/database.item.php:161 +#: include/template/ledger_detail_ach.php:273 +#: include/template/ledger_detail_fin.php:105 +#: include/template/ledger_detail_misc.php:89 +#: include/template/ledger_detail_ven.php:272 +#: include/template/operation_detail_misc.php:32 include/card_attr.inc.php:81 +#: include/template/fiche_list.php:41 +msgid "Poste Comptable" +msgstr "" + +#: html/do.php:44 +msgid "Vous êtes déconnecté" +msgstr "" + +#: html/do.php:97 html/user_login.php:66 +msgid "Base de donnée invalide" +msgstr "" + +#: html/do.php:104 +msgid "" +"Attention: la version de base de donnée est supérieure à la version du " +"programme, vous devriez mettre à jour" +msgstr "" + +#: html/do.php:108 html/user_login.php:75 +msgid "Votre base de données n'est pas à jour" +msgstr "" + +#: html/do.php:109 html/user_login.php:76 +msgid "cliquez ici pour appliquer le patch" +msgstr "" + +#: html/show_pj.php:82 include/ext/rapport_avance/raw.php:65 +#: include/ext/rapport_avance/raw.php:109 +#: include/ext/rapport_avance/raw.php:163 +#: include/ext/rapport_avance/raw.php:210 +msgid "Fichier effacé" +msgstr "" + +#: html/user_login.php:40 +msgid "Vous utilisez un navigateur dépassé depuis près de 8 ans!" +msgstr "" + +#: html/user_login.php:41 +msgid "" +"Pour une meilleure expérience web, prenez le temps de mettre votre " +"navigateur à jour" +msgstr "" + +#: html/user_login.php:149 include/ajax_preference.php:31 +#: include/database.item.php:80 html/user_pref.php:87 +msgid "Préférence" +msgstr "" + +#: html/user_login.php:151 +msgid "Deconnexion" +msgstr "" + +#: html/user_login.php:155 +msgid "Bienvenue " +msgstr "" + +#: html/user_login.php:155 +msgid "dans NOALYSS" +msgstr "" + +#: html/user_login.php:160 +msgid "Choississez votre dossier" +msgstr "" + +#: html/user_login.php:163 include/balance.inc.php:278 +#: include/compta_fin_rec.inc.php:126 include/dossier.inc.php:177 +#: include/modele.inc.php:237 include/user.inc.php:117 +#: include/ext/rapport_avance/ajax_listing_search_code.php:34 +#: include/ext/rapport_avance/ajax_rapav_search_code.php:32 +#: include/ext/rapport_avance/include/historique.inc.php:54 +#: include/ext/amortis/include/template/listing_histo.php:10 +#: include/ajax_boxcard_search.php:46 +#: include/template/result_cat_card_summary.php:5 include/menu.inc.php:150 +msgid "Filtre" +msgstr "" + +#: include/ac_common.php:409 include/action.common.inc.php:125 +msgid "Cette action ne vous est pas autorisée Contactez votre responsable" +msgstr "" + +#: include/ac_common.php:415 +msgid " Cette action ne vous est pas autorisée Contactez votre responsable" +msgstr "" + +#: include/ac_common.php:825 +msgid "Module inexistant" +msgstr "" + +#: include/ac_common.php:907 +msgid "" +"Utilisateur n'a pas de profile, votre administrateur doit en configurer un " +"dans CFGSEC" +msgstr "" + +#: include/action.common.inc.php:160 include/action.common.inc.php:258 +#: include/compta_ach.inc.php:222 include/compta_ven.inc.php:238 +msgid "Enregistrer" +msgstr "" + +#: include/action.common.inc.php:161 +msgid "Génère le document" +msgstr "" + +#: include/action.common.inc.php:186 +msgid "Ajoute une action à celle-ci" +msgstr "" + +#: include/action.common.inc.php:187 +msgid "Efface cette action" +msgstr "" + +#: include/action.common.inc.php:187 +msgid "Vous confirmez l\\'effacement" +msgstr "" + +#: include/action.common.inc.php:197 include/ajax_view_action.php:51 +msgid "Ce document n'est pas accessible" +msgstr "" + +#: include/action.common.inc.php:218 +msgid "Action " +msgstr "" + +#: include/action.common.inc.php:218 +msgid " effacée" +msgstr "" + +#: include/action.inc.php:26 +msgid "Retour liste" +msgstr "" + +#: include/adm.inc.php:90 include/bank.inc.php:83 include/contact.inc.php:81 +#: include/customer.inc.php:82 include/manager.inc.php:85 +#: include/supplier.inc.php:87 +msgid "Catégorie :" +msgstr "" + +#: include/adm.inc.php:93 include/bank.inc.php:89 include/contact.inc.php:93 +#: include/customer.inc.php:88 include/manager.inc.php:90 +#: include/supplier.inc.php:93 include/template/action_search.php:138 +msgid "recherche" +msgstr "" + +#: include/adm.inc.php:117 include/bank.inc.php:114 +#: include/category_card.inc.php:131 include/class_acc_ledger_fin.php:242 +#: include/class_acc_ledger.php:1586 include/class_acc_ledger.php:3493 +#: include/class_acc_ledger_purchase.php:949 +#: include/class_acc_ledger_sold.php:972 include/class_acc_ledger_sold.php:979 +#: include/class_follow_up.php:293 include/class_pre_op_ach.php:159 +#: include/class_pre_op_ach.php:167 include/class_pre_op_advanced.php:160 +#: include/class_pre_op_ven.php:153 include/class_pre_op_ven.php:160 +#: include/contact.inc.php:124 include/customer.inc.php:112 +#: include/fiche.inc.php:112 include/manager.inc.php:116 +#: include/supplier.inc.php:118 include/ext/modop/modop_display.php:188 +#: include/ext/coprop/include/class_copro_budget.php:114 +#: include/ext/coprop/include/lot.inc.php:34 +msgid "Créer une nouvelle fiche" +msgstr "" + +#: include/adm.inc.php:128 include/bank.inc.php:124 +#: include/contact.inc.php:133 include/customer.inc.php:123 +#: include/manager.inc.php:126 include/supplier.inc.php:128 +msgid "Ajout d'une catégorie" +msgstr "" + +#: include/ajax_get_profile.php:40 include/class_anc_account.php:266 +#: include/class_anc_plan.php:123 include/class_document_modele.php:66 +#: include/class_fiche.php:1569 include/database.item.php:140 +#: include/dossier.inc.php:307 include/stock_cfg.inc.php:65 +#: include/template/document_mod_change.php:34 +#: include/template/forecast_cat.php:15 include/ext/amortis/raw.php:100 +#: include/ext/transform/ajax_modify_intervat_assujetti.php:39 +#: include/ext/amortis/include/am_histo.inc.php:34 +#: include/ext/amortis/include/template/util_generate.php:67 +#: include/ext/transform/include/template/listing_assujetti_declarant.php:25 +#: include/ext/transform/include/template/listing_assujetti_representative.php:25 +#: include/ext/transform/include/template/listing_client_display.php:36 +#: include/ajax_mod_stock_repo.php:39 include/anc_pa.inc.php:194 +#: include/template/fiche_list.php:37 include/template/profile.php:33 +msgid "Nom" +msgstr "" + +#: include/ajax_get_profile.php:41 +msgid "Détail Menus" +msgstr "" + +#: include/ajax_get_profile.php:42 +msgid "Détail Impressions" +msgstr "" + +#: include/ajax_get_profile.php:43 +msgid "Action Gestion" +msgstr "" + +#: include/ajax_get_profile.php:44 +msgid "Dépôts" +msgstr "" + +#: include/ajax_preference.php:69 include/ajax_preference.php:70 +msgid "Options Générales" +msgstr "" + +#: include/ajax_preference.php:81 include/ajax_preference.php:82 +msgid "Thème" +msgstr "" + +#: include/ajax_preference.php:102 include/ajax_preference.php:103 +msgid "" +"Attention cette période est fermée, vous ne pourrez rien modifier dans le " +"module comptable" +msgstr "" + +#: include/ajax_preference.php:114 include/database.item.php:84 +#: include/template/forecast_result.php:25 +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:67 +#: include/ajax_preference.php:115 +msgid "Période" +msgstr "" + +#: include/ajax_preference.php:120 include/ajax_preference.php:121 +msgid "Taille des pages" +msgstr "" + +#: include/ajax_preference.php:129 include/ajax_preference.php:131 +#: include/ajax_preference.php:130 include/ajax_preference.php:132 +msgid "Illimité" +msgstr "" + +#: include/ajax_preference.php:148 include/ajax_preference.php:149 +msgid "Options pour la page d'accueil" +msgstr "" + +#: include/ajax_preference.php:149 include/ajax_preference.php:150 +msgid "Mini-Rapport : " +msgstr "" + +#: include/ajax_preference.php:152 include/ajax_preference.php:153 +msgid "Aucun mini rapport" +msgstr "" + +#: include/ajax_preference.php:158 include/ajax_preference.php:159 +msgid "Le mini rapport est un rapport qui s'affiche sur votre page d'accueil" +msgstr "" + +#: include/ajax_preference.php:163 include/ajax_preference.php:164 +msgid "Langue" +msgstr "" + +#: include/ajax_preference.php:164 include/ajax_preference.php:165 +msgid "Selectionnez votre langue" +msgstr "" + +#: include/ajax_preference.php:165 include/ajax_preference.php:166 +msgid "Français" +msgstr "" + +#: include/ajax_preference.php:166 include/ajax_preference.php:167 +msgid "Anglais" +msgstr "" + +#: include/ajax_preference.php:167 include/ajax_preference.php:168 +msgid "Néerlandais" +msgstr "" + +#: include/ajax_preference.php:182 include/template/action_other_action.php:60 +#: include/ext/transform/ajax_modify_intervat_assujetti.php:81 +#: include/ext/import_account/include/template/input_file.php:31 +#: include/ext/import_account/include/template/test_file.php:39 +#: include/ext/import_account/include/template/test_operation.php:39 +#: include/ext/import_account/include/template/upload_operation.php:43 +#: include/ajax_add_menu.php:142 include/ajax_get_menu_detail.php:115 +#: include/ajax_preference.php:183 +msgid "Valider" +msgstr "" + +#: include/ajax_view_action.php:33 +msgid "Détail action" +msgstr "" + +#: include/anc_od.inc.php:43 +msgid "Aucun plan analytique défini" +msgstr "" + +#: include/anc_od.inc.php:58 include/class_anticipation.php:260 +#: include/class_follow_up.php:152 +msgid "Nouveau" +msgstr "" + +#: include/anc_od.inc.php:61 +msgid "Liste opérations" +msgstr "" + +#: include/balance.inc.php:45 include/impress_bilan.inc.php:48 +#: include/impress_jrn.inc.php:84 include/impress_rapport.inc.php:182 +msgid "Choississez un autre exercice" +msgstr "" + +#: include/bank.inc.php:86 +msgid "Inclure les banques sans opération :" +msgstr "" + +#: include/cat_document.inc.php:42 include/class_forecast.php:70 +msgid "Le nom ne peut pas être vide" +msgstr "" + +#: include/cat_document.inc.php:55 include/template/dashboard.php:188 +#: include/ext/import_account/include/template/parameter_tva_add.php:52 +#: include/anc_pa.inc.php:127 include/anc_pa.inc.php:225 +msgid "Ajout" +msgstr "" + +#: include/category_card.inc.php:64 include/database.item.php:79 +#: include/database.item.php:109 include/template/detail-action.php:304 +#: include/template/form_ledger_fin.php:42 +#: include/template/security_list_action.php:54 +#: include/ext/amortis/include/print_fiche.inc.php:44 +#: include/ext/amortis/include/template/material_add.php:6 +#: include/ext/amortis/include/template/material_detail.php:8 +#: include/ext/amortis/include/template/material_display.php:5 +#: include/card_attr.inc.php:82 include/template/stock_histo_search.php:39 +#: include/template/stock_inv.php:64 +msgid "Fiche" +msgstr "" + +#: include/category_card.inc.php:64 +msgid "Détail de la fiche" +msgstr "" + +#: include/category_card.inc.php:65 +#: include/template/security_list_action.php:57 +msgid "Suivi" +msgstr "" + +#: include/category_card.inc.php:65 +msgid "Suivi Fournisseur, client, banque, devis, bon de commande, courrier" +msgstr "" + +#: include/category_card.inc.php:66 include/database.item.php:51 +#: include/template/detail-action.php:74 +msgid "Contact" +msgstr "" + +#: include/category_card.inc.php:66 +msgid "Liste de contacts" +msgstr "" + +#: include/category_card.inc.php:67 include/template/form_ledger_fin.php:37 +#: include/ext/modop/template_ledger_fin.php:15 +msgid "Opérations" +msgstr "" + +#: include/category_card.inc.php:67 +msgid "Toutes les opérations" +msgstr "" + +#: include/category_card.inc.php:68 include/database.item.php:65 +#: include/database.item.php:100 include/fiche.inc.php:69 +msgid "Balance" +msgstr "" + +#: include/category_card.inc.php:68 +msgid "Balance du fournisseur" +msgstr "" + +#: include/category_card.inc.php:69 +msgid "Opérations & Lettrages" +msgstr "" + +#: include/category_card.inc.php:125 +msgid "Vous devez aller dans fiche et créer une catégorie pour les contacts" +msgstr "" + +#: include/category_detail.inc.php:49 +msgid "Information sauvée" +msgstr "" + +#: include/category_detail.inc.php:67 +msgid "Sauver les modifications" +msgstr "" + +#: include/category_detail.inc.php:68 include/param_pcmn.inc.php:63 +#: include/template/dashboard.php:343 +#: include/ext/amortis/include/template/material_add.php:51 +#: html/ajax_card.php:284 include/ajax_mod_predf_op.php:56 +msgid "Annuler" +msgstr "" + +#: include/category_detail.inc.php:69 +msgid "Effacer cette fiche" +msgstr "" + +#: include/class_acc_account.php:185 +#, php-format +msgid "Numéro de classe" +msgstr "" + +#: include/class_acc_account.php:187 include/class_acc_ledger.php:1428 +#: include/class_acc_ledger.php:1435 include/class_acc_ledger.php:1661 +#: include/class_acc_ledger.php:1688 +#: include/class_acc_ledger_purchase.php:1364 +#: include/class_acc_ledger_sold.php:659 include/class_pre_op_advanced.php:184 +#: include/template/forecast-detail.php:14 +#: include/template/form_ledger_detail.php:50 +#: include/template/ledger_detail_ach.php:71 +#: include/template/ledger_detail_ach.php:275 +#: include/template/ledger_detail_fin.php:53 +#: include/template/ledger_detail_fin.php:107 +#: include/template/ledger_detail_misc.php:38 +#: include/template/ledger_detail_misc.php:91 +#: include/template/ledger_detail_ven.php:73 +#: include/template/ledger_detail_ven.php:274 +#: include/template/new_mod_payment.php:19 +#: include/template/operation_detail_misc.php:34 +#: include/ext/import_account/include/class_impacc_operation.php:251 +#: include/ext/import_account/include/class_impacc_operation.php:487 +#: include/template/impress_reconciliation.php:19 +#: include/template/operation_detail_fin.php:33 +#, php-format +msgid "Libellé" +msgstr "" + +#: include/class_acc_account.php:189 +#, php-format +msgid "Classe Parent" +msgstr "" + +#: include/class_acc_bilan.php:70 include/impress_gl_comptes.inc.php:62 +#: include/impress_poste.inc.php:93 include/template/impress_cat_card.php:14 +msgid "Depuis" +msgstr "" + +#: include/class_acc_bilan.php:74 +msgid " jusque " +msgstr "" + +#: include/class_acc_bilan.php:83 +msgid "Choix du bilan" +msgstr "" + +#: include/class_acc_ledger_fin.php:60 +#: include/class_acc_ledger_purchase.php:72 +#: include/class_acc_ledger_sold.php:67 +msgid "Double Encodage" +msgstr "" + +#: include/class_acc_ledger_fin.php:64 include/class_acc_ledger.php:1829 +#: include/class_acc_ledger_purchase.php:67 +#: include/class_acc_ledger_sold.php:71 include/ext/modop/modop_save.php:245 +#: html/export.php:41 html/recherche.php:53 +msgid "Accès interdit" +msgstr "" + +#: include/class_acc_ledger_fin.php:100 include/class_acc_ledger_fin.php:184 +#: include/class_acc_ledger.php:1852 include/class_acc_ledger_purchase.php:96 +#: include/class_acc_ledger_sold.php:91 +msgid "Date et periode ne correspondent pas" +msgstr "" + +#: include/class_acc_ledger_fin.php:106 include/class_acc_ledger_fin.php:190 +#: include/class_acc_ledger_purchase.php:101 +#: include/class_acc_ledger_sold.php:100 +msgid "Periode fermee" +msgstr "" + +#: include/class_acc_ledger_fin.php:116 include/class_acc_ledger_fin.php:200 +#: include/class_acc_ledger_purchase.php:111 +msgid "Vous utilisez le mode strict la dernière operation est à la date du " +msgstr "" + +#: include/class_acc_ledger_fin.php:117 include/class_acc_ledger_fin.php:201 +#: include/class_acc_ledger_sold.php:109 +msgid " vous ne pouvez pas encoder à une date antérieure" +msgstr "" + +#: include/class_acc_ledger_fin.php:551 include/class_acc_ledger.php:1445 +#: include/class_acc_ledger_purchase.php:1399 +#: include/class_acc_ledger_sold.php:690 +#: include/template/ledger_detail_ach.php:146 +#: include/template/ledger_detail_fin.php:115 +#: include/template/ledger_detail_misc.php:99 +#: include/template/ledger_detail_ven.php:144 +msgid "Compt. Analytique" +msgstr "" + +#: include/class_acc_ledger_fin.php:1002 include/class_acc_ledger.php:1594 +#: include/class_acc_ledger_purchase.php:1035 +#: include/class_acc_ledger_sold.php:1055 +msgid "Pas de journal disponible" +msgstr "" + +#: include/class_acc_ledger_fin.php:1007 +msgid "Tous les journaux financiers" +msgstr "" + +#: include/class_acc_ledger_fin.php:1037 include/class_acc_ledger.php:2842 +msgid "Rechercher" +msgstr "" + +#: include/class_acc_ledger.php:191 include/class_acc_ledger_purchase.php:81 +#: include/class_acc_ledger_sold.php:79 include/ext/tools/raw.php:42 +msgid "Date invalide" +msgstr "" + +#: include/class_acc_ledger.php:200 include/class_acc_ledger.php:203 +msgid "Cette opération n'existe pas" +msgstr "" + +#: include/class_acc_ledger.php:211 +msgid "PERIODE FERMEE" +msgstr "" + +#: include/class_acc_ledger.php:649 include/class_acc_ledger.php:843 +#: include/ext/invoicing/include/class_acc_ledger_sold_generate.php:97 +msgid "Aucun enregistrement trouvé" +msgstr "" + +#: include/class_acc_ledger.php:669 include/class_acc_ledger.php:867 +#: include/ext/invoicing/include/class_acc_ledger_sold_generate.php:124 +msgid "Concerne" +msgstr "" + +#: include/class_acc_ledger.php:865 +#: include/ext/invoicing/include/class_acc_ledger_sold_generate.php:122 +#: include/class_acc_ledger.php:1019 include/template/ledger_detail_ven.php:79 +msgid "Payé" +msgstr "" + +#: include/class_acc_ledger.php:1248 +msgid "Parametres journaux non trouves" +msgstr "" + +#: include/class_acc_ledger.php:1424 include/class_acc_ledger.php:1610 +#: include/class_acc_ledger_purchase.php:1350 +#: include/class_acc_ledger_sold.php:647 include/class_anc_grandlivre.php:156 +#: include/class_anc_listing.php:82 include/class_fiche.php:1281 +#: include/export_fiche_balance_csv.php:139 include/fiche.inc.php:437 +#: include/template/dashboard.php:337 include/template/detail-action.php:36 +#: include/template/form_ledger_detail.php:16 +#: include/template/form_ledger_fin.php:20 +#: include/template/form_ledger_fin.php:40 include/template/letter_all.php:23 +#: include/template/letter_prop.php:25 include/template/letter_prop.php:65 +#: include/ext/modop/template_ledger_fin.php:3 +#: include/ext/import_account/include/class_impacc_operation.php:248 +#: include/ext/import_account/include/class_impacc_operation.php:486 +#: include/ac_common.php:1061 include/audit_log.php:37 +#: include/template/action_search_result.php:44 include/card_attr.inc.php:79 +#: include/class_acc_ledger.php:663 include/class_acc_ledger.php:816 +#: include/template/impress_reconciliation.php:10 +#: include/template/ledger_detail_ach.php:23 +#: include/template/ledger_detail_fin.php:24 +#: include/template/ledger_detail_misc.php:27 +#: include/template/ledger_detail_ven.php:25 +#: include/template/print_ledger_simple.php:7 +#: include/template/stock_inv.php:34 +msgid "Date" +msgstr "" + +#: include/class_acc_ledger.php:1427 +#: include/class_acc_ledger_purchase.php:1358 +#: include/class_acc_ledger_sold.php:653 +msgid "Période Comptable" +msgstr "" + +#: include/class_acc_ledger.php:1429 +msgid "PJ Num" +msgstr "" + +#: include/class_acc_ledger.php:1433 +msgid "Quick Code ou " +msgstr "" + +#: include/class_acc_ledger.php:1434 include/class_acc_ledger.php:1687 +#: include/class_anc_grandlivre.php:157 include/class_anc_listing.php:83 +#: include/class_pre_op_advanced.php:183 include/database.item.php:62 +#: include/database.item.php:78 +msgid "Poste" +msgstr "" + +#: include/class_acc_ledger.php:1436 include/class_acc_ledger.php:1690 +#: include/class_anticipation.php:419 include/class_fiche.php:1285 +#: include/class_pre_op_advanced.php:186 +#: include/export_fiche_balance_csv.php:143 +#: include/operation_ods_new.inc.php:91 +#: include/template/ledger_detail_ach.php:276 +#: include/template/ledger_detail_fin.php:108 +#: include/template/ledger_detail_misc.php:92 +#: include/template/ledger_detail_ven.php:275 +#: include/template/letter_all.php:35 include/template/letter_prop.php:34 +#: include/template/letter_prop.php:74 +#: include/template/operation_detail_misc.php:35 +#: include/ext/modop/modop_display.php:163 +#: include/ext/coprop/include/appel_fond.inc.php:85 +#: include/ext/coprop/include/appel_fond.inc.php:154 +#: include/ext/coprop/include/class_coprop_appel_fond.php:202 +#: include/anc_od.inc.php:149 include/template/anc_balance_group.php:49 +msgid "Débit" +msgstr "" + +#: include/class_acc_ledger.php:1437 include/class_anticipation.php:420 +#: include/class_fiche.php:1286 include/operation_ods_new.inc.php:92 +#: include/template/ledger_detail_ach.php:277 +#: include/template/ledger_detail_fin.php:109 +#: include/template/ledger_detail_misc.php:93 +#: include/template/ledger_detail_ven.php:276 +#: include/template/letter_all.php:38 include/template/letter_prop.php:37 +#: include/template/letter_prop.php:77 +#: include/template/operation_detail_misc.php:36 +#: include/ext/modop/modop_display.php:164 +#: include/ext/coprop/include/appel_fond.inc.php:86 +#: include/ext/coprop/include/appel_fond.inc.php:155 +#: include/ext/coprop/include/class_coprop_appel_fond.php:203 +#: include/anc_od.inc.php:150 +msgid "Crédit" +msgstr "" + +#: include/class_acc_ledger.php:1543 include/export_fiche_balance_pdf.php:153 +#: include/fiche.inc.php:357 include/template/forecast_result.php:31 +msgid "Totaux" +msgstr "" + +#: include/class_acc_ledger.php:1546 +msgid "verifie Imputation Analytique" +msgstr "" + +#: include/class_acc_ledger.php:1633 +#: include/class_acc_ledger_purchase.php:1009 +#: include/class_acc_ledger_sold.php:1034 +#: include/ext/amortis/include/class_am_generate.php:86 +msgid "Aucune période ouverte" +msgstr "" + +#: include/class_acc_ledger.php:1638 +#: include/class_acc_ledger_purchase.php:1016 +#: include/class_acc_ledger_sold.php:1039 +#: include/ext/amortis/include/class_am_generate.php:91 +msgid "Période comptable" +msgstr "" + +#: include/class_acc_ledger.php:1654 include/template/ledger_detail_ach.php:62 +#: include/template/ledger_detail_fin.php:65 +#: include/template/ledger_detail_misc.php:50 +#: include/template/ledger_detail_ven.php:64 include/ext/tools/index.php:42 +#: include/ext/amortis/include/am_histo.inc.php:37 +#: include/ext/amortis/include/class_pdf_card.php:103 +#: include/ext/import_account/include/class_impacc_operation.php:488 +#: include/ext/amortis/include/template/material_detail.php:58 +#: include/ext/amortis/include/template/material_display.php:44 +#: include/ext/amortis/include/template/util_generate.php:57 +#: include/class_acc_ledger.php:664 include/class_acc_ledger.php:819 +#: include/template/print_ledger_simple.php:6 +msgid "Pièce" +msgstr "" + +#: include/class_acc_ledger.php:1689 +#: include/class_acc_ledger_purchase.php:1388 +#: include/class_acc_ledger_sold.php:682 include/class_anc_account.php:271 +#: include/class_anc_listing.php:89 include/class_pre_op_advanced.php:185 +#: include/fiche.inc.php:441 include/template/forecast-detail.php:15 +#: include/template/form_ledger_fin.php:44 +#: include/ext/modop/template_ledger_fin.php:20 +#: include/ext/transform/ajax_modify_intervat_assujetti.php:55 +#: include/ext/amortis/include/am_histo.inc.php:35 +#: include/ext/amortis/include/class_pdf_card.php:74 +#: include/ext/amortis/include/class_pdf_card.php:103 +#: include/ext/amortis/include/template/material_detail.php:56 +#: include/ext/amortis/include/template/material_display.php:42 +#: include/ext/transform/include/template/listing_client_display.php:42 +#: include/ac_common.php:1065 include/anc_pa.inc.php:195 +#: include/class_acc_ledger.php:668 include/class_acc_ledger.php:821 +#: include/template/impress_reconciliation.php:22 +#: include/template/ledger_detail_misc.php:44 +#: include/template/operation_detail_fin.php:34 +msgid "Montant" +msgstr "" + +#: include/class_acc_ledger.php:1869 +msgid "Vous utilisez le mode strict la dernière operation est la date du " +msgstr "" + +#: include/class_acc_ledger.php:1870 +msgid "vous ne pouvez pas encoder à une date antérieure" +msgstr "" + +#: include/class_acc_ledger.php:1898 include/class_acc_ledger.php:2028 +#, php-format +msgid "La fiche %s n'a pas de poste comptable" +msgstr "" + +#: include/class_acc_ledger.php:1902 +msgid "Poste Inexistant pour la fiche [" +msgstr "" + +#: include/class_acc_ledger.php:1910 +msgid "Le poste" +msgstr "" + +#: include/class_acc_ledger.php:1910 +msgid "n'est pas dans ce journal" +msgstr "" + +#: include/class_acc_ledger.php:1912 +msgid "Poste invalide [" +msgstr "" + +#: include/class_acc_ledger.php:1914 +msgid "Poste Inexistant [" +msgstr "" + +#: include/class_acc_ledger.php:1934 +msgid "Balance incorrecte " +msgstr "" + +#: include/class_acc_ledger.php:2860 +#: include/template/stock_state_search.php:50 +msgid "Filtrer" +msgstr "" + +#: include/class_acc_ledger.php:3280 include/user_menu.php:51 +msgid "Création" +msgstr "" + +#: include/class_acc_ledger.php:3305 +msgid "Journal n'existe pas" +msgstr "" + +#: include/class_acc_ledger.php:3478 +msgid "Payé par" +msgstr "" + +#: include/class_acc_ledger_purchase.php:76 +msgid "Vous n'avez pas donné de fournisseur" +msgstr "" + +#: include/class_acc_ledger_purchase.php:112 +msgid " vous ne pouvez pas encoder à une date antérieure dans ce journal" +msgstr "" + +#: include/class_acc_ledger_purchase.php:122 +#: include/class_acc_ledger_purchase.php:147 +#: include/class_acc_ledger_purchase.php:164 +#: include/class_acc_ledger_purchase.php:166 +#: include/class_acc_ledger_purchase.php:172 +#: include/class_acc_ledger_purchase.php:177 +#: include/class_acc_ledger_purchase.php:193 +#: include/class_acc_ledger_purchase.php:218 +#: include/class_acc_ledger_sold.php:116 include/class_acc_ledger_sold.php:139 +#: include/class_acc_ledger_sold.php:151 include/class_acc_ledger_sold.php:153 +#: include/class_acc_ledger_sold.php:158 include/class_acc_ledger_sold.php:163 +#: include/class_acc_ledger_sold.php:167 include/class_acc_ledger_sold.php:197 +msgid "La fiche " +msgstr "" + +#: include/class_acc_ledger_purchase.php:122 +#: include/class_acc_ledger_purchase.php:193 +#: include/class_acc_ledger_sold.php:116 include/class_acc_ledger_sold.php:158 +msgid "n'a pas de poste comptable" +msgstr "" + +#: include/class_acc_ledger_purchase.php:141 +#: include/class_acc_ledger_purchase.php:212 +#: include/class_acc_ledger_sold.php:132 include/class_acc_ledger_sold.php:191 +msgid "Pour la fiche " +msgstr "" + +#: include/class_acc_ledger_purchase.php:141 +#: include/class_acc_ledger_sold.php:132 include/class_acc_ledger_sold.php:191 +msgid " le poste comptable [" +msgstr "" + +#: include/class_acc_ledger_purchase.php:141 +#: include/class_acc_ledger_purchase.php:212 +#: include/class_acc_ledger_sold.php:191 +msgid "n'existe pas" +msgstr "" + +#: include/class_acc_ledger_purchase.php:147 +#: include/class_acc_ledger_purchase.php:218 +#: include/class_acc_ledger_sold.php:139 include/class_acc_ledger_sold.php:197 +msgid "n'est pas accessible à ce journal" +msgstr "" + +#: include/class_acc_ledger_purchase.php:164 +msgid "a un montant invalide" +msgstr "" + +#: include/class_acc_ledger_purchase.php:166 +msgid "a une quantité invalide" +msgstr "" + +#: include/class_acc_ledger_purchase.php:172 +#: include/class_acc_ledger_purchase.php:177 +#: include/class_acc_ledger_sold.php:163 include/class_acc_ledger_sold.php:167 +msgid "a un code tva invalide" +msgstr "" + +#: include/class_acc_ledger_purchase.php:186 +#: include/class_acc_ledger_sold.php:177 +msgid " La TVA " +msgstr "" + +#: include/class_acc_ledger_purchase.php:212 +msgid " le poste comptable" +msgstr "" + +#: include/class_acc_ledger_purchase.php:236 +msgid "ce code n'a pas de poste comptable, créez ce poste : [" +msgstr "" + +#: include/class_acc_ledger_purchase.php:246 +#, php-format +msgid "Pour la fiche %s, le compte contrepartie %s n'existe pas" +msgstr "" + +#: include/class_acc_ledger_purchase.php:258 +#: include/class_acc_ledger_sold.php:201 +msgid "Il n'y a aucune marchandise" +msgstr "" + +#: include/class_acc_ledger_purchase.php:972 +#: include/class_acc_ledger_purchase.php:1372 +msgid "Détail articles achetés" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1096 include/class_pre_op_ach.php:216 +msgid "Fournisseur " +msgstr "" + +#: include/class_acc_ledger_purchase.php:1262 +#: include/class_acc_ledger_purchase.php:1369 include/class_pre_op_ach.php:381 +#: include/database.item.php:11 include/template/ledger_detail_ach.php:50 +#: include/template/print_ledger_simple.php:10 +msgid "Fournisseur" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1271 +#: include/class_acc_ledger_sold.php:1273 include/class_pre_op_ach.php:390 +#: include/class_pre_op_ven.php:384 include/compta_fin.inc.php:142 +#: include/ext/modop/modop_display.php:98 +msgid "Ajout article" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1328 +#: include/class_acc_ledger_sold.php:624 +msgid "Détail opération " +msgstr "" + +#: include/class_acc_ledger_purchase.php:1338 +#: include/class_acc_ledger_purchase.php:1343 +#: include/class_acc_ledger_purchase.php:1346 +#: include/class_acc_ledger_sold.php:634 include/class_acc_ledger_sold.php:639 +#: include/class_acc_ledger_sold.php:642 +#: include/template/form_ledger_detail.php:42 +msgid "Numéro Pièce" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1344 +#: include/class_acc_ledger_sold.php:640 include/compta_ods.inc.php:94 +#: include/opening.inc.php:79 include/ext/modop/modop_save.php:86 +#: include/ext/modop/modop_save.php:167 +msgid "Attention numéro pièce existante, elle a du être adaptée" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1353 +#: include/class_acc_ledger_sold.php:650 +#: include/template/form_ledger_detail.php:24 include/class_acc_ledger.php:817 +#: include/template/ledger_detail_ach.php:30 +#: include/template/ledger_detail_ven.php:33 +msgid "Echeance" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1361 +#: include/class_acc_ledger_sold.php:656 +#: include/template/form_ledger_detail.php:11 include/class_acc_ledger.php:660 +#: include/ext/tools/raw.php:76 +msgid "Journal" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1376 +#: include/class_acc_ledger_sold.php:670 include/ext/amortis/raw.php:51 +#: include/ext/amortis/include/template/listing_year.php:8 +#: include/ajax_get_menu_detail.php:75 include/ajax_plugin_detail.php:39 +#: include/anc_group.inc.php:62 include/template/stock_summary_list.php:45 +#: include/menu.inc.php:112 include/ext/tools/raw.php:80 +msgid "Code" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1377 +#: include/class_acc_ledger_sold.php:671 +#: include/template/form_ledger_detail.php:67 +#: include/template/predf_ledger_detail.php:17 +msgid "Dénomination" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1378 +#: include/class_acc_ledger_sold.php:672 +msgid "prix" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1379 +#: include/class_acc_ledger_purchase.php:1389 +#: include/class_acc_ledger_sold.php:673 +#: include/template/detail-action.php:307 +#: include/template/form_ledger_detail.php:70 +#: include/template/form_ledger_detail.php:77 +#: include/template/predf_ledger_detail.php:20 +#: include/template/predf_ledger_detail.php:27 +msgid "quantité" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1383 +#: include/class_acc_ledger_sold.php:677 +#: include/template/form_ledger_detail.php:72 +#: include/template/predf_ledger_detail.php:22 +msgid "tva" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1384 +#: include/class_acc_ledger_sold.php:678 +#: include/template/detail-action.php:309 +#: include/ext/import_account/include/class_impacc_operation.php:149 +msgid "Montant TVA" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1385 +#: include/class_acc_ledger_sold.php:679 +msgid "Montant HTVA" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1386 +#: include/class_acc_ledger_sold.php:680 +#: include/template/detail-action.php:310 +msgid "Montant TVAC" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1484 +#: include/class_acc_ledger_sold.php:755 +msgid "Attention Différence entre TVA calculée et donnée" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1523 +msgid "Vérifiez imputation analytique" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1539 +#: include/class_acc_ledger_sold.php:810 +#: include/template/form_ledger_detail.php:125 +#: include/template/predf_ledger_detail.php:75 +msgid "Total TVA" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1540 +#: include/class_acc_ledger_sold.php:811 +#: include/template/form_ledger_detail.php:126 +#: include/template/predf_ledger_detail.php:76 +msgid "Total TVAC" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1608 +#: include/class_acc_ledger_sold.php:864 +msgid "Déduction acompte " +msgstr "" + +#: include/class_acc_ledger_purchase.php:1609 +#: include/class_acc_ledger_sold.php:865 +msgid "Libellé :" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1632 +#: include/class_acc_ledger_sold.php:898 +msgid "Ajoutez une pièce justificative " +msgstr "" + +#: include/class_acc_ledger_purchase.php:1638 +msgid "ou générer un document" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1649 +#: include/class_acc_ledger_sold.php:915 +msgid "Numero de bon de commande : " +msgstr "" + +#: include/class_acc_ledger_purchase.php:1650 +#: include/class_acc_ledger_sold.php:916 +msgid "Autre information : " +msgstr "" + +#: include/class_acc_ledger_purchase.php:1678 +#: include/class_acc_ledger_sold.php:943 +msgid "Echeance dépassée" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1680 +#: include/class_acc_ledger_sold.php:945 +msgid "Non Payée" +msgstr "" + +#: include/class_acc_ledger_purchase.php:1689 +#: include/class_acc_ledger_sold.php:954 include/history_operation.inc.php:140 +msgid "Mise à jour paiement" +msgstr "" + +#: include/class_acc_ledger_sold.php:75 +msgid "Vous n'avez pas donné de client" +msgstr "" + +#: include/class_acc_ledger_sold.php:108 +msgid "Vous utilisez le mode strict la dernière operation est date du " +msgstr "" + +#: include/class_acc_ledger_sold.php:132 +msgid "] n'existe pas" +msgstr "" + +#: include/class_acc_ledger_sold.php:151 +msgid "a un montant invalide [" +msgstr "" + +#: include/class_acc_ledger_sold.php:153 +msgid "a une quantité invalide [" +msgstr "" + +#: include/class_acc_ledger_sold.php:663 +#: include/class_acc_ledger_sold.php:1005 +#: include/class_acc_ledger_sold.php:1260 include/class_pre_op_ven.php:371 +#: include/database.item.php:15 include/template/ledger_detail_ven.php:52 +#: include/ext/transform/ajax_modify_intervat_assujetti.php:24 +#: include/template/print_ledger_simple.php:10 +msgid "Client" +msgstr "" + +#: include/class_acc_ledger_sold.php:666 +#: include/class_acc_ledger_sold.php:1138 include/class_pre_op_ven.php:241 +msgid "Détail articles vendus" +msgstr "" + +#: include/class_acc_ledger_sold.php:794 +msgid "Vérifiez Imputation Analytique" +msgstr "" + +#: include/class_acc_ledger_sold.php:904 +msgid "ou générer une facture" +msgstr "" + +#: include/class_acc_ledger_sold.php:1012 +msgid "Echéance" +msgstr "" + +#: include/class_acc_payment.php:291 +msgid " Acompte à déduire" +msgstr "" + +#: include/class_acc_payment.php:299 +msgid " Libellé du paiement" +msgstr "" + +#: include/class_acc_payment.php:305 +msgid "Paiement encodé plus tard" +msgstr "" + +#: include/class_acc_payment.php:327 +msgid " paiement par " +msgstr "" + +#: include/class_anc_account.php:277 include/class_anc_listing.php:86 +#: include/class_anc_plan.php:124 include/class_fiche.php:1284 +#: include/database.item.php:143 include/dossier.inc.php:278 +#: include/dossier.inc.php:312 include/param_pcmn.inc.php:53 +#: include/template/dashboard.php:339 include/template/detail-action.php:208 +#: include/template/detail-action.php:305 +#: include/template/ledger_detail_ach.php:119 +#: include/template/ledger_detail_ven.php:123 +#: include/template/letter_all.php:32 include/template/letter_prop.php:31 +#: include/template/letter_prop.php:71 +#: include/template/operation_detail_ach.php:36 +#: include/template/operation_detail_ven.php:36 +#: include/template/param_jrn.php:124 include/ext/amortis/raw.php:51 +#: include/ext/tva/form_parameter.php:117 +#: include/ext/amortis/include/template/listing_year.php:9 +#: include/ext/amortis/include/template/util_generate.php:68 +#: include/ac_common.php:1063 include/ajax_boxcard_search.php:60 +#: include/ajax_plugin_detail.php:43 include/anc_group.inc.php:62 +#: include/anc_pa.inc.php:196 include/card_attr.inc.php:95 +#: include/class_acc_ledger.php:666 include/class_acc_ledger.php:822 +#: include/template/menu_detail.php:43 +#: include/template/print_ledger_simple.php:11 include/template/profile.php:37 +#: include/template/tag_detail.php:18 include/template/tag_list.php:14 +#: include/template/tag_search_select.php:19 +#: include/template/tag_select.php:19 include/menu.inc.php:114 +msgid "Description" +msgstr "" + +#: include/class_anc_account.php:282 +msgid "Plan Analytique" +msgstr "" + +#: include/class_anc_account.php:287 include/database.item.php:7 +#: include/database.item.php:50 include/anc_pa.inc.php:197 +msgid "Groupe" +msgstr "" + +#: include/class_anc_balance_double.php:338 +msgid "" +"Selectionnez le plan qui vous intéresse avant de cliquer sur Recherche" +msgstr "" + +#: include/class_anc_grandlivre.php:136 include/class_anc_grandlivre.php:250 +#: include/class_anc_listing.php:77 +msgid "aucune donnée" +msgstr "" + +#: include/class_anc_grandlivre.php:158 include/class_anc_listing.php:84 +msgid "Quick_code" +msgstr "" + +#: include/class_anc_grandlivre.php:159 include/class_anc_listing.php:87 +msgid "libelle" +msgstr "" + +#: include/class_anc_grandlivre.php:160 include/class_anc_listing.php:88 +msgid "Num.interne" +msgstr "" + +#: include/class_anc_group_operation.php:73 +msgid "Operation non equilibrée" +msgstr "" + +#: include/class_anc_group_operation.php:189 +#: include/class_anticipation.php:430 include/template/stock_inv.php:103 +msgid "Ajouter une ligne" +msgstr "" + +#: include/class_anc_listing.php:85 +msgid "Analytique" +msgstr "" + +#: include/class_anc_listing.php:90 include/export_fiche_balance_csv.php:146 +msgid "D/C" +msgstr "" + +#: include/class_anc_print.php:93 +msgid "Aucun plan défini" +msgstr "" + +#: include/class_anc_print.php:120 +msgid "Les dates sont en format DD.MM.YYYY" +msgstr "" + +#: include/class_anc_print.php:128 +msgid "Plan Analytique :" +msgstr "" + +#: include/class_anc_print.php:130 +msgid "Entre l'activité " +msgstr "" + +#: include/class_anc_print.php:132 +msgid "Choix Poste" +msgstr "" + +#: include/class_anc_print.php:137 +msgid " et l'activité " +msgstr "" + +#: include/class_anc_print.php:140 +msgid "Selectionnez le plan qui vous intéresse avant de cliquer sur Recherche" +msgstr "" + +#: include/class_anticipation.php:122 +msgid "Période de début non valable" +msgstr "" + +#: include/class_anticipation.php:123 +msgid "Période de fin non valable" +msgstr "" + +#: include/class_anticipation.php:202 +#: include/ext/import_account/include/imd_parameter.inc.php:86 +#: include/ajax_plugin_detail.php:29 +msgid "Modification" +msgstr "" + +#: include/class_anticipation.php:292 +msgid "Ventes" +msgstr "" + +#: include/class_anticipation.php:292 +msgid "Dépense" +msgstr "" + +#: include/class_anticipation.php:292 include/database.item.php:69 +#: include/template/form_ledger_fin.php:25 +#: include/ext/modop/template_ledger_fin.php:5 +msgid "Banque" +msgstr "" + +#: include/class_anticipation.php:341 +msgid "Elements" +msgstr "" + +#: include/class_calendar.php:85 +msgid "Tâches" +msgstr "" + +#: include/class_calendar.php:129 include/class_acc_ledger.php:667 +msgid "Notes" +msgstr "" + +#: include/class_calendar.php:168 include/class_calendar.php:256 +msgid "Dimanche" +msgstr "" + +#: include/class_calendar.php:168 include/class_calendar.php:256 +msgid "Lundi" +msgstr "" + +#: include/class_calendar.php:168 include/class_calendar.php:256 +msgid "Mardi" +msgstr "" + +#: include/class_calendar.php:168 include/class_calendar.php:256 +msgid "Mercredi" +msgstr "" + +#: include/class_calendar.php:168 include/class_calendar.php:256 +msgid "Jeudi" +msgstr "" + +#: include/class_calendar.php:168 include/class_calendar.php:256 +msgid "Vendredi" +msgstr "" + +#: include/class_calendar.php:168 include/class_calendar.php:256 +msgid "Samedi" +msgstr "" + +#: include/class_default_menu.php:48 +msgid "Code pour création facture depuis gestion" +msgstr "" + +#: include/class_default_menu.php:49 +msgid "Code pour appel gestion" +msgstr "" + +#: include/class_document_modele.php:67 +#: include/template/forecast-detail.php:11 include/template/fiche_list.php:45 +msgid "Catégorie" +msgstr "" + +#: include/class_document_modele.php:68 +msgid "Affect." +msgstr "" + +#: include/class_document_modele.php:69 include/ajax_plugin_detail.php:47 +#: include/template/modele_document.php:61 include/menu.inc.php:116 +msgid "Fichier" +msgstr "" + +#: include/class_document_modele.php:70 include/class_document_type.php:82 +#: include/compta_fin.inc.php:144 include/dossier.inc.php:220 +#: include/dossier.inc.php:334 include/forecast.inc.php:363 +#: include/template/ledger_detail_bottom.php:123 +#: include/ext/transform/ajax_save_intervat_assujetti.php:72 +#: include/ext/amortis/include/template/material_detail.php:137 +#: include/ajax_view_mod_stock.php:55 include/anc_group.inc.php:88 +#: include/card_attr.inc.php:86 include/template/detail-action.php:159 +#: include/template/detail-action.php:189 +msgid "Effacer" +msgstr "" + +#: include/class_document_modele.php:255 +#: include/template/modele_document.php:40 +msgid "Affectation" +msgstr "" + +#: include/class_document_modele.php:259 +#: include/template/modele_document.php:48 +msgid "Uniquement journaux achat" +msgstr "" + +#: include/class_document_modele.php:260 +#: include/template/modele_document.php:49 +msgid "Uniquement journaux vente" +msgstr "" + +#: include/class_document_modele.php:261 +#: include/template/modele_document.php:50 +msgid "Partie gestion" +msgstr "" + +#: include/class_document.php:297 +#: include/ext/rapport_avance/include/class_rapav_declaration.php:267 +#: include/ext/rapport_avance/include/class_rapav_declaration.php:339 +#: include/ext/rapport_avance/include/class_rapav_listing_compute_fiche.php:218 +#: include/ext/rapport_avance/include/class_rapav_listing_compute_fiche.php:297 +#: include/ext/rapport_avance/include/class_rapav_listing_compute_fiche.php:459 +msgid "Ne peut pas sauver " +msgstr "" + +#: include/class_document_type.php:75 include/dossier.inc.php:222 +#: include/stock_cfg.inc.php:110 +#: include/ext/transform/ajax_save_intervat_assujetti.php:61 +#: include/ext/transform/include/template/listing_client_display.php:89 +#: include/ajax_get_profile.php:70 +msgid "Modifier" +msgstr "" + +#: include/class_document_type.php:83 include/payment_middle.inc.php:46 +#: include/ajax_add_menu.php:72 include/ajax_get_menu_detail.php:70 +#: include/ajax_plugin_detail.php:32 +msgid "Vous confirmez" +msgstr "" + +#: include/class_fiche_def.php:210 +msgid "Le nom de la catégorie ne peut pas être vide" +msgstr "" + +#: include/class_fiche_def.php:236 +msgid "Catégorie existante" +msgstr "" + +#: include/class_fiche_def.php:453 include/ajax_plugin_detail.php:35 +msgid "Label" +msgstr "" + +#: include/class_fiche_def.php:466 +msgid "Poste Comptable de base" +msgstr "" + +#: include/class_fiche_def.php:475 +msgid "Chaque fiche aura automatiquement son propre poste comptable : " +msgstr "" + +#: include/class_fiche_def.php:783 +msgid "Ajoutez cet élément" +msgstr "" + +#: include/class_fiche_def.php:784 include/operation_ods_new.inc.php:103 +msgid "Sauvez" +msgstr "" + +#: include/class_fiche_def.php:785 +msgid "Effacer cette catégorie" +msgstr "" + +#: include/class_fiche_def.php:785 include/ajax_add_menu.php:126 +#: include/template/fiche_list.php:30 include/template/stock_inv.php:31 +msgid "Vous confirmez ?" +msgstr "" + +#: include/class_fiche_def.php:789 +msgid "Enleve les éléments cochés" +msgstr "" + +#: include/class_fiche_def.php:792 +msgid "" +"Attention : il n'y aura pas de demande de confirmation pour enlever les\n" +" attributs sélectionnés. Il ne sera pas " +"possible de revenir en arrière" +msgstr "" + +#: include/class_fiche.php:406 +msgid "Cette categorie de card n'existe pas" +msgstr "" + +#: include/class_fiche.php:451 +msgid "Rappel: Poste créé automatiquement à partir de " +msgstr "" + +#: include/class_fiche.php:459 +msgid "Rappel: Poste par défaut sera " +msgstr "" + +#: include/class_fiche.php:1282 include/template/impress_reconciliation.php:16 +msgid "n° pièce" +msgstr "" + +#: include/class_fiche.php:1283 +msgid "Code interne" +msgstr "" + +#: include/class_fiche.php:1568 include/database.item.php:150 +#: include/template/ledger_detail_ach.php:118 +#: include/template/ledger_detail_ach.php:274 +#: include/template/ledger_detail_fin.php:106 +#: include/template/ledger_detail_misc.php:90 +#: include/template/ledger_detail_ven.php:122 +#: include/template/ledger_detail_ven.php:273 +#: include/template/operation_detail_ach.php:35 +#: include/template/operation_detail_misc.php:33 +#: include/template/operation_detail_ven.php:35 +#: include/ext/amortis/include/template/util_generate.php:66 +#: include/ajax_boxcard_search.php:50 include/template/fiche_list.php:34 +msgid "Quick Code" +msgstr "" + +#: include/class_fiche.php:1570 include/stock_cfg.inc.php:66 +#: include/ajax_mod_stock_repo.php:47 include/audit_log.php:38 +#: include/template/stock_summary_list.php:39 +msgid "Adresse" +msgstr "" + +#: include/class_fiche.php:1571 +msgid "Total débit" +msgstr "" + +#: include/class_fiche.php:1572 +msgid "Total crédit" +msgstr "" + +#: include/class_fiche.php:1573 include/template/anc_balance_group.php:51 +#: include/template/anc_balance_group.php:72 include/class_acc_bilan.php:157 +msgid "Solde" +msgstr "" + +#: include/class_follow_up.php:407 +msgid "Génére le document" +msgstr "" + +#: include/class_follow_up.php:1180 +msgid "Tous les types" +msgstr "" + +#: include/class_follow_up.php:1187 +msgid "Tous les Etats" +msgstr "" + +#: include/class_follow_up.php:1196 +msgid "Aucun" +msgstr "" + +#: include/class_follow_up.php:1218 +msgid "Tous les profiles" +msgstr "" + +#: include/class_html_input.php:323 +msgid "Filtre " +msgstr "" + +#: include/class_html_input.php:686 include/class_ipopup.php:123 +#: include/template/action_search.php:142 +#: include/ext/amortis/include/material_delete.inc.php:7 +#: include/ext/amortis/include/material_modify.inc.php:42 +#: include/ext/amortis/include/template/material_detail.php:138 +#: include/ext/import_account/include/template/parameter_tva_add.php:55 +#: html/ajax_card.php:173 html/ajax_card.php:314 +#: include/template/action_search.php:31 include/template/action_search.php:35 +#: include/class_acc_ledger.php:2854 include/template/history_top.php:12 +#: include/template/ledger_detail_bottom.php:101 +#: include/template/ledger_detail_bottom.php:102 +#: include/template/ledger_detail_top.php:11 +#: include/template/search_top.php:36 +#, php-format +msgid "Fermer" +msgstr "" + +#: include/class_ibutton.php:61 +msgid "Inverser la sélection" +msgstr "" + +#: include/class_ibutton.php:68 +msgid "Cocher tous" +msgstr "" + +#: include/class_ibutton.php:75 +msgid "Décocher tous" +msgstr "" + +#: include/class_ibutton.php:82 +msgid "Calculatrice" +msgstr "" + +#: include/class_iperiod.php:123 +msgid "Aucune periode trouvée" +msgstr "" + +#: include/class_itva_popup.php:125 +msgid "Le nom ne peut être vide" +msgstr "" + +#: include/class_itva_popup.php:131 +msgid " TVA " +msgstr "" + +#: include/class_periode.php:240 include/class_periode.php:269 +#, php-format +msgid "Nombre opérations %d" +msgstr "" + +#: include/class_periode.php:242 include/class_periode.php:360 +msgid "Confirmez Réouverture" +msgstr "" + +#: include/class_periode.php:265 +msgid "Confirmez effacement ?" +msgstr "" + +#: include/class_pre_op_ach.php:182 +msgid "En-tête facture fournisseur" +msgstr "" + +#: include/class_pre_op_ach.php:183 +msgid "Détail articles acheté" +msgstr "" + +#: include/class_pre_op_ven.php:176 +msgid "En-tête facture client" +msgstr "" + +#: include/class_profile_menu.php:236 include/class_profile_menu.php:260 +msgid "Lecture" +msgstr "" + +#: include/class_profile_menu.php:237 include/class_profile_menu.php:261 +msgid "Ecriture" +msgstr "" + +#: include/class_profile_menu.php:238 include/class_profile_menu.php:262 +msgid "Aucun accès" +msgstr "" + +#: include/class_user.php:51 +msgid "Session expirée
Utilisateur déconnecté" +msgstr "" + +#: include/class_user.php:175 +msgid "Utilisateur ou mot de passe incorrect" +msgstr "" + +#: include/class_user.php:405 +msgid "Aucune période trouvéee !!!" +msgstr "" + +#: include/class_user.php:897 +msgid "Dossier non accessible" +msgstr "" + +#: include/class_user.php:1141 +msgid "Les mots de passe ne correspondent pas. Mot de passe inchangé" +msgstr "" + +#: include/company.inc.php:35 +msgid "obligatoire" +msgstr "" + +#: include/company.inc.php:36 +msgid "optionnel" +msgstr "" + +#: include/company.inc.php:37 +msgid "non utilisé" +msgstr "" + +#: include/company.inc.php:40 include/company.inc.php:44 +#: include/company.inc.php:47 include/company.inc.php:85 +msgid "Non" +msgstr "" + +#: include/company.inc.php:41 include/company.inc.php:45 +#: include/company.inc.php:48 include/company.inc.php:86 +msgid "Oui" +msgstr "" + +#: include/company.inc.php:97 +msgid "Nom société" +msgstr "" + +#: include/company.inc.php:99 include/stock_cfg.inc.php:69 +#: include/ext/transform/include/template/listing_assujetti_declarant.php:64 +#: include/ext/transform/include/template/listing_assujetti_representative.php:60 +#: include/ajax_mod_stock_repo.php:71 +#: include/template/stock_summary_list.php:42 +msgid "Téléphone" +msgstr "" + +#: include/company.inc.php:101 include/database.item.php:152 +msgid "Fax" +msgstr "" + +#: include/company.inc.php:103 +msgid "Rue " +msgstr "" + +#: include/company.inc.php:105 +msgid "Numéro" +msgstr "" + +#: include/company.inc.php:107 +msgid "Code Postal" +msgstr "" + +#: include/company.inc.php:109 +msgid "Commune" +msgstr "" + +#: include/company.inc.php:111 include/stock_cfg.inc.php:68 +#: include/ajax_mod_stock_repo.php:63 +#: include/template/stock_summary_list.php:41 +msgid "Pays" +msgstr "" + +#: include/company.inc.php:113 +msgid "Numéro de Tva" +msgstr "" + +#: include/company.inc.php:114 +msgid "Utilisation de la compta. analytique" +msgstr "" + +#: include/company.inc.php:115 +msgid "Utilisation des stocks" +msgstr "" + +#: include/company.inc.php:117 +msgid "Utilisation du mode strict " +msgstr "" + +#: include/company.inc.php:118 +msgid "Assujetti à la tva" +msgstr "" + +#: include/company.inc.php:119 +msgid "Suggérer le numéro de pièce justificative" +msgstr "" + +#: include/company.inc.php:120 +msgid "Suggérer la date" +msgstr "" + +#: include/company.inc.php:121 +msgid "Afficher la période comptable pour éviter les erreurs de date" +msgstr "" + +#: include/company.inc.php:122 +msgid "Utilisez des postes comptables alphanumérique" +msgstr "" + +#: include/company.inc.php:123 +msgid "Changer le libellé des détails" +msgstr "" + +#: include/compta_ach.inc.php:77 include/compta_fin.inc.php:114 +#: include/compta_ven.inc.php:86 +msgid "Enregistrement" +msgstr "" + +#: include/compta_ach.inc.php:78 include/compta_fin.inc.php:84 +#: include/compta_ven.inc.php:87 +#: include/ext/amortis/include/class_am_generate.php:214 +msgid "Corriger" +msgstr "" + +#: include/compta_ach.inc.php:221 include/compta_ven.inc.php:237 +#: include/template/detail-action.php:359 +#: include/template/form_ledger_detail.php:107 +#: include/template/predf_ledger_detail.php:57 +#: include/ext/modop/modop_display.php:132 +msgid "Actualiser" +msgstr "" + +#: include/compta_ach.inc.php:223 include/compta_ven.inc.php:239 +msgid "Effacer " +msgstr "" + +#: include/compta_fin.inc.php:83 +msgid "Confirmer" +msgstr "" + +#: include/compta_fin_saldo.inc.php:38 +msgid "Filtre :" +msgstr "" + +#: include/contact.inc.php:50 include/customer.inc.php:51 +#: include/bank.inc.php:49 +msgid "Vous ne pouvez pas enlever de fiche" +msgstr "" + +#: include/contact.inc.php:90 +msgid "Société :" +msgstr "" + +#: include/customer.inc.php:86 +msgid "Inclure les clients sans opération :" +msgstr "" + +#: include/database.item.php:2 include/database.item.php:66 +#: include/database.item.php:196 +msgid "Achat" +msgstr "" + +#: include/database.item.php:2 +msgid "Nouvel achat ou dépense" +msgstr "" + +#: include/database.item.php:3 +msgid "Historique des imputations analytiques" +msgstr "" + +#: include/database.item.php:4 +msgid "Balance simple" +msgstr "" + +#: include/database.item.php:4 +msgid "Balance simple des imputations analytiques" +msgstr "" + +#: include/database.item.php:5 +msgid "Tableau" +msgstr "" + +#: include/database.item.php:5 +msgid "Tableau lié à la comptabilité" +msgstr "" + +#: include/database.item.php:6 +msgid "Balance Analytique/comptabilité" +msgstr "" + +#: include/database.item.php:6 +msgid "Lien entre comptabilité et Comptabilité analytique" +msgstr "" + +#: include/database.item.php:7 +msgid "Balance par groupe" +msgstr "" + +#: include/database.item.php:8 include/template/ledger_detail_ach.php:135 +#: include/template/ledger_detail_ven.php:133 +#: include/template/operation_detail_ach.php:53 +#: include/template/operation_detail_ven.php:45 +#: include/ext/transform/ajax_modify_intervat_assujetti.php:47 +#: include/ext/transform/ajax_modify_intervat_assujetti.php:63 +#: include/ext/transform/include/template/listing_client_display.php:45 +#: include/template/impress_reconciliation_detail.php:19 +msgid "TVA" +msgstr "" + +#: include/database.item.php:8 +msgid "Config. de la tva" +msgstr "" + +#: include/database.item.php:9 include/database.item.php:199 +msgid "Vente" +msgstr "" + +#: include/database.item.php:9 +msgid "Nouvelle vente ou recette" +msgstr "" + +#: include/database.item.php:10 +msgid "Config. Menu" +msgstr "" + +#: include/database.item.php:10 +msgid "Configuration des menus et plugins" +msgstr "" + +#: include/database.item.php:11 +msgid "Suivi fournisseur" +msgstr "" + +#: include/database.item.php:12 include/database.item.php:111 +msgid "Opérations diverses" +msgstr "" + +#: include/database.item.php:12 +msgid "OD analytique" +msgstr "" + +#: include/database.item.php:13 +msgid "Création de rapport" +msgstr "" + +#: include/database.item.php:14 +msgid "saut de ligne" +msgstr "" + +#: include/database.item.php:14 +msgid "Saut de ligne" +msgstr "" + +#: include/database.item.php:15 +msgid "Suivi client" +msgstr "" + +#: include/database.item.php:16 +msgid "Historique stock" +msgstr "" + +#: include/database.item.php:16 +msgid "Historique des mouvement de stock" +msgstr "" + +#: include/database.item.php:17 +msgid "Export Historique" +msgstr "" + +#: include/database.item.php:18 include/database.item.php:19 +msgid "Export Journaux" +msgstr "" + +#: include/database.item.php:20 include/database.item.php:21 +msgid "Export Poste détail" +msgstr "" + +#: include/database.item.php:22 include/database.item.php:23 +msgid "Export Fiche détail" +msgstr "" + +#: include/database.item.php:24 include/database.item.php:25 +msgid "Export Fiche balance" +msgstr "" + +#: include/database.item.php:26 include/database.item.php:27 +msgid "Export report" +msgstr "" + +#: include/database.item.php:28 include/database.item.php:29 +msgid "Export Fiche" +msgstr "" + +#: include/database.item.php:30 include/database.item.php:31 +msgid "Export Grand Livre" +msgstr "" + +#: include/database.item.php:32 +msgid "Export Sécurité" +msgstr "" + +#: include/database.item.php:33 include/database.item.php:35 +msgid "Export Comptabilité analytique" +msgstr "" + +#: include/database.item.php:34 +msgid "Export Comptabilité analytique balance simple" +msgstr "" + +#: include/database.item.php:36 include/database.item.php:37 +msgid "Export Comptabilité analytique balance double" +msgstr "" + +#: include/database.item.php:38 include/database.item.php:39 +msgid "Export Balance comptable" +msgstr "" + +#: include/database.item.php:40 +msgid "Export Tableau Analytique" +msgstr "" + +#: include/database.item.php:41 +msgid "Export Historique Compt. Analytique" +msgstr "" + +#: include/database.item.php:42 +msgid "Export Balance groupe analytique" +msgstr "" + +#: include/database.item.php:43 +msgid "Export Bilan" +msgstr "" + +#: include/database.item.php:44 +msgid "Impression Grand-Livre" +msgstr "" + +#: include/database.item.php:45 +msgid "Export définition d'un raport" +msgstr "" + +#: include/database.item.php:46 +msgid "Export Action Gestion" +msgstr "" + +#: include/database.item.php:47 +msgid "Export Historique mouvement stock" +msgstr "" + +#: include/database.item.php:48 +msgid "Export Résumé list stock" +msgstr "" + +#: include/database.item.php:49 +msgid "Plan Compt. analytique" +msgstr "" + +#: include/database.item.php:49 +msgid "Plan analytique" +msgstr "" + +#: include/database.item.php:50 +msgid "Groupe analytique" +msgstr "" + +#: include/database.item.php:51 +msgid "Liste des contacts" +msgstr "" + +#: include/database.item.php:52 include/ajax_navigator.php:102 +msgid "Extension" +msgstr "" + +#: include/database.item.php:52 +msgid "Extensions (plugins)" +msgstr "" + +#: include/database.item.php:53 +msgid "Ecriture prédefinie" +msgstr "" + +#: include/database.item.php:53 +msgid "Gestion des opérations prédéfinifies" +msgstr "" + +#: include/database.item.php:54 +msgid "Opérations Diverses" +msgstr "" + +#: include/database.item.php:54 +msgid "Nouvelle opérations diverses" +msgstr "" + +#: include/database.item.php:55 +msgid "Nouvel extrait" +msgstr "" + +#: include/database.item.php:55 +msgid "Nouvel extrait bancaire" +msgstr "" + +#: include/database.item.php:57 include/ext/coprop/index.php:48 +#: include/card_attr.inc.php:98 include/menu.inc.php:118 +msgid "Paramètre" +msgstr "" + +#: include/database.item.php:57 +msgid "Module paramètre" +msgstr "" + +#: include/database.item.php:58 +msgid "Catégorie de documents" +msgstr "" + +#: include/database.item.php:58 +msgid "Config. catégorie de documents" +msgstr "" + +#: include/database.item.php:59 +msgid "Lettrage par Fiche" +msgstr "" + +#: include/database.item.php:59 +msgid "Lettrage par fiche" +msgstr "" + +#: include/database.item.php:60 +msgid "Historique achat" +msgstr "" + +#: include/database.item.php:61 +msgid "Historique opérations diverses" +msgstr "" + +#: include/database.item.php:62 +msgid "Impression du détail d'un poste comptable" +msgstr "" + +#: include/database.item.php:63 include/ext/amortis/index.php:53 +msgid "Rapport" +msgstr "" + +#: include/database.item.php:63 +msgid "Impression de rapport" +msgstr "" + +#: include/database.item.php:64 include/class_acc_ledger.php:342 +msgid "Grand Livre" +msgstr "" + +#: include/database.item.php:64 +msgid "Impression du grand livre" +msgstr "" + +#: include/database.item.php:65 +msgid "Impression des balances comptables" +msgstr "" + +#: include/database.item.php:66 +msgid "Menu achat" +msgstr "" + +#: include/database.item.php:67 +msgid "Menu et profil" +msgstr "" + +#: include/database.item.php:67 +msgid "Menu " +msgstr "" + +#: include/database.item.php:68 include/database.item.php:114 +#: include/ajax_get_profile.php:98 include/template/action_other_action.php:22 +#: include/template/menu_detail.php:18 include/menu.inc.php:131 +msgid "Impression" +msgstr "" + +#: include/database.item.php:68 +msgid "Menu impression" +msgstr "" + +#: include/database.item.php:69 +msgid "Information Banque" +msgstr "" + +#: include/database.item.php:70 +msgid "Grand'Livre" +msgstr "" + +#: include/database.item.php:70 +msgid "Grand livre analytique" +msgstr "" + +#: include/database.item.php:71 +msgid "Gestion" +msgstr "" + +#: include/database.item.php:71 +msgid "Module gestion" +msgstr "" + +#: include/database.item.php:73 include/user_menu.php:115 +#: include/user_menu.php:122 +msgid "Accueil" +msgstr "" + +#: include/database.item.php:74 +msgid "Comptabilité" +msgstr "" + +#: include/database.item.php:74 +msgid "Module comptabilité" +msgstr "" + +#: include/database.item.php:75 include/database.item.php:175 +#: include/ext/tva/form_parameter.php:111 +msgid "Divers" +msgstr "" + +#: include/database.item.php:75 +msgid "Paramètres divers" +msgstr "" + +#: include/database.item.php:76 +msgid "Sortie" +msgstr "" + +#: include/database.item.php:77 include/param_sec.inc.php:271 +#: include/template/action_search.php:99 +#: include/template/user_sec_profile.php:35 +msgid "Profil" +msgstr "" + +#: include/database.item.php:77 +msgid "Configuration profil" +msgstr "" + +#: include/database.item.php:78 +msgid "Config. poste comptable de base" +msgstr "" + +#: include/database.item.php:79 +msgid "Liste,Balance,Historique par fiche" +msgstr "" + +#: include/database.item.php:81 +msgid "Configuration étiquette" +msgstr "" + +#: include/database.item.php:81 +msgid "Configuration des tags" +msgstr "" + +#: include/database.item.php:82 +msgid "Balance croisée double" +msgstr "" + +#: include/database.item.php:82 +msgid "Balance double croisées des imputations analytiques" +msgstr "" + +#: include/database.item.php:83 +msgid "Sociétés" +msgstr "" + +#: include/database.item.php:83 +msgid "Parametre societe" +msgstr "" + +#: include/database.item.php:84 +msgid "Gestion des périodes" +msgstr "" + +#: include/database.item.php:85 +msgid "Vérification " +msgstr "" + +#: include/database.item.php:85 +msgid "Vérification de la comptabilité" +msgstr "" + +#: include/database.item.php:86 +msgid "Ecriture Ouverture" +msgstr "" + +#: include/database.item.php:86 +msgid "Ecriture d'ouverture" +msgstr "" + +#: include/database.item.php:87 +msgid "Config. modèle de document" +msgstr "" + +#: include/database.item.php:88 +msgid "journaux" +msgstr "" + +#: include/database.item.php:88 +msgid "Configuration des journaux" +msgstr "" + +#: include/database.item.php:89 +msgid "Sécurité" +msgstr "" + +#: include/database.item.php:89 +msgid "configuration de la sécurité" +msgstr "" + +#: include/database.item.php:90 +msgid "Attribut de fiche" +msgstr "" + +#: include/database.item.php:90 +msgid "Gestion des attributs de fiches " +msgstr "" + +#: include/database.item.php:91 +msgid "Etat des stock" +msgstr "" + +#: include/database.item.php:92 +msgid "Modification Stocks" +msgstr "" + +#: include/database.item.php:92 +msgid "Modification des stocks (inventaire)" +msgstr "" + +#: include/database.item.php:93 +msgid "Histo. Changement" +msgstr "" + +#: include/database.item.php:93 +msgid "Liste des changements manuels des stocks" +msgstr "" + +#: include/database.item.php:94 +msgid "Navigateur" +msgstr "" + +#: include/database.item.php:94 +msgid "Menu simplifié pour retrouver rapidement un menu" +msgstr "" + +#: include/database.item.php:97 include/database.item.php:104 +#: include/template/ledger_detail_bottom.php:18 +msgid "Rapprochement" +msgstr "" + +#: include/database.item.php:97 +msgid "Rapprochement bancaire" +msgstr "" + +#: include/database.item.php:98 +msgid "Soldes" +msgstr "" + +#: include/database.item.php:98 +msgid "Solde des comptes en banques, caisse..." +msgstr "" + +#: include/database.item.php:99 +msgid "Lettrage par Poste" +msgstr "" + +#: include/database.item.php:99 +msgid "lettrage par poste comptable" +msgstr "" + +#: include/database.item.php:100 +msgid "Balance par catégorie de fiche" +msgstr "" + +#: include/database.item.php:101 +msgid "Plan Comptable" +msgstr "" + +#: include/database.item.php:101 +msgid "Config. du plan comptable" +msgstr "" + +#: include/database.item.php:102 +msgid "Historique vente" +msgstr "" + +#: include/database.item.php:102 +msgid "Historique des ventes" +msgstr "" + +#: include/database.item.php:103 +msgid "Historique financier" +msgstr "" + +#: include/database.item.php:104 +msgid "Impression des rapprochements" +msgstr "" + +#: include/database.item.php:105 +msgid "Bilan" +msgstr "" + +#: include/database.item.php:105 +msgid "Impression de bilan" +msgstr "" + +#: include/database.item.php:106 +msgid "Configuration des dépôts" +msgstr "" + +#: include/database.item.php:106 +msgid "Configuration dépôts" +msgstr "" + +#: include/database.item.php:107 +msgid "Stock" +msgstr "" + +#: include/database.item.php:108 +#: include/ext/import_account/include/template/input_file.php:22 +#: include/ext/import_account/include/template/test_file.php:23 +#: include/ext/import_account/include/template/test_operation.php:23 +#: include/template/fiche_def_input.php:6 +msgid "Catégorie de fiche" +msgstr "" + +#: include/database.item.php:108 +msgid "Gestion catégorie de fiche" +msgstr "" + +#: include/database.item.php:109 +msgid "Configuration de catégorie de fiches" +msgstr "" + +#: include/database.item.php:110 +msgid "Etat des documents" +msgstr "" + +#: include/database.item.php:111 +msgid "Menu opérations diverses" +msgstr "" + +#: include/database.item.php:112 +msgid "Impression Journaux" +msgstr "" + +#: include/database.item.php:112 +msgid "Impression des journaux" +msgstr "" + +#: include/database.item.php:113 +msgid "Vente / Recette" +msgstr "" + +#: include/database.item.php:113 +msgid "Menu ventes et recettes" +msgstr "" + +#: include/database.item.php:114 +msgid "Impression compta. analytique" +msgstr "" + +#: include/database.item.php:115 +msgid "Compta Analytique" +msgstr "" + +#: include/database.item.php:115 +msgid "Module comptabilité analytique" +msgstr "" + +#: include/database.item.php:116 +msgid "Tableau de bord" +msgstr "" + +#: include/database.item.php:117 +msgid "Avancé" +msgstr "" + +#: include/database.item.php:117 +msgid "Menu avancé" +msgstr "" + +#: include/database.item.php:118 +msgid "Favori" +msgstr "" + +#: include/database.item.php:118 +msgid "Raccourci vers vos menus préférés" +msgstr "" + +#: include/database.item.php:119 +msgid "Trésorerie" +msgstr "" + +#: include/database.item.php:119 +msgid "Menu Financier" +msgstr "" + +#: include/database.item.php:120 +msgid "Liste Suivi" +msgstr "" + +#: include/database.item.php:120 +msgid "Document de suivi sous forme de liste" +msgstr "" + +#: include/database.item.php:121 +msgid "Moyen de paiement" +msgstr "" + +#: include/database.item.php:121 +msgid "Config. des méthodes de paiement" +msgstr "" + +#: include/database.item.php:122 +msgid "Administration" +msgstr "" + +#: include/database.item.php:122 +msgid "Suivi administration, banque" +msgstr "" + +#: include/database.item.php:123 +msgid "Prévision" +msgstr "" + +#: include/database.item.php:124 +msgid "Export opérations rapprochées" +msgstr "" + +#: include/database.item.php:124 +msgid "Export opérations rapprochées en CSV" +msgstr "" + +#: include/database.item.php:125 html/user_login.php:96 +msgid "Administrateur" +msgstr "" + +#: include/database.item.php:125 +msgid "Suivi des gérants, administrateurs et salariés" +msgstr "" + +#: include/database.item.php:126 include/ajax_get_menu_detail.php:91 +msgid "Menu par défaut" +msgstr "" + +#: include/database.item.php:126 +msgid "Configuration des menus par défaut" +msgstr "" + +#: include/database.item.php:127 +msgid "Agenda" +msgstr "" + +#: include/database.item.php:130 +msgid "Prix vente" +msgstr "" + +#: include/database.item.php:131 +msgid "Prix achat" +msgstr "" + +#: include/database.item.php:132 +msgid "Durée Amortissement" +msgstr "" + +#: include/database.item.php:133 +msgid "Montant initial" +msgstr "" + +#: include/database.item.php:134 +msgid "TVA non déductible" +msgstr "" + +#: include/database.item.php:135 +msgid "TVA non déductible récupérable par l'impôt" +msgstr "" + +#: include/database.item.php:136 +msgid "Partie fiscalement non déductible" +msgstr "" + +#: include/database.item.php:137 +msgid "Dépense charge du grant (partie privé) " +msgstr "" + +#: include/database.item.php:138 +msgid "Compte bancaire" +msgstr "" + +#: include/database.item.php:139 include/lettering.account.inc.php:65 +#: include/lettering.card.inc.php:69 include/lettering.gestion.inc.php:28 +#: include/ext/tools/include/export_operation.inc.php:32 +msgid "Date début" +msgstr "" + +#: include/database.item.php:141 include/template/ledger_detail_ach.php:122 +#: include/template/ledger_detail_ven.php:127 +#: include/template/operation_detail_ach.php:39 +#: include/template/operation_detail_ven.php:40 +msgid "Taux TVA" +msgstr "" + +#: include/database.item.php:142 +msgid "Nom de la banque" +msgstr "" + +#: include/database.item.php:144 +msgid "Personne de contact " +msgstr "" + +#: include/database.item.php:145 +msgid "numéro de tva " +msgstr "" + +#: include/database.item.php:146 +msgid "Adresse " +msgstr "" + +#: include/database.item.php:147 +msgid "pays " +msgstr "" + +#: include/database.item.php:148 +msgid "téléphone " +msgstr "" + +#: include/database.item.php:149 +msgid "email " +msgstr "" + +#: include/database.item.php:151 include/stock_cfg.inc.php:67 +#: include/ext/transform/include/template/listing_assujetti_declarant.php:40 +#: include/ext/transform/include/template/listing_assujetti_representative.php:42 +#: include/ajax_mod_stock_repo.php:55 +#: include/template/stock_summary_list.php:40 +msgid "Ville" +msgstr "" + +#: include/database.item.php:153 +msgid "GSM" +msgstr "" + +#: include/database.item.php:154 +msgid "code postal" +msgstr "" + +#: include/database.item.php:155 +msgid "Numero de client" +msgstr "" + +#: include/database.item.php:156 +msgid "Prénom" +msgstr "" + +#: include/database.item.php:157 +msgid "Contrepartie pour TVA récup par impot" +msgstr "" + +#: include/database.item.php:158 +msgid "Contrepartie pour TVA non Ded." +msgstr "" + +#: include/database.item.php:159 +msgid "Contrepartie pour dépense à charge du gérant" +msgstr "" + +#: include/database.item.php:160 +msgid "Contrepartie pour dépense fiscal. non déd." +msgstr "" + +#: include/database.item.php:162 +msgid "Date Fin" +msgstr "" + +#: include/database.item.php:163 +msgid "Gestion stock" +msgstr "" + +#: include/database.item.php:164 +msgid "Société" +msgstr "" + +#: include/database.item.php:167 +msgid "Document Interne" +msgstr "" + +#: include/database.item.php:168 +msgid "Bons de commande client" +msgstr "" + +#: include/database.item.php:169 +msgid "Bon de commande Fournisseur" +msgstr "" + +#: include/database.item.php:170 +#: include/ext/invoicing/include/invoice_to_zip.inc.php:64 +msgid "Facture" +msgstr "" + +#: include/database.item.php:171 +msgid "Lettre de rappel" +msgstr "" + +#: include/database.item.php:172 +msgid "Courrier" +msgstr "" + +#: include/database.item.php:173 +msgid "Proposition" +msgstr "" + +#: include/database.item.php:174 +msgid "Email" +msgstr "" + +#: include/database.item.php:176 +msgid "Note de frais" +msgstr "" + +#: include/database.item.php:177 +msgid "Réception commande Fournisseur" +msgstr "" + +#: include/database.item.php:178 +msgid "Réception commande Client" +msgstr "" + +#: include/database.item.php:179 +msgid "Réception magazine" +msgstr "" + +#: include/database.item.php:182 +msgid "Ajout de fiche" +msgstr "" + +#: include/database.item.php:183 +msgid "Création, modification et effacement de fiche" +msgstr "" + +#: include/database.item.php:184 +msgid "création, modification et effacement de catégorie de fiche" +msgstr "" + +#: include/database.item.php:185 +msgid "Effacer les documents du suivi" +msgstr "" + +#: include/database.item.php:186 +msgid "Voir les documents du suivi" +msgstr "" + +#: include/database.item.php:187 +msgid "Modifier le type de document" +msgstr "" + +#: include/database.item.php:190 include/database.item.php:192 +msgid "Caisse" +msgstr "" + +#: include/database.item.php:191 +msgid "Paiement électronique" +msgstr "" + +#: include/database.item.php:193 +msgid "Par gérant ou administrateur" +msgstr "" + +#: include/database.item.php:197 include/user_menu.php:152 +msgid "Financier" +msgstr "" + +#: include/database.item.php:198 +msgid "Opération Diverses" +msgstr "" + +#: include/database.item.php:202 +msgid "" +"Concerne tous les achats, factures reçues, notes de crédit reçues et notes " +"de frais" +msgstr "" + +#: include/database.item.php:203 +msgid "" +"Concerne tous les mouvements financiers (comptes en banque, caisses, visa...)" +msgstr "" + +#: include/database.item.php:204 +msgid "" +"Concerne toutes les opérations comme les amortissements, les comptes TVA, ..." +msgstr "" + +#: include/database.item.php:205 +msgid "Concerne toutes les ventes, notes de crédit envoyées" +msgstr "" + +#: include/doc_state.inc.php:57 +msgid "Ferme l'action" +msgstr "" + +#: include/dossier.inc.php:49 +msgid "Le nom du dossier est vide" +msgstr "" + +#: include/dossier.inc.php:56 +msgid "Désolé vous devez migrer ce modèle en unicode" +msgstr "" + +#: include/dossier.inc.php:58 +msgid "le modele " +msgstr "" + +#: include/dossier.inc.php:58 +msgid " doit être migré en unicode." +msgstr "" + +#: include/dossier.inc.php:59 +msgid "" +"Pour le passer en unicode, faites-en un backup puis restaurez le fichier reçu" +msgstr "" + +#: include/dossier.inc.php:76 +msgid "" +"Desole la creation de ce dossier a echoue,\n" +" la cause la plus probable est deux fois le même nom de dossier" +msgstr "" + +#: include/dossier.inc.php:94 +msgid " est une année invalide" +msgstr "" + +#: include/dossier.inc.php:111 +msgid " Base de donnée " +msgstr "" + +#: include/dossier.inc.php:112 include/dossier.inc.php:366 +msgid "est accèdée, déconnectez-vous d'abord" +msgstr "" + +#: include/dossier.inc.php:159 +msgid "Rafraîchir" +msgstr "" + +#: include/dossier.inc.php:160 include/anc_group.inc.php:81 +msgid "Ajouter" +msgstr "" + +#: include/dossier.inc.php:214 +msgid "Dossier inexistant" +msgstr "" + +#: include/dossier.inc.php:225 +msgid "Backup" +msgstr "" + +#: include/dossier.inc.php:254 +msgid "pas de modèle disponible" +msgstr "" + +#: include/dossier.inc.php:275 +msgid "Nom du dossier" +msgstr "" + +#: include/dossier.inc.php:281 +msgid "Modèle" +msgstr "" + +#: include/dossier.inc.php:286 +msgid "Creation Dossier" +msgstr "" + +#: include/dossier.inc.php:315 include/template/list_mod_payment.php:79 +msgid "Modifie" +msgstr "" + +#: include/dossier.inc.php:329 +msgid "Etes vous sûr et certain de vouloir effacer " +msgstr "" + +#: include/dossier.inc.php:332 +msgid "Cochez la case si vous êtes sûr de vouloir effacer ce dossier" +msgstr "" + +#: include/dossier.inc.php:345 +msgid "Désolé, vous n'avez pas coché la case" +msgstr "" + +#: include/dossier.inc.php:355 +msgid "inexistant" +msgstr "" + +#: include/dossier.inc.php:365 +msgid "Base de donnée " +msgstr "" + +#: include/export_fiche_balance_csv.php:140 include/fiche.inc.php:438 +msgid "ref" +msgstr "" + +#: include/export_fiche_balance_csv.php:141 include/fiche.inc.php:439 +#: include/template/letter_all.php:29 +msgid "Interne" +msgstr "" + +#: include/export_fiche_balance_csv.php:142 include/fiche.inc.php:440 +msgid "Comm" +msgstr "" + +#: include/export_fiche_balance_csv.php:144 +#: include/template/anc_balance_group.php:50 +msgid "Crébit" +msgstr "" + +#: include/export_fiche_balance_csv.php:145 include/fiche.inc.php:442 +msgid "Prog." +msgstr "" + +#: include/export_fiche_balance_csv.php:147 include/fiche.inc.php:443 +msgid "Let." +msgstr "" + +#: include/export_fiche_balance_csv.php:148 +msgid "Diff Let." +msgstr "" + +#: include/export_ledger_csv.php:49 +msgid "Options invalides" +msgstr "" + +#: include/extension_choice.inc.php:37 +msgid "Aucune extension disponible" +msgstr "" + +#: include/extension_get.inc.php:38 +msgid "Ce fichier n'existe pas " +msgstr "" + +#: include/extension.inc.php:41 +msgid "Détail extension" +msgstr "" + +#: include/extension.inc.php:49 include/ajax_plugin_detail.php:29 +msgid "Nouvelle extension" +msgstr "" + +#: include/fiche_def.inc.php:65 +msgid "Voulez-vous modifier ?" +msgstr "" + +#: include/fiche_def.inc.php:67 +msgid "Attention, ne changer pas la signification de ce poste." +msgstr "" + +#: include/fiche_def.inc.php:68 +msgid "par exemple ne pas changer Client par fournisseur" +msgstr "" + +#: include/fiche_def.inc.php:69 +msgid "" +"sinon le programme fonctionnera mal, utiliser uniquement des chiffres pour " +"la classe de base ou rien" +msgstr "" + +#: include/fiche.inc.php:63 include/ext/rapport_avance/index.php:58 +msgid "Liste" +msgstr "" + +#: include/fiche.inc.php:65 +msgid "Historique Lettré" +msgstr "" + +#: include/fiche.inc.php:66 +msgid "Historique Lettré et montants différents" +msgstr "" + +#: include/fiche.inc.php:67 +msgid "Historique non Lettré" +msgstr "" + +#: include/fiche.inc.php:68 +msgid "Résumé" +msgstr "" + +#: include/fiche.inc.php:70 +msgid "Balance non soldée" +msgstr "" + +#: include/fiche.inc.php:175 +msgid "Fiche non effacées" +msgstr "" + +#: include/fiche.inc.php:176 +msgid " Ces fiches n'ont pas été effacées " +msgstr "" + +#: include/fiche.inc.php:305 +msgid "Aucune fiche trouvée" +msgstr "" + +#: include/fiche.inc.php:312 +msgid "Filtre rapide:" +msgstr "" + +#: include/forecast.inc.php:241 +msgid "Ajout prévision" +msgstr "" + +#: include/forecast.inc.php:241 +msgid "Ajout d'une prévision" +msgstr "" + +#: include/forecast.inc.php:360 +msgid "Modifier nom ou catégories" +msgstr "" + +#: include/forecast.inc.php:361 +msgid "Modifier éléments" +msgstr "" + +#: include/forecast.inc.php:363 +msgid "Vous confirmez l\\' effacement" +msgstr "" + +#: include/forecast.inc.php:364 +msgid "Cloner" +msgstr "" + +#: include/forecast.inc.php:364 +msgid "Vous confirmez le clonage " +msgstr "" + +#: include/forecast.inc.php:373 +msgid "Erreur : " +msgstr "" + +#: include/forecast.inc.php:373 +msgid "Vous devez corriger" +msgstr "" + +#: include/impress_bilan.inc.php:64 +msgid "Verification comptabilite" +msgstr "" + +#: include/impress_bilan.inc.php:89 +msgid "" +" Attention : si le bilan n'est pas équilibré.
" +"Vérifiez
    \n" +"
  • L'affectation du résultat est fait
  • \n" +"
  • Vos comptes actifs ont un solde débiteur (sauf les comptes dit " +"inversés)
  • \n" +"
  • les comptes passifs ont un solde créditeur (sauf les comptes dit " +"inversés)
  • \n" +"
\n" +" Utilisez la balance des comptes pour vérifier.
" +msgstr "" + +#: include/impress_gl_comptes.inc.php:63 include/impress_poste.inc.php:94 +msgid "Jusque " +msgstr "" + +#: include/impress_gl_comptes.inc.php:80 +msgid "Depuis le poste" +msgstr "" + +#: include/impress_gl_comptes.inc.php:84 +msgid "Jusqu'au poste" +msgstr "" + +#: include/impress_rec.inc.php:79 include/balance.inc.php:175 +msgid "Visualisation" +msgstr "" + +#: include/lettering.account.inc.php:47 +msgid "Lettrage pour le poste comptable " +msgstr "" + +#: include/lettering.account.inc.php:59 include/lettering.account.inc.php:72 +#: include/lettering.account.inc.php:116 include/lettering.card.inc.php:62 +#: include/lettering.card.inc.php:76 include/lettering.gestion.inc.php:74 +msgid "Date malformée, désolé" +msgstr "" + +#: include/lettering.account.inc.php:77 include/lettering.card.inc.php:82 +#: include/lettering.gestion.inc.php:34 +#: include/ext/tools/include/export_operation.inc.php:33 +msgid "Date fin" +msgstr "" + +#: include/lettering.account.inc.php:84 include/lettering.card.inc.php:89 +#: include/lettering.gestion.inc.php:41 +msgid "Toutes opérations" +msgstr "" + +#: include/lettering.account.inc.php:85 include/lettering.card.inc.php:90 +#: include/lettering.gestion.inc.php:42 +msgid "Opérations lettrées" +msgstr "" + +#: include/lettering.account.inc.php:86 include/lettering.card.inc.php:91 +msgid "Opérations lettrées montants différents" +msgstr "" + +#: include/lettering.account.inc.php:87 include/lettering.card.inc.php:92 +#: include/lettering.gestion.inc.php:43 +msgid "Opérations NON lettrées" +msgstr "" + +#: include/lettering.card.inc.php:50 +msgid "Lettrage pour la fiche " +msgstr "" + +#: include/manager.inc.php:88 +msgid "Inclure les employés sans opération :" +msgstr "" + +#: include/operation_ods_new.inc.php:93 +#: include/ext/modop/modop_display.php:165 +#: include/ext/coprop/include/appel_fond.inc.php:87 +#: include/ext/coprop/include/appel_fond.inc.php:156 +#: include/ext/coprop/include/class_coprop_appel_fond.php:204 +#: include/anc_od.inc.php:151 +msgid "Difference" +msgstr "" + +#: include/operation_ods_new.inc.php:102 +#: include/ext/modop/modop_display.php:160 +#: include/ext/coprop/include/appel_fond.inc.php:82 +#: include/ext/coprop/include/appel_fond.inc.php:151 +#: include/ext/coprop/include/class_coprop_appel_fond.php:199 +msgid "Ajout d'une ligne" +msgstr "" + +#: include/param_pcmn.inc.php:51 include/ext/tva/form_parameter.php:116 +#: include/ajax_boxcard_search.php:66 +msgid "Poste comptable" +msgstr "" + +#: include/param_pcmn.inc.php:55 +msgid "Parent" +msgstr "" + +#: include/param_pcmn.inc.php:57 +msgid "Type " +msgstr "" + +#: include/payment_middle.inc.php:55 include/anc_pa.inc.php:100 +#: include/cfgledger.inc.php:124 +msgid "Efface" +msgstr "" + +#: include/payment_middle.inc.php:56 include/payment_middle.inc.php:104 +msgid "Retour sans sauver" +msgstr "" + +#: include/payment_middle.inc.php:103 include/anc_pa.inc.php:52 +#: include/anc_pa.inc.php:99 +msgid "Enregistre" +msgstr "" + +#: include/periode.inc.php:45 include/periode.inc.php:56 +msgid "Valeurs invalides" +msgstr "" + +#: include/report.inc.php:97 +msgid "Définition" +msgstr "" + +#: include/report.inc.php:105 include/report.inc.php:120 +#: include/report.inc.php:144 +msgid "Les lignes vides seront effacées" +msgstr "" + +#: include/report.inc.php:116 +msgid "Importer ce rapport" +msgstr "" + +#: include/report.inc.php:133 +msgid "Mise a jour" +msgstr "" + +#: include/report.inc.php:134 +msgid "Effacement" +msgstr "" + +#: include/stock_cfg.inc.php:37 +msgid "Vous n'utilisez pas de gestion de stock" +msgstr "" + +#: include/supplier.inc.php:90 +msgid "Inclure les fournisseurs sans opération :" +msgstr "" + +#: include/user.inc.php:74 +msgid "Ajout d'utilisateur" +msgstr "" + +#: include/user_menu.php:110 include/user_menu.php:120 +msgid "Utilisateurs" +msgstr "" + +#: include/user_menu.php:110 include/user_menu.php:120 +msgid "Gestion des utilisateurs" +msgstr "" + +#: include/user_menu.php:111 +msgid "Dossiers" +msgstr "" + +#: include/user_menu.php:111 +msgid "Gestion des dossiers" +msgstr "" + +#: include/user_menu.php:112 +msgid "Modèles" +msgstr "" + +#: include/user_menu.php:112 +msgid "Gestion des modèles" +msgstr "" + +#: include/user_menu.php:113 +msgid "Restaure" +msgstr "" + +#: include/user_menu.php:113 +msgid "Restaure une base de données" +msgstr "" + +#: include/user_menu.php:114 include/user_menu.php:121 +msgid "Audit" +msgstr "" + +#: include/user_menu.php:114 include/user_menu.php:121 +msgid "Utilisateurs qui se sont connectés" +msgstr "" + +#: include/user_menu.php:147 +msgid " Hors Bilan" +msgstr "" + +#: include/user_menu.php:148 +msgid " Immobilisé" +msgstr "" + +#: include/user_menu.php:149 +msgid "Actif a un an au plus" +msgstr "" + +#: include/user_menu.php:150 +msgid "Stock et commande" +msgstr "" + +#: include/user_menu.php:151 +msgid "Compte tiers" +msgstr "" + +#: include/user_menu.php:153 +msgid "Charges" +msgstr "" + +#: include/user_menu.php:154 +msgid "Produits" +msgstr "" + +#: include/user_menu.php:155 include/user_menu.php:156 +msgid "Hors Comptabilité" +msgstr "" + +#: include/template/account_result.php:6 include/template/card_result.php:6 +msgid "Résultats" +msgstr "" + +#: include/template/account_result.php:59 +msgid "Nombre d'enregistrements" +msgstr "" + +#: include/template/account_search.php:5 +msgid "Partie du poste comptable ou du libellé" +msgstr "" + +#: include/template/action_button.php:35 +msgid "Ajout Action" +msgstr "" + +#: include/template/action_search.php:39 +msgid "Recherche avancée" +msgstr "" + +#: include/template/action_search.php:67 include/template/tag_choose.php:5 +msgid "Etiquette" +msgstr "" + +#: include/template/action_search.php:94 include/template/detail-action.php:65 +#: include/template/action_search_result.php:53 +msgid "Destinataire" +msgstr "" + +#: include/template/action_search.php:103 +#: include/template/detail-action.php:105 +msgid "Etat" +msgstr "" + +#: include/template/action_search.php:107 +msgid "Exclure Etat" +msgstr "" + +#: include/template/action_search.php:110 +#, php-format +msgid "contenant le mot" +msgstr "" + +#: include/template/action_search.php:114 +#: include/template/document_mod_change.php:25 +msgid "Type de document" +msgstr "" + +#: include/template/action_search.php:119 +#, php-format +msgid "Après le " +msgstr "" + +#: include/template/action_search.php:126 +msgid "Avant le" +msgstr "" + +#: include/template/action_search.php:133 +msgid "Uniquement actions internes" +msgstr "" + +#: include/template/category_of_card.php:17 +msgid "Nom de la catégorie de fiche" +msgstr "" + +#: include/template/category_of_card.php:21 +#: include/template/fiche_def_input.php:18 +msgid "Classe de base" +msgstr "" + +#: include/template/category_of_card.php:28 +msgid "Création automatique du poste comptable" +msgstr "" + +#: include/template/category_of_card.php:32 +msgid "" +"Si vous utilisez la création automatique de poste, chaque nouvelle fiche de " +"cette catégorie aura son propre poste comptable. Ce poste comptable sera la " +"classe de base augmenté de 1." +msgstr "" + +#: include/template/category_of_card.php:35 +msgid "" +"Si vous n'utilisez pas la création automatique, toutes les nouvelles fiches " +"auront par défaut le même poste comptable. Ce poste comptable par défaut est " +"la classe de base." +msgstr "" + +#: include/template/category_of_card.php:38 +msgid " A moins qu'en créant la fiche, vous forcez un autre poste comptable" +msgstr "" + +#: include/template/dashboard.php:9 include/ajax_calendar_zoom.php:23 +msgid "Calendrier" +msgstr "" + +#: include/template/dashboard.php:35 +msgid "Aucune periode par defaut" +msgstr "" + +#: include/template/dashboard.php:59 +msgid "Aucun rapport défini" +msgstr "" + +#: include/template/dashboard.php:60 +msgid "Cliquez ici pour mettre à jour vos préférences" +msgstr "" + +#: include/template/dashboard.php:185 +msgid "Pense-Bête" +msgstr "" + +#: include/template/dashboard.php:291 +msgid "Dernières opérations" +msgstr "" + +#: include/template/dashboard.php:338 include/template/detail-action.php:227 +#: include/template/action_search_result.php:50 +#: include/template/dashboard.php:191 +msgid "Titre" +msgstr "" + +#: include/template/detail-action.php:6 +msgid "Informations générales" +msgstr "" + +#: include/template/detail-action.php:19 +msgid "N° document" +msgstr "" + +#: include/template/detail-action.php:27 +msgid "Reference" +msgstr "" + +#: include/template/detail-action.php:45 +msgid "Heure" +msgstr "" + +#: include/template/detail-action.php:55 +msgid "Date limite" +msgstr "" + +#: include/template/detail-action.php:95 +#: include/template/impress_cat_card.php:10 +#: include/ext/transform/include/template/listing_assujetti_representative.php:71 +#: include/template/action_search_result.php:56 include/card_attr.inc.php:96 +#: include/template/menu_detail.php:51 include/menu.inc.php:115 +msgid "Type" +msgstr "" + +#: include/template/detail-action.php:115 +msgid "Priorité" +msgstr "" + +#: include/template/detail-action.php:125 +msgid "Affecté" +msgstr "" + +#: include/template/detail-action.php:156 +#, php-format +msgid "Voulez-vous effacer cette opération " +msgstr "" + +#: include/template/detail-action.php:185 +#, php-format +msgid "Voulez-vous effacer cette action " +msgstr "" + +#: include/template/detail-action.php:232 +#: include/template/form_ledger_fin.php:43 +#: include/ext/modop/template_ledger_fin.php:19 +#: include/ext/transform/ajax_modify_intervat_assujetti.php:71 +#: include/ext/transform/include/template/listing_client_display.php:48 +msgid "Commentaire" +msgstr "" + +#: include/template/detail-action.php:240 +#, php-format +msgid "Voulez-vous effacer ce commentaire " +msgstr "" + +#: include/template/detail-action.php:290 +msgid "Détail des articles" +msgstr "" + +#: include/template/detail-action.php:306 +msgid "prix unitaire" +msgstr "" + +#: include/template/detail-action.php:308 +msgid "Code TVA" +msgstr "" + +#: include/template/detail-action.php:336 +msgid "Montrer les détails" +msgstr "" + +#: include/template/detail-action.php:337 +msgid "Cacher les détails" +msgstr "" + +#: include/template/detail-action.php:382 +#: include/ext/invoicing/include/invoicing.inc.php:95 +msgid "Document à générer" +msgstr "" + +#: include/template/detail-action.php:393 +msgid "Pièces attachées" +msgstr "" + +#: include/template/detail-action.php:426 +#, php-format +msgid "Voulez-vous effacer le document" +msgstr "" + +#: include/template/detail-action.php:446 +msgid "Je ne peux pas ajouter de fichier" +msgstr "" + +#: include/template/document_mod_change.php:45 +msgid "Préfixe" +msgstr "" + +#: include/template/document_mod_change.php:56 +msgid "numéro actuel" +msgstr "" + +#: include/template/document_mod_change.php:71 +msgid "Prochain numéro" +msgstr "" + +#: include/template/fiche_def_input.php:23 +msgid "" +"Création automatique du poste comptable uniquement s'il n\\y a qu'un seul " +"poste" +msgstr "" + +#: include/template/forecast_cat.php:11 +msgid "Catégories" +msgstr "" + +#: include/template/forecast_cat.php:14 +msgid "Ordre" +msgstr "" + +#: include/template/forecast-detail.php:12 +msgid "Formules" +msgstr "" + +#: include/template/forecast-detail.php:13 +msgid "ou QuickCode" +msgstr "" + +#: include/template/forecast-detail.php:16 +msgid "Débit ou Crédit" +msgstr "" + +#: include/template/forecast_result.php:36 +msgid "Estimé" +msgstr "" + +#: include/template/forecast_result.php:71 +msgid "Réel" +msgstr "" + +#: include/template/forecast_result.php:84 +msgid "Total réel" +msgstr "" + +#: include/template/forecast_result.php:102 +#: include/template/forecast_result.php:182 +msgid "Différence" +msgstr "" + +#: include/template/forecast_result.php:128 +msgid "Diff. cumul." +msgstr "" + +#: include/template/forecast_result.php:176 +msgid "Total Catégorie estimé" +msgstr "" + +#: include/template/forecast_result.php:179 +msgid "Total Catégorie réel" +msgstr "" + +#: include/template/form_ledger_detail.php:69 +#: include/template/predf_ledger_detail.php:19 +msgid "prix/unité htva" +msgstr "" + +#: include/template/form_ledger_detail.php:71 +#: include/template/form_ledger_detail.php:124 +#: include/template/predf_ledger_detail.php:21 +#: include/template/predf_ledger_detail.php:74 +msgid "Total HTVA" +msgstr "" + +#: include/template/form_ledger_detail.php:73 +#: include/template/predf_ledger_detail.php:23 +msgid "tot.tva" +msgstr "" + +#: include/template/form_ledger_detail.php:74 +#: include/template/predf_ledger_detail.php:24 +msgid "tvac" +msgstr "" + +#: include/template/form_ledger_detail.php:76 +#: include/template/predf_ledger_detail.php:26 +msgid "prix/unité " +msgstr "" + +#: include/template/form_ledger_detail.php:78 +#: include/template/letter_prop.php:161 +#: include/template/predf_ledger_detail.php:28 +msgid "Total " +msgstr "" + +#: include/template/form_ledger_detail.php:128 +#: include/template/ledger_detail_ach.php:138 +#: include/template/ledger_detail_ach.php:236 +#: include/template/ledger_detail_ach.php:238 +#: include/template/ledger_detail_ven.php:136 +#: include/template/ledger_detail_ven.php:229 +#: include/template/ledger_detail_ven.php:231 +#: include/template/operation_detail_ach.php:56 +#: include/template/operation_detail_ach.php:116 +#: include/template/operation_detail_ach.php:118 +#: include/template/operation_detail_ven.php:48 +#: include/template/operation_detail_ven.php:99 +#: include/template/operation_detail_ven.php:101 +#: include/template/predf_ledger_detail.php:78 +#: include/ext/amortis/include/template/material_detail.php:121 +#: include/ext/amortis/include/template/material_display.php:95 +#: include/template/letter_prop.php:161 +#: include/template/stock_summary_table.php:41 +msgid "Total" +msgstr "" + +#: include/template/form_ledger_fin.php:31 +#: include/ext/modop/template_ledger_fin.php:10 +msgid "Extrait de compte" +msgstr "" + +#: include/template/form_ledger_fin.php:32 +#: include/ext/modop/template_ledger_fin.php:11 +msgid "Numéro extrait" +msgstr "" + +#: include/template/form_ledger_fin.php:33 +msgid "Solde début" +msgstr "" + +#: include/template/form_ledger_fin.php:34 +msgid "Solde Fin" +msgstr "" + +#: include/template/form_ledger_fin.php:45 +msgid "Op. Concernée(s)" +msgstr "" + +#: include/template/impress_cat_card.php:6 include/ajax_boxcard_search.php:57 +msgid "Categorie" +msgstr "" + +#: include/template/impress_cat_card.php:18 +#: include/template/stock_histo_search.php:47 +msgid "Jusque" +msgstr "" + +#: include/template/ledger_detail_ach.php:112 +#: include/template/ledger_detail_fin.php:96 +#: include/template/ledger_detail_misc.php:81 +#: include/template/ledger_detail_ven.php:115 +#: include/template/result_cat_card_summary.php:14 +#: include/template/stock_summary_list.php:46 +msgid "Détail" +msgstr "" + +#: include/template/ledger_detail_ach.php:127 +#: include/template/operation_detail_ach.php:45 +msgid "Prix/Un." +msgstr "" + +#: include/template/ledger_detail_ach.php:128 +#: include/template/ledger_detail_ven.php:125 +#: include/template/operation_detail_ach.php:46 +#: include/template/operation_detail_ven.php:38 +#: include/template/stock_inv.php:68 +msgid "Quantité" +msgstr "" + +#: include/template/ledger_detail_ach.php:129 +#: include/template/operation_detail_ach.php:48 +msgid "Non ded" +msgstr "" + +#: include/template/ledger_detail_ach.php:133 +#: include/template/ledger_detail_ven.php:132 +#: include/template/operation_detail_ach.php:52 +#: include/template/operation_detail_ven.php:44 +msgid "HTVA" +msgstr "" + +#: include/template/ledger_detail_ach.php:134 +msgid "TVA ND" +msgstr "" + +#: include/template/ledger_detail_ach.php:136 +#: include/template/ledger_detail_ven.php:134 +#: include/template/operation_detail_ach.php:54 +#: include/template/operation_detail_ven.php:46 +#: include/template/impress_reconciliation_detail.php:25 +msgid "TVAC" +msgstr "" + +#: include/template/ledger_detail_ach.php:249 +#: include/template/ledger_detail_ven.php:247 +msgid "Ecritures comptables" +msgstr "" + +#: include/template/ledger_detail_bottom.php:117 +msgid "verifie CA" +msgstr "" + +#: include/template/ledger_detail_bottom.php:129 +msgid "Extourner" +msgstr "" + +#: include/template/ledger_detail_ven.php:124 +#: include/template/operation_detail_ven.php:37 +msgid "Prix/Un" +msgstr "" + +#: include/template/ledger_search.php:8 +msgid "Dans le journal" +msgstr "" + +#: include/template/ledger_search.php:22 +msgid "Et Compris entre les date" +msgstr "" + +#: include/template/ledger_search.php:25 include/template/ledger_search.php:33 +#: include/template/ledger_search.php:51 +msgid "et" +msgstr "" + +#: include/template/ledger_search.php:30 +msgid "Et paiement compris entre les date " +msgstr "" + +#: include/template/ledger_search.php:39 +msgid "Et contenant dans le libellé, pièce justificative ou n° interne" +msgstr "" + +#: include/template/ledger_search.php:48 +msgid "Et compris entre les montants" +msgstr "" + +#: include/template/ledger_search.php:56 +msgid "Et utilisant la fiche (quick code)" +msgstr "" + +#: include/template/ledger_search.php:64 +msgid "Et utilisant le poste comptable" +msgstr "" + +#: include/template/ledger_search.php:74 +msgid "Et uniquement non payées" +msgstr "" + +#: include/template/letter_all.php:13 include/template/letter_prop.php:11 +msgid "Désolé aucun résultat trouvé" +msgstr "" + +#: include/template/letter_all.php:26 include/template/letter_prop.php:28 +#: include/template/letter_prop.php:68 +#: include/template/action_search_result.php:47 +#: include/template/print_ledger_simple.php:9 +msgid "Ref" +msgstr "" + +#: include/template/letter_all.php:41 include/template/letter_prop.php:40 +#: include/template/letter_prop.php:80 +msgid "Op. concernée" +msgstr "" + +#: include/template/letter_prop.php:159 +msgid "Total Debit" +msgstr "" + +#: include/template/letter_prop.php:160 +msgid "Total Credit" +msgstr "" + +#: include/template/new_mod_payment.php:10 +msgid "Pour le journal" +msgstr "" + +#: include/template/new_mod_payment.php:28 +msgid "Type de fiche" +msgstr "" + +#: include/template/new_mod_payment.php:38 +msgid "Paiement enregistré dans " +msgstr "" + +#: include/template/new_mod_payment.php:47 +msgid "Avec la fiche" +msgstr "" + +#: include/template/operation_detail_ach.php:47 +msgid "Personnel" +msgstr "" + +#: include/template/param_jrn.php:7 +msgid "Nom journal" +msgstr "" + +#: include/template/param_jrn.php:15 +msgid "Postes utilisables journal (débit/crédit) " +msgstr "" + +#: include/template/param_jrn.php:21 +msgid "" +"Uniquement pour les journaux d'Opérations Diverses, les valeurs sont " +"séparées par des espaces, on peut aussi\n" +"\tutiliser le * pour indiquer 'tous les postes qui en dépendent' exemple: 4*" +msgstr "" + +#: include/template/param_jrn.php:33 +msgid "Numérotation de chaque opération" +msgstr "" + +#: include/template/param_jrn.php:41 include/template/ledger_detail_fin.php:34 +#: include/template/operation_detail_fin.php:31 +msgid "Compte en banque" +msgstr "" + +#: include/template/param_jrn.php:61 +msgid "" +"Obligatoire pour les journaux FIN : donner ici la fiche de la banque utilisée" +msgstr "" + +#: include/template/param_jrn.php:78 +msgid "Type de journal" +msgstr "" + +#: include/template/param_jrn.php:84 +msgid "Préfixe code interne" +msgstr "" + +#: include/template/param_jrn.php:88 +msgid "Préfixe pièce justificative" +msgstr "" + +#: include/template/param_jrn.php:94 +msgid "" +"Le préfixe des pièces doit être différent pour chaque journal, on peut aussi " +"utiliser l'année" +msgstr "" + +#: include/template/param_jrn.php:95 +msgid "Uniquement des chiffres" +msgstr "" + +#: include/template/param_jrn.php:102 +msgid "Dernière pièce numérotée" +msgstr "" + +#: include/template/param_jrn.php:110 +msgid "N° pièce justificative" +msgstr "" + +#: include/template/param_jrn.php:117 +msgid "La numérotation est propre à chaque journal" +msgstr "" + +#: include/template/param_jrn.php:118 +msgid "Laissez à 0 pour ne pas changer le numéro" +msgstr "" + +#: include/template/profile_sec_repository.php:35 +#: include/template/stock_inv.php:42 +msgid "Dépot" +msgstr "" + +#: include/template/profile_sec_repository.php:36 +#: include/template/security_list_action.php:8 +#: include/template/user_sec_profile.php:36 +msgid "Accès" +msgstr "" + +#: include/template/security_list_action.php:7 +msgid "Pas d'accès" +msgstr "" + +#: include/ext/amortis/ajax.php:32 +msgid "opération non trouvée" +msgstr "" + +#: include/ext/amortis/index.php:52 +msgid "Biens amortissables" +msgstr "" + +#: include/ext/amortis/index.php:52 +msgid "Liste des biens amortissables" +msgstr "" + +#: include/ext/amortis/index.php:53 +msgid "rapport et tableaux sur les biens amortissables" +msgstr "" + +#: include/ext/amortis/index.php:54 +msgid "Utilitaire" +msgstr "" + +#: include/ext/amortis/index.php:54 include/ext/amortis/include/am_util.php:30 +msgid "Génération écriture comptable" +msgstr "" + +#: include/ext/amortis/raw.php:51 include/ext/amortis/raw.php:100 +#: include/ext/amortis/include/template/material_listing.php:11 +msgid "Date acquisition" +msgstr "" + +#: include/ext/amortis/raw.php:51 +#: include/ext/amortis/include/template/material_listing.php:12 +msgid "Année achat" +msgstr "" + +#: include/ext/amortis/raw.php:51 +msgid "Montant Achats" +msgstr "" + +#: include/ext/amortis/raw.php:51 +msgid "Nombre annuités" +msgstr "" + +#: include/ext/amortis/raw.php:51 +#: include/ext/amortis/include/template/listing_year.php:14 +#: include/ext/amortis/include/template/material_add.php:15 +#: include/ext/amortis/include/template/material_detail.php:17 +#: include/ext/amortis/include/template/material_display.php:15 +#: include/ext/amortis/include/template/material_listing.php:15 +msgid "Montant à amortir" +msgstr "" + +#: include/ext/amortis/raw.php:51 +#: include/ext/amortis/include/template/listing_year.php:15 +#: include/ext/amortis/include/template/listing_year.php:69 +msgid "Amortissement" +msgstr "" + +#: include/ext/amortis/raw.php:100 +#: include/ext/amortis/include/template/material_detail.php:40 +msgid "Visible" +msgstr "" + +#: include/ext/amortis/raw.php:100 +msgid "qcode" +msgstr "" + +#: include/ext/amortis/raw.php:100 +msgid "Année Achat" +msgstr "" + +#: include/ext/amortis/raw.php:100 +msgid "Nbre annuité" +msgstr "" + +#: include/ext/amortis/raw.php:100 +msgid "Poste Charge" +msgstr "" + +#: include/ext/amortis/raw.php:100 +msgid "Poste amortis" +msgstr "" + +#: include/ext/amortis/raw.php:100 +msgid "Montant achat" +msgstr "" + +#: include/ext/amortis/raw.php:100 +msgid "Montant amorti" +msgstr "" + +#: include/ext/amortis/raw.php:100 +msgid "Montant a amortir" +msgstr "" + +#: include/ext/coprop/index.php:43 +msgid "Immeubles,lots et copropriétaires" +msgstr "" + +#: include/ext/coprop/index.php:43 +msgid "Listes des immeubles, copropriétaire et lots " +msgstr "" + +#: include/ext/coprop/index.php:44 +msgid "Clef de répartition" +msgstr "" + +#: include/ext/coprop/index.php:45 +msgid "Appel de fond" +msgstr "" + +#: include/ext/coprop/index.php:45 +msgid "Création décompte pour appel de fond" +msgstr "" + +#: include/ext/coprop/index.php:46 +msgid "Budget" +msgstr "" + +#: include/ext/coprop/index.php:46 +msgid "budgets" +msgstr "" + +#: include/ext/coprop/index.php:47 +msgid "Historique des appels" +msgstr "" + +#: include/ext/coprop/index.php:48 +msgid "Configuration et paramètre" +msgstr "" + +#: include/ext/coprop/index.php:84 include/ext/rapport_avance/index.php:39 +#: include/ext/skel/index.php:82 include/ext/tva/index.php:69 +msgid "L'extension est installée, pourriez-vous en vérifier le paramètrage ?" +msgstr "" + +#: include/ext/import_account/index.php:57 +#: include/ext/import_doli/index.php:57 +msgid "Fiches" +msgstr "" + +#: include/ext/import_account/index.php:57 +#: include/ext/import_doli/index.php:57 +msgid "Importation de nouvelles fiches" +msgstr "" + +#: include/ext/import_account/index.php:58 +#: include/ext/import_doli/index.php:58 +msgid "Opérations Ventes/Achats" +msgstr "" + +#: include/ext/import_account/index.php:58 +#: include/ext/import_doli/index.php:58 +msgid "Importation d'opérations de vente ou d'achat" +msgstr "" + +#: include/ext/import_account/index.php:59 +#: include/ext/import_doli/index.php:59 +msgid "Paramètrage" +msgstr "" + +#: include/ext/importbank/index.php:56 +msgid "Importation" +msgstr "" + +#: include/ext/importbank/index.php:56 +msgid "Importation de nouveaux fichiers" +msgstr "" + +#: include/ext/importbank/index.php:57 +msgid "Liste Import " +msgstr "" + +#: include/ext/importbank/index.php:57 +msgid "Historique des imports effectués" +msgstr "" + +#: include/ext/modop/index.php:42 +msgid "Code interne de l'opération à modifier" +msgstr "" + +#: include/ext/modop/modop_display.php:84 +#: include/ext/modop/modop_display.php:117 +msgid "Choix TVA" +msgstr "" + +#: include/ext/modop/modop_save.php:248 +msgid "Vous n'avez pas donné de banque" +msgstr "" + +#: include/ext/rapport_avance/ajax_modify_param_detail.php:68 +msgid "Paramètre invalide" +msgstr "" + +#: include/ext/rapport_avance/ajax_parameter_send_mail.php:14 +msgid "Cette catégorie n'a pas d'attribut email" +msgstr "" + +#: include/ext/rapport_avance/ajax_parameter_send_mail.php:17 +msgid "Envoi par email" +msgstr "" + +#: include/ext/rapport_avance/ajax_parameter_send_mail.php:23 +msgid "Aucun document" +msgstr "" + +#: include/ext/rapport_avance/ajax_parameter_send_mail.php:24 +msgid "Document en PDF" +msgstr "" + +#: include/ext/rapport_avance/ajax_parameter_send_mail.php:25 +msgid "Document généré" +msgstr "" + +#: include/ext/rapport_avance/ajax.php:4 +msgid "act invalide" +msgstr "" + +#: include/ext/rapport_avance/ajax_send_mail.php:10 include/audit_log.php:40 +msgid "Résultat" +msgstr "" + +#: include/ext/rapport_avance/index.php:58 +msgid "Création, modification, Paramètre de listes, mailing list" +msgstr "" + +#: include/ext/rapport_avance/index.php:59 +msgid "Formulaire" +msgstr "" + +#: include/ext/rapport_avance/index.php:59 +msgid "Création, modification, Paramètre" +msgstr "" + +#: include/ext/rapport_avance/index.php:61 +msgid "Génération" +msgstr "" + +#: include/ext/rapport_avance/index.php:61 +msgid "Génération Déclaration / listing" +msgstr "" + +#: include/ext/rapport_avance/index.php:62 +msgid "Historique des déclarations faites" +msgstr "" + +#: include/ext/skel/index.php:43 include/ext/tva/index.php:32 +msgid "Déclaration TVA" +msgstr "" + +#: include/ext/skel/index.php:43 include/ext/tva/index.php:32 +msgid "Déclaration Trimestriel ou annuel de TVA" +msgstr "" + +#: include/ext/skel/index.php:44 include/ext/tva/index.php:33 +msgid "Listing intracommunautaire" +msgstr "" + +#: include/ext/skel/index.php:44 include/ext/tva/index.php:33 +msgid "Listing intracommunautaire trimestriel" +msgstr "" + +#: include/ext/skel/index.php:45 include/ext/tva/index.php:34 +msgid "Listing Assujetti" +msgstr "" + +#: include/ext/skel/index.php:45 include/ext/tva/index.php:34 +msgid "Listing des clients assujettis" +msgstr "" + +#: include/ext/skel/index.php:46 include/ext/tva/index.php:35 +msgid "Liste des déclarations TVA" +msgstr "" + +#: include/ext/skel/index.php:46 include/ext/tva/index.php:35 +msgid "Historique des déclarations TVA" +msgstr "" + +#: include/ext/skel/index.php:47 include/ext/tva/index.php:36 +msgid "Paramètrage " +msgstr "" + +#: include/ext/skel/index.php:47 include/ext/tva/index.php:36 +msgid "Paramètre pour la TVA" +msgstr "" + +#: include/ext/tools/index.php:41 +msgid "Opération" +msgstr "" + +#: include/ext/tools/index.php:41 +msgid "Changer poste comptable ou fiche" +msgstr "" + +#: include/ext/tools/index.php:42 +msgid "Rénuméroter des pièces justificative" +msgstr "" + +#: include/ext/tools/index.php:43 include/bank.inc.php:73 +#: include/template/stock_state_search.php:35 +msgid "Exercice" +msgstr "" + +#: include/ext/tools/index.php:43 +msgid "Ajouter des années comptables" +msgstr "" + +#: include/ext/transform/ajax_modify_intervat_assujetti.php:27 +msgid "Aucun client" +msgstr "" + +#: include/ext/transform/ajax_modify_intervat_assujetti.php:78 +msgid "Cochez pour effacer cette fiche" +msgstr "" + +#: include/ext/transform/ajax.php:23 +msgid "No action" +msgstr "" + +#: include/ext/transform/ajax_save_intervat_assujetti.php:27 +msgid "Client incorrect" +msgstr "" + +#: include/ext/transform/raw.php:31 include/ext/transform/raw.php:70 +#: include/ext/transform/include/intervat_listing_assujetti_step_3.inc.php:27 +msgid "Accès directe incorrecte" +msgstr "" + +#: include/ext/tva/ajax.php:188 +msgid "Pour la grille " +msgstr "" + +#: include/ext/tva/ajax.php:205 +msgid " Code TVA " +msgstr "" + +#: include/ext/tva/class_ext_list_assujetti.php:54 +#: include/ext/tva/class_ext_tvagen.php:114 +msgid "Afficher" +msgstr "" + +#: include/ext/tva/class_ext_tva.php:200 +msgid "Cette exercice comptable n'est pas dans ce dossier" +msgstr "" + +#: include/ext/tva/class_ext_tva.php:340 +msgid "Ecriture comptable" +msgstr "" + +#: include/ext/tva/class_ext_tva.php:340 +msgid "Création de l'écriture comptable" +msgstr "" + +#: include/ext/tva/class_ext_tva.php:341 +msgid "Générer fichier" +msgstr "" + +#: include/ext/tva/class_ext_tva.php:341 +msgid "Création du fichier xml" +msgstr "" + +#: include/ext/tva/class_ext_tva.php:342 +msgid "Effacement déclaration" +msgstr "" + +#: include/ext/tva/decl_tva.inc.php:32 +#: include/ext/tva/list_assujetti.inc.php:30 +#: include/ext/tva/list_intra.inc.php:31 +msgid "Année invalide [" +msgstr "" + +#: include/ext/tva/decl_tva.inc.php:49 +#: include/ext/tva/list_assujetti.inc.php:48 +#: include/ext/tva/list_intra.inc.php:49 +msgid "Déclaration sauvée" +msgstr "" + +#: include/ext/tva/decl_tva.inc.php:105 +#: include/ext/tva/list_assujetti.inc.php:95 +#: include/ext/tva/list_intra.inc.php:117 +msgid "Sauvegarde" +msgstr "" + +#: include/ext/tva/form_parameter.php:66 +msgid "Opération à la sortie" +msgstr "" + +#: include/ext/tva/form_parameter.php:68 +msgid "Grille 00 : opérations soumises à un régime particulier" +msgstr "" + +#: include/ext/tva/form_parameter.php:69 +msgid "Grille 01 : Opérations pour lesquelles la TVA est due (6%)" +msgstr "" + +#: include/ext/tva/form_parameter.php:70 +msgid "Grille 02 : Opérations pour lesquelles la TVA est due (12%)" +msgstr "" + +#: include/ext/tva/form_parameter.php:71 +msgid "Grille 03 : Opérations pour lesquelles la TVA est due (21%)" +msgstr "" + +#: include/ext/tva/form_parameter.php:72 +msgid "" +"Grille 44 : Opérations pour lesquelles la TVA étrangère est due par le " +"cocontractant" +msgstr "" + +#: include/ext/tva/form_parameter.php:73 +msgid "" +"Grille 45 : Opérations pour lesquelles la TVA est due par le cocontractant" +msgstr "" + +#: include/ext/tva/form_parameter.php:74 +msgid "" +"Grille 46 : Livraisons intracommunautaires exemptées effectuées en Belgique " +"et ventes ABC" +msgstr "" + +#: include/ext/tva/form_parameter.php:75 +msgid "" +"Grille 47 :Autres opérations exemptées et autres opérations effectuées à " +"l’étranger" +msgstr "" + +#: include/ext/tva/form_parameter.php:76 +msgid "" +"Grille 48 : Opérations relatives aux notes de crédit des grilles 44 et 48" +msgstr "" + +#: include/ext/tva/form_parameter.php:77 +msgid "Grille 49 : Opérations relatives aux notes de crédit" +msgstr "" + +#: include/ext/tva/form_parameter.php:81 +msgid "Opération à l'entrée" +msgstr "" + +#: include/ext/tva/form_parameter.php:82 +msgid "Grille 81 : Opération sur les marchandises, matières premières..." +msgstr "" + +#: include/ext/tva/form_parameter.php:83 +msgid "Grille 82 : Opération sur les services et biens divers" +msgstr "" + +#: include/ext/tva/form_parameter.php:84 +msgid "Grille 83 : Opération sur les biens d'investissements" +msgstr "" + +#: include/ext/tva/form_parameter.php:85 +msgid "" +"Grille 84 : Montant des notes de crédit reçues et des corrections négatives " +"relatif aux opérations inscrites en grilles 86 et 88" +msgstr "" + +#: include/ext/tva/form_parameter.php:86 +msgid "" +"Grille 85 : Montant des notes de crédit reçues et des corrections négatives " +"relatif aux autres opérations du cadre III " +msgstr "" + +#: include/ext/tva/form_parameter.php:87 +msgid "" +"Grille 86 : Acquisitions intracommunautaires effectuées en Belgique et " +"ventes ABC " +msgstr "" + +#: include/ext/tva/form_parameter.php:88 +msgid "" +" Autres opérations à l'entrée pour lesquelles la T.V.A. est due par le " +"déclarant " +msgstr "" + +#: include/ext/tva/form_parameter.php:89 +msgid "Services intracommunautaires avec report de perception" +msgstr "" + +#: include/ext/tva/form_parameter.php:93 +msgid "TVA Due" +msgstr "" + +#: include/ext/tva/form_parameter.php:94 +msgid "Grille 54 : tva due sur opération grille 01,02 et 03" +msgstr "" + +#: include/ext/tva/form_parameter.php:95 +msgid "Grille 55 : tva due sur opération grille 86 et 88" +msgstr "" + +#: include/ext/tva/form_parameter.php:96 +msgid "Grille 56 : tva due sur opération grille 87" +msgstr "" + +#: include/ext/tva/form_parameter.php:97 +msgid "Grille 57 :T.V.A. relative aux importations avec report de perception " +msgstr "" + +#: include/ext/tva/form_parameter.php:98 +msgid "Grille 61 :Diverses régularisations T.V.A. en faveur de l'Etat" +msgstr "" + +#: include/ext/tva/form_parameter.php:99 +msgid "Grille 63 :T.V.A. à reverser mentionnée sur les notes de crédit reçues" +msgstr "" + +#: include/ext/tva/form_parameter.php:103 +msgid "TVA Déductible" +msgstr "" + +#: include/ext/tva/form_parameter.php:104 +msgid "Grille 59 : taxe déductible" +msgstr "" + +#: include/ext/tva/form_parameter.php:105 +msgid "Grille 62 : Diverses régularisations T.V.A. en faveur du déclarant" +msgstr "" + +#: include/ext/tva/form_parameter.php:106 +msgid "" +"Grille 56 : T.V.A. à récupérer mentionnée sur les notes de crédit délivrées " +msgstr "" + +#: include/ext/tva/form_parameter.php:137 +msgid "Poste comptable utilisé pour les avances faites à la TVA" +msgstr "" + +#: include/ext/tva/form_parameter.php:173 +msgid "Poste comptable utilisé pour les dettes envers la TVA" +msgstr "" + +#: include/ext/tva/form_parameter.php:183 +msgid "Code TVA pour clients Intracommunataire" +msgstr "" + +#: include/ext/tva/form_parameter.php:189 +msgid "Code TVA pour clients nationaux" +msgstr "" + +#: include/ext/tva/form_periode.php:3 +msgid "Entrez la période de la déclaration" +msgstr "" + +#: include/ext/tva/form_periode.php:6 +#: include/ext/amortis/include/am_histo.inc.php:36 +#: include/ext/amortis/include/class_pdf_card.php:103 +#: include/ext/amortis/include/template/material_detail.php:55 +#: include/ext/amortis/include/template/material_display.php:41 +#: include/ext/amortis/include/template/util_generate.php:35 +msgid "Année" +msgstr "" + +#: include/ext/tva/form_periode.php:7 +msgid "Mois" +msgstr "" + +#: include/ext/tva/form_periode.php:8 +msgid "Trimestre" +msgstr "" + +#: include/ext/tva/form_periode.php:13 +msgid "Par année" +msgstr "" + +#: include/ext/tva/index.php:98 +msgid "Mise à jour du plugin, pourriez-vous en vérifier le paramètrage ?" +msgstr "" + +#: include/ext/tva/list_tva.inc.php:35 +msgid "Filtrer par " +msgstr "" + +#: include/ext/amortis/include/am_card.php:43 +msgid "Tous les biens y compris ceux qui sont complétement amortis" +msgstr "" + +#: include/ext/amortis/include/am_histo.inc.php:38 +msgid "N° interne" +msgstr "" + +#: include/ext/amortis/include/am_print.php:32 html/ajax_card.php:130 +#: html/ajax_card.php:322 +msgid "Détail fiche" +msgstr "" + +#: include/ext/amortis/include/am_print.php:33 +msgid "Listing" +msgstr "" + +#: include/ext/amortis/include/am_print.php:34 +msgid "Tableau / année" +msgstr "" + +#: include/ext/amortis/include/am_print.php:34 +msgid "Tableau amortissement par année" +msgstr "" + +#: include/ext/amortis/include/am_util.php:30 +msgid "Génére écriture" +msgstr "" + +#: include/ext/amortis/include/am_util.php:31 +msgid "Historique des opérations" +msgstr "" + +#: include/ext/amortis/include/class_am_card.php:177 +msgid "Année invalide" +msgstr "" + +#: include/ext/amortis/include/class_am_card.php:178 +msgid "Nombre annuités invalide" +msgstr "" + +#: include/ext/amortis/include/class_am_card.php:179 +#: include/class_acc_compute.php:194 +msgid "Montant invalide" +msgstr "" + +#: include/ext/amortis/include/class_am_card.php:180 +msgid "Visible Y ou N" +msgstr "" + +#: include/ext/amortis/include/class_am_card.php:181 +msgid "Poste de charge incorrect" +msgstr "" + +#: include/ext/amortis/include/class_am_card.php:182 +msgid "Poste à créditer incorrect" +msgstr "" + +#: include/ext/amortis/include/class_am_card.php:245 html/fid_card.php:169 +msgid "Non trouvé" +msgstr "" + +#: include/ext/amortis/include/class_am_generate.php:121 +msgid "Date invalide " +msgstr "" + +#: include/ext/amortis/include/class_am_generate.php:157 +msgid "Dotation à " +msgstr "" + +#: include/ext/amortis/include/class_am_generate.php:164 +msgid "Amortissement " +msgstr "" + +#: include/ext/amortis/include/class_pdf_card.php:78 +#: include/ext/amortis/include/template/listing_year.php:11 +msgid "Année d'achat" +msgstr "" + +#: include/ext/amortis/include/class_pdf_card.php:82 +msgid "Poste charge" +msgstr "" + +#: include/ext/amortis/include/class_pdf_card.php:89 +msgid "Poste contrepartie" +msgstr "" + +#: include/ext/amortis/include/class_pdf_card.php:96 +msgid "Nbre annuités" +msgstr "" + +#: include/ext/amortis/include/class_pdf_card.php:103 +msgid "Am. actés" +msgstr "" + +#: include/ext/amortis/include/class_pdf_card.php:103 +#: include/ext/amortis/include/template/material_detail.php:59 +#: include/ext/amortis/include/template/material_display.php:45 +#: include/class_acc_ledger.php:849 include/ext/tools/raw.php:77 +msgid "n° interne" +msgstr "" + +#: include/ext/amortis/include/class_pdf_card.php:133 +msgid "toutes_les_fiches.pdf" +msgstr "" + +#: include/ext/amortis/include/material_add.inc.php:36 +#: include/ext/amortis/include/print_fiche.inc.php:74 +msgid "Matériel à amortir" +msgstr "" + +#: include/ext/amortis/include/material_add.inc.php:37 +#: include/ext/amortis/include/print_fiche.inc.php:75 +msgid "Attention pas de catégorie de fiche à amortir" +msgstr "" + +#: include/ext/amortis/include/material_delete.inc.php:5 +msgid "Bien à amortir" +msgstr "" + +#: include/ext/amortis/include/material_delete.inc.php:6 +msgid "Effacé" +msgstr "" + +#: include/ext/amortis/include/material_modify.inc.php:40 +#: include/ext/amortis/include/template/material_display.php:1 +msgid "Détail de matériel" +msgstr "" + +#: include/ext/amortis/include/material_modify.inc.php:41 +msgid "Bien à amortir effacé" +msgstr "" + +#: include/ext/amortis/include/print_all.inc.php:40 html/popup.php:54 +#: include/ext/tools/include/export_operation.inc.php:36 +msgid "Export CSV" +msgstr "" + +#: include/ext/amortis/include/print_fiche.inc.php:55 +msgid "Accepter" +msgstr "" + +#: include/ext/amortis/include/print_fiche.inc.php:63 +msgid "Toutes les fiches en PDF" +msgstr "" + +#: include/ext/coprop/include/appel_fond.inc.php:214 +msgid "Nouvelle fiche " +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:38 +msgid "Pas de fichier donné" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:61 +#, php-format +msgid "Attention %s ne contient pas 11 colonnes" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:80 +msgid "Nombre de lignes enregistrées" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:113 +msgid "Opération déjà transférée : doublon " +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:120 +msgid "le numéro de ligne pour dolibarr est invalide" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:125 +msgid "La date est invalide, format n'est pas JJ.MM.AAAA" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:133 +msgid "Cette fiche n'existe pas" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:146 +msgid "Cette fiche n'a pas de poste comptable valide" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:149 +msgid "Taux de TVA" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:149 +msgid "Montant total" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:149 +msgid "Nombre d'unité" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:172 +msgid "Plusieurs code TVA correspondent à ce taux" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:177 +msgid "Aucun code TVA ne correspond à ce taux" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:191 +msgid "Aucun client ou fournisseur" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:196 +msgid "Aucune marchandise ou service" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:246 +msgid "n° ligne" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:250 +msgid "QuickCode" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:252 +msgid "n° Pièce" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:253 +msgid "Montant / unité" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:254 +msgid "Montant Total TVA" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:255 +msgid "Nbre unités" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:256 +msgid "taux TVA" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:257 +msgid "Montant total TVAC" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:258 +msgid "Transfert" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:259 +#: include/ext/invoicing/include/invoicing.inc.php:120 +msgid "Message" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:284 +msgid "Erreur ce type journal n' est pas encore supporté" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:483 +msgid "Opérations sauvées" +msgstr "" + +#: include/ext/import_account/include/class_impacc_operation.php:489 +msgid "N° opération" +msgstr "" + +#: include/ext/import_account/include/class_import_card.php:145 +msgid "Aucune colonne n'est définie" +msgstr "" + +#: include/ext/import_account/include/class_import_card.php:150 +msgid "Les fiches doivent avoir au minimum un nom" +msgstr "" + +#: include/ext/import_account/include/class_import_card.php:155 +msgid "Vous avez défini plusieurs fois la même colonne" +msgstr "" + +#: include/ext/import_account/include/class_import_card.php:160 +msgid "Vous devez donner la colonne quick_code" +msgstr "" + +#: include/ext/import_account/include/class_import_card.php:242 +msgid "fiches sont insérées dans la catégorie" +msgstr "" + +#: include/ext/import_account/include/class_sql_impacc.php:36 +#: include/ext/import_account/include/class_sql_impacc.php:47 +#: include/class_acc_account.php:66 include/class_acc_account.php:77 +#: include/class_acc_compute.php:94 include/class_acc_compute.php:104 +msgid "Erreur attribut inexistant" +msgstr "" + +#: include/ext/import_account/include/imd_operation.inc.php:55 +msgid "" +"Les opérations qui ne sont pas marquées comme correctes ne seront pas " +"transfèrées" +msgstr "" + +#: include/ext/import_account/include/imd_operation.inc.php:64 +msgid "Transfert des opérations" +msgstr "" + +#: include/ext/import_account/include/imd_parameter.inc.php:38 +#: include/ext/import_account/include/imd_parameter.inc.php:65 +msgid "le taux est invalide" +msgstr "" + +#: include/ext/import_account/include/imd_parameter.inc.php:41 +#: include/ext/import_account/include/imd_parameter.inc.php:68 +msgid "Cette tva est invalide" +msgstr "" + +#: include/ext/import_account/include/imd_parameter.inc.php:63 +msgid "le taux n'est pas un nombre" +msgstr "" + +#: include/ext/importbank/include/class_bank_item.php:63 +msgid "op. concernée" +msgstr "" + +#: include/ext/invoicing/include/invoice_generate.inc.php:65 +#: include/ext/invoicing/include/invoicing.inc.php:87 +msgid "Télécharger toutes les factures" +msgstr "" + +#: include/ext/invoicing/include/invoice_send_mail.inc.php:39 +msgid "Désolé mais il faut donner l'email de celui qui envoie" +msgstr "" + +#: include/ext/invoicing/include/invoice_send_mail.inc.php:42 +msgid "Le sujet est obligatoire" +msgstr "" + +#: include/ext/invoicing/include/invoice_send_mail.inc.php:75 +msgid "Pas de conversion en PDF disponible" +msgstr "" + +#: include/ext/invoicing/include/invoice_send_mail.inc.php:113 +msgid "Envoi facture " +msgstr "" + +#: include/ext/invoicing/include/invoice_send_mail.inc.php:113 +msgid " destinataire " +msgstr "" + +#: include/ext/invoicing/include/invoice_send_mail.inc.php:116 +msgid "Envoi echoué" +msgstr "" + +#: include/ext/invoicing/include/invoice_send_mail.inc.php:120 +msgid "Aucune pièce à envoyer" +msgstr "" + +#: include/ext/invoicing/include/invoice_send_mail.inc.php:123 +msgid "Aucune adresse email trouvée" +msgstr "" + +#: include/ext/invoicing/include/invoice_to_zip.inc.php:43 +msgid "Ajout facture " +msgstr "" + +#: include/ext/invoicing/include/invoice_to_zip.inc.php:76 +msgid "Télécharger le fichier" +msgstr "" + +#: include/ext/invoicing/include/invoicing.inc.php:93 +msgid "Générer les factures" +msgstr "" + +#: include/ext/invoicing/include/invoicing.inc.php:102 +msgid "Envoi des factures par email" +msgstr "" + +#: include/ext/invoicing/include/invoicing.inc.php:104 +msgid "Envoi uniquement à ceux ayant une adresse email et une facture" +msgstr "" + +#: include/ext/invoicing/include/invoicing.inc.php:106 +msgid "Conversion en PDF" +msgstr "" + +#: include/ext/invoicing/include/invoicing.inc.php:109 +msgid "Email envoyé par" +msgstr "" + +#: include/ext/invoicing/include/invoicing.inc.php:115 +msgid "Sujet" +msgstr "" + +#: include/ext/invoicing/include/invoicing.inc.php:124 +msgid "Envoyer copie à l'expéditeur" +msgstr "" + +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:186 +msgid "Choix du type de journal " +msgstr "" + +#: include/ext/rapport_avance/include/declaration.inc.php:57 +msgid " Sauvé " +msgstr "" + +#: include/ext/rapport_avance/include/formulaire.inc.php:42 +msgid " dernière sauvegarde " +msgstr "" + +#: include/ext/rapport_avance/include/formulaire.inc.php:46 +msgid " Impossible de sauver" +msgstr "" + +#: include/ext/tools/include/tools_exercice.inc.php:38 +#, php-format +msgid "%s Vous avez ajouté %d mois depuis le %d/%d pour l'exercice %d " +msgstr "" + +#: include/ext/transform/include/class_transform_client.php:94 +msgid "Numéro de tva incorrect" +msgstr "" + +#: include/ext/transform/include/class_transform_client.php:98 +msgid "Montant incorrect" +msgstr "" + +#: include/ext/transform/include/class_transform_client.php:102 +msgid "Montant TVA incorrect" +msgstr "" + +#: include/ext/transform/include/class_transform_declarant.php:163 +#: include/ext/transform/include/class_transform_representative.php:198 +msgid "Email incorrect" +msgstr "" + +#: include/ext/transform/include/class_transform_declarant.php:166 +#: include/ext/transform/include/class_transform_representative.php:201 +msgid "Code Pays incorrect" +msgstr "" + +#: include/ext/transform/include/class_transform_declarant.php:170 +#: include/ext/transform/include/class_transform_representative.php:205 +msgid "Numéro de téléphone incorrect" +msgstr "" + +#: include/ext/transform/include/class_transform_declarant.php:173 +msgid "Numéro de TVA incorrect" +msgstr "" + +#: include/ext/transform/include/class_transform_representative.php:208 +#: include/ext/transform/include/class_transform_representative.php:211 +#: include/ext/transform/include/class_transform_representative.php:214 +msgid "Obligatoire" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:34 +msgid "Par date paiement" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:35 +msgid "Par date opération" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:45 +msgid "Etape 1/3" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:49 +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:267 +msgid "Mandataire" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:52 +msgid "Ne remplissez pas s'il n'y a pas de mandataire" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:60 +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:271 +msgid "Déclarant" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:80 +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:152 +msgid "Par fichier" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:94 +msgid "Par calcul" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:99 +#, php-format +msgid "Entre les date %s et %s" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:129 +msgid "Opération de vente" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:41 +msgid "Vous devez choisir par fichier ou par calcul" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:45 +msgid "Vous devez donner la période" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:54 +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:58 +msgid "La date donnée est invalide" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:62 +msgid "Vous devez choisir au moins un taux TVA" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:67 +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:71 +msgid "Date de calcul incorrect" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:108 +msgid "Aucun fichier donné" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:117 +msgid "Impossible de sauver ce fichier" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:130 +msgid "Ligne non importée" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:150 +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:261 +msgid "Ne peut pas ajouter " +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:191 +msgid "Par calcul : date opération" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:194 +msgid "Par calcul : date paiement" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:264 +#, php-format +msgid "période %s entre [%s] et [%s]" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:266 +msgid "Etape 2/3" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:287 +msgid "Rejeté" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_3.inc.php:34 +msgid "Etape 3/3" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_3.inc.php:37 +#, php-format +msgid "Attention : il y a %d enregistrements incorrects " +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_3.inc.php:38 +msgid "Ils ne seront inclus pas dans le fichier XML" +msgstr "" + +#: include/ext/amortis/include/template/listing_histo.php:50 +msgid "Effacer la sélection" +msgstr "" + +#: include/ext/amortis/include/template/listing_year.php:10 +#: include/ext/amortis/include/template/material_add.php:10 +#: include/ext/amortis/include/template/material_display.php:10 +msgid "Date d'acquisition" +msgstr "" + +#: include/ext/amortis/include/template/listing_year.php:12 +msgid "Montant à l'achat" +msgstr "" + +#: include/ext/amortis/include/template/listing_year.php:13 +msgid "Nombre amortissement" +msgstr "" + +#: include/ext/amortis/include/template/listing_year.php:16 +msgid "Pourcentage" +msgstr "" + +#: include/ext/amortis/include/template/listing_year.php:17 +msgid "Reste à amortir" +msgstr "" + +#: include/ext/amortis/include/template/listing_year.php:61 +msgid "Acquisition de l'année" +msgstr "" + +#: include/ext/amortis/include/template/listing_year.php:75 +msgid "Valeur net " +msgstr "" + +#: include/ext/amortis/include/template/material_add.php:3 +msgid "Nouveau matériel" +msgstr "" + +#: include/ext/amortis/include/template/material_add.php:20 +#: include/ext/amortis/include/template/material_detail.php:22 +#: include/ext/amortis/include/template/material_display.php:20 +msgid "Année comptable d'achat" +msgstr "" + +#: include/ext/amortis/include/template/material_add.php:24 +#: include/ext/amortis/include/template/material_detail.php:26 +#: include/ext/amortis/include/template/material_display.php:24 +msgid "Poste de charge dotations amortissement (débit)" +msgstr "" + +#: include/ext/amortis/include/template/material_add.php:29 +#: include/ext/amortis/include/template/material_detail.php:31 +#: include/ext/amortis/include/template/material_display.php:29 +msgid "Poste amortissement en contrepartie" +msgstr "" + +#: include/ext/amortis/include/template/material_add.php:34 +msgid "Nombre d'années amortissement" +msgstr "" + +#: include/ext/amortis/include/template/material_detail.php:1 +msgid "Modification de matériel" +msgstr "" + +#: include/ext/amortis/include/template/material_detail.php:13 +msgid "Date Acquisition" +msgstr "" + +#: include/ext/amortis/include/template/material_detail.php:36 +#: include/ext/amortis/include/template/material_display.php:34 +msgid "Nombre d'années amortissement (non modifiable)" +msgstr "" + +#: include/ext/amortis/include/template/material_detail.php:40 +msgid "Y pour oui ou N pour non" +msgstr "" + +#: include/ext/amortis/include/template/material_detail.php:52 +msgid "" +"En changeant le montant à amortir, l'année ou le nombre d'années, les " +"annuités seront recalculées et l'historique effacé" +msgstr "" + +#: include/ext/amortis/include/template/material_detail.php:53 +#: include/ext/amortis/include/template/material_display.php:39 +msgid "Annuités" +msgstr "" + +#: include/ext/amortis/include/template/material_detail.php:57 +#: include/ext/amortis/include/template/material_display.php:43 +msgid "Amortissement acté" +msgstr "" + +#: include/ext/amortis/include/template/material_detail.php:62 +#: include/ext/amortis/include/template/material_display.php:48 +msgid "Pourcent" +msgstr "" + +#: include/ext/amortis/include/template/material_detail.php:122 +#: include/ext/amortis/include/template/material_display.php:96 +msgid "Amorti" +msgstr "" + +#: include/ext/amortis/include/template/material_detail.php:123 +#: include/ext/amortis/include/template/material_display.php:97 +msgid "Reste" +msgstr "" + +#: include/ext/amortis/include/template/material_detail.php:128 +#: include/ext/amortis/include/template/material_display.php:102 +msgid "Différence entre le montant à amortir et le montant amorti =" +msgstr "" + +#: include/ext/amortis/include/template/material_display.php:108 +msgid "Date " +msgstr "" + +#: include/ext/amortis/include/template/material_listing.php:6 +msgid "Quickcode" +msgstr "" + +#: include/ext/amortis/include/template/material_listing.php:13 +msgid "Montant Initial" +msgstr "" + +#: include/ext/amortis/include/template/material_listing.php:14 +msgid "Montant Amorti" +msgstr "" + +#: include/ext/amortis/include/template/util_generate.php:39 +msgid "Journal dans lequel l'écriture sera passée" +msgstr "" + +#: include/ext/amortis/include/template/util_generate.php:43 +msgid "Date de l'opération" +msgstr "" + +#: include/ext/amortis/include/template/util_generate.php:62 +msgid "Cochez ce qu'il faut amortir" +msgstr "" + +#: include/ext/amortis/include/template/util_generate.php:65 +#: include/card_attr.inc.php:83 include/class_acc_ledger.php:655 +#: include/template/fiche_list.php:49 +msgid "Selection" +msgstr "" + +#: include/ext/amortis/include/template/util_generate.php:98 +msgid "Générer l'écriture" +msgstr "" + +#: include/ext/amortis/include/template/util_generate.php:100 +#: include/template/letter_prop.php:164 +msgid "Sélectionner tout" +msgstr "" + +#: include/ext/amortis/include/template/util_generate.php:101 +#: include/template/letter_prop.php:165 +msgid "Tout Désélectionner" +msgstr "" + +#: include/ext/backup_noadmin/include/template/home.php:1 +msgid "Backup du dossier courant" +msgstr "" + +#: include/ext/backup_noadmin/include/template/home.php:3 +msgid "Voulez-vous avoir une copie de ce dossier" +msgstr "" + +#: include/ext/import_account/include/template/input_file.php:3 +#: include/ext/import_account/include/template/test_file.php:4 +#: include/ext/import_account/include/template/test_operation.php:4 +#: include/ext/importbank/include/template/input_file.php:3 +#: include/ext/importbank/include/template/test_file.php:4 +#: include/ext/import_card/include/template/input_file.php:3 +#: include/ext/import_card/include/template/test_file.php:4 +#: include/ext/import_doli/include/template/input_file.php:3 +#: include/ext/import_doli/include/template/test_file.php:4 +#: include/ext/import_doli/include/template/test_operation.php:4 +msgid "Importation de données" +msgstr "" + +#: include/ext/import_account/include/template/input_file.php:7 +#: include/ext/import_account/include/template/test_file.php:9 +msgid "" +"Pour importer des données, c'est-à-dire transformer des fichiers CSV (Valeur " +"séparé par des virgules) en des fiches. Vous devez choisir, un fichier et " +"donner une catégorie de fiche existante. Ensuite, il suffit d'indiquer " +"quelles colonnes correspondent à quelle attribut." +msgstr "" + +#: include/ext/import_account/include/template/input_file.php:10 +msgid "" +"Par défaut, correspond à un export CSV depuis Calc (OpenOffice.org ou " +"libreoffice)" +msgstr "" + +#: include/ext/import_account/include/template/input_file.php:16 +#: include/ext/import_account/include/template/test_file.php:16 +#: include/ext/import_account/include/template/test_operation.php:16 +msgid "Délimiteur" +msgstr "" + +#: include/ext/import_account/include/template/input_file.php:19 +#: include/ext/import_account/include/template/test_file.php:20 +#: include/ext/import_account/include/template/test_operation.php:20 +#: include/ext/import_account/include/template/upload_operation.php:40 +msgid "Fichier à charger" +msgstr "" + +#: include/ext/import_account/include/template/input_file.php:25 +msgid "Encodage unicode" +msgstr "" + +#: include/ext/import_account/include/template/input_file.php:28 +msgid "Texte entouré du signe" +msgstr "" + +#: include/ext/import_account/include/template/parameter.php:4 +msgid "Ajout d'une correspondance" +msgstr "" + +#: include/ext/import_account/include/template/parameter.php:11 +msgid "Fiche TVA" +msgstr "" + +#: include/ext/import_account/include/template/parameter.php:12 +msgid "Taux correspondant" +msgstr "" + +#: include/ext/import_account/include/template/parameter_tva_add.php:30 +msgid "Ajout d'un taux de tva" +msgstr "" + +#: include/ext/import_account/include/template/test_file.php:26 +#: include/ext/import_account/include/template/test_operation.php:26 +msgid "Encodage" +msgstr "" + +#: include/ext/import_account/include/template/test_file.php:29 +#: include/ext/import_account/include/template/test_operation.php:29 +msgid "Texte entouré par" +msgstr "" + +#: include/ext/import_account/include/template/test_file.php:81 +#: include/ext/import_account/include/template/test_operation.php:81 +msgid "Non Utilisé" +msgstr "" + +#: include/ext/import_account/include/template/test_operation.php:9 +msgid "" +"Pour importer des données, c'est-à-dire transformer des fichiers CSV (Valeur " +"séparé par des virgules) en des fiches. Vous devez choisir, un fichier et " +"donner une catégorie de fiche existante. Ensuite, il suffit d'indiquer " +"quelles colonnes correspondent à quelle attribut" +msgstr "" + +#: include/ext/import_account/include/template/upload_operation.php:32 +#: include/ext/import_doli/include/template/upload_operation.php:32 +msgid "Importation des opération" +msgstr "" + +#: include/ext/rapport_avance/include/template/parameter_send_mail_input.php:23 +msgid "Envoi" +msgstr "" + +#: include/ext/transform/include/template/listing_assujetti_declarant.php:30 +#: include/ext/transform/include/template/listing_assujetti_representative.php:30 +msgid "Rue" +msgstr "" + +#: include/ext/transform/include/template/listing_assujetti_declarant.php:35 +#: include/ext/transform/include/template/listing_assujetti_representative.php:36 +msgid "Code postal" +msgstr "" + +#: include/ext/transform/include/template/listing_assujetti_declarant.php:45 +#: include/ext/transform/include/template/listing_assujetti_representative.php:48 +msgid "Code Pays" +msgstr "" + +#: include/ext/transform/include/template/listing_assujetti_declarant.php:54 +#: include/ext/transform/include/template/listing_assujetti_representative.php:54 +msgid "email" +msgstr "" + +#: include/ext/transform/include/template/listing_assujetti_declarant.php:74 +msgid "N° TVA" +msgstr "" + +#: include/ext/transform/include/template/listing_assujetti_representative.php:66 +msgid "listing id" +msgstr "" + +#: include/ext/transform/include/template/listing_client_display.php:31 +msgid "les enregistrements incorrects ne seront inclus pas dans le fichier XML" +msgstr "" + +#: include/ext/transform/include/template/listing_client_display.php:39 +#: include/ajax_boxcard_search.php:63 +msgid "Numéro TVA" +msgstr "" + +#: html/ajax_card.php:106 +msgid "Parametre ad_id est invalide" +msgstr "" + +#: html/ajax_card.php:182 +msgid "Nouvelle fiche" +msgstr "" + +#: html/ajax_card.php:251 html/ajax_card.php:261 html/ajax_card.php:298 +msgid "Choix de la catégorie" +msgstr "" + +#: html/ajax_card.php:273 +msgid "" +"Choississez la catégorie de fiche à laquelle vous aimeriez ajouter une fiche" +msgstr "" + +#: html/ajax_card.php:304 +msgid "Fiche sauvée" +msgstr "" + +#: html/ajax_card.php:421 +msgid " de contacts" +msgstr "" + +#: html/ajax_card.php:504 +msgid "Détail fiche (sauvée)" +msgstr "" + +#: html/ajax_history.php:61 html/ajax_history.php:131 +#: include/balance_card.inc.php:36 +msgid "" +"erreur aucune période par défaut, allez dans préférence pour en choisir une" +msgstr "" + +#: html/ajax_history.php:90 html/ajax_history.php:96 html/ajax_history.php:161 +#: html/ajax_history.php:167 +msgid "Autre exercice" +msgstr "" + +#: html/ajax_history.php:113 html/ajax_history.php:184 +#: include/balance_card.inc.php:70 +msgid "Aucune opération pour l'exercice courant" +msgstr "" + +#: html/ajax_ledger.php:288 html/ajax_ledger.php:326 +#, php-format +msgid "enlever" +msgstr "" + +#: html/ajax_ledger.php:353 +msgid "Chargement" +msgstr "" + +#: html/ajax_ledger.php:527 +msgid "entrez une date" +msgstr "" + +#: html/ajax_misc.php:297 include/template/ledger_detail_fin.php:59 +#: include/ext/tools/raw.php:82 +msgid "montant" +msgstr "" + +#: html/ajax_misc.php:458 +msgid "Mauvais type objet" +msgstr "" + +#: html/backup.php:34 +msgid "Vous n\\'êtes pas administrateur" +msgstr "" + +#: html/fid_card.php:164 +#, php-format +msgid "Résultat limité à 12" +msgstr "" + +#: html/login.php:53 html/login.php:85 +msgid "Version de base de données incorrectes, vous devez mettre à jour" +msgstr "" + +#: html/login.php:67 +msgid "Code invalide" +msgstr "" + +#: html/logout.php:30 +msgid "Vous êtes déconnecté" +msgstr "" + +#: html/popup.php:55 +msgid "Export PDF" +msgstr "" + +#: html/user_login.php:96 include/audit_log.php:36 +msgid "Utilisateur" +msgstr "" + +#: html/user_login.php:155 +msgid "Bienvenue" +msgstr "" + +#: include/ac_common.php:608 +#, php-format +msgid "" +"Attention periode \n" +"\t\t non trouvee periode p_from= %s p_to_periode = %s" +msgstr "" + +#: include/ac_common.php:782 +msgid "Données non disponibles" +msgstr "" + +#: include/ac_common.php:783 +msgid "Veuillez vous reconnecter" +msgstr "" + +#: include/ac_common.php:784 +msgid "Déconnecté" +msgstr "" + +#: include/ac_common.php:1062 +msgid "Code Interne" +msgstr "" + +#: include/ac_common.php:1091 +msgid "Aucune donnée" +msgstr "" + +#: include/action.common.inc.php:277 include/action.common.inc.php:281 +msgid "Action Sauvée" +msgstr "" + +#: include/ajax_add_menu.php:70 include/ajax_add_menu.php:119 +msgid "Nouveau menu" +msgstr "" + +#: include/ajax_add_menu.php:122 +msgid "Aucune impression disponible à ajouter" +msgstr "" + +#: include/ajax_anc_search.php:41 +msgid "Recherche activité" +msgstr "" + +#: include/ajax_anc_search.php:65 +msgid "Ce plan n'existe pas" +msgstr "" + +#: include/ajax_anc_search.php:74 +msgid "Aucun poste trouvé" +msgstr "" + +#: include/ajax_anc_search.php:78 include/ajax_anc_search.php:79 +msgid "Choix" +msgstr "" + +#: include/ajax_bookmark.php:28 +msgid "Favoris" +msgstr "" + +#: include/ajax_bookmark.php:46 +msgid "Ce favori a déjà été ajouté" +msgstr "" + +#: include/ajax_bookmark.php:103 +msgid "Supprimez favoris sélectionnés" +msgstr "" + +#: include/ajax_bookmark.php:109 +msgid "Menu actuel" +msgstr "" + +#: include/ajax_bookmark.php:113 +msgid "Ajoutez le menu actuel à vos favoris" +msgstr "" + +#: include/ajax_boxcard_search.php:39 +msgid "Résultat recherche" +msgstr "" + +#: include/ajax_boxcard_search.php:43 +#, php-format +msgid "Résultat limité à %d , %d nombre de fiches trouvées" +msgstr "" + +#: include/ajax_boxcard_search.php:71 +msgid "Aucun résultat" +msgstr "" + +#: include/ajax_fiche_def_detail.php:40 +msgid "Retour à la liste" +msgstr "" + +#: include/ajax_get_menu_detail.php:82 +msgid "Dépendant de" +msgstr "" + +#: include/ajax_get_menu_detail.php:87 +msgid "Ordre d'apparition" +msgstr "" + +#: include/ajax_get_menu_detail.php:97 +msgid "Cochez cette case si vous souhaitez effacer ce menu" +msgstr "" + +#: include/ajax_get_menu_detail.php:107 +msgid "" +"Cochez cette case si vous souhaitez effacer ce menu ainsi que ceux qui en " +"dépendent" +msgstr "" + +#: include/ajax_get_profile.php:74 include/ajax_get_profile.php:82 +msgid "vous confirmez" +msgstr "" + +#: include/ajax_get_profile.php:87 +msgid "Effacer ce profil" +msgstr "" + +#: include/ajax_mod_predf_op.php:32 +msgid "Modification du nom" +msgstr "" + +#: include/ajax_mod_predf_op.php:44 +msgid "Description (max 50 car.)" +msgstr "" + +#: include/ajax_navigator.php:37 +msgid "" +"Vous permet d'accèder rapidement au menu qui vous intéresse, utiliser le " +"filtre pour trouver plus rapidement" +msgstr "" + +#: include/ajax_navigator.php:52 +msgid "Chemin" +msgstr "" + +#: include/ajax_navigator.php:56 +msgid "Description complète" +msgstr "" + +#: include/ajax_navigator.php:59 +msgid "Aide sur le wiki" +msgstr "" + +#: include/ajax_navigator.php:106 +msgid "sur le wiki" +msgstr "" + +#: include/ajax_plugin_detail.php:54 +msgid "Ajouter ce plugin" +msgstr "" + +#: include/ajax_plugin_detail.php:57 +msgid "Voulez-vous effacer ce plugin ?" +msgstr "" + +#: include/ajax_plugin_detail.php:58 +msgid "Modifier ce plugin" +msgstr "" + +#: include/ajax_preference.php:34 +msgid "" +"Si vous validez, la page sera rechargée et vous pourriez perdre ce que vous " +"faisiez" +msgstr "" + +#: include/ajax_tag_detail.php:15 +msgid "Détail du dossier ou tag" +msgstr "" + +#: include/ajax_tag_list.php:30 +msgid "Ajout d'un tag" +msgstr "" + +#: include/ajax_update_predef.php:54 +msgid "Modèle d'opérations" +msgstr "" + +#: include/ajax_view_mod_stock.php:33 +msgid "Détail changement" +msgstr "" + +#: include/ajax_view_mod_stock.php:52 +msgid "Cochez pour confirmer effacement" +msgstr "" + +#: include/anc_group.inc.php:62 +msgid "Plan" +msgstr "" + +#: include/anc_pa.inc.php:47 +msgid "Nouveau plan" +msgstr "" + +#: include/anc_pa.inc.php:60 include/anc_pa.inc.php:73 +msgid "Maximum de plan analytique est atteint" +msgstr "" + +#: include/anc_pa.inc.php:93 +msgid "Mise à jour" +msgstr "" + +#: include/anc_pa.inc.php:198 +msgid "Plan A" +msgstr "" + +#: include/anc_pa.inc.php:248 include/anc_pa.inc.php:283 +msgid "Ajout d'un plan comptable" +msgstr "" + +#: include/anc_pa.inc.php:255 +msgid "Aucun plan analytique n'est défini" +msgstr "" + +#: include/audit_log.php:39 +msgid "Module" +msgstr "" + +#: include/template/action_other_action.php:7 +msgid "Autres actions" +msgstr "" + +#: include/template/action_other_action.php:17 +msgid "Actions sur plusieurs documents" +msgstr "" + +#: include/template/action_other_action.php:18 +msgid "Sélectionner les documents et l' action :" +msgstr "" + +#: include/template/action_other_action.php:26 +msgid "Changement des états" +msgstr "" + +#: include/template/action_other_action.php:35 +msgid "Ajout d'étiquettes" +msgstr "" + +#: include/template/action_other_action.php:43 +msgid "Enlever des étiquettes" +msgstr "" + +#: include/template/action_other_action.php:51 +msgid "Enlever toutes les étiquettes des documents choisis" +msgstr "" + +#: include/template/action_other_action.php:55 +msgid "Effacer les documents choisis" +msgstr "" + +#: include/template/action_search.php:51 +msgid "Date de rappel après" +msgstr "" + +#: include/template/action_search.php:57 +msgid "Date de rappel avant" +msgstr "" + +#: include/template/action_search.php:63 +msgid "Affiche aussi les actions fermées" +msgstr "" + +#: include/template/action_search_result.php:32 +#: include/template/action_search_result.php:88 +msgid "Mettre à jour" +msgstr "" + +#: include/balance.inc.php:101 +msgid "Aucun filtre, tous les journaux" +msgstr "" + +#: include/balance.inc.php:104 +msgid "Filtré par journal" +msgstr "" + +#: include/balance.inc.php:109 +msgid "Filtré par catégorie" +msgstr "" + +#: include/balance.inc.php:111 +msgid "Totaux par sous-niveaux" +msgstr "" + +#: include/balance.inc.php:128 +msgid "Niveau 1" +msgstr "" + +#: include/balance.inc.php:129 +msgid "Niveau 2" +msgstr "" + +#: include/balance.inc.php:130 +msgid "Niveau 3" +msgstr "" + +#: include/balance.inc.php:162 +msgid "Plage de postes" +msgstr "" + +#: include/balance.inc.php:164 +msgid "jusque" +msgstr "" + +#: include/balance.inc.php:169 +msgid "Uniquement comptes non soldés" +msgstr "" + +#: include/balance.inc.php:172 +msgid "Avec la balance de l'année précédente" +msgstr "" + +#: include/card_attr.inc.php:77 +msgid "Texte" +msgstr "" + +#: include/card_attr.inc.php:78 +msgid "Nombre" +msgstr "" + +#: include/card_attr.inc.php:80 +msgid "Zone de texte" +msgstr "" + +#: include/card_attr.inc.php:94 +msgid "id" +msgstr "" + +#: include/card_attr.inc.php:97 +msgid "Taille" +msgstr "" + +#: include/card_attr.inc.php:124 +msgid "Attention : effacera les données qui y sont liées" +msgstr "" + +#: include/cfgfiche.inc.php:69 +msgid "" +"Impossible d'enlever cette catégorie, certaines fiches sont encore " +"utilisées\n" +"Les fiches non utilisées ont cependant été effacées" +msgstr "" + +#: include/cfgledger.inc.php:50 +msgid "Journal inexistant" +msgstr "" + +#: include/cfgtags.inc.php:51 +msgid "" +"Vous pouvez utiliser ceci comme des étiquettes pour marquer des documents " +"ou \n" +" comme des dossiers pour rassembler des documents. Un document peut " +"appartenir\n" +" à plusieurs dossiers ou avoir plusieurs étiquettes." +msgstr "" + +#: include/class_acc_account.php:97 +msgid "Poste inconnu" +msgstr "" + +#: include/class_acc_account.php:136 +msgid "type de compte incorrect " +msgstr "" + +#: include/class_acc_account.php:138 +msgid "Donnee member inconnue " +msgstr "" + +#: include/class_acc_account.php:222 +msgid "Impossible de changer la valeur: poste déjà utilisé" +msgstr "" + +#: include/class_acc_bilan.php:134 +msgid "Nbres anomalies" +msgstr "" + +#: include/class_acc_bilan.php:137 +msgid "Pas d'anomalie détectée" +msgstr "" + +#: include/class_acc_bilan.php:146 +msgid "Comptes normaux" +msgstr "" + +#: include/class_acc_bilan.php:147 +msgid "Actif avec un solde crediteur" +msgstr "" + +#: include/class_acc_bilan.php:148 +msgid "Passif avec un solde debiteur" +msgstr "" + +#: include/class_acc_bilan.php:149 +msgid "Compte de resultat : Charge avec un solde crediteur" +msgstr "" + +#: include/class_acc_bilan.php:150 +msgid "Compte de resultat : produit avec un solde debiteur" +msgstr "" + +#: include/class_acc_bilan.php:152 +msgid "Comptes inverses" +msgstr "" + +#: include/class_acc_bilan.php:153 +msgid "Compte inverse : actif avec un solde debiteur" +msgstr "" + +#: include/class_acc_bilan.php:154 +msgid "Compte inverse : passif avec un solde crediteur" +msgstr "" + +#: include/class_acc_bilan.php:155 +msgid "Compte inverse : Charge avec un solde debiteur" +msgstr "" + +#: include/class_acc_bilan.php:156 +msgid "Compte inverse : produit avec un solde crediteur" +msgstr "" + +#: include/class_acc_bilan.php:175 +msgid "Total actif" +msgstr "" + +#: include/class_acc_bilan.php:192 +msgid "Total passif" +msgstr "" + +#: include/class_acc_bilan.php:211 +msgid "Total charge " +msgstr "" + +#: include/class_acc_bilan.php:226 +msgid "Total produit" +msgstr "" + +#: include/class_acc_bilan.php:230 +msgid "Difference Produit - Charge" +msgstr "" + +#: include/class_acc_bilan.php:256 +msgid "Aucun enregistrement trouve" +msgstr "" + +#: include/class_acc_bilan.php:348 include/class_acc_bilan.php:656 +#: include/class_acc_bilan.php:681 +msgid "erreur Ouverture fichier" +msgstr "" + +#: include/class_acc_bilan.php:662 +msgid "erreur écriture fichier" +msgstr "" + +#: include/class_acc_ledger.php:107 +msgid " Tous les journaux" +msgstr "" + +#: include/class_acc_ledger.php:187 +msgid "this->jr_id is not set ou opération inconnue" +msgstr "" + +#: include/class_acc_ledger.php:656 +msgid "Internal" +msgstr "" + +#: include/class_acc_ledger.php:665 +msgid "tiers" +msgstr "" + +#: include/class_acc_ledger.php:762 include/class_acc_ledger.php:990 +msgid "Opération annulée" +msgstr "" + +#: include/class_acc_ledger.php:818 include/template/print_ledger_simple.php:8 +msgid "Paiement" +msgstr "" + +#: include/class_acc_ledger.php:820 include/template/ledger_detail_fin.php:44 +#: include/template/operation_detail_fin.php:32 +msgid "Tiers" +msgstr "" + +#: include/class_acc_ledger.php:1023 +msgid "Non payé" +msgstr "" + +#: include/class_acc_ledger.php:1421 +msgid "Attention : il vaut mieux utiliser les fiches que les postes comptables" +msgstr "" + +#: include/class_acc_ledger.php:1983 +msgid "" +"Attention : il vaut mieux utiliser les fiches que les postes comptables " +msgstr "" + +#: include/class_acc_ledger.php:2083 +msgid "Balance incorrecte" +msgstr "" + +#: include/class_acc_ledger.php:2120 +msgid "OPERATION ANNULEE " +msgstr "" + +#: include/class_acc_ledger.php:2376 +msgid "Celui qui paie n' a pas de poste comptable" +msgstr "" + +#: include/class_acc_ledger.php:2393 +#, php-format +msgid "Pour la fiche %s le poste comptable [%s] n'existe pas" +msgstr "" + +#: include/class_acc_ledger.php:3232 +msgid "Journaux de vente" +msgstr "" + +#: include/class_acc_ledger.php:3233 +msgid "'Journaux d'achat" +msgstr "" + +#: include/class_acc_ledger.php:3234 +msgid "'Journaux Financier" +msgstr "" + +#: include/class_acc_ledger.php:3235 +msgid "'Journaux d'Opérations diverses" +msgstr "" + +#: include/class_acc_ledger.php:3406 +msgid "Nombre de ligne incorrect" +msgstr "" + +#: include/class_acc_ledger.php:3410 +msgid "Un journal avec ce nom existe déjà" +msgstr "" + +#: include/class_acc_ledger.php:3416 include/class_acc_ledger.php:3461 +#: include/class_acc_ledger.php:3594 +msgid "Aucun compte en banque n'est donné" +msgstr "" + +#: include/class_acc_ledger.php:3527 +msgid "choix du type de journal" +msgstr "" + +#: include/class_acc_ledger.php:3611 +msgid "Impossible d'effacer un journal qui contient des opérations" +msgstr "" + +#: include/class_acc_ledger.php:3684 +msgid "Action non accessible" +msgstr "" + +#: include/template/action_search.php:82 +msgid "Référence" +msgstr "" + +#: include/template/action_search.php:88 +msgid "Numéro document" +msgstr "" + +#: include/template/dashboard.php:90 +msgid "Situation" +msgstr "" + +#: include/template/dashboard.php:97 +msgid "Pour aujourd'hui" +msgstr "" + +#: include/template/dashboard.php:100 +msgid "En retard" +msgstr "" + +#: include/template/dashboard.php:105 +msgid "Action" +msgstr "" + +#: include/template/dashboard.php:112 include/template/dashboard.php:124 +#: include/template/dashboard.php:140 include/template/dashboard.php:150 +#: include/template/dashboard.php:165 include/template/dashboard.php:175 +msgid "détail" +msgstr "" + +#: include/template/dashboard.php:135 +msgid "Paiement fournisseur" +msgstr "" + +#: include/template/dashboard.php:160 +msgid "Paiement client" +msgstr "" + +#: include/template/dashboard.php:222 +msgid "Action en retard" +msgstr "" + +#: include/template/dashboard.php:247 +msgid "Aucune action en retard" +msgstr "" + +#: include/template/dashboard.php:253 +msgid "Action pour aujourd'hui" +msgstr "" + +#: include/template/dashboard.php:281 +msgid "Fournisseurs à payer aujourd'hui" +msgstr "" + +#: include/template/dashboard.php:282 +msgid "Fournisseurs en retad" +msgstr "" + +#: include/template/dashboard.php:283 +msgid "Encaissement clients aujourd'hui" +msgstr "" + +#: include/template/dashboard.php:284 +msgid "Clients en retard" +msgstr "" + +#: include/template/detail-action.php:176 +msgid "Actions concernées" +msgstr "" + +#: include/template/detail-action.php:240 +#, php-format +msgid "Voulez-vous effacer ce commentaire" +msgstr "" + +#: include/template/detail-action.php:462 +msgid "Ajouter un fichier" +msgstr "" + +#: include/template/fiche_def_input.php:23 +msgid "" +"Création automatique du poste comptable uniquement s'il n'y a qu'un seul " +"poste" +msgstr "" + +#: include/template/fiche_def_list.php:66 +msgid "Automatique" +msgstr "" + +#: include/template/fiche_def_list.php:66 +msgid "Manuel" +msgstr "" + +#: include/template/fiche_def_list.php:84 +msgid "Ajout d'une nouvelle catégorie" +msgstr "" + +#: include/template/fiche_list.php:87 +msgid "Effacer la sélection " +msgstr "" + +#: include/template/fiche_list.php:89 +msgid "Déplacer la sélection vers" +msgstr "" + +#: include/template/forecast_cat.php:8 +msgid "Date de début" +msgstr "" + +#: include/template/forecast_cat.php:9 +msgid "Date de fin" +msgstr "" + +#: include/template/form_ledger_fin.php:12 +msgid "Avec date d'extrait" +msgstr "" + +#: include/template/form_ledger_fin.php:13 +msgid "Avec date opérations" +msgstr "" + +#: include/template/impress_reconciliation_detail.php:10 +msgid "Prix HTVA" +msgstr "" + +#: include/template/impress_reconciliation_detail.php:13 +msgid "Non Deductible" +msgstr "" + +#: include/template/impress_reconciliation_detail.php:16 +msgid "code tva" +msgstr "" + +#: include/template/impress_reconciliation_detail.php:22 +msgid "Tva ND" +msgstr "" + +#: include/template/impress_reconciliation.php:7 +msgid "N°" +msgstr "" + +#: include/template/impress_reconciliation.php:13 +msgid "N° op" +msgstr "" + +#: include/template/ledger_detail_ach.php:36 +#: include/template/ledger_detail_ven.php:38 +msgid "Date paiement" +msgstr "" + +#: include/template/ledger_detail_bottom.php:6 +msgid "Informations" +msgstr "" + +#: include/template/ledger_detail_bottom.php:9 +msgid " Bon de commande" +msgstr "" + +#: include/template/ledger_detail_bottom.php:12 +msgid "Autre information" +msgstr "" + +#: include/template/ledger_detail_forbidden.php:5 +msgid "" +"Accès interdit : vous n'avez pas accès à cette information, contactez votre " +"responsable" +msgstr "" + +#: include/template/ledger_detail_ven.php:95 +msgid "Note" +msgstr "" + +#: include/template/letter_all.php:108 +msgid "Solde débit" +msgstr "" + +#: include/template/letter_all.php:109 +msgid "Solde crédit" +msgstr "" + +#: include/template/letter_all.php:115 +msgid "Solde débiteur" +msgstr "" + +#: include/template/letter_all.php:117 +msgid "Solde créditeur" +msgstr "" + +#: include/template/letter_prop.php:151 +msgid "Créditeur" +msgstr "" + +#: include/template/letter_prop.php:153 +msgid "Débiteur" +msgstr "" + +#: include/template/letter_prop.php:158 +msgid "Total lettré" +msgstr "" + +#: include/template/menu_detail.php:19 include/menu.inc.php:113 +#: include/menu.inc.php:130 +msgid "Menu" +msgstr "" + +#: include/template/menu_detail.php:27 +msgid "Code du menu" +msgstr "" + +#: include/template/menu_detail.php:35 +msgid "Libellé du menu" +msgstr "" + +#: include/template/menu_detail.php:59 +msgid "Fichier à inclure (depuis le répertoire include)" +msgstr "" + +#: include/template/modele_document.php:5 +msgid "Modèle de document" +msgstr "" + +#: include/template/modele_document.php:10 +msgid "Nom du document" +msgstr "" + +#: include/template/modele_document.php:23 +msgid "Catégorie de document" +msgstr "" + +#: include/template/modele_document.php:80 +msgid "Dernier numéro utilisé pour ce type de document" +msgstr "" + +#: include/template/modele_document.php:101 +msgid "Redémarrer la séquence (laisser à 0 pour ne pas changer)" +msgstr "" + +#: include/template/periode_add_exercice.php:15 +msgid "Confirmez vous l'ajout d\\'un exercice comptable ?" +msgstr "" + +#: include/template/periode_add_exercice.php:21 +msgid "Ajout d'un exercice comptable" +msgstr "" + +#: include/template/print_ledger_simple.php:31 +msgid "Opérations rapprochées" +msgstr "" + +#: include/template/profile.php:41 +msgid "Avec Calculatrice" +msgstr "" + +#: include/template/profile.php:45 +msgid "Avec Direct Form" +msgstr "" + +#: include/template/stock_histo_search.php:35 +#: include/template/stock_inv.php:60 +#: include/template/stock_summary_table.php:33 +msgid "Code Stock" +msgstr "" + +#: include/template/stock_histo_search.php:43 +msgid "A partir de" +msgstr "" + +#: include/template/stock_histo_search.php:51 +msgid "Dépôt" +msgstr "" + +#: include/template/stock_histo_search.php:55 +msgid "Montant supérieur ou égal à" +msgstr "" + +#: include/template/stock_histo_search.php:59 +msgid "Montant inférieur ou égal à" +msgstr "" + +#: include/template/stock_histo_search.php:64 +msgid "Direction" +msgstr "" + +#: include/template/stock_inv.php:50 +msgid "Motif de changement" +msgstr "" + +#: include/template/stock_state_search.php:43 +msgid "Présentation" +msgstr "" + +#: include/template/stock_summary_list.php:47 +#: include/template/stock_summary_table.php:73 +#: include/template/stock_summary_table.php:107 +msgid "IN" +msgstr "" + +#: include/template/stock_summary_list.php:48 +#: include/template/stock_summary_table.php:81 +#: include/template/stock_summary_table.php:115 +msgid "OUT" +msgstr "" + +#: include/template/stock_summary_list.php:49 +msgid "En Stock" +msgstr "" + +#: include/template/stock_summary_list.php:87 +msgid "Changement manuel" +msgstr "" + +#: include/template/stock_summary_table.php:89 +#: include/template/stock_summary_table.php:123 +msgid "DIFF" +msgstr "" + +#: include/template/tag_choose.php:8 include/template/tag_search_select.php:8 +#: include/template/tag_select.php:8 +msgid "Aucune étiquette disponible" +msgstr "" + +#: include/template/tag_detail.php:15 +msgid "Etiquette (tag)" +msgstr "" + +#: include/template/tag_detail.php:24 +msgid "Cochez pour cette case pour effacer ce tag" +msgstr "" + +#: include/template/tag_list.php:11 include/template/tag_search_select.php:16 +#: include/template/tag_select.php:16 +msgid "Tag" +msgstr "" + +#: include/menu.inc.php:117 +msgid "URL" +msgstr "" + +#: include/menu.inc.php:119 +msgid "Javascript" +msgstr "" + +#: include/menu.inc.php:129 +msgid "Tout" +msgstr "" + +#: include/menu.inc.php:132 +msgid "Extension / Plugin" +msgstr "" + +#: include/menu.inc.php:133 +msgid "Valeurs spéciales" +msgstr "" + +#: include/menu.inc.php:154 +msgid "Ajout d'un plugin" +msgstr "" + +#: include/menu.inc.php:155 +msgid "Ajout d'un menu" +msgstr "" + +#: include/ext/tools/index.php:44 +msgid "Export" +msgstr "" + +#: include/ext/tools/index.php:44 +msgid "Exporter les opérations" +msgstr "" + +#: include/ext/tools/raw.php:75 +msgid "Date DMY" +msgstr "" + +#: include/ext/tools/raw.php:78 +msgid "piece" +msgstr "" + +#: include/ext/tools/raw.php:79 +msgid "poste" +msgstr "" + +#: include/ext/tools/raw.php:81 +msgid "texte" +msgstr "" + +#: include/ext/tools/raw.php:83 +msgid "DC" +msgstr "" + +#: include/ext/tools/raw.php:84 +msgid "lettrage" +msgstr "" diff --git a/html/lang/nl_NL/LC_MESSAGES/messages.po b/html/lang/nl_NL/LC_MESSAGES/messages.po index 68447f5b3..ecda34ddd 100644 --- a/html/lang/nl_NL/LC_MESSAGES/messages.po +++ b/html/lang/nl_NL/LC_MESSAGES/messages.po @@ -1,4130 +1,184 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# Dutch translations for NOALYSS package. +# Copyright (C) 2014 THE NOALYSS'S COPYRIGHT HOLDER +# This file is distributed under the same license as the NOALYSS package. # -#, fuzzy +# dany , 2014. msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: NOALYSS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-05-09 01:32+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2014-02-16 12:54+0100\n" +"PO-Revision-Date: 2014-02-21 21:35+0100\n" +"Last-Translator: dany\n" +"Language-Team: American English \n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 1.4\n" -#: test.php:228 html/test.php:195 html/test.php:214 html/test.php:212 -msgid "Bienvenu sur mon site" -msgstr "Welkom op mijn website" - -#: test.php:229 html/test.php:196 html/test.php:215 html/test.php:213 -msgid "Essayer de vous y amuser" -msgstr "Probeer het" - -#: test.php:233 html/test.php:200 html/test.php:219 html/test.php:217 -msgid "Choississez votre langue" -msgstr "kies uw taal" - -#: test.php:234 html/test.php:201 include/pref.inc.php:201 html/test.php:220 -#: include/pref.inc.php:217 html/test.php:218 include/pref.inc.php:197 -msgid "Français" -msgstr "Frans" - -#: test.php:235 html/test.php:202 include/pref.inc.php:202 html/test.php:221 -#: include/pref.inc.php:218 html/test.php:219 include/pref.inc.php:198 -msgid "Anglais" -msgstr "Engels" - -#: test.php:236 html/test.php:203 include/pref.inc.php:203 html/test.php:222 -#: include/pref.inc.php:219 html/test.php:220 include/pref.inc.php:199 -msgid "Néerlandais" -msgstr "Nederlands" - -#: test.php:245 html/test.php:212 html/test.php:232 html/test.php:230 -msgid "Change de langue" -msgstr "Verander het taal" - -#: html/access.php:75 html/access.php:90 html/user_login.php:73 -#: html/do.php:105 -msgid "Votre base de données n'est pas à jour" -msgstr "Uw datagegevens is niet de laatste versie " - -#: html/access.php:76 html/access.php:91 html/user_login.php:74 -#: html/do.php:106 -msgid "cliquez ici pour appliquer le patch" -msgstr "Klik hier voor de laatste versie te verkrijgen" - -#: html/access.php:102 include/template/dashboard.php:90 -#: include/template/dashboard.php:79 -msgid "Aucune periode par defaut" -msgstr "Geen periode gevonden" - -#: html/access.php:125 include/template/dashboard.php:113 -#: include/template/dashboard.php:101 -msgid "Aucun rapport défini" -msgstr "Geen enkele rapport beschikbaar " - -#: html/access.php:126 include/template/dashboard.php:114 -#: include/template/dashboard.php:102 -msgid "Cliquez ici pour mettre à jour vos préférences" -msgstr "Klik hier om uw voorkeuren te veranderen" - -#: html/access.php:151 include/template/dashboard.php:42 -#: include/template/dashboard.php:28 -msgid "Pense-Bête" -msgstr "Te doen lijst" - -#: html/access.php:158 include/class_acc_ledger.php:497 -#: include/class_acc_ledger.php:1141 include/class_acc_ledger.php:1263 -#: include/class_acc_ledger_purchase.php:1006 -#: include/class_acc_ledger_sold.php:537 include/class_anc_listing.php:73 -#: include/template/detail-action.php:15 -#: include/template/form_ledger_detail.php:13 -#: include/template/form_ledger_fin.php:3 -#: include/ext/stock/form_invoice.php:11 -#: include/ext/stock/form_stock_detail.php:17 include/class_fiche.php:1077 -#: include/class_acc_ledger_purchase.php:1011 -#: include/class_acc_ledger_sold.php:541 -#: include/ext/stock/form_stock_detail_in.php:17 include/class_fiche.php:1079 -#: include/class_acc_ledger.php:606 include/class_acc_ledger.php:1251 -#: include/class_acc_ledger.php:1394 -#: include/class_acc_ledger_purchase.php:1261 -#: include/class_acc_ledger_sold.php:643 include/class_anc_listing.php:82 -#: include/class_fiche.php:1276 include/impress_fiche.inc.php:225 -#: include/template/dashboard.php:31 include/template/form_ledger_detail.php:7 -#: include/template/letter_all.php:20 include/template/letter_prop.php:22 -#: include/class_acc_ledger.php:1373 include/class_acc_ledger.php:1551 -#: include/class_acc_ledger_purchase.php:1272 -#: include/class_acc_ledger_sold.php:667 include/class_anc_grandlivre.php:156 -#: include/class_fiche.php:1320 include/export_fiche_balance_csv.php:138 -#: include/impress_fiche.inc.php:288 include/template/dashboard.php:123 -#: include/template/form_ledger_detail.php:10 -#: include/template/form_ledger_fin.php:6 include/template/letter_prop.php:62 -msgid "Date" -msgstr "Datum" - -#: html/access.php:159 include/template/detail-action.php:150 -#: include/template/dashboard.php:32 include/template/dashboard.php:124 -msgid "Titre" -msgstr "Titel" - -#: html/access.php:160 include/class_acc_ledger.php:498 -#: include/class_acc_ledger.php:1142 include/class_acc_ledger.php:1266 -#: include/class_acc_ledger_purchase.php:1013 -#: include/class_acc_ledger_sold.php:544 include/class_anc_account.php:266 -#: include/class_anc_listing.php:75 include/class_anc_plan.php:125 -#: include/dossier.inc.php:235 include/dossier.inc.php:264 -#: include/template/detail-action.php:133 -#: include/template/detail-action.php:179 -#: include/template/form_ledger_detail.php:17 -#: include/ext/stock/class_ext_stock.php:147 -#: include/ext/stock/form_allocate_stock.php:14 -#: include/ext/stock/class_ext_stock.php:181 include/class_fiche.php:1078 -#: include/class_acc_ledger_purchase.php:1018 -#: include/class_acc_ledger_sold.php:548 include/class_fiche.php:1080 -#: include/ext/stock/class_ext_stock.php:160 include/class_acc_ledger.php:607 -#: include/class_anc_account.php:278 include/class_anc_listing.php:84 -#: include/class_fiche.php:1279 include/dossier.inc.php:259 -#: include/dossier.inc.php:293 include/param_pcmn.inc.php:55 -#: include/template/dashboard.php:33 include/template/ledger_detail_ach.php:87 -#: include/template/ledger_detail_ven.php:89 -#: include/template/letter_all.php:29 include/template/letter_prop.php:28 -#: include/ext/stock/class_ext_stock.php:157 include/class_anc_listing.php:86 -#: include/class_fiche.php:1323 include/dossier.inc.php:263 -#: include/dossier.inc.php:297 include/template/dashboard.php:125 -#: include/template/ledger_detail_ach.php:108 -#: include/template/ledger_detail_ven.php:108 -#: include/template/letter_prop.php:68 -msgid "Description" -msgstr "Beschrijving" - -#: html/access.php:164 html/ajax_card.php:271 html/ajax_extension.php:111 -#: html/ajax_extension.php:168 html/parametre.php:289 -#: include/compta_fin.inc.php:165 include/payment_middle.inc.php:58 -#: include/report.inc.php:123 include/report.inc.php:138 -#: html/parametre.php:301 html/ajax_card.php:413 html/ajax_extension.php:121 -#: html/ajax_extension.php:179 html/parametre.php:333 -#: include/compta_fin.inc.php:167 include/param_pcmn.inc.php:64 -#: include/payment_middle.inc.php:57 include/report.inc.php:116 -#: include/report.inc.php:131 include/template/dashboard.php:36 -#: html/ajax_card.php:417 include/company.inc.php:115 -#: include/compta_fin.inc.php:142 include/payment_middle.inc.php:54 -#: include/report.inc.php:106 include/report.inc.php:121 -#: include/template/dashboard.php:128 -msgid "Sauve" -msgstr "Opslaan" - -#: html/access.php:165 include/detail_adm.inc.php:68 -#: include/detail_client.inc.php:68 include/detail_supplier.inc.php:68 -#: include/fiche.inc.php:290 include/fiche.inc.php:378 -#: include/fiche.inc.php:400 include/param_pcmn.inc.php:65 -#: include/template/dashboard.php:37 include/category_detail.inc.php:68 -#: include/fiche.inc.php:412 include/template/dashboard.php:129 -msgid "Annuler" -msgstr "Annuleren" - -#: html/access.php:169 include/payment_middle.inc.php:164 -#: include/cat_document.inc.php:37 include/cat_document.inc.php:39 -#: include/payment_middle.inc.php:171 include/template/dashboard.php:45 -#: include/template/dashboard.php:31 -msgid "Ajout" -msgstr "Toevoegen" - -#: html/ajax_card.php:107 html/ajax_card.php:158 html/ajax_card.php:278 -#: html/ajax_card.php:309 html/ajax_card.php:190 html/ajax_card.php:288 -#: html/ajax_card.php:422 html/ajax_card.php:459 html/ajax_card.php:468 -#: html/ajax_card.php:199 html/ajax_card.php:299 html/ajax_card.php:426 -#: html/ajax_card.php:463 html/ajax_card.php:472 -msgid "Action interdite" -msgstr "Verboden actie" - -#: html/ajax_card.php:125 html/ajax_card.php:244 html/ajax_card.php:253 -#, fuzzy -msgid "Aucune catégorie de fiche ne correspondant à votre demande" -msgstr "Geen enkele categorie van de bladeren komen overeen met uw vraag " - -#: html/ajax_card.php:171 html/ajax_card.php:307 html/ajax_card.php:316 -msgid "Fiche contenant" -msgstr "Blad bevat" - -#: html/ajax_card.php:173 html/ajax_poste.php:75 html/search_ca.php:48 -#: html/search_ca.php:56 include/class_acc_payment.php:263 -#: include/class_anc_balance_double.php:280 include/quick_writing.inc.php:177 -#: include/user_menu.php:257 include/user_menu.php:477 -#: include/class_anc_print.php:129 html/recherche.php:71 -#: include/client.inc.php:97 include/adm.inc.php:98 -#: include/supplier.inc.php:97 html/ajax_card.php:309 html/ajax_poste.php:78 -#: html/recherche.php:62 html/search_ca.php:49 html/search_ca.php:57 -#: include/adm.inc.php:85 include/class_acc_payment.php:303 -#: include/class_anc_balance_double.php:299 include/class_anc_print.php:133 -#: include/client.inc.php:90 include/impress_fiche.inc.php:74 -#: include/lettering.account.inc.php:83 include/lettering.card.inc.php:86 -#: include/lettering.gestion.inc.php:47 include/quick_writing.inc.php:167 -#: include/supplier.inc.php:78 include/user_menu.php:267 -#: include/user_menu.php:506 html/ajax_card.php:318 html/ajax_poste.php:80 -#: html/recherche.php:64 include/adm.inc.php:80 include/ajax_anc_search.php:45 -#: include/ajax_anc_search.php:56 include/bank.inc.php:74 -#: include/class_anc_balance_double.php:331 include/class_anc_print.php:134 -#: include/client.inc.php:73 include/contact.inc.php:73 -#: include/impress_fiche.inc.php:80 include/lettering.account.inc.php:84 -#: include/lettering.card.inc.php:87 include/lettering.gestion.inc.php:48 -#: include/menu_translate.php:16 include/search.inc.php:73 -#: include/user_menu.php:53 include/menu_translate.php:82 -#, php-format -msgid "Recherche" -msgstr "Vinden" - -#: html/ajax_card.php:237 html/ajax_card.php:379 html/ajax_card.php:388 -msgid " de clients" -msgstr " van klanten" - -#: html/ajax_card.php:241 html/ajax_card.php:383 html/ajax_card.php:392 -msgid " de fournisseurs" -msgstr " van leveranciers" - -#: html/ajax_card.php:245 html/ajax_card.php:387 html/ajax_card.php:396 -msgid " d'administration" -msgstr " van administratie" - -#: html/ajax_card.php:251 include/adm.inc.php:45 include/adm.inc.php:129 -#: include/client.inc.php:44 include/client.inc.php:128 -#: include/supplier.inc.php:44 include/supplier.inc.php:128 -#: html/ajax_card.php:393 include/client.inc.php:36 include/client.inc.php:138 -#: include/supplier.inc.php:126 include/adm.inc.php:127 -#: include/bank.inc.php:122 include/client.inc.php:120 -#: include/contact.inc.php:133 include/template/category_of_card.php:4 -msgid "Ajout d'une catégorie" -msgstr "Categorie toevoegen" - -#: html/ajax_card.php:261 include/class_acc_report.php:142 -#: html/ajax_card.php:403 include/class_acc_report.php:152 -#: html/ajax_card.php:410 -msgid "Recherche poste" -msgstr "Post vinden" - -#: html/ajax_card.php:296 html/ajax_card.php:442 html/ajax_card.php:448 -msgid "Catégorie existe déjà" -msgstr "Die categorie bestaat al" - -#: html/ajax_card.php:298 html/ajax_card.php:444 html/ajax_card.php:450 -msgid "Catégorie sauvée" -msgstr "Opgeslagen categorie" - -#: html/ajax_card.php:301 html/ajax_card.php:449 html/ajax_card.php:455 -msgid "Le nom et la classe base ne peuvent être vide" -msgstr "Een naam en de moeder post zijn verplicht" - -#: html/ajax_extension.php:81 html/ajax_extension.php:138 -#: html/parametre.php:242 html/parametre.php:254 html/ajax_extension.php:89 -#: html/ajax_extension.php:148 html/parametre.php:273 -#: include/company.inc.php:39 include/company.inc.php:43 -#: include/company.inc.php:46 -msgid "Oui" -msgstr "Ja" - -#: html/ajax_extension.php:82 html/ajax_extension.php:139 -#: html/parametre.php:241 html/parametre.php:253 html/ajax_extension.php:90 -#: html/ajax_extension.php:149 html/parametre.php:272 -#: include/company.inc.php:38 include/company.inc.php:42 -#: include/company.inc.php:45 -msgid "Non" -msgstr "Nee" - -#: html/ajax_extension.php:96 html/ajax_extension.php:153 -#: include/template/extension-sec.php:9 -#: include/template/security_list_action.php:5 html/ajax_extension.php:104 -#: html/ajax_extension.php:163 -msgid "Accès" -msgstr "Vergunning" - -#: html/ajax_extension.php:97 html/ajax_extension.php:154 -#: html/ajax_extension.php:105 html/ajax_extension.php:164 -msgid "Interdit" -msgstr "Verboden" - -#: html/ajax.php:33 include/ext_inc.php:20 include/ext_inc.php:22 -#: html/ajax.php:37 html/extension.raw.php:57 include/ext_inc.php:32 -msgid "Cette extension n'existe pas " -msgstr "Die plugin bestaat niet" - -#: html/annulation.php:134 include/class_acc_ledger_purchase.php:68 -#: include/class_acc_ledger_sold.php:68 -#: include/class_acc_ledger_purchase.php:73 -#: include/class_acc_ledger_sold.php:72 include/class_acc_ledger.php:159 -#: include/class_acc_ledger_purchase.php:81 -#: include/class_acc_ledger_sold.php:79 include/class_acc_ledger.php:179 -#: include/class_acc_ledger_purchase.php:82 -msgid "Date invalide" -msgstr "Verkeerd datum" - -#: html/annulation.php:143 -msgid "Période ou date incorrecte" -msgstr "Verkeerd periode of datum" - -#: html/annulation.php:149 -msgid "Cette période est fermée" -msgstr "Die periode is dicht" - -#: html/annulation.php:414 include/class_acc_ledger.php:1150 -#: include/class_acc_ledger.php:1309 include/class_anticipation.php:298 -#: include/quick_writing.inc.php:116 include/class_fiche.php:1079 -#: include/class_fiche.php:1081 include/class_acc_ledger.php:1263 -#: include/class_acc_ledger.php:1471 include/class_anticipation.php:408 -#: include/class_fiche.php:1280 include/quick_writing.inc.php:99 -#: include/template/ledger_detail_ach.php:211 -#: include/template/ledger_detail_fin.php:101 -#: include/template/ledger_detail_misc.php:89 -#: include/template/ledger_detail_ven.php:207 -#: include/class_acc_ledger.php:1385 include/class_acc_ledger.php:1630 -#: include/class_anticipation.php:420 include/class_fiche.php:1324 -#: include/export_fiche_balance_csv.php:142 -#: include/operation_ods_new.inc.php:97 -#: include/template/ledger_detail_ach.php:251 -#: include/template/ledger_detail_fin.php:107 -#: include/template/ledger_detail_ven.php:249 -msgid "Débit" -msgstr "debiet" - -#: html/annulation.php:429 include/class_anticipation.php:299 -#: include/quick_writing.inc.php:117 include/class_fiche.php:1080 -#: include/class_fiche.php:1082 include/class_anticipation.php:409 -#: include/class_fiche.php:1281 include/quick_writing.inc.php:100 -#: include/template/ledger_detail_ach.php:212 -#: include/template/ledger_detail_fin.php:102 -#: include/template/ledger_detail_misc.php:90 -#: include/template/ledger_detail_ven.php:208 -#: include/class_acc_ledger.php:1386 include/class_anticipation.php:421 -#: include/class_fiche.php:1325 include/operation_ods_new.inc.php:98 -#: include/template/ledger_detail_ach.php:252 -#: include/template/ledger_detail_fin.php:108 -#: include/template/ledger_detail_ven.php:250 -msgid "Crédit" -msgstr "Creditzijde" - -#: html/commercial.php:65 html/commercial.php:74 -msgid "Vous devez choisir un dossier " -msgstr "U moet een dossier kiezen" - -#: html/commercial.php:113 include/class_acc_ledger_sold.php:547 -#: include/class_acc_ledger_sold.php:1088 -#: include/ext/stock/class_ext_stock.php:176 -#: include/ext/stock/class_ext_stock.php:301 -#: include/ext/stock/class_ext_stock.php:210 -#: include/ext/stock/class_ext_stock.php:335 -#: include/class_acc_ledger_sold.php:551 -#: include/class_acc_ledger_sold.php:1092 -#: include/ext/stock/class_ext_stock.php:341 -#: include/ext/stock/class_ext_stock.php:189 -#: include/ext/stock/class_ext_stock.php:320 html/commercial.php:124 -#: include/class_acc_ledger_sold.php:653 -#: include/class_acc_ledger_sold.php:1254 -#: include/template/ledger_detail_ach.php:29 -#: include/template/ledger_detail_ven.php:30 -#: include/ext/stock/class_ext_stock.php:186 -#: include/ext/stock/class_ext_stock.php:316 -#: include/class_acc_ledger_sold.php:677 -#: include/class_acc_ledger_sold.php:1314 -#: include/template/ledger_detail_ven.php:38 include/menu_translate.php:85 -msgid "Client" -msgstr "Klant" - -#: html/commercial.php:114 include/class_acc_ledger_purchase.php:943 -#: include/class_acc_ledger_purchase.php:1016 -#: include/ext/stock/class_ext_stock.php:294 -#: include/ext/stock/class_ext_stock.php:174 -#: include/ext/stock/class_ext_stock.php:301 -#: include/ext/stock/class_ext_stock.php:208 -#: include/ext/stock/class_ext_stock.php:335 -#: include/class_acc_ledger_purchase.php:948 -#: include/class_acc_ledger_purchase.php:1021 -#: include/ext/stock/class_ext_stock.php:341 -#: include/ext/stock/class_ext_stock.php:187 -#: include/ext/stock/class_ext_stock.php:320 html/commercial.php:125 -#: include/class_acc_ledger_purchase.php:1192 -#: include/class_acc_ledger_purchase.php:1271 -#: include/ext/stock/class_ext_stock.php:184 -#: include/ext/stock/class_ext_stock.php:316 -#: include/class_acc_ledger_purchase.php:1206 -#: include/class_acc_ledger_purchase.php:1282 include/menu_translate.php:50 -#: include/template/ledger_detail_ach.php:38 -msgid "Fournisseur" -msgstr "Leverancier" - -#: html/commercial.php:115 html/commercial.php:126 -#: include/menu_translate.php:78 -msgid "Administration" -msgstr "Administratie" - -#: html/commercial.php:116 include/compta_ach.inc.php:60 -#: include/compta_fin.inc.php:58 include/compta_ven.inc.php:59 -#: include/user_menu.php:194 include/template/security_list_action.php:73 -#: html/commercial.php:127 include/compta_ach.inc.php:43 -#: include/compta_fin.inc.php:40 include/compta_ven.inc.php:43 -#: include/user_menu.php:204 include/menu_translate.php:104 -#: include/menu_translate.php:106 -msgid "Impression" -msgstr "Indruk" - -#: html/commercial.php:117 include/template/security_list_action.php:81 -#: include/ext/stock/index.php:38 html/commercial.php:128 -#: include/menu_translate.php:20 -msgid "Stock" -msgstr "Voorraad" - -#: html/commercial.php:118 include/action.common.inc.php:265 -#: include/adm_card.inc.php:70 include/client_card.inc.php:70 -#: include/impress.inc.php:34 include/supplier_card.inc.php:70 -#: include/user_menu.php:195 include/template/detail-action.php:178 -#: include/template/security_list_action.php:59 html/commercial.php:129 -#: include/action.common.inc.php:270 include/adm_card.inc.php:67 -#: include/client_card.inc.php:65 include/supplier_card.inc.php:68 -#: include/user_menu.php:205 include/action.common.inc.php:271 -#: include/category_card.inc.php:64 include/menu_translate.php:19 -#: include/template/form_ledger_fin.php:25 -#: include/template/security_list_action.php:51 -msgid "Fiche" -msgstr "Blad" - -#: html/commercial.php:119 html/commercial.php:130 -msgid "Prevision" -msgstr "Vooruitzicht" - -#: html/commercial.php:120 include/adm_card.inc.php:71 -#: include/client_card.inc.php:71 include/supplier_card.inc.php:71 -#: html/commercial.php:131 include/adm_card.inc.php:68 -#: include/client_card.inc.php:66 include/supplier_card.inc.php:69 -#: include/category_card.inc.php:65 -#: include/template/security_list_action.php:54 -msgid "Suivi" -msgstr "Volgen" - -#: html/compta.php:34 html/compta.php:35 -msgid " Vous êtes déconnecté" -msgstr "U hebt geen verbinding meer" - -#: html/extension.php:64 html/extension.php:54 -msgid "Retour au tableau de bord" -msgstr "Terug naar controleblad" - -#: html/extension.php:80 html/extension.php:96 -#: include/extension_choice.inc.php:32 -msgid "Aucune extension disponible" -msgstr "Geen extensie beschikbaar" - -#: html/extension.php:88 include/user_menu.php:339 include/user_menu.php:452 -#: include/template/security_list_action.php:92 html/extension.php:109 -#: include/user_menu.php:354 include/user_menu.php:474 -#: include/menu_translate.php:59 -msgid "Extension" -msgstr "Plugin" - -#: html/extension.php:88 html/extension.php:109 -msgid "Choix de l'extension" -msgstr "Kies een plugin" - -#: html/import.php:103 html/import.php:107 -msgid "Choississez la période à transfèrer" -msgstr "Kies de periode" - -#: html/parametre.php:135 include/menu_translate.php:23 -msgid "Moyen de paiement" -msgstr "Betaling" - -#: html/parametre.php:136 -msgid "Tva" -msgstr "BTW" - -#: html/parametre.php:136 -msgid "Taux et poste comptable tva" -msgstr "Voetkoers en rekeningen " - -#: html/parametre.php:137 include/template/forecast-detail.php:8 -#: html/ajax_poste.php:83 include/template/ledger_detail_ach.php:208 -#: include/template/ledger_detail_fin.php:98 -#: include/template/ledger_detail_misc.php:86 -#: include/template/ledger_detail_ven.php:204 -#: include/template/ledger_detail_ach.php:248 -#: include/template/ledger_detail_fin.php:104 -#: include/template/ledger_detail_ven.php:246 -msgid "Poste Comptable" -msgstr "rekening" - -#: html/parametre.php:137 -msgid "Poste comptable constant" -msgstr "constante rekeningen" - -#: html/parametre.php:138 include/impress.inc.php:34 -#: include/menu_translate.php:86 -msgid "Catégorie de fiche" -msgstr "Categorie van bladeren" - -#: html/parametre.php:138 -msgid "Modifie les classe de base, les attribut,..." -msgstr "Veranderd de basis van rekening, attributen" - -#: html/parametre.php:236 html/parametre.php:248 html/parametre.php:267 -#: include/company.inc.php:33 -msgid "obligatoire" -msgstr "Verplicht" - -#: html/parametre.php:237 html/parametre.php:249 html/parametre.php:268 -#: include/company.inc.php:34 -msgid "optionnel" -msgstr "optie" - -#: html/parametre.php:238 html/parametre.php:250 html/parametre.php:269 -#: include/company.inc.php:35 -msgid "non utilisé" -msgstr "niet gebruik" - -#: html/parametre.php:271 html/parametre.php:283 html/parametre.php:306 -#: include/company.inc.php:87 -msgid "Nom société" -msgstr "Maatschappij naam" - -#: html/parametre.php:272 html/parametre.php:284 html/parametre.php:308 -#: include/company.inc.php:89 -msgid "Téléphone" -msgstr "Telefoon" - -#: html/parametre.php:273 html/parametre.php:285 html/parametre.php:310 -#: include/company.inc.php:91 -msgid "Fax" -msgstr "Fax" - -#: html/parametre.php:274 html/parametre.php:286 html/parametre.php:312 -#: include/company.inc.php:93 -msgid "Rue " -msgstr "Straat" - -#: html/parametre.php:275 html/parametre.php:287 html/parametre.php:314 -#: include/company.inc.php:95 -msgid "Numéro" -msgstr "Nummer" - -#: html/parametre.php:276 html/parametre.php:288 html/parametre.php:316 -#: include/company.inc.php:97 -msgid "Code Postal" -msgstr "Postcode" - -#: html/parametre.php:277 html/parametre.php:289 html/parametre.php:318 -#: include/company.inc.php:99 -msgid "Commune" -msgstr "Gemeente" - -#: html/parametre.php:278 html/parametre.php:290 html/parametre.php:320 -#: include/company.inc.php:101 -msgid "Pays" -msgstr "Land" - -#: html/parametre.php:279 html/parametre.php:291 html/parametre.php:322 -#: include/company.inc.php:103 -msgid "Numéro de Tva" -msgstr "BTW Nummer" - -#: html/parametre.php:281 html/parametre.php:293 html/parametre.php:324 -#: include/company.inc.php:104 -msgid "Utilisation de la compta. analytique" -msgstr "Gebruik van de analytisch boekhouding" - -#: html/parametre.php:283 html/parametre.php:295 html/parametre.php:326 -#: include/company.inc.php:106 -msgid "Utilisation du mode strict " -msgstr "Gebruik van de strikt wijze" - -#: html/parametre.php:285 html/parametre.php:297 html/parametre.php:328 -#: include/company.inc.php:107 -msgid "Assujetti à la tva" -msgstr "Gebruik van BTW" - -#: html/parametre.php:286 html/parametre.php:298 html/parametre.php:329 -#: include/company.inc.php:108 -msgid "Suggérer le numéro de pièce justificative" -msgstr "Suggeren de nummer van de akte" - -#: html/parametre.php:287 html/parametre.php:299 html/parametre.php:331 -#: include/company.inc.php:110 -msgid "Afficher la période comptable pour éviter les erreurs de date" -msgstr "Tonen de periode om fouten van datum te vermijden" - -#: html/recherche.php:45 html/user_advanced.php:57 include/action.inc.php:38 -#: include/adm.inc.php:50 include/client.inc.php:49 -#: include/compta_ach.inc.php:45 include/compta_fin.inc.php:47 -#: include/compta_ven.inc.php:45 include/forecast.inc.php:229 -#: include/forecast.inc.php:302 include/import_inc.php:48 -#: include/impress_poste.inc.php:51 include/quick_writing.inc.php:54 -#: include/report.inc.php:53 include/supplier.inc.php:49 -#: include/user_action_gl.php:44 include/ext/stock/index.php:78 -#: include/ext/stock/index.php:82 html/ajax_card.php:302 -#: html/user_advanced.php:48 include/client.inc.php:41 -#: include/forecast.inc.php:272 include/forecast.inc.php:339 -#: include/impress_poste.inc.php:42 include/param_jrn_add.inc.php:35 -#: include/param_jrn_detail.inc.php:34 include/report.inc.php:40 -#: html/ajax_card.php:311 include/forecast.inc.php:264 -#: include/forecast.inc.php:329 include/impress_poste.inc.php:43 -msgid "Recherche de fiche" -msgstr "Vind een blad" - -#: html/test.php:220 html/test.php:240 html/test.php:238 -msgid "Fin de programme" -msgstr "Eind" - -#: html/user_login.php:46 html/user_login.php:38 -msgid "Vous utilisez un navigateur dépassé depuis près de 8 ans!" -msgstr "IE 6 is NOT supported" - -#: html/user_login.php:47 html/user_login.php:39 -msgid "" -"Pour une meilleure expérience web, prenez le temps de mettre votre " -"navigateur à jour" +#: include/template/category_of_card.php:38 +msgid " A moins qu'en créant la fiche, vous forcez un autre poste comptable" msgstr "" -"Voor een betere kennismaking met Web, neem de tijd om de browser up to date" +"Minder dan het creëren van de vorm, u een ander financieel administratieve " +"post dwingen" -#: html/user_login.php:80 html/extension.php:61 html/extension.php:79 -#: html/user_login.php:117 html/user_login.php:119 -#: include/menu_translate.php:70 -msgid "Préférence" -msgstr "Voorkeur" +#: include/class_acc_payment.php:291 +msgid " Acompte à déduire" +msgstr "Aanbetaling te worden afgetrokken" -#: html/user_login.php:81 include/user_menu.php:447 html/user_login.php:118 -#: include/user_menu.php:469 html/user_login.php:120 -msgid "Deconnexion" -msgstr "Logout" +#: html/admin_repo.php:42 +msgid " Administration Globale" +msgstr "Global Administration" -#: html/user_login.php:85 html/user_login.php:122 -msgid "Bienvenue" -msgstr "Welkome" - -#: html/user_login.php:85 html/user_login.php:122 html/user_login.php:124 -msgid "dans NOALYSS" -msgstr "in NOALYSS" - -#: html/user_login.php:86 html/user_login.php:123 html/user_login.php:129 -msgid "Choississez votre dossier" -msgstr "Kiez uw dossier" - -#: html/user_login.php:91 include/class_acc_ledger_fin.php:819 -#: include/class_acc_ledger.php:2195 include/fiche.inc.php:72 -#: include/class_acc_ledger_fin.php:824 include/class_acc_ledger.php:2201 -#: html/user_login.php:128 include/class_acc_ledger_fin.php:878 -#: include/class_acc_ledger.php:2465 include/fiche.inc.php:62 -#: html/user_login.php:131 include/class_acc_ledger_fin.php:939 -#: include/class_acc_ledger.php:2673 include/fiche.inc.php:66 -msgid "Rechercher" -msgstr "Vinden" - -#: html/user_login.php:100 html/user_login.php:137 -msgid "Donnez une partie du nom du dossier à rechercher" -msgstr "Geef een deel van de naam of de dossier" - -#: include/ac_common.php:272 include/ac_common.php:356 -#: include/ac_common.php:398 -msgid "Cette action ne vous est pas autorisée Contactez votre responsable" -msgstr "Die actie is verboden" - -#: include/ac_common.php:278 include/ac_common.php:362 -#: include/ac_common.php:404 -msgid " Cette action ne vous est pas autorisée Contactez votre responsable" -msgstr "Die actie is verboden" - -#: include/action.common.inc.php:90 include/action.common.inc.php:93 -#: include/action.common.inc.php:96 -msgid "Action sauvée" -msgstr "Opslagen actie" - -#: include/action.common.inc.php:121 include/action.common.inc.php:204 -#: include/compta_ach.inc.php:230 include/compta_ven.inc.php:240 -#: include/action.common.inc.php:126 include/action.common.inc.php:206 -#: include/compta_ach.inc.php:238 include/compta_ven.inc.php:257 -#: include/action.common.inc.php:125 include/compta_ven.inc.php:246 -msgid "Enregistrer" -msgstr "Opslaan" - -#: include/action.common.inc.php:122 include/action.common.inc.php:127 -#: include/action.common.inc.php:126 -msgid "Génère le document" -msgstr "Maak de document" - -#: include/action.common.inc.php:150 include/action.common.inc.php:154 -#: include/action.common.inc.php:153 -msgid "Ajoute une action à celle-ci" -msgstr "Een actie toevoegen bij deze " - -#: include/action.common.inc.php:151 include/action.common.inc.php:155 -#: include/action.common.inc.php:154 -msgid "Efface cette action" -msgstr "Deze actie wissen" - -#: include/action.common.inc.php:151 -msgid "Vous confirmez l'effacement" -msgstr "Wissen bevestigen" - -#: include/action.common.inc.php:170 include/action.common.inc.php:174 -msgid "Action " -msgstr "Actie" - -#: include/action.common.inc.php:170 include/action.common.inc.php:174 -msgid " effacée" -msgstr "Wissen" - -#: include/action.common.inc.php:235 include/action.common.inc.php:241 -msgid "Recherche avancée" -msgstr "Gedetailleerder zoeken" - -#: include/action.common.inc.php:266 include/action.common.inc.php:271 -#: include/action.common.inc.php:272 -#, php-format -msgid "Titre ou référence" -msgstr "Titel of referentie" - -#: include/action.common.inc.php:273 include/action.common.inc.php:278 -#: include/action.common.inc.php:279 -msgid "Tous les types" -msgstr "Alle types" - -#: include/action.common.inc.php:282 include/action.common.inc.php:297 -#: include/action.common.inc.php:289 -msgid "les actions fermées aussi:" -msgstr "Alsook gesloten acties" - -#: include/action.common.inc.php:285 include/action.common.inc.php:299 -#: include/action.common.inc.php:291 -msgid "affecté à d'autre:" -msgstr "Bestemt aan anderen" - -#: include/action.common.inc.php:287 include/client.inc.php:100 -#: include/contact.inc.php:126 include/adm.inc.php:101 -#: include/supplier.inc.php:100 include/action.common.inc.php:301 -#: include/adm.inc.php:96 include/client.inc.php:105 -#: include/contact.inc.php:127 include/supplier.inc.php:92 -#: include/action.common.inc.php:293 include/adm.inc.php:92 -#: include/bank.inc.php:88 include/client.inc.php:86 -#: include/contact.inc.php:93 -msgid "recherche" -msgstr "zoeken" - -#: include/action.common.inc.php:300 include/action.common.inc.php:315 -#: include/action.common.inc.php:307 -msgid "Ajout Action" -msgstr "Actie toevoegen" - -#: include/action.common.inc.php:304 include/action.common.inc.php:318 -#: include/action.common.inc.php:319 include/action.common.inc.php:335 -#: include/action.common.inc.php:311 include/action.common.inc.php:327 -msgid "Afficher Recherche" -msgstr "Zoekcriteria tonen" - -#: include/action.common.inc.php:304 include/action.common.inc.php:318 -#: include/action.common.inc.php:319 include/action.common.inc.php:335 -#: include/action.common.inc.php:311 include/action.common.inc.php:327 -msgid "Cache Recherche" -msgstr "Zoekcriteria verbergen " - -#: include/action.inc.php:44 include/dossier.inc.php:242 -#: include/dossier.inc.php:268 include/dossier.inc.php:286 -#: include/pref.inc.php:225 include/pref.inc.php:59 html/ajax_misc.php:266 -#: include/action.inc.php:28 include/dossier.inc.php:269 -#: include/dossier.inc.php:297 include/dossier.inc.php:316 -#: include/fiche.inc.php:307 include/pref.inc.php:58 include/pref.inc.php:242 -#: html/ajax_misc.php:268 include/dossier.inc.php:273 -#: include/dossier.inc.php:301 include/dossier.inc.php:320 -#: include/fiche.inc.php:316 include/pref.inc.php:221 -msgid "Retour" -msgstr "Terug" - -#: include/adm_card.inc.php:70 include/client_card.inc.php:70 -#: include/supplier_card.inc.php:70 include/adm_card.inc.php:67 -#: include/client_card.inc.php:65 include/supplier_card.inc.php:68 -#: include/category_card.inc.php:64 -msgid "Détail de la fiche" -msgstr "Detail van de blad" - -#: include/adm_card.inc.php:71 include/adm_card.inc.php:68 -msgid "Suivi adm, devis, bon de commande, courrier" -msgstr "Opvolging van adminstratie, schatting, bestelbon" - -#: include/adm_card.inc.php:72 include/client_card.inc.php:72 -#: include/supplier_card.inc.php:72 include/template/detail-action.php:51 -#: include/adm_card.inc.php:69 include/client_card.inc.php:67 -#: include/supplier_card.inc.php:70 include/category_card.inc.php:66 -msgid "Contact" -msgstr "Contact" - -#: include/adm_card.inc.php:72 include/adm_card.inc.php:69 -msgid "Liste de contacts de cette administration" -msgstr "Contacten lijst van deze administratie" - -#: include/adm_card.inc.php:73 include/client_card.inc.php:73 -#: include/supplier_card.inc.php:73 include/template/form_ledger_fin.php:17 -#: include/adm_card.inc.php:70 include/client_card.inc.php:68 -#: include/supplier_card.inc.php:71 include/category_card.inc.php:67 -#: include/template/form_ledger_fin.php:21 -msgid "Opérations" -msgstr "Operatie" - -#: include/adm_card.inc.php:73 include/client_card.inc.php:73 -#: include/supplier_card.inc.php:73 include/adm_card.inc.php:70 -#: include/client_card.inc.php:68 include/supplier_card.inc.php:71 -#: include/category_card.inc.php:67 -msgid "Toutes les opérations" -msgstr "Alle operaties" - -#: include/adm_card.inc.php:74 include/client_card.inc.php:74 -#: include/supplier_card.inc.php:74 include/adm_card.inc.php:73 -#: include/client_card.inc.php:71 include/action.inc.php:26 -msgid "Retour liste" -msgstr "Terug lijst" - -#: include/adm_card.inc.php:74 include/adm_card.inc.php:73 -msgid "Retour à la liste des administration" -msgstr "Terug naar de lijst van administratie" - -#: include/adm_card.inc.php:116 include/client_card.inc.php:116 -#: include/supplier_card.inc.php:116 include/adm_card.inc.php:122 -#: include/client_card.inc.php:121 include/supplier_card.inc.php:131 -#: include/category_card.inc.php:126 -msgid "Vous devez aller dans fiche et créer une catégorie pour les contacts" -msgstr "" -"U moet naar het menu blad en een niewe categorie maken voor de contacten" - -#: include/adm_card.inc.php:122 include/adm.inc.php:118 -#: include/class_acc_ledger_fin.php:192 include/class_acc_ledger.php:1240 -#: include/class_acc_ledger_purchase.php:663 -#: include/class_acc_ledger_purchase.php:670 -#: include/class_acc_ledger_sold.php:819 include/class_acc_ledger_sold.php:826 -#: include/class_action.php:261 include/client_card.inc.php:122 -#: include/client.inc.php:117 include/supplier_card.inc.php:122 -#: include/supplier.inc.php:117 include/ext/stock/class_ext_stock.php:81 -#: include/ext/stock/class_ext_stock.php:80 -#: include/ext/stock/class_ext_stock.php:124 -#: include/class_acc_ledger_fin.php:197 -#: include/class_acc_ledger_purchase.php:668 -#: include/class_acc_ledger_purchase.php:675 -#: include/class_acc_ledger_sold.php:823 include/class_acc_ledger_sold.php:830 -#: include/ext/stock/class_ext_stock.php:103 include/adm_card.inc.php:128 -#: include/class_acc_ledger.php:1379 include/class_acc_ledger_purchase.php:885 -#: include/class_acc_ledger_purchase.php:891 -#: include/class_acc_ledger_sold.php:960 include/class_acc_ledger_sold.php:966 -#: include/class_action.php:265 include/client_card.inc.php:127 -#: include/client.inc.php:127 include/supplier_card.inc.php:137 -#: include/supplier.inc.php:115 include/ext/stock/class_ext_stock.php:102 -#: include/adm.inc.php:116 include/bank.inc.php:113 -#: include/category_card.inc.php:132 include/class_acc_ledger_fin.php:198 -#: include/class_acc_ledger.php:1528 include/class_acc_ledger_purchase.php:887 -#: include/class_acc_ledger_purchase.php:893 -#: include/class_acc_ledger_sold.php:1008 -#: include/class_acc_ledger_sold.php:1014 include/class_follow_up.php:271 -#: include/client.inc.php:109 include/contact.inc.php:124 -msgid "Créer une nouvelle fiche" -msgstr "Maak een nieuwe blad" - -#: include/anc_imp.inc.php:36 -msgid "Listing" -msgstr "listing" - -#: include/anc_imp.inc.php:36 -msgid "Listing des opérations" -msgstr "Listing van operatie" - -#: include/anc_imp.inc.php:37 include/menu_translate.php:5 -msgid "Balance simple" -msgstr "Eenvoudige balans" - -#: include/anc_imp.inc.php:37 -msgid "Balance simple d'un plan analytique" -msgstr "Eenvoudige balans van een analytisch plan" - -#: include/anc_imp.inc.php:38 -msgid "Balance croisée" -msgstr "Kruisbalans" - -#: include/anc_imp.inc.php:38 -msgid "Balance croisée de 2 plans analytiques" -msgstr "Kruisbalans van 2 analytische plannen" - -#: include/anc_od.inc.php:39 include/anc_od.inc.php:42 -#: include/anc_od.inc.php:43 -msgid "Aucun plan analytique défini" -msgstr "Geen enkele analytisch plan" - -#: include/anc_od.inc.php:52 include/class_anticipation.php:187 -#: include/anc_od.inc.php:57 include/class_anticipation.php:253 -#: include/anc_od.inc.php:58 include/class_anticipation.php:261 -msgid "Nouveau" -msgstr "Nieuw" - -#: include/anc_od.inc.php:55 include/anc_od.inc.php:60 -#: include/anc_od.inc.php:61 -msgid "Liste opérations" -msgstr "Operatielijsten" - -#: include/anc_od.inc.php:114 include/compta_ach.inc.php:160 -#: include/compta_ven.inc.php:169 html/ajax_ledger.php:390 -#: include/anc_od.inc.php:121 include/compta_ach.inc.php:161 -#: include/compta_ven.inc.php:173 html/ajax_ledger.php:447 -#: include/anc_od.inc.php:122 include/compta_ach.inc.php:127 -#: include/compta_ven.inc.php:144 -msgid "Opération sauvée" -msgstr "Opgeslagen operatie" - -#: include/class_acc_ledger_fin.php:54 -#: include/class_acc_ledger_purchase.php:60 -#: include/class_acc_ledger_sold.php:60 -#: include/class_acc_ledger_purchase.php:65 -#: include/class_acc_ledger_fin.php:57 -#: include/class_acc_ledger_purchase.php:72 -#: include/class_acc_ledger_sold.php:65 -#: include/class_acc_ledger_purchase.php:73 -msgid "Double Encodage" -msgstr "Dubbel gecodeerd" - -#: include/class_acc_ledger_fin.php:58 include/class_acc_ledger_fin.php:63 -msgid "Vous n'avez pas donné de banque" -msgstr "U hebt geen bank opgegeven" - -#: include/class_acc_ledger_fin.php:72 -#: include/class_acc_ledger_purchase.php:80 -#: include/class_acc_ledger_sold.php:80 include/class_acc_ledger_fin.php:77 -#: include/class_acc_ledger_purchase.php:85 -#: include/class_acc_ledger_sold.php:84 include/class_acc_ledger_fin.php:96 -#: include/class_acc_ledger.php:1630 include/class_acc_ledger_purchase.php:96 -#: include/class_acc_ledger_sold.php:92 include/class_acc_ledger.php:1792 -#: include/class_acc_ledger_purchase.php:97 -msgid "Date et periode ne correspondent pas" -msgstr "Datum en periode komen niet overeen" - -#: include/class_acc_ledger_fin.php:78 -#: include/class_acc_ledger_purchase.php:85 -#: include/class_acc_ledger_sold.php:89 include/class_acc_ledger_fin.php:83 -#: include/class_acc_ledger_purchase.php:90 -#: include/class_acc_ledger_sold.php:93 include/class_acc_ledger_fin.php:102 -#: include/class_acc_ledger_purchase.php:101 -#: include/class_acc_ledger_sold.php:103 -#: include/class_acc_ledger_purchase.php:102 -msgid "Periode fermee" -msgstr "Gesloten periode" - -#: include/class_acc_ledger_fin.php:86 -#: include/class_acc_ledger_purchase.php:94 -#: include/class_acc_ledger_fin.php:91 -#: include/class_acc_ledger_purchase.php:99 -#: include/class_acc_ledger_fin.php:112 -#: include/class_acc_ledger_purchase.php:111 -#: include/class_acc_ledger_purchase.php:112 -msgid "Vous utilisez le mode strict la dernière operation est à la date du " -msgstr "U gebruikt de strikt mode, de datum van de laatste operatie is" - -#: include/class_acc_ledger_fin.php:87 include/class_acc_ledger_sold.php:98 -#: include/class_acc_ledger_fin.php:92 include/class_acc_ledger_sold.php:102 -#: include/class_acc_ledger_fin.php:113 include/class_acc_ledger_sold.php:113 -msgid " vous ne pouvez pas encoder à une date antérieure" -msgstr "U mag niet voor deze datum coderen" - -#: include/class_acc_ledger_fin.php:787 -#: include/class_acc_ledger_purchase.php:740 -#: include/class_acc_ledger_sold.php:890 include/class_acc_ledger_fin.php:792 -#: include/class_acc_ledger_purchase.php:745 -#: include/class_acc_ledger_sold.php:894 include/class_acc_ledger_fin.php:843 -#: include/class_acc_ledger_purchase.php:971 -#: include/class_acc_ledger_sold.php:1040 include/class_acc_ledger_fin.php:904 -#: include/class_acc_ledger.php:1535 include/class_acc_ledger_purchase.php:978 -#: include/class_acc_ledger_sold.php:1094 -msgid "Pas de journal disponible" -msgstr "Geen journaal beschikbaar" - -#: include/class_acc_ledger_fin.php:790 include/class_acc_ledger_fin.php:795 -#: include/class_acc_ledger_fin.php:848 include/class_acc_ledger_fin.php:909 -msgid "Tous les journaux financiers" -msgstr "Alle financiele grootboeken" - -#: include/class_acc_ledger.php:499 include/class_acc_ledger.php:1149 -#: include/class_acc_ledger.php:1308 include/class_anc_account.php:260 -#: include/class_anc_listing.php:76 include/template/forecast-detail.php:11 -#: include/template/form_ledger_fin.php:22 include/class_acc_ledger.php:608 -#: include/class_acc_ledger.php:1262 include/class_acc_ledger.php:1470 -#: include/class_anc_account.php:272 include/class_anc_listing.php:85 -#: include/impress_fiche.inc.php:229 include/template/letter_all.php:32 -#: include/template/letter_prop.php:31 include/class_acc_ledger.php:1629 -#: include/class_acc_ledger_sold.php:699 include/class_anc_listing.php:89 -#: include/impress_fiche.inc.php:292 include/template/form_ledger_fin.php:27 -#: include/template/letter_prop.php:71 -msgid "Montant" -msgstr "bedrag" - -#: include/class_acc_ledger.php:500 include/class_acc_ledger.php:609 -msgid "PJ" -msgstr "Bewijs" - -#: include/class_acc_ledger.php:501 include/class_acc_ledger.php:610 -msgid "Ech" -msgstr "Termijn" - -#: include/class_acc_ledger.php:594 include/class_acc_ledger.php:706 -#: include/class_acc_ledger.php:637 include/class_acc_ledger.php:831 -msgid "Aucun enregistrement trouvé" -msgstr "Geen enkele gegevens gevonden" - -#: include/class_acc_ledger.php:612 include/class_acc_ledger.php:726 -#: include/class_acc_ledger.php:852 -msgid "Payé" -msgstr "Betaald" - -#: include/class_acc_ledger.php:614 include/class_acc_ledger.php:728 -#: include/class_acc_ledger.php:657 include/class_acc_ledger.php:854 -msgid "Op. Concernée" -msgstr "Betrokken operatie " - -#: include/class_acc_ledger.php:616 -msgid "Action" -msgstr "Actie" - -#: include/class_acc_ledger.php:617 include/user_menu.php:342 -#: include/class_acc_ledger.php:729 include/user_menu.php:357 -#: include/class_acc_ledger.php:855 include/menu_translate.php:60 -msgid "Document" -msgstr "Document" - -#: include/class_acc_ledger.php:744 include/compta_fin.inc.php:166 -#: include/dossier.inc.php:183 include/dossier.inc.php:285 -#: include/forecast.inc.php:333 include/class_document_type.php:64 -#: include/class_document_modele.php:71 include/class_document_type.php:66 -#: include/compta_fin.inc.php:168 include/dossier.inc.php:201 -#: include/dossier.inc.php:315 include/forecast.inc.php:372 -#: include/template/ledger_detail_bottom.php:71 include/compta_fin.inc.php:143 -#: include/dossier.inc.php:205 include/dossier.inc.php:319 -#: include/forecast.inc.php:363 include/template/ledger_detail_bottom.php:75 -msgid "Effacer" -msgstr "Wissen" - -#: include/class_acc_ledger.php:999 include/class_acc_ledger.php:1101 -#: include/class_acc_ledger.php:1215 -msgid "Parametres journaux non trouves" -msgstr "Parameters van de journaal niet gevonden" - -#: include/class_acc_ledger.php:1143 include/class_acc_ledger.php:1256 -#: include/class_acc_ledger.php:1378 -msgid "PJ Num" -msgstr "Bewijs nummer" - -#: include/class_acc_ledger.php:1147 include/class_acc_ledger.php:1260 -msgid "Quick Code ou" -msgstr "Quick code of" - -#: include/class_acc_ledger.php:1148 include/class_acc_ledger.php:1306 -#: include/impress.inc.php:33 include/class_acc_ledger.php:1261 -#: include/class_acc_ledger.php:1468 include/class_acc_ledger.php:1383 -#: include/class_acc_ledger.php:1627 include/class_anc_grandlivre.php:157 -#: include/class_anc_listing.php:83 include/menu_translate.php:24 -#: include/menu_translate.php:98 -msgid "Poste" -msgstr "Rekening" - -#: include/class_acc_ledger.php:1286 include/class_acc_ledger.php:1438 -#: include/template/ledger_detail_ach.php:42 -#: include/template/ledger_detail_fin.php:58 -#: include/template/ledger_detail_misc.php:47 -#: include/template/ledger_detail_ven.php:43 include/class_acc_ledger.php:1595 -#: include/template/ledger_detail_ach.php:51 -#: include/template/ledger_detail_fin.php:64 -#: include/template/ledger_detail_ven.php:51 -msgid "Pièce" -msgstr "bewijs" - -#: include/class_acc_ledger.php:1307 include/payment_middle.inc.php:122 -#: include/template/forecast-detail.php:10 -#: include/template/new_mod_payment.php:7 include/class_acc_account.php:169 -#: include/class_acc_account.php:194 include/class_acc_ledger.php:1255 -#: include/class_acc_ledger.php:1443 include/class_acc_ledger.php:1469 -#: include/class_acc_ledger_purchase.php:1268 -#: include/class_acc_ledger_sold.php:650 include/payment_middle.inc.php:126 -#: include/template/form_ledger_detail.php:11 -#: include/template/ledger_detail_ach.php:51 -#: include/template/ledger_detail_ach.php:210 -#: include/template/ledger_detail_fin.php:46 -#: include/template/ledger_detail_fin.php:100 -#: include/template/ledger_detail_misc.php:35 -#: include/template/ledger_detail_misc.php:88 -#: include/template/ledger_detail_ven.php:52 -#: include/template/ledger_detail_ven.php:206 -#: include/class_acc_account.php:188 include/class_acc_ledger.php:1377 -#: include/class_acc_ledger.php:1384 include/class_acc_ledger.php:1602 -#: include/class_acc_ledger.php:1628 -#: include/class_acc_ledger_purchase.php:1279 -#: include/class_acc_ledger_sold.php:674 -#: include/template/form_ledger_detail.php:14 -#: include/template/ledger_detail_ach.php:60 -#: include/template/ledger_detail_ach.php:250 -#: include/template/ledger_detail_fin.php:52 -#: include/template/ledger_detail_fin.php:106 -#: include/template/ledger_detail_ven.php:60 -#: include/template/ledger_detail_ven.php:248 -#: include/template/new_mod_payment.php:16 -#, php-format -msgid "Libellé" -msgstr "Opstellen" - -#: include/class_acc_ledger.php:1451 include/class_acc_ledger.php:1457 -msgid "Pas dans la periode active" -msgstr "Niet in de actieve periode" - -#: include/class_acc_ledger.php:1470 include/class_acc_ledger.php:1476 -#: include/class_acc_ledger.php:1648 include/class_acc_ledger.php:1810 -msgid "Vous utilisez le mode strict la dernière operation est la date du " -msgstr "U gebruikt de strikt mode, de datum van de laatste operatie is" - -#: include/class_acc_ledger.php:1471 include/class_acc_ledger.php:1477 -#: include/class_acc_ledger.php:1649 include/class_acc_ledger.php:1811 -msgid "vous ne pouvez pas encoder à une date antérieure" -msgstr "U mag niet voor deze datum coderen" - -#: include/class_acc_ledger.php:1503 include/class_acc_ledger.php:1509 -#: include/class_acc_ledger.php:1683 include/class_acc_ledger.php:1851 -msgid "Le poste" -msgstr "De rekening" - -#: include/class_acc_ledger.php:1503 include/class_acc_ledger.php:1509 -#: include/class_acc_ledger.php:1683 include/class_acc_ledger.php:1851 -msgid "n'est pas dans ce journal" -msgstr "is niet in deze journaal" - -#: include/class_acc_ledger.php:1505 include/class_acc_ledger.php:1511 -msgid "Poste invalide" -msgstr "Verkeerde rekening" - -#: include/class_acc_ledger.php:1507 include/class_acc_ledger.php:1513 -msgid "Poste Inexistant" -msgstr "Niet bestaand rekening " - -#: include/class_acc_ledger.php:1515 include/class_acc_ledger.php:1521 -#: include/class_acc_ledger.php:1696 include/class_acc_ledger.php:1877 -msgid "Balance incorrecte " -msgstr "Verkeerde balans" - -#: include/class_acc_ledger.php:2206 include/class_acc_ledger.php:2212 -msgid "Afficher recherche" -msgstr "Zoekcriteria tonen" - -#: include/class_acc_ledger_purchase.php:64 -#: include/class_acc_ledger_purchase.php:69 -#: include/class_acc_ledger_purchase.php:76 -#: include/class_acc_ledger_purchase.php:77 -msgid "Vous n'avez pas donné de fournisseur" -msgstr "U hebt geen leverancier gegeven" - -#: include/class_acc_ledger_purchase.php:95 -#: include/class_acc_ledger_purchase.php:100 -#: include/class_acc_ledger_purchase.php:112 -#: include/class_acc_ledger_purchase.php:113 -msgid " vous ne pouvez pas encoder à une date antérieure dans ce journal" -msgstr "U mag niet voor deze datum coderen" - -#: include/class_acc_ledger_purchase.php:105 -#: include/class_acc_ledger_purchase.php:127 -#: include/class_acc_ledger_purchase.php:143 -#: include/class_acc_ledger_purchase.php:145 -#: include/class_acc_ledger_purchase.php:151 -#: include/class_acc_ledger_purchase.php:172 -#: include/class_acc_ledger_sold.php:106 include/class_acc_ledger_sold.php:129 -#: include/class_acc_ledger_sold.php:140 include/class_acc_ledger_sold.php:142 -#: include/class_acc_ledger_sold.php:148 include/class_acc_ledger_sold.php:167 -#: include/class_acc_ledger_purchase.php:110 -#: include/class_acc_ledger_purchase.php:132 -#: include/class_acc_ledger_purchase.php:148 -#: include/class_acc_ledger_purchase.php:150 -#: include/class_acc_ledger_purchase.php:156 -#: include/class_acc_ledger_purchase.php:177 -#: include/class_acc_ledger_sold.php:110 include/class_acc_ledger_sold.php:133 -#: include/class_acc_ledger_sold.php:144 include/class_acc_ledger_sold.php:146 -#: include/class_acc_ledger_sold.php:152 include/class_acc_ledger_sold.php:171 -#: include/class_acc_ledger_purchase.php:122 -#: include/class_acc_ledger_purchase.php:147 -#: include/class_acc_ledger_purchase.php:164 -#: include/class_acc_ledger_purchase.php:166 -#: include/class_acc_ledger_purchase.php:173 -#: include/class_acc_ledger_purchase.php:178 -#: include/class_acc_ledger_purchase.php:194 -#: include/class_acc_ledger_purchase.php:219 -#: include/class_acc_ledger_sold.php:121 include/class_acc_ledger_sold.php:160 -#: include/class_acc_ledger_sold.php:162 include/class_acc_ledger_sold.php:168 -#: include/class_acc_ledger_sold.php:175 include/class_acc_ledger_sold.php:179 -#: include/class_acc_ledger_sold.php:213 -#: include/class_acc_ledger_purchase.php:123 -#: include/class_acc_ledger_purchase.php:165 -#: include/class_acc_ledger_purchase.php:167 -#: include/class_acc_ledger_sold.php:174 include/class_acc_ledger_sold.php:178 -#: include/class_acc_ledger_sold.php:212 -msgid "La fiche " -msgstr "Het blad" - -#: include/class_acc_ledger_purchase.php:105 -#: include/class_acc_ledger_purchase.php:151 -#: include/class_acc_ledger_sold.php:106 include/class_acc_ledger_sold.php:148 -#: include/class_acc_ledger_purchase.php:110 -#: include/class_acc_ledger_purchase.php:156 -#: include/class_acc_ledger_sold.php:110 include/class_acc_ledger_sold.php:152 -#: include/class_acc_ledger_purchase.php:122 -#: include/class_acc_ledger_purchase.php:194 -#: include/class_acc_ledger_sold.php:121 include/class_acc_ledger_sold.php:168 -#: include/class_acc_ledger_purchase.php:123 -msgid "n'a pas de poste comptable" -msgstr "heeft geen rekening" - -#: include/class_acc_ledger_purchase.php:120 -#: include/class_acc_ledger_purchase.php:166 -#: include/class_acc_ledger_sold.php:122 include/class_acc_ledger_sold.php:161 -#: include/class_acc_ledger_purchase.php:125 -#: include/class_acc_ledger_purchase.php:171 -#: include/class_acc_ledger_sold.php:126 include/class_acc_ledger_sold.php:165 -#: include/class_acc_ledger_purchase.php:141 -#: include/class_acc_ledger_purchase.php:213 -#: include/class_acc_ledger_sold.php:141 include/class_acc_ledger_sold.php:207 -#: include/class_acc_ledger_purchase.php:142 -#: include/class_acc_ledger_sold.php:206 -msgid "Pour la fiche " -msgstr "Voor het blad" - -#: include/class_acc_ledger_purchase.php:120 -#: include/class_acc_ledger_sold.php:122 include/class_acc_ledger_sold.php:161 -#: include/class_acc_ledger_purchase.php:125 -#: include/class_acc_ledger_sold.php:126 include/class_acc_ledger_sold.php:165 -#: include/class_acc_ledger_purchase.php:141 -#: include/class_acc_ledger_sold.php:141 include/class_acc_ledger_sold.php:207 -#: include/class_acc_ledger_purchase.php:142 -#: include/class_acc_ledger_sold.php:206 -msgid " le poste comptable [" -msgstr "De rekening [" - -#: include/class_acc_ledger_purchase.php:120 -#: include/class_acc_ledger_purchase.php:166 -#: include/class_acc_ledger_sold.php:161 -#: include/class_acc_ledger_purchase.php:125 -#: include/class_acc_ledger_purchase.php:171 -#: include/class_acc_ledger_sold.php:165 -#: include/class_acc_ledger_purchase.php:141 -#: include/class_acc_ledger_purchase.php:213 -#: include/class_acc_ledger_sold.php:207 -#: include/class_acc_ledger_purchase.php:142 -#: include/class_acc_ledger_sold.php:206 -msgid "n'existe pas" -msgstr "bestaat niet" - -#: include/class_acc_ledger_purchase.php:127 -#: include/class_acc_ledger_purchase.php:172 -#: include/class_acc_ledger_sold.php:129 include/class_acc_ledger_sold.php:167 -#: include/class_acc_ledger_purchase.php:132 -#: include/class_acc_ledger_purchase.php:177 -#: include/class_acc_ledger_sold.php:133 include/class_acc_ledger_sold.php:171 -#: include/class_acc_ledger_purchase.php:147 -#: include/class_acc_ledger_purchase.php:219 -#: include/class_acc_ledger_sold.php:148 include/class_acc_ledger_sold.php:213 -#: include/class_acc_ledger_purchase.php:148 -#: include/class_acc_ledger_sold.php:212 -msgid "n'est pas accessible à ce journal" -msgstr "kan niet gebruikt worden door dit journaal" - -#: include/class_acc_ledger_purchase.php:143 -#: include/class_acc_ledger_purchase.php:148 -#: include/class_acc_ledger_purchase.php:164 -#: include/class_acc_ledger_purchase.php:165 -msgid "a un montant invalide" -msgstr "heeft een verkeerde bedrag" - -#: include/class_acc_ledger_purchase.php:145 -#: include/class_acc_ledger_purchase.php:150 -#: include/class_acc_ledger_purchase.php:166 -#: include/class_acc_ledger_purchase.php:167 -msgid "a une quantité invalide" -msgstr " heeft een verkeerd hoeveelheid" - -#: include/class_acc_ledger_purchase.php:166 -#: include/class_acc_ledger_purchase.php:171 -#: include/class_acc_ledger_purchase.php:213 -msgid " le poste comptable" -msgstr "de rekening" - -#: include/class_acc_ledger_purchase.php:176 -#: include/class_acc_ledger_sold.php:171 -#: include/class_acc_ledger_purchase.php:181 -#: include/class_acc_ledger_sold.php:175 -#: include/class_acc_ledger_purchase.php:264 -#: include/class_acc_ledger_sold.php:217 -#: include/class_acc_ledger_purchase.php:258 -#: include/class_acc_ledger_sold.php:216 -msgid "Il n'y a aucune marchandise" -msgstr "Er zijn geen goederen" - -#: include/class_acc_ledger_purchase.php:546 -#: include/class_acc_ledger_sold.php:400 -#: include/ext/stock/class_ext_stock.php:543 -#: include/ext/stock/class_ext_stock.php:537 -#: include/ext/stock/class_ext_stock.php:580 -#: include/class_acc_ledger_purchase.php:551 -#: include/class_acc_ledger_sold.php:404 -#: include/ext/stock/class_ext_stock.php:590 -#: include/ext/stock/class_ext_stock.php:570 -#: include/class_acc_ledger_purchase.php:717 -#: include/class_acc_ledger_sold.php:479 -#: include/ext/stock/class_ext_stock.php:566 -#: include/class_acc_ledger_purchase.php:726 -#: include/class_acc_ledger_sold.php:501 -msgid "Document généré" -msgstr "gegenereerd document" - -#: include/class_acc_ledger_purchase.php:547 -#: include/class_acc_ledger_purchase.php:552 -msgid "Note de frais" -msgstr "Onkostennota" - -#: include/class_acc_ledger_purchase.php:690 -#: include/class_acc_ledger_purchase.php:1003 -#: include/class_acc_ledger_purchase.php:695 -#: include/class_acc_ledger_purchase.php:1008 -#: include/class_acc_ledger_purchase.php:913 -#: include/class_acc_ledger_purchase.php:1258 -#: include/class_acc_ledger_purchase.php:918 -#: include/class_acc_ledger_purchase.php:1266 -msgid "En-tête facture fournisseur" -msgstr "Hoefdbrief Leverancier" - -#: include/class_acc_ledger_purchase.php:691 -#: include/class_acc_ledger_purchase.php:696 -#: include/class_acc_ledger_purchase.php:914 -#: include/class_acc_ledger_purchase.php:919 -msgid "Détail articles acheté" -msgstr "Detail gekochte artikelen" - -#: include/class_acc_ledger_purchase.php:723 -#: include/class_acc_ledger_sold.php:875 -#: include/class_acc_ledger_purchase.php:728 -#: include/class_acc_ledger_sold.php:879 include/class_acc_ledger.php:1417 -#: include/class_acc_ledger_purchase.php:951 -#: include/class_acc_ledger_sold.php:1023 include/class_acc_ledger.php:1574 -#: include/class_acc_ledger_purchase.php:956 -#: include/class_acc_ledger_sold.php:1075 -msgid "Aucune période ouverte" -msgstr "Geen geopende periode" - -#: include/class_acc_ledger_purchase.php:730 -#: include/class_acc_ledger_sold.php:880 -#: include/class_acc_ledger_purchase.php:735 -#: include/class_acc_ledger_sold.php:884 include/class_acc_ledger.php:1422 -#: include/class_acc_ledger_purchase.php:958 -#: include/class_acc_ledger_sold.php:1028 include/class_acc_ledger.php:1579 -#: include/class_acc_ledger_purchase.php:963 -#: include/class_acc_ledger_sold.php:1080 -msgid "Période comptable" -msgstr "Boekhoudingsperiode" - -#: include/class_acc_ledger_purchase.php:799 -#: include/class_acc_ledger_purchase.php:804 -#: include/class_acc_ledger_purchase.php:1033 -#: include/class_acc_ledger_purchase.php:1040 -msgid "Fournisseur " -msgstr "Leverancier" - -#: include/class_acc_ledger_purchase.php:952 -#: include/class_acc_ledger_sold.php:1099 include/compta_fin.inc.php:164 -#: include/ext/stock/class_ext_stock.php:299 -#: include/ext/stock/class_ext_stock.php:306 -#: include/ext/stock/class_ext_stock.php:347 -#: include/class_acc_ledger_purchase.php:957 -#: include/class_acc_ledger_sold.php:1103 -#: include/ext/stock/class_ext_stock.php:357 -#: include/ext/stock/class_ext_stock.php:336 -#: include/class_acc_ledger_purchase.php:1201 -#: include/class_acc_ledger_sold.php:1267 include/compta_fin.inc.php:166 -#: include/ext/stock/class_ext_stock.php:332 -#: include/class_acc_ledger_purchase.php:1215 -#: include/class_acc_ledger_sold.php:1327 include/compta_fin.inc.php:141 -msgid "Ajout article" -msgstr "Artikel toevoegen" - -#: include/class_acc_ledger_purchase.php:965 -#: include/class_acc_ledger_sold.php:1107 -#: include/class_acc_ledger_purchase.php:970 -#: include/class_acc_ledger_sold.php:1111 -#: include/class_acc_ledger_purchase.php:1216 -#: include/class_acc_ledger_sold.php:1276 include/class_acc_ledger.php:3286 -msgid "Payé par" -msgstr "Betaald door" - -#: include/class_acc_ledger_purchase.php:1007 -#: include/class_acc_ledger_sold.php:538 -#: include/template/form_ledger_detail.php:13 -#: include/ext/stock/form_stock_detail.php:18 -#: include/class_acc_ledger_purchase.php:1012 -#: include/class_acc_ledger_sold.php:542 -#: include/ext/stock/form_stock_detail_in.php:18 -#: include/class_acc_ledger_purchase.php:1262 -#: include/class_acc_ledger_sold.php:644 -#: include/template/form_ledger_detail.php:7 -#: include/class_acc_ledger_purchase.php:1273 -#: include/class_acc_ledger_sold.php:668 -#: include/template/form_ledger_detail.php:10 -msgid "Echeance" -msgstr "Termijn" - -#: include/class_acc_ledger_purchase.php:1008 -#: include/class_acc_ledger_sold.php:539 -#: include/class_acc_ledger_purchase.php:1013 -#: include/class_acc_ledger_sold.php:543 include/class_acc_ledger.php:1254 -#: include/class_acc_ledger_purchase.php:1263 -#: include/class_acc_ledger_sold.php:645 include/class_acc_ledger.php:1376 -#: include/class_acc_ledger_purchase.php:1274 -#: include/class_acc_ledger_sold.php:669 -msgid "Période Comptable" -msgstr "Boekhoudingsperiode" - -#: include/class_acc_ledger_purchase.php:1010 -#: include/class_acc_ledger_sold.php:541 include/import_inc.php:139 -#: include/import_inc.php:402 include/quick_writing.inc.php:154 -#: include/template/form_ledger_detail.php:15 -#: include/class_acc_ledger_purchase.php:1015 -#: include/class_acc_ledger_sold.php:545 -#: include/class_acc_ledger_purchase.php:1265 -#: include/class_acc_ledger_sold.php:647 include/import_inc.php:131 -#: include/import_inc.php:400 include/quick_writing.inc.php:140 -#: include/template/form_ledger_detail.php:9 -#: include/class_acc_ledger_purchase.php:1276 -#: include/class_acc_ledger_sold.php:671 -#: include/template/form_ledger_detail.php:12 -msgid "Journal" -msgstr "Journaal" - -#: include/class_acc_ledger_purchase.php:1020 -#: include/class_acc_ledger_purchase.php:1025 -#: include/class_acc_ledger_purchase.php:1275 -#: include/class_acc_ledger_purchase.php:1286 -msgid "Détail articles achetés" -msgstr "Detail gekochte artikelen" - -#: include/class_acc_ledger_purchase.php:1024 -#: include/class_acc_ledger_sold.php:555 -#: include/template/form_ledger_detail.php:27 -#: include/ext/stock/form_stock_detail.php:33 -#: include/ext/stock/form_stock_detail.php:32 -#: include/class_acc_ledger_purchase.php:1029 -#: include/class_acc_ledger_sold.php:559 -#: include/ext/stock/form_stock_detail_in.php:32 -#: include/class_acc_ledger_purchase.php:1279 -#: include/class_acc_ledger_sold.php:661 -#: include/template/form_ledger_detail.php:21 -#: include/class_acc_ledger_purchase.php:1290 -#: include/class_acc_ledger_sold.php:685 -#: include/template/form_ledger_detail.php:24 -msgid "Dénomination" -msgstr "beschrijving" - -#: include/class_acc_ledger_purchase.php:1025 -#: include/class_acc_ledger_sold.php:556 -#: include/class_acc_ledger_purchase.php:1030 -#: include/class_acc_ledger_sold.php:560 -#: include/class_acc_ledger_purchase.php:1280 -#: include/class_acc_ledger_sold.php:662 -#: include/class_acc_ledger_purchase.php:1291 -#: include/class_acc_ledger_sold.php:686 -msgid "prix" -msgstr "Prijs" - -#: include/class_acc_ledger_purchase.php:1029 -#: include/class_acc_ledger_purchase.php:1033 -#: include/class_acc_ledger_sold.php:558 -#: include/template/detail-action.php:181 -#: include/template/form_ledger_detail.php:29 -#: include/ext/stock/form_stock_detail.php:35 -#: include/ext/stock/form_stock_detail.php:34 -#: include/class_acc_ledger_purchase.php:1034 -#: include/class_acc_ledger_purchase.php:1038 -#: include/class_acc_ledger_sold.php:562 -#: include/ext/stock/form_stock_detail_in.php:34 -#: include/class_acc_ledger_purchase.php:1284 -#: include/class_acc_ledger_purchase.php:1291 -#: include/class_acc_ledger_sold.php:663 -#: include/template/form_ledger_detail.php:23 -#: include/class_acc_ledger_purchase.php:1295 -#: include/class_acc_ledger_purchase.php:1303 -#: include/class_acc_ledger_sold.php:687 -#: include/template/form_ledger_detail.php:26 -msgid "quantité" -msgstr "hoeveelheid" - -#: include/class_acc_ledger_purchase.php:1030 -#: include/class_acc_ledger_sold.php:561 -#: include/template/detail-action.php:183 -#: include/ext/stock/form_stock_detail.php:38 -#: include/class_acc_ledger_purchase.php:1035 -#: include/class_acc_ledger_sold.php:565 -#: include/class_acc_ledger_purchase.php:1286 -#: include/class_acc_ledger_sold.php:669 -#: include/class_acc_ledger_purchase.php:1297 -#: include/class_acc_ledger_sold.php:693 -msgid "Montant TVA" -msgstr "BTW Bedrag" - -#: include/class_acc_ledger_purchase.php:1031 -#: include/class_acc_ledger_sold.php:562 -#: include/class_acc_ledger_purchase.php:1036 -#: include/class_acc_ledger_sold.php:566 -#: include/class_acc_ledger_purchase.php:1287 -#: include/class_acc_ledger_sold.php:670 -#: include/class_acc_ledger_purchase.php:1298 -#: include/class_acc_ledger_sold.php:694 -msgid "Montant HTVA" -msgstr "Bedrag zonder BTW" - -#: include/class_acc_ledger_purchase.php:1034 -#: include/template/form_ledger_detail.php:84 -#: include/ext/stock/form_stock_detail.php:39 -#: include/class_acc_ledger_purchase.php:1039 -#: include/class_acc_ledger_purchase.php:1292 -#: include/template/form_ledger_detail.php:78 -#: include/template/ledger_detail_ach.php:101 -#: include/template/ledger_detail_ach.php:173 -#: include/template/ledger_detail_ven.php:100 -#: include/template/ledger_detail_ven.php:163 -#: include/class_acc_ledger_purchase.php:1304 -#: include/template/form_ledger_detail.php:81 -#: include/template/ledger_detail_ach.php:123 -#: include/template/ledger_detail_ach.php:211 -#: include/template/ledger_detail_ach.php:213 -#: include/template/ledger_detail_ven.php:120 -#: include/template/ledger_detail_ven.php:203 -#: include/template/ledger_detail_ven.php:205 -msgid "Total" -msgstr "Totale" - -#: include/class_acc_ledger_purchase.php:1036 -#: include/class_acc_ledger_sold.php:564 include/user_menu.php:451 -#: include/class_acc_ledger_purchase.php:1041 -#: include/class_acc_ledger_sold.php:568 include/class_acc_ledger.php:1271 -#: include/class_acc_ledger_purchase.php:1302 -#: include/class_acc_ledger_sold.php:679 include/user_menu.php:473 -#: include/template/ledger_detail_ach.php:108 -#: include/template/ledger_detail_misc.php:96 -#: include/template/ledger_detail_ven.php:107 -#: include/class_acc_ledger_fin.php:493 include/class_acc_ledger.php:1394 -#: include/class_acc_ledger_purchase.php:1314 -#: include/class_acc_ledger_sold.php:708 -#: include/template/ledger_detail_ach.php:130 -#: include/template/ledger_detail_fin.php:114 -#: include/template/ledger_detail_ven.php:127 -msgid "Compt. Analytique" -msgstr "Analytischerekening" - -#: include/class_acc_ledger_purchase.php:1124 -#: include/class_acc_ledger_sold.php:646 -#: include/class_acc_ledger_purchase.php:1129 -#: include/class_acc_ledger_sold.php:650 include/class_acc_ledger.php:1354 -#: include/class_acc_ledger_purchase.php:1407 -#: include/class_acc_ledger_sold.php:775 -#: include/template/ledger_detail_bottom.php:65 -#: include/template/ledger_detail_bottom.php:69 -msgid "verifie CA" -msgstr "Controlleren Analytischrekening" - -#: include/class_acc_ledger_purchase.php:1131 -#: include/template/form_ledger_detail.php:30 -#: include/template/form_ledger_detail.php:80 -#: include/ext/stock/form_stock_detail.php:36 -#: include/ext/stock/form_stock_detail.php:73 -#: include/ext/stock/form_stock_detail.php:35 -#: include/ext/stock/form_stock_detail.php:70 -#: include/ext/stock/form_stock_detail.php:71 -#: include/class_acc_ledger_purchase.php:1136 -#: include/ext/stock/form_stock_detail_in.php:35 -#: include/ext/stock/form_stock_detail_in.php:61 -#: include/class_acc_ledger_purchase.php:1414 -#: include/template/form_ledger_detail.php:24 -#: include/template/form_ledger_detail.php:74 -#: include/class_acc_ledger_purchase.php:1437 -#: include/template/form_ledger_detail.php:27 -#: include/template/form_ledger_detail.php:77 -msgid "Total HTVA" -msgstr "Totale zonder BTW" - -#: include/class_acc_ledger_purchase.php:1137 -#: include/class_acc_ledger_purchase.php:1142 -#: include/class_acc_ledger_purchase.php:1422 -#: include/class_acc_ledger_purchase.php:1445 -msgid "TVA à " -msgstr "BTW aan" - -#: include/class_acc_ledger_purchase.php:1138 -#: include/template/form_ledger_detail.php:81 -#: include/ext/stock/form_stock_detail.php:74 -#: include/ext/stock/form_stock_detail.php:71 -#: include/ext/stock/form_stock_detail.php:72 -#: include/class_acc_ledger_purchase.php:1143 -#: include/class_acc_ledger_purchase.php:1423 -#: include/template/form_ledger_detail.php:75 -#: include/class_acc_ledger_purchase.php:1448 -#: include/template/form_ledger_detail.php:78 -msgid "Total TVA" -msgstr "BTW Totale" - -#: include/class_acc_ledger_purchase.php:1141 -#: include/template/form_ledger_detail.php:82 -#: include/ext/stock/form_stock_detail.php:75 -#: include/ext/stock/form_stock_detail.php:72 -#: include/ext/stock/form_stock_detail.php:73 -#: include/class_acc_ledger_purchase.php:1146 -#: include/class_acc_ledger_purchase.php:1426 -#: include/template/form_ledger_detail.php:76 -#: include/template/form_ledger_detail.php:79 -msgid "Total TVAC" -msgstr "Totale met BTW" - -#: include/class_acc_ledger_purchase.php:1215 -#: include/template/detail-action.php:235 -#: include/class_acc_ledger_purchase.php:1220 -#: include/class_acc_ledger_purchase.php:1505 -#: include/template/detail-action.php:231 -#: include/class_acc_ledger_purchase.php:1535 -msgid "Document à générer" -msgstr "Document te maken " - -#: include/class_acc_ledger_purchase.php:1219 -#: include/class_acc_ledger_sold.php:744 -#: include/class_acc_ledger_purchase.php:1224 -#: include/class_acc_ledger_sold.php:748 -#: include/class_acc_ledger_purchase.php:1509 -#: include/class_acc_ledger_sold.php:883 -#: include/class_acc_ledger_purchase.php:1539 -#: include/class_acc_ledger_sold.php:931 -msgid "Ajoutez une pièce justificative " -msgstr "Voeg een bewijs toe" - -#: include/class_acc_ledger_purchase.php:1226 -#: include/class_acc_ledger_purchase.php:1231 -#: include/class_acc_ledger_purchase.php:1516 -#: include/class_acc_ledger_purchase.php:1546 -msgid "ou générer un document" -msgstr "of maak een document" - -#: include/class_acc_ledger_purchase.php:1237 -#: include/class_acc_ledger_sold.php:762 -#: include/class_acc_ledger_purchase.php:1242 -#: include/class_acc_ledger_sold.php:766 -#: include/class_acc_ledger_purchase.php:1527 -#: include/class_acc_ledger_sold.php:901 -#: include/class_acc_ledger_purchase.php:1557 -#: include/class_acc_ledger_sold.php:949 -msgid "Numero de bon de commande : " -msgstr "Nummer van de bestelbon" - -#: include/class_acc_ledger_purchase.php:1238 -#: include/class_acc_ledger_sold.php:763 -#: include/class_acc_ledger_purchase.php:1243 -#: include/class_acc_ledger_sold.php:767 -#: include/class_acc_ledger_purchase.php:1528 -#: include/class_acc_ledger_sold.php:902 -#: include/class_acc_ledger_purchase.php:1558 -#: include/class_acc_ledger_sold.php:950 -msgid "Autre information : " -msgstr "Andere informatie" - -#: include/class_acc_ledger_purchase.php:1267 -#: include/class_acc_ledger_sold.php:792 -#: include/class_acc_ledger_purchase.php:1272 -#: include/class_acc_ledger_sold.php:796 -#: include/class_acc_ledger_purchase.php:1557 -#: include/class_acc_ledger_sold.php:932 -#: include/class_acc_ledger_purchase.php:1587 -#: include/class_acc_ledger_sold.php:980 -msgid "Echeance dépassée" -msgstr "termijn is overschreden" - -#: include/class_acc_ledger_purchase.php:1269 -#: include/class_acc_ledger_sold.php:794 -#: include/class_acc_ledger_purchase.php:1274 -#: include/class_acc_ledger_sold.php:798 -#: include/class_acc_ledger_purchase.php:1559 -#: include/class_acc_ledger_sold.php:934 -#: include/class_acc_ledger_purchase.php:1589 -#: include/class_acc_ledger_sold.php:982 -msgid "Non Payée" -msgstr "Niet betaald" - -#: include/class_acc_ledger_purchase.php:1278 -#: include/class_acc_ledger_sold.php:803 include/compta_ach.inc.php:308 -#: include/compta_ach.inc.php:364 include/compta_ven.inc.php:321 -#: include/compta_ven.inc.php:380 include/class_acc_ledger_purchase.php:1283 -#: include/class_acc_ledger_sold.php:807 -#: include/class_acc_ledger_purchase.php:1568 -#: include/class_acc_ledger_sold.php:943 include/compta_ach.inc.php:328 -#: include/compta_ach.inc.php:409 include/compta_ven.inc.php:349 -#: include/compta_ven.inc.php:434 include/class_acc_ledger_purchase.php:1598 -#: include/class_acc_ledger_sold.php:991 include/compta_ven.inc.php:329 -#: include/compta_ven.inc.php:415 include/history_operation.inc.php:140 -msgid "Mise à jour paiement" -msgstr "Opslaan" - -#: include/class_acc_ledger_sold.php:64 include/class_acc_ledger_sold.php:68 -#: include/class_acc_ledger_sold.php:74 -msgid "Vous n'avez pas donné de client" -msgstr "U heeft geen klant gegeven" - -#: include/class_acc_ledger_sold.php:97 include/class_acc_ledger_sold.php:101 -#: include/class_acc_ledger_sold.php:112 -msgid "Vous utilisez le mode strict la dernière operation est date du " -msgstr "U gebruikt de strikt mode, de datum van de laatste operatie is" - -#: include/class_acc_ledger_sold.php:122 include/class_acc_ledger_sold.php:126 -#: include/class_acc_ledger_sold.php:141 -msgid "] n'existe pas" -msgstr "] bestaat niet" - -#: include/class_acc_ledger_sold.php:140 include/class_acc_ledger_sold.php:144 -#: include/class_acc_ledger_sold.php:160 -msgid "a un montant invalide [" -msgstr "heet een ongeldig bedrag" - -#: include/class_acc_ledger_sold.php:142 include/class_acc_ledger_sold.php:146 -#: include/class_acc_ledger_sold.php:162 -msgid "a une quantité invalide [" -msgstr "heeft een ongeldige hoeveelheid" - -#: include/class_acc_ledger_sold.php:534 include/class_acc_ledger_sold.php:846 -#: include/class_acc_ledger_sold.php:538 include/class_acc_ledger_sold.php:850 -#: include/class_acc_ledger_sold.php:640 include/class_acc_ledger_sold.php:989 -#: include/class_acc_ledger_sold.php:661 -#: include/class_acc_ledger_sold.php:1041 -msgid "En-tête facture client" -msgstr "Hoofding" - -#: include/class_acc_ledger_sold.php:551 include/class_acc_ledger_sold.php:976 -#: include/ext/stock/class_ext_stock.php:216 -#: include/ext/stock/class_ext_stock.php:220 -#: include/ext/stock/class_ext_stock.php:254 -#: include/class_acc_ledger_sold.php:555 include/class_acc_ledger_sold.php:980 -#: include/ext/stock/class_ext_stock.php:233 -#: include/class_acc_ledger_sold.php:657 -#: include/class_acc_ledger_sold.php:1130 -#: include/ext/stock/class_ext_stock.php:230 -#: include/class_acc_ledger_sold.php:681 -#: include/class_acc_ledger_sold.php:1184 -msgid "Détail articles vendus" -msgstr "Detail verkocht artikelen" - -#: include/class_acc_ledger_sold.php:554 -#: include/template/extension-detail.php:16 -#: include/class_acc_ledger_sold.php:558 include/class_acc_ledger_sold.php:660 -#: include/class_acc_ledger_sold.php:684 -msgid "Code" -msgstr "Code" - -#: include/class_acc_ledger_sold.php:557 -#: include/template/form_ledger_detail.php:32 -#: include/class_acc_ledger_sold.php:561 include/class_acc_ledger_sold.php:664 -#: include/template/form_ledger_detail.php:26 -#: include/class_acc_ledger_sold.php:692 -#: include/template/form_ledger_detail.php:29 -msgid "tva" -msgstr "btw" - -#: include/class_acc_ledger_sold.php:619 include/class_acc_ledger_sold.php:623 -#: include/class_acc_ledger_sold.php:744 -msgid "Attention Différence" -msgstr "Opgelet verschil" - -#: include/class_acc_ledger_sold.php:751 include/class_acc_ledger_sold.php:755 -#: include/class_acc_ledger_sold.php:890 include/class_acc_ledger_sold.php:938 -msgid "ou générer une facture" -msgstr "of een factuurmaken " - -#: include/class_acc_ledger_sold.php:853 include/class_acc_ledger_sold.php:857 -#: include/class_acc_ledger_sold.php:996 -#: include/class_acc_ledger_sold.php:1048 -msgid "Echéance" -msgstr "Termijn" - -#: include/class_acc_payment.php:342 include/ext/stock/class_ext_stock.php:622 -#: include/ext/stock/class_ext_stock.php:616 include/class_acc_payment.php:338 -#: include/ext/stock/class_ext_stock.php:659 -#: include/ext/stock/class_ext_stock.php:669 -#: include/ext/stock/class_ext_stock.php:649 include/class_acc_payment.php:386 -#: include/ext/stock/class_ext_stock.php:655 include/menu_translate.php:2 -#: include/menu_translate.php:74 -msgid "Achat" -msgstr "Aankoop" - -#: include/class_acc_payment.php:343 include/user_menu.php:189 -#: include/ext/stock/class_ext_stock.php:622 -#: include/ext/stock/class_ext_stock.php:616 include/class_acc_payment.php:339 -#: include/ext/stock/class_ext_stock.php:659 -#: include/ext/stock/class_ext_stock.php:669 -#: include/ext/stock/class_ext_stock.php:649 include/class_acc_payment.php:387 -#: include/ext/stock/class_ext_stock.php:655 include/menu_translate.php:25 -msgid "Vente" -msgstr "Verkoop" - -#: include/class_action.php:387 include/class_action.php:394 -#: include/class_follow_up.php:400 -msgid "Génére le document" -msgstr "Document maken" - -#: include/class_anc_account.php:255 include/class_anc_listing.php:74 -#: include/class_anc_plan.php:124 include/dossier.inc.php:259 -#: include/template/extension-detail.php:8 -#: include/template/extension-sec.php:8 include/template/forecast_cat.php:9 -#: include/class_fiche.php:1249 include/class_fiche.php:1251 -#: include/class_anc_account.php:267 include/class_anc_listing.php:83 -#: include/class_document_modele.php:67 include/class_fiche.php:1514 -#: include/dossier.inc.php:288 include/template/forecast_cat.php:12 -#: include/class_fiche.php:1597 include/dossier.inc.php:292 -msgid "Nom" -msgstr "Naam" - -#: include/class_anc_account.php:271 include/class_anc_account.php:283 -msgid "Plan Analytique" -msgstr "Analytische plan" - -#: include/class_anc_account.php:276 include/class_anc_account.php:288 -#: include/menu_translate.php:8 include/menu_translate.php:67 -msgid "Groupe" -msgstr "Groep" - -#: include/class_anc_balance_double.php:288 -#: include/class_anc_balance_double.php:307 -#: include/class_anc_balance_double.php:339 +#: include/ext/tva/form_parameter.php:88 msgid "" -"Selectionnez le plan qui vous intéresse avant de cliquer sur Recherche" -msgstr "Selectionneer de plan dat u interesseert voor te klikken op zoeken" - -#: include/class_anc_group_operation.php:71 -#: include/class_anc_group_operation.php:74 -msgid "Operation non equilibrée" -msgstr "Niet evenwichtige Operatie " - -#: include/class_anc_listing.php:70 include/class_anc_listing.php:77 -#: include/class_anc_grandlivre.php:137 include/class_anc_grandlivre.php:250 -msgid "aucune donnée" -msgstr "Geen gegevens" - -#: include/class_anc_listing.php:77 include/class_anc_listing.php:86 -#: include/class_anc_listing.php:90 -msgid "D/C" -msgstr "D/C" - -#: include/class_anc_print.php:89 include/class_anc_print.php:93 -#: include/class_anc_print.php:94 -msgid "Aucun plan défini" -msgstr "Geen plan" - -#: include/class_anc_print.php:114 include/class_anc_print.php:118 -#: include/class_anc_print.php:121 -msgid "Les dates sont en format DD.MM.YYYY" -msgstr "de datum is in formaat DD.MM.YYYY " - -#: include/class_anc_print.php:136 include/class_anc_print.php:140 -#: include/class_anc_print.php:141 -msgid "Selectionnez le plan qui vous intéresse avant de cliquer sur Recherche" -msgstr "Selectionneer de plan dat u interesseert voor te klikken op zoeken" - -#: include/class_anticipation.php:155 include/class_anticipation.php:195 -#: include/class_anticipation.php:203 -msgid "Modification" -msgstr "Verandering" - -#: include/class_anticipation.php:192 include/class_anticipation.php:285 -#: include/class_anticipation.php:293 -msgid "Ventes" -msgstr "Verkoop" - -#: include/class_anticipation.php:192 include/user_menu.php:190 -#: include/class_anticipation.php:285 include/user_menu.php:200 -#: include/class_anticipation.php:293 -msgid "Dépense" -msgstr "Uitgaven" - -#: include/class_anticipation.php:192 include/user_menu.php:231 -#: include/template/form_ledger_fin.php:6 include/class_anticipation.php:285 -#: include/user_menu.php:241 include/class_anticipation.php:293 -#: include/template/form_ledger_fin.php:9 -msgid "Banque" -msgstr "Bank" - -#: include/class_anticipation.php:234 include/class_anticipation.php:334 -#: include/class_anticipation.php:342 -msgid "Elements" -msgstr "Elementen" - -#: include/class_calendar.php:87 include/class_calendar.php:89 -#: include/class_calendar.php:98 include/class_calendar.php:99 -msgid "Dimanche" -msgstr "Zondag" - -#: include/class_calendar.php:87 include/class_calendar.php:89 -#: include/class_calendar.php:98 include/class_calendar.php:99 -msgid "Lundi" -msgstr "Maandag" - -#: include/class_calendar.php:87 include/class_calendar.php:89 -#: include/class_calendar.php:98 include/class_calendar.php:99 -msgid "Mardi" -msgstr "Dinsdag" - -#: include/class_calendar.php:87 include/class_calendar.php:89 -#: include/class_calendar.php:98 include/class_calendar.php:99 -msgid "Mercredi" -msgstr "Woensdag" - -#: include/class_calendar.php:87 include/class_calendar.php:89 -#: include/class_calendar.php:98 include/class_calendar.php:99 -msgid "Jeudi" -msgstr "Donderdag" - -#: include/class_calendar.php:87 include/class_calendar.php:89 -#: include/class_calendar.php:98 include/class_calendar.php:99 -msgid "Vendredi" -msgstr "Vrijdag" - -#: include/class_calendar.php:87 include/class_calendar.php:89 -#: include/class_calendar.php:98 include/class_calendar.php:99 -msgid "Samedi" -msgstr "Zaterdag" - -#: include/class_document.php:258 include/class_document.php:255 -#: include/class_document.php:272 -msgid "Ne peut pas sauver " -msgstr "Het kan niet opslaan" - -#: include/class_fiche_def.php:184 include/class_fiche_def.php:198 -#: include/class_fiche_def.php:199 -msgid "Vous devez choisir une categorie" -msgstr "U moet een categorie kiezen" - -#: include/class_fiche_def.php:407 include/class_fiche_def.php:423 -#: include/class_fiche_def.php:429 -msgid "Label" -msgstr "Label" - -#: include/class_fiche_def.php:416 include/class_fiche_def.php:432 -#: include/class_fiche_def.php:438 -msgid "Poste Comptable de base" -msgstr "Basis rekening" - -#: include/class_fiche_def.php:422 include/class_fiche_def.php:438 -#: include/class_fiche_def.php:444 -msgid "Chaque fiche aura automatiquement son propre poste comptable : " -msgstr "Ieder blad zal automatisch zijn eigen rekening hebben" - -#: include/class_fiche.php:315 include/class_fiche.php:398 -#: include/class_fiche.php:400 -msgid "Cette categorie de card n'existe pas" -msgstr "Deze categorie bestaat niet" - -#: include/class_fiche.php:356 include/class_fiche.php:440 -#: include/class_fiche.php:444 -msgid "Rappel: Poste créé automatiquement à partir de " -msgstr "Herinnering : rekening automatisch aangemaakt vanaf" - -#: include/class_fiche.php:363 include/class_fiche.php:447 -#: include/class_fiche.php:452 -msgid "Rappel: Poste par défaut sera " -msgstr "Herinnering : Rekining zal" - -#: include/class_forecast.php:62 include/class_forecast.php:71 -msgid "Le nom ne peut pas être vide" -msgstr "De naam mag niet leeg zijn " - -#: include/class_iperiod.php:106 include/class_iperiod.php:124 -msgid "Aucune periode trouvée" -msgstr "Geen enkele periode gevonden" - -#: include/class_ipopup.php:100 include/class_ipopup.php:124 -#, php-format -msgid "Fermer" -msgstr "Close" - -#: include/class_user.php:45 include/class_user.php:49 -#: include/class_user.php:52 -msgid "Session expirée
Utilisateur déconnecté" -msgstr "Sessie vervallen
" - -#: include/class_user.php:156 include/class_user.php:169 -#: include/class_user.php:176 -msgid "Utilisateur ou mot de passe incorrect" -msgstr "Verkeerd login of wachword" - -#: include/class_user.php:339 include/class_user.php:382 -#: include/class_user.php:406 -msgid "Aucune période trouvéee !!!" -msgstr "Geen enkele periode gevonden" - -#: include/class_user.php:668 include/class_user.php:741 -#: include/class_user.php:863 -msgid "Dossier non accessible" -msgstr "Dossier niet bereikbaar" - -#: include/client_card.inc.php:71 include/client_card.inc.php:66 -msgid "Suivi client, devis, bon de commande, courrier" -msgstr "Opvolging klant, schatting, bestelbon en post" - -#: include/client_card.inc.php:72 include/client_card.inc.php:67 -msgid "Liste de contacts de ce client" -msgstr "contacten lijst van de klant " - -#: include/client_card.inc.php:74 include/client_card.inc.php:71 -msgid "Retour à la liste des clients" -msgstr "Terug naar de klantenlijst" - -#: include/compta_ach.inc.php:56 include/compta_ach.inc.php:173 -#: include/compta_ach.inc.php:39 include/compta_ach.inc.php:177 -msgid "Nouvelle dépense" -msgstr "Nieuwe uitgave" - -#: include/compta_ach.inc.php:56 include/compta_ach.inc.php:39 -#: include/menu_translate.php:2 -msgid "Nouvel achat ou dépense" -msgstr "Nieuwe aankopen of uitgave" - -#: include/compta_ach.inc.php:57 include/compta_ach.inc.php:40 -msgid "Liste achat" -msgstr "Aankopenlijst" - -#: include/compta_ach.inc.php:57 include/compta_ach.inc.php:40 -msgid "Liste des achats" -msgstr "Aankopenlijst" - -#: include/compta_ach.inc.php:58 include/compta_ach.inc.php:41 -msgid "Liste dépenses non payées" -msgstr "Uitgavenlijst niet betaald" - -#: include/compta_ach.inc.php:58 include/compta_ven.inc.php:57 -#: include/compta_ach.inc.php:41 include/compta_ven.inc.php:41 -msgid "Liste des ventes non payées" -msgstr "Verkopenlijst niet betaald" - -#: include/compta_ach.inc.php:59 include/compta_ach.inc.php:42 -msgid "Fournisseurs" -msgstr "Leveranciers" - -#: include/compta_ach.inc.php:124 include/compta_ven.inc.php:127 -#: include/compta_ach.inc.php:117 include/compta_ven.inc.php:122 -#: include/compta_ach.inc.php:81 include/compta_fin.inc.php:113 -#: include/compta_ven.inc.php:92 -msgid "Enregistrement" -msgstr "Opgeslagen" - -#: include/compta_ach.inc.php:125 include/compta_fin.inc.php:118 -#: include/compta_ven.inc.php:128 include/compta_ach.inc.php:118 -#: include/compta_fin.inc.php:112 include/compta_ven.inc.php:123 -#: include/compta_ach.inc.php:82 include/compta_fin.inc.php:83 -#: include/compta_ven.inc.php:93 -msgid "Corriger" -msgstr "Verbetering" - -#: include/compta_ach.inc.php:164 include/compta_ven.inc.php:173 -#: include/quick_writing.inc.php:276 include/quick_writing.inc.php:274 -#: include/compta_ach.inc.php:166 include/compta_ven.inc.php:178 -#: include/quick_writing.inc.php:300 include/compta_ach.inc.php:133 -#: include/compta_ods.inc.php:94 include/compta_ven.inc.php:149 -#: include/opening.inc.php:80 -msgid "Attention numéro pièce existante, elle a du être adaptée" -msgstr "Opgelet bestaand bewijs nummer, moest aangepast worden" - -#: include/compta_ach.inc.php:229 include/compta_ven.inc.php:239 -#: include/template/detail-action.php:217 -#: include/template/form_ledger_detail.php:63 -#: include/ext/stock/class_ext_stock.php:295 -#: include/ext/stock/class_ext_stock.php:302 -#: include/ext/stock/class_ext_stock.php:343 -#: include/ext/stock/class_ext_stock.php:349 -#: include/ext/stock/class_ext_stock.php:328 include/compta_ach.inc.php:237 -#: include/compta_ven.inc.php:256 include/template/detail-action.php:213 -#: include/template/form_ledger_detail.php:57 -#: include/ext/stock/class_ext_stock.php:324 include/compta_ven.inc.php:245 -#: include/template/form_ledger_detail.php:60 -msgid "Actualiser" -msgstr "refresh" - -#: include/compta_ach.inc.php:231 include/compta_ven.inc.php:241 -#: include/compta_ach.inc.php:239 include/compta_ven.inc.php:258 -#: include/compta_ven.inc.php:247 -msgid "Effacer " -msgstr "Wissen" - -#: include/compta_fin.inc.php:55 include/compta_fin.inc.php:140 -#: include/compta_fin.inc.php:36 include/compta_fin.inc.php:142 -#: include/menu_translate.php:79 -msgid "Nouvel extrait" -msgstr "Nieuwe extrait" - -#: include/compta_fin.inc.php:55 include/compta_fin.inc.php:36 -msgid "Encodage d'un nouvel extrait" -msgstr "Het coderen van een nieuwe extrait" - -#: include/compta_fin.inc.php:56 include/compta_fin.inc.php:37 -msgid "Liste" -msgstr "Lijst" - -#: include/compta_fin.inc.php:56 include/compta_fin.inc.php:37 -msgid "Liste opération bancaire" -msgstr "lijst bankoperatie" - -#: include/compta_fin.inc.php:57 include/class_fiche.php:1253 -#: include/class_fiche.php:1255 include/class_fiche.php:1518 -#: include/compta_fin.inc.php:38 include/class_fiche.php:1601 -msgid "Solde" -msgstr "solde" - -#: include/compta_fin.inc.php:57 include/compta_fin.inc.php:38 -msgid "Solde des comptes" -msgstr "Rekeningensolde" - -#: include/compta_fin.inc.php:117 include/compta_fin.inc.php:111 -#: include/compta_fin.inc.php:82 -msgid "Confirmer" -msgstr "Bevestigen" - -#: include/compta_fin.inc.php:139 include/compta_fin.inc.php:138 -msgid "Opération sauvée" -msgstr "Operatie opgeslagen" - -#: include/compta_ven.inc.php:55 include/compta_ven.inc.php:183 -#: include/compta_ven.inc.php:39 include/compta_ven.inc.php:196 -msgid "Nouvelle vente" -msgstr "Nieuwe verkoop" - -#: include/compta_ven.inc.php:56 include/compta_ven.inc.php:40 -msgid "Liste ventes" -msgstr "Verkopenlijst" - -#: include/compta_ven.inc.php:56 include/compta_ven.inc.php:40 -msgid "Liste des ventes" -msgstr "Verkopenlijst" - -#: include/compta_ven.inc.php:57 include/compta_ven.inc.php:41 -msgid "Liste vente non payées" -msgstr "Niet betaald verkopenlijst" - -#: include/compta_ven.inc.php:58 include/compta_ven.inc.php:42 -msgid "Clients" -msgstr "Klanten" - -#: include/compta_ven.inc.php:124 -msgid "Sauvez cette opération comme modèle ?" -msgstr "Deze operatie opslaan als model ?" - -#: include/detail_adm.inc.php:67 include/detail_client.inc.php:67 -#: include/detail_supplier.inc.php:67 include/category_detail.inc.php:67 -msgid "Sauver les modifications" -msgstr "Veranderingen opslaan" - -#: include/detail_client.inc.php:50 include/detail_supplier.inc.php:50 -#: include/category_detail.inc.php:49 -msgid "Information sauvée" -msgstr "Opgeslagen informatie " - -#: include/detail_client.inc.php:69 include/detail_supplier.inc.php:69 -#: include/category_detail.inc.php:69 -msgid "Effacer cette fiche" -msgstr "Dit blad wissen" - -#: include/dossier.inc.php:47 include/dossier.inc.php:50 -msgid "Le nom du dossier est vide" -msgstr "De naam van de dossier is leeg" - -#: include/dossier.inc.php:53 include/dossier.inc.php:57 -msgid "Désolé vous devez migrer ce modèle en unicode" -msgstr "Deze model moet in unicode zijn" - -#: include/dossier.inc.php:55 include/dossier.inc.php:59 -msgid "le modele " -msgstr "het model" - -#: include/dossier.inc.php:55 include/dossier.inc.php:59 -msgid " doit être migré en unicode." -msgstr "moet in unicode zijn" - -#: include/dossier.inc.php:56 include/dossier.inc.php:60 -msgid "" -"Pour le passer en unicode, faites-en un backup puis restaurez le fichier reçu" +" Autres opérations à l'entrée pour lesquelles la T.V.A. est due par le " +"déclarant " msgstr "" +"Andere verrichtingen waarvoor voorbelasting verschuldigd is door de " +"registrant" -#: include/dossier.inc.php:69 include/dossier.inc.php:76 -#: include/dossier.inc.php:77 -msgid "" -"Desole la creation de ce dossier a echoue,\n" -" la cause la plus probable est deux fois le même nom de dossier" -msgstr "" -"Het maken van de dossier heeft gefaald\n" -" U hebt waarschijnlijk twee keer dezelfde naam gebruikt " - -#: include/dossier.inc.php:87 include/dossier.inc.php:95 -msgid " est une année invalide" -msgstr "is een ongeldig jaar" - -#: include/dossier.inc.php:104 include/dossier.inc.php:112 +#: include/dossier.inc.php:111 msgid " Base de donnée " msgstr "Database" -#: include/dossier.inc.php:105 include/dossier.inc.php:310 -#: include/dossier.inc.php:113 include/dossier.inc.php:347 -#: include/dossier.inc.php:351 -msgid "est accèdée, déconnectez-vous d'abord" -msgstr "is in gebruik, logout eerst" +#: include/template/ledger_detail_bottom.php:9 +msgid " Bon de commande" +msgstr " Bestelling van de klant" -#: include/dossier.inc.php:153 include/dossier.inc.php:162 -#: include/dossier.inc.php:159 -msgid "Rafraîchir" -msgstr "Hernieuwen" +#: include/fiche.inc.php:176 +msgid " Ces fiches n'ont pas été effacées " +msgstr "Deze bestanden zijn niet verwijderd" -#: include/dossier.inc.php:154 include/dossier.inc.php:163 -#: include/dossier.inc.php:160 -msgid "Ajouter" -msgstr "Toevoegen" +#: include/ac_common.php:415 +msgid " Cette action ne vous est pas autorisée Contactez votre responsable" +msgstr "Die Actie is Verboden" -#: include/dossier.inc.php:185 include/dossier.inc.php:203 -#: include/dossier.inc.php:207 -msgid "Modifier" -msgstr "Veranderen" - -#: include/dossier.inc.php:188 include/dossier.inc.php:206 -#: include/dossier.inc.php:210 -msgid "Backup" -msgstr "Backup" - -#: include/dossier.inc.php:215 include/dossier.inc.php:235 -#: include/dossier.inc.php:239 -msgid "pas de modèle disponible" -msgstr "Geen model beschikbaar" - -#: include/dossier.inc.php:233 include/dossier.inc.php:256 -#: include/dossier.inc.php:260 -msgid "Nom du dossier" -msgstr "Naam van dossier" - -#: include/dossier.inc.php:237 include/dossier.inc.php:262 -#: include/dossier.inc.php:266 -msgid "Modèle" -msgstr "Model" - -#: include/dossier.inc.php:240 include/dossier.inc.php:267 -#: include/dossier.inc.php:271 -msgid "Creation Dossier" -msgstr "Dossier maken" - -#: include/dossier.inc.php:267 include/payment_middle.inc.php:128 -#: include/dossier.inc.php:296 include/payment_middle.inc.php:133 -#: include/dossier.inc.php:300 include/template/list_mod_payment.php:79 -msgid "Modifie" -msgstr "Veranderen" - -#: include/dossier.inc.php:280 include/dossier.inc.php:310 -#: include/dossier.inc.php:314 -msgid "Etes vous sûr et certain de vouloir effacer " -msgstr "Bent u zeker dat u wilt wissen " - -#: include/dossier.inc.php:283 include/dossier.inc.php:313 -#: include/dossier.inc.php:317 -msgid "Cochez la case si vous êtes sûr de vouloir effacer ce dossier" -msgstr "Kruis aan indien u zeker bent dat u dit dossier wilt wissen" - -#: include/dossier.inc.php:293 include/dossier.inc.php:326 -#: include/dossier.inc.php:330 -msgid "Désolé, vous n'avez pas coché la case" -msgstr "Sorry u hebt het vak niet aangekruisd" - -#: include/dossier.inc.php:300 include/dossier.inc.php:336 -#: include/dossier.inc.php:340 -msgid "inexistant" -msgstr "onbestaand" - -#: include/dossier.inc.php:309 include/dossier.inc.php:346 -#: include/dossier.inc.php:350 -msgid "Base de donnée " -msgstr "Database" - -#: include/extension.inc.php:45 include/template/extension-detail.php:4 -#: include/extension.inc.php:41 -msgid "Détail extension" -msgstr "Extensie detail" - -#: include/extension.inc.php:53 include/extension.inc.php:49 -msgid "Nouvelle extension" -msgstr "Nieuwe extensie" - -#: include/ext_inc.php:11 include/ext_inc.php:14 -msgid "" -"Vous ne pouvez pas utiliser cette extension. Contactez votre responsable" -msgstr "" -"U mag niet niet deze extensie gebruiken. Vraag aan uw verantwoordelijke" - -#: include/fiche_def.inc.php:64 include/fiche_def.inc.php:65 -msgid "Voulez-vous modifier ?" -msgstr "Wilt u veranderen" - -#: include/fiche_def.inc.php:66 include/fiche_def.inc.php:67 -msgid "Attention, ne changer pas la signification de ce poste." -msgstr "Opgelet de betekenis van deze rekening niet veranderen " - -#: include/fiche_def.inc.php:67 include/fiche_def.inc.php:68 -msgid "par exemple ne pas changer Client par fournisseur" -msgstr "Bijvoorbeeld verander niet klant door leverancier" - -#: include/fiche_def.inc.php:68 include/fiche_def.inc.php:69 -msgid "" -"sinon le programme fonctionnera mal, utiliser uniquement des chiffres pour " -"la classe de base ou rien" -msgstr "" -"anders zal de programma slecht functionneren, gebruik enkele cijffers voor " -"de rekening basis of niets" - -#: include/fiche.inc.php:104 include/forecast.inc.php:239 -#: include/forecast.inc.php:254 include/forecast.inc.php:274 -#: include/forecast.inc.php:312 html/ajax_misc.php:428 -#: include/fiche.inc.php:98 include/forecast.inc.php:282 -#: include/forecast.inc.php:298 include/forecast.inc.php:319 -#: include/forecast.inc.php:349 include/forecast.inc.php:392 -#: include/template/ledger_detail_bottom.php:62 html/ajax_misc.php:449 -#: include/forecast.inc.php:289 include/forecast.inc.php:309 -#: include/forecast.inc.php:339 include/forecast.inc.php:382 -#: include/template/ledger_detail_bottom.php:66 -msgid "Sauver" -msgstr "Opslaan" - -#: include/fiche.inc.php:111 include/fiche.inc.php:108 -#: include/fiche.inc.php:116 -msgid "Ajoutez cet élément" -msgstr "Voeg dit element toe" - -#: include/fiche.inc.php:112 include/quick_writing.inc.php:114 -#: include/fiche.inc.php:109 include/quick_writing.inc.php:97 -#: include/fiche.inc.php:117 include/operation_ods_new.inc.php:93 -msgid "Sauvez" -msgstr "Opslaan" - -#: include/fiche.inc.php:113 include/fiche.inc.php:110 -#: include/fiche.inc.php:118 -msgid "Effacer cette catégorie" -msgstr "Deze categorie wissen" - -#: include/fiche.inc.php:113 include/ext/stock/stock_in.php:48 -#: include/ext/stock/stock_out.php:60 include/fiche.inc.php:110 -#: include/fiche.inc.php:301 include/ext/stock/stock_out.php:61 -#: include/fiche.inc.php:118 include/fiche.inc.php:310 -msgid "Vous confirmez ?" -msgstr "U bevestigt" - -#: include/fiche.inc.php:116 include/fiche.inc.php:114 -#: include/fiche.inc.php:122 -msgid "Enleve les éléments cochés" -msgstr "Verwijdert de aangekruiste elementen" - -#: include/fiche.inc.php:119 -msgid "" -"Attention : il n'y aura pas de demande de confirmation pour enlever les \n" -"attributs sélectionnés. Il ne sera pas possible de revenir en arrière" -msgstr "" -"Opgelet : er wordt geen bevesting gevraagd voor het verwijderen van de " -"geselecteerde elementen. Dit is definitief. " - -#: include/fiche.inc.php:213 include/template/security_list_action.php:4 -#: include/fiche.inc.php:219 include/fiche.inc.php:227 -msgid "Pas d'accès" -msgstr "Geen toegang" - -#: include/forecast.inc.php:197 include/forecast.inc.php:249 -#: include/forecast.inc.php:241 -msgid "Ajout prévision" -msgstr "Vooruitzicht" - -#: include/forecast.inc.php:197 include/forecast.inc.php:249 -#: include/forecast.inc.php:241 -msgid "Ajout d'une prévision" -msgstr "Toevoeging van een vooruitzicht" - -#: include/forecast.inc.php:330 include/forecast.inc.php:369 -#: include/forecast.inc.php:360 -msgid "Modifier nom ou catégories" -msgstr "Verander naam of categorie" - -#: include/forecast.inc.php:331 include/forecast.inc.php:370 -#: include/forecast.inc.php:361 -msgid "Modifier éléments" -msgstr "Verander de elementen" - -#: include/forecast.inc.php:333 include/forecast.inc.php:372 -#: include/forecast.inc.php:363 -msgid "Vous confirmez l\\' effacement" -msgstr "U bevestigt het wissen" - -#: include/import_inc.php:79 include/import_inc.php:69 -msgid "Importation terminée" -msgstr "Invoeging gedaan" - -#: include/import_inc.php:115 include/import_inc.php:106 -msgid "op. concernée" -msgstr "betreft operatie" - -#: include/import_inc.php:139 include/import_inc.php:131 -msgid "poste comptable Destination" -msgstr "rekening ontvanger" - -#: include/import_inc.php:167 include/import_inc.php:158 -msgid "Enlever" -msgstr "Verwijderen" - -#: include/import_inc.php:183 include/import_inc.php:174 -msgid " opérations à complèter" -msgstr "Opertaties aanvullen" - -#: include/import_inc.php:212 include/import_inc.php:271 -#: include/import_inc.php:201 include/import_inc.php:262 -msgid "Vous devez selectionner votre période dans vos préférences" -msgstr "U moet uw periode in uw favorieten aanduiden" - -#: include/import_inc.php:227 include/import_inc.php:216 -msgid "opérations à transfèrer" -msgstr "operatie doorsturen" - -#: include/import_inc.php:245 include/import_inc.php:235 -msgid "Commencer le transfert" -msgstr "Transfer beginnen " - -#: include/import_inc.php:323 include/import_inc.php:316 -msgid "Poste comptable erronné pour l'opération " -msgstr "Verkeerd rekening voor de operatie" - -#: include/import_inc.php:373 include/import_inc.php:368 -msgid "Tranfert de l'opération " -msgstr "Operatie doorsturen" - -#: include/import_inc.php:373 include/import_inc.php:368 -msgid " effectué" -msgstr "gedaan" - -#: include/import_inc.php:412 include/import_inc.php:415 -#: include/import_inc.php:413 -msgid "Import fiche" -msgstr "Import blad" - -#: include/impress.inc.php:32 include/user_menu.php:343 -#: include/user_menu.php:358 -msgid "Journaux" -msgstr "Grootboeken" - -#: include/impress.inc.php:35 include/user_menu.php:230 -#: include/ext/stock/index.php:41 include/user_menu.php:240 -#: include/menu_translate.php:99 -msgid "Rapport" -msgstr "Rapport" - -#: include/impress.inc.php:36 include/impress.inc.php:37 -msgid "Balance des comptes" -msgstr "Rekeningbalansen" - -#: include/impress.inc.php:37 include/impress.inc.php:38 -#: include/menu_translate.php:100 -msgid "Bilan" -msgstr "Bilan" - -#: include/impress.inc.php:38 -msgid "Liste Clients Assujettis" -msgstr "" - -#: include/impress_poste.inc.php:114 include/class_acc_bilan.php:68 -#: include/class_acc_bilan.php:71 include/impress_gl_comptes.inc.php:62 -#: include/impress_poste.inc.php:92 include/template/impress_cat_card.php:11 -#: include/impress_poste.inc.php:93 -msgid "Depuis" -msgstr "Vanaf" - -#: include/impress_poste.inc.php:115 include/impress_gl_comptes.inc.php:63 -#: include/impress_poste.inc.php:93 include/impress_poste.inc.php:94 -msgid "Jusque " -msgstr "Tot" - -#: include/param_jrn_add.inc.php:61 include/param_jrn_detail.inc.php:77 -#: include/param_jrn_add.inc.php:58 include/param_jrn_detail.inc.php:86 -msgid "Un paramètre manque" -msgstr "Een parameter wordt gemist" - -#: include/param_jrn_add.inc.php:67 include/param_jrn_add.inc.php:66 -msgid "Un journal de ce nom existe déjà" -msgstr "Een journaal met deze naaam bestaat al" - -#: include/param_jrn_detail.inc.php:57 -msgid "Journal inexistant" -msgstr "Journaal onbestaand" - -#: include/param_jrn_detail.inc.php:68 include/param_jrn_detail.inc.php:67 -#: include/param_jrn_detail.inc.php:75 -msgid "" -"Impossible d\\'effacer ce journal.\n" -" Il est utilisé\n" -msgstr "" -"Onmogelijk de journaal wissen\n" -"Hij wordt gebruikt\n" - -#: include/payment_middle.inc.php:47 include/class_document_type.php:65 -#: include/class_document_type.php:67 include/payment_middle.inc.php:46 -msgid "Vous confirmez" -msgstr "U bevestigt" - -#: include/payment_middle.inc.php:59 include/payment_middle.inc.php:58 -#: include/payment_middle.inc.php:55 -msgid "Efface" -msgstr "Wissen" - -#: include/payment_middle.inc.php:60 include/payment_middle.inc.php:95 -#: include/payment_middle.inc.php:59 include/payment_middle.inc.php:97 -msgid "Retour sans sauvez" -msgstr "Terug zonder opslaan" - -#: include/payment_middle.inc.php:93 include/ext/stock/ajax.php:134 -#: include/ext/stock/stock_in.php:52 include/ext/stock/stock_out.php:33 -#: include/ext/stock/stock_out.php:66 include/ext/stock/stock_users.php:50 -#: include/ext/stock/ajax.php:141 include/ext/stock/ajax.php:120 -#: include/payment_middle.inc.php:95 include/ext/stock/ajax.php:122 -#: include/ext/stock/stock_out.php:67 include/payment_middle.inc.php:103 -msgid "Enregistre" -msgstr "Opslaan" - -#: include/payment_middle.inc.php:122 include/template/new_mod_payment.php:16 -#: include/payment_middle.inc.php:126 include/template/new_mod_payment.php:25 -msgid "Type de fiche" -msgstr "Soort blad" - -#: include/payment_middle.inc.php:123 include/payment_middle.inc.php:127 -msgid "enregistré dans le journal" -msgstr "Opslaan in de journaal" - -#: include/payment_middle.inc.php:124 include/payment_middle.inc.php:128 -msgid " Avec la fiche" -msgstr "met het blad" - -#: include/pref.inc.php:52 include/pref.inc.php:51 include/pref.inc.php:62 -msgid "Mot de passe est modifiée" -msgstr "Wachtwoord wordt veranderd" - -#: include/pref.inc.php:61 include/pref.inc.php:62 include/pref.inc.php:95 -msgid "Changez vos préférences" -msgstr "Verander uw voorkeuren" - -#: include/pref.inc.php:69 include/pref.inc.php:70 include/pref.inc.php:101 -msgid "Options Générales" -msgstr "Algemeen opties" - -#: include/pref.inc.php:100 include/pref.inc.php:106 include/pref.inc.php:113 -msgid "Thème" -msgstr "Thema" - -#: include/pref.inc.php:134 include/pref.inc.php:143 -msgid "" -"Attention cette période est fermée, vous ne pourrez rien modifier dans le " -"module comptable" -msgstr "" - -#: include/pref.inc.php:149 include/template/forecast_result.php:21 -#: include/pref.inc.php:159 include/template/forecast_result.php:22 -#: include/menu_translate.php:28 include/pref.inc.php:146 -msgid "Période" -msgstr "" - -#: include/pref.inc.php:160 include/pref.inc.php:173 include/pref.inc.php:152 -msgid "Taille des pages" -msgstr "" - -#: include/pref.inc.php:169 include/pref.inc.php:171 include/pref.inc.php:183 -#: include/pref.inc.php:186 include/pref.inc.php:161 include/pref.inc.php:163 -msgid "Illimité" -msgstr "" - -#: include/pref.inc.php:184 include/pref.inc.php:200 include/pref.inc.php:180 -msgid "Options pour la page d'accueil" -msgstr "" - -#: include/pref.inc.php:185 include/pref.inc.php:201 include/pref.inc.php:181 -msgid "Mini-Rapport : " -msgstr "" - -#: include/pref.inc.php:188 include/pref.inc.php:204 include/pref.inc.php:184 -msgid "Aucun mini rapport" -msgstr "" - -#: include/pref.inc.php:194 include/pref.inc.php:210 include/pref.inc.php:190 -msgid "Le mini rapport est un rapport qui s'affiche sur votre page d'accueil" -msgstr "" - -#: include/pref.inc.php:199 include/pref.inc.php:215 include/pref.inc.php:195 -msgid "Langue" -msgstr "" - -#: include/pref.inc.php:200 include/pref.inc.php:216 include/pref.inc.php:196 -msgid "Selectionnez votre langue" -msgstr "" - -#: include/pref.inc.php:217 include/pref.inc.php:234 include/pref.inc.php:213 -msgid "Valider" -msgstr "" - -#: include/quick_writing.inc.php:66 include/quick_writing.inc.php:49 -msgid "Encoder une Operation" -msgstr "" - -#: include/quick_writing.inc.php:67 include/quick_writing.inc.php:50 -msgid "Encoder une operation dans ce journal" -msgstr "" - -#: include/quick_writing.inc.php:68 include/quick_writing.inc.php:51 -msgid "Voir Operation" -msgstr "" - -#: include/quick_writing.inc.php:69 include/quick_writing.inc.php:52 -msgid "Voir les operations de ce journal" -msgstr "" - -#: include/quick_writing.inc.php:71 include/quick_writing.inc.php:54 -msgid "Autre journal" -msgstr "" - -#: include/quick_writing.inc.php:72 include/quick_writing.inc.php:55 -msgid "Choisir un autre journal" -msgstr "" - -#: include/quick_writing.inc.php:97 include/quick_writing.inc.php:80 -msgid "Utilisez une operation " -msgstr "" - -#: include/quick_writing.inc.php:99 include/quick_writing.inc.php:82 -msgid "Utilisez une operation" -msgstr "" - -#: include/quick_writing.inc.php:112 include/quick_writing.inc.php:95 -#: include/operation_ods_new.inc.php:91 -msgid "Ajout d'une ligne" -msgstr "" - -#: include/quick_writing.inc.php:118 include/quick_writing.inc.php:101 -#: include/operation_ods_new.inc.php:99 -msgid "Difference" -msgstr "" - -#: include/quick_writing.inc.php:144 include/quick_writing.inc.php:128 -msgid "Choix du journal" -msgstr "" - -#: include/quick_writing.inc.php:150 include/quick_writing.inc.php:135 -msgid "" -"L'acces a ce journal est interdit, \n" -" contactez votre responsable" -msgstr "" - -#: include/quick_writing.inc.php:205 include/quick_writing.inc.php:203 -#: include/quick_writing.inc.php:209 -msgid "Vous ne pouvez pas accèder à ce journal, contactez votre responsable" -msgstr "" - -#: include/quick_writing.inc.php:215 include/quick_writing.inc.php:213 -#: include/quick_writing.inc.php:222 -msgid "Désolé mais cette periode est fermee pour ce journal" -msgstr "" - -#: include/quick_writing.inc.php:279 include/quick_writing.inc.php:277 -#: include/quick_writing.inc.php:305 -msgid "Autre opération dans ce journal" -msgstr "" - -#: include/report.inc.php:117 include/report.inc.php:110 -#: include/report.inc.php:100 -msgid "Définition" -msgstr "" - -#: include/report.inc.php:125 include/report.inc.php:140 -#: include/report.inc.php:162 include/report.inc.php:118 -#: include/report.inc.php:133 include/report.inc.php:155 -#: include/report.inc.php:108 include/report.inc.php:123 -#: include/report.inc.php:147 -msgid "Les lignes vides seront effacées" -msgstr "" - -#: include/report.inc.php:136 include/report.inc.php:129 -#: include/report.inc.php:119 -msgid "Importer ce rapport" -msgstr "" - -#: include/report.inc.php:153 include/report.inc.php:146 -#: include/report.inc.php:136 -msgid "Mise a jour" -msgstr "" - -#: include/report.inc.php:154 include/report.inc.php:147 -#: include/report.inc.php:137 -msgid "Effacement" -msgstr "" - -#: include/supplier_card.inc.php:71 include/supplier_card.inc.php:69 -#: include/category_card.inc.php:65 -msgid "Suivi Fournisseur, devis, bon de commande, courrier" -msgstr "" - -#: include/supplier_card.inc.php:72 include/supplier_card.inc.php:70 -#: include/category_card.inc.php:66 -msgid "Liste de contacts de ce fournisseur" -msgstr "" - -#: include/supplier_card.inc.php:74 -msgid "Retour à la liste des fournisseurs" -msgstr "" - -#: include/user.inc.php:81 include/user.inc.php:60 include/user.inc.php:75 -msgid "Ajout d'utilisateur" -msgstr "" - -#: include/user_menu.php:188 include/impress.inc.php:32 -#: include/menu_translate.php:101 -msgid "Grand Livre" -msgstr "" - -#: include/user_menu.php:188 -msgid "Grand livre : toutes les opérations" -msgstr "" - -#: include/user_menu.php:189 -msgid "Journal de vente / produit" -msgstr "" - -#: include/user_menu.php:190 include/user_menu.php:200 -msgid "Journaux de dépense, d'achat" -msgstr "" - -#: include/user_menu.php:191 include/user_menu.php:201 -#: include/menu_translate.php:72 -msgid "Financier" -msgstr "" - -#: include/user_menu.php:191 include/user_menu.php:201 -msgid "Journaux financiers: les banques, la caisse" -msgstr "" - -#: include/user_menu.php:192 -msgid "Ecriture directe" -msgstr "" - -#: include/user_menu.php:192 -msgid "Ecriture directe dans les journaux" -msgstr "" - -#: include/user_menu.php:195 include/user_menu.php:205 -msgid "Ajouter, modifier ou effacer des fiches" -msgstr "" - -#: include/user_menu.php:196 include/user_menu.php:207 -#: include/menu_translate.php:63 -msgid "Avancé" -msgstr "" - -#: include/user_menu.php:196 include/user_menu.php:207 -msgid "Opérations délicates" -msgstr "" - -#: include/user_menu.php:225 include/user_menu.php:237 -msgid "Ecritures definies" -msgstr "" - -#: include/user_menu.php:226 include/user_menu.php:351 -msgid "Periode" -msgstr "" - -#: include/user_menu.php:226 include/user_menu.php:351 -msgid "Gestion des periodes" -msgstr "" - -#: include/user_menu.php:227 -msgid "Centralise" -msgstr "" - -#: include/user_menu.php:227 -msgid "Centralisation" -msgstr "" - -#: include/user_menu.php:229 include/ext/stock/index.php:38 -#: include/user_menu.php:239 -msgid "Gestion des stocks" -msgstr "Voorraad beheer" - -#: include/user_menu.php:231 include/user_menu.php:241 -msgid "Import Banque" -msgstr "" - -#: include/user_menu.php:232 include/user_menu.php:242 -msgid "Ecriture ouverture" -msgstr "" - -#: include/user_menu.php:233 include/user_menu.php:243 -msgid "Vérification" -msgstr "" - -#: include/user_menu.php:256 include/user_menu.php:362 -#: include/user_menu.php:266 include/user_menu.php:377 -#: include/class_acc_ledger.php:3106 include/user_menu.php:52 -msgid "Création" -msgstr "" - -#: include/user_menu.php:307 include/ext/stock/form_user.php:3 -#: include/ext/stock/index.php:41 include/ext/stock/index.php:42 -#: include/user_menu.php:323 include/user_menu.php:109 -msgid "Utilisateurs" -msgstr "Gebruikers" - -#: include/user_menu.php:307 include/ext/stock/index.php:41 -#: include/ext/stock/index.php:42 include/user_menu.php:323 -#: include/user_menu.php:109 -msgid "Gestion des utilisateurs" -msgstr "Gebruikers beheer" - -#: include/user_menu.php:308 include/user_menu.php:324 -#: include/user_menu.php:110 -msgid "Dossiers" -msgstr "" - -#: include/user_menu.php:308 include/user_menu.php:324 -#: include/user_menu.php:110 -msgid "Gestion des dossiers" -msgstr "" - -#: include/user_menu.php:309 include/user_menu.php:325 -#: include/user_menu.php:111 -msgid "Modèles" -msgstr "" - -#: include/user_menu.php:309 include/user_menu.php:325 -#: include/user_menu.php:111 -msgid "Gestion des modèles" -msgstr "" - -#: include/user_menu.php:310 include/user_menu.php:326 -#: include/user_menu.php:112 -msgid "Restaure" -msgstr "" - -#: include/user_menu.php:310 include/user_menu.php:326 -#: include/user_menu.php:112 -msgid "Restaure une base de données" -msgstr "" - -#: include/user_menu.php:311 include/user_menu.php:328 -#: include/menu_translate.php:105 include/user_menu.php:114 -msgid "Accueil" -msgstr "" - -#: include/user_menu.php:312 include/ext_inc.php:17 -#: include/menu_translate.php:91 -msgid "Sortie" -msgstr "Uitgang" - -#: include/user_menu.php:336 include/user_menu.php:350 -#: include/menu_translate.php:27 -msgid "Sociétés" -msgstr "" - -#: include/user_menu.php:336 include/user_menu.php:350 -#: include/menu_translate.php:27 -msgid "Parametre societe" -msgstr "" - -#: include/user_menu.php:337 include/user_menu.php:352 -#: include/menu_translate.php:17 -msgid "Divers" -msgstr "" - -#: include/user_menu.php:337 include/user_menu.php:352 -msgid "Devise, moyen de paiement" -msgstr "" - -#: include/user_menu.php:338 include/user_menu.php:353 -#: include/menu_translate.php:90 -msgid "Plan Comptable" -msgstr "" - -#: include/user_menu.php:338 include/user_menu.php:353 -msgid "Modification du plan comptable" -msgstr "" - -#: include/user_menu.php:340 include/template/extension-sec.php:3 -#: include/user_menu.php:355 include/menu_translate.php:65 -msgid "Sécurité" -msgstr "" - -#: include/user_menu.php:340 include/user_menu.php:355 -msgid "securite" -msgstr "" - -#: include/user_menu.php:341 include/user_menu.php:356 -msgid "Ecritures définies" -msgstr "" - -#: include/user_menu.php:342 include/user_menu.php:357 -msgid "Facture, lettre de rappel, proposition..." -msgstr "" - -#: include/user_menu.php:343 include/user_menu.php:358 -msgid "Creation et modification de journaux" -msgstr "" - -#: include/user_menu.php:394 include/user_menu.php:411 -#: include/user_menu.php:139 -msgid " Immobilisé" -msgstr "" - -#: include/user_menu.php:395 include/user_menu.php:412 -#: include/user_menu.php:140 -msgid "Actif a un an au plus" -msgstr "" - -#: include/user_menu.php:396 include/user_menu.php:413 -#: include/user_menu.php:141 -msgid "Stock et commande" -msgstr "Voorraad en Bestelling" - -#: include/user_menu.php:397 include/user_menu.php:414 -#: include/user_menu.php:142 -msgid "Compte tiers" -msgstr "" - -#: include/user_menu.php:398 include/user_menu.php:415 -#: include/user_menu.php:143 -msgid "Actif" -msgstr "" - -#: include/user_menu.php:399 include/user_menu.php:416 -#: include/user_menu.php:144 -msgid "Charges" -msgstr "" - -#: include/user_menu.php:400 include/user_menu.php:417 -#: include/user_menu.php:145 -msgid "Produits" -msgstr "" - -#: include/user_menu.php:401 include/user_menu.php:402 -#: include/user_menu.php:418 include/user_menu.php:419 -#: include/user_menu.php:146 include/user_menu.php:147 -msgid "Hors Comptabilité" -msgstr "" - -#: include/user_menu.php:416 include/user_menu.php:434 -msgid "Importer CSV" -msgstr "" - -#: include/user_menu.php:417 include/user_menu.php:435 -msgid "Verif CSV" -msgstr "" - -#: include/user_menu.php:418 include/user_menu.php:436 -msgid "Transfert CSV" -msgstr "" - -#: include/user_menu.php:443 include/user_menu.php:465 -#: include/menu_translate.php:92 -msgid "Tableau de bord" -msgstr "" - -#: include/user_menu.php:444 include/user_menu.php:466 -msgid "Preference" -msgstr "" - -#: include/user_menu.php:445 include/template/security_list_action.php:51 -#: include/user_menu.php:467 include/menu_translate.php:95 -msgid "Paramètre" -msgstr "" - -#: include/user_menu.php:446 include/user_menu.php:468 -msgid "Autre Dossier" -msgstr "" - -#: include/user_menu.php:449 include/user_menu.php:471 -msgid "Compta Générale" -msgstr "" - -#: include/user_menu.php:450 include/template/security_list_action.php:98 -#: include/user_menu.php:472 include/menu_translate.php:94 -msgid "Gestion" -msgstr "" - -#: include/template/account_result.php:2 include/template/card_result.php:2 -msgid "Résultats" -msgstr "" - -#: include/template/account_result.php:21 -#: include/template/account_result.php:25 -msgid "Nombre d'enregistrements" -msgstr "" - -#: include/template/account_search.php:1 -msgid "Partie du poste comptable ou du libellé" -msgstr "" - -#: include/template/category_of_card.php:3 -#: include/template/category_of_card.php:14 -msgid "Nom de la catégorie de fiche" -msgstr "" - -#: include/template/category_of_card.php:7 -#: include/template/fiche_def_input.php:7 -#: include/template/category_of_card.php:18 -msgid "Classe de base" -msgstr "" - -#: include/template/category_of_card.php:14 -#: include/template/category_of_card.php:25 -msgid "Création automatique du poste comptable" -msgstr "" - -#: include/template/category_of_card.php:18 -#: include/template/category_of_card.php:29 -msgid "" -"Si vous utilisez la création automatique de poste, chaque nouvelle fiche de " -"cette catégorie aura son propre poste comptable. Ce poste comptable sera la " -"classe de base augmenté de 1." -msgstr "" - -#: include/template/category_of_card.php:21 -#: include/template/category_of_card.php:32 -msgid "" -"Si vous n'utilisez pas la création automatique, toutes les nouvelles fiches " -"auront par défaut le même poste comptable. Ce poste comptable par défaut est " -"la classe de base." -msgstr "" - -#: include/template/category_of_card.php:24 -#: include/template/category_of_card.php:35 -msgid " A moins qu'en créant la fiche, vous forcez un autre poste comptable" -msgstr "" - -#: include/template/dashboard.php:3 include/template/detail-action.php:90 -msgid "Calendrier" -msgstr "" - -#: include/template/dashboard.php:10 include/template/dashboard.php:123 -msgid "Dernières opérations" -msgstr "" - -#: include/template/dashboard.php:40 include/template/dashboard.php:158 -msgid "Dernières actions" -msgstr "" - -#: include/template/detail-action.php:3 -msgid "Informations générales" -msgstr "" - -#: include/template/detail-action.php:24 -msgid "Heure" -msgstr "" - -#: include/template/detail-action.php:33 -msgid "Reference" -msgstr "" - -#: include/template/detail-action.php:42 -msgid "Destinataire" -msgstr "ontvanger" - -#: include/template/detail-action.php:71 -msgid "Concerne" -msgstr "" - -#: include/template/detail-action.php:80 -#: include/template/impress_cat_card.php:7 -msgid "Type" -msgstr "" - -#: include/template/detail-action.php:99 include/ext/stock/stock_sto.php:42 -msgid "Etat" -msgstr "Status" - -#: include/template/detail-action.php:109 -msgid "Priorité" -msgstr "" - -#: include/template/detail-action.php:119 -msgid "Affecté" -msgstr "" - -#: include/template/detail-action.php:155 -#: include/template/form_ledger_fin.php:21 -#: include/template/form_ledger_fin.php:26 -msgid "Commentaire" -msgstr "" - -#: include/template/detail-action.php:167 -msgid "Détail des articles" -msgstr "Artiken detal" - -#: include/template/detail-action.php:180 -msgid "prix unitaire" -msgstr "Eenheid prijs" - -#: include/template/detail-action.php:182 -msgid "Code TVA" +#: include/ext/tva/ajax.php:205 +msgid " Code TVA " msgstr "BTW Code" -#: include/template/detail-action.php:184 -#: include/class_acc_ledger_purchase.php:1299 -#: include/class_acc_ledger_sold.php:695 -msgid "Montant TVAC" -msgstr "BTW inbegrepen bedrag" +#: include/user_menu.php:147 +msgid " Hors Bilan" +msgstr "Off-Balans" -#: include/template/detail-action.php:210 -#: include/template/detail-action.php:206 -msgid "Montrer les détails" -msgstr "Details tonen" +#: include/user_menu.php:148 +msgid " Immobilisé" +msgstr "Afgesloten" -#: include/template/detail-action.php:211 -#: include/template/detail-action.php:207 -msgid "Cacher les détails" -msgstr "Detail verschuilen" +#: include/ext/rapport_avance/include/formulaire.inc.php:46 +msgid " Impossible de sauver" +msgstr "Kan niet opslaan" -#: include/template/detail-action.php:243 -#: include/template/detail-action.php:239 -msgid "Pièces attachées" -msgstr "Documents " - -#: include/template/detail-action.php:251 -#: include/template/detail-action.php:247 -#, php-format -msgid "Voulez-vous effacer le document" -msgstr "Wilt u die document afvegen ?" - -#: include/template/detail-action.php:270 -#: include/template/detail-action.php:265 -msgid "Je ne peux pas ajouter de fichier" -msgstr "Een blad toevoegen is niet mogelijk" - -#: include/template/extension-detail.php:23 -msgid "description" -msgstr "beschrijving" - -#: include/template/extension-detail.php:31 -msgid "chemin et nom de fichier" -msgstr "" - -#: include/template/extension-detail.php:39 include/template/extension.php:18 -msgid "Activé" -msgstr "Aangezet" - -#: include/template/extension.php:18 -msgid "Désactivé" -msgstr "Uitgezet" - -#: include/template/extension.php:23 -msgid "Effacer extension" -msgstr "Plugin afvegen" - -#: include/template/extension.php:24 -msgid "Confirmez effacement de l'extension ??" -msgstr "U bevestigt ??" - -#: include/template/extension-sec.php:6 -msgid "login" -msgstr "login" - -#: include/template/extension-sec.php:7 -msgid "Prénom" -msgstr "Voornaam" - -#: include/template/fiche_def_input.php:12 -msgid "" -"Création automatique du poste comptable uniquement s'il n\\y a qu'un seul " -"poste" -msgstr "" - -#: include/template/forecast_cat.php:5 include/template/forecast_cat.php:8 -msgid "Catégories" -msgstr "Categorien" - -#: include/template/forecast_cat.php:8 include/template/forecast_cat.php:11 -msgid "Ordre" -msgstr "Order" - -#: include/template/forecast-detail.php:7 include/class_document_modele.php:68 -msgid "Catégorie" -msgstr "Categorie" - -#: include/template/forecast-detail.php:9 -msgid "QuickCode" -msgstr "" - -#: include/template/forecast-detail.php:12 -msgid "Débit ou Crédit" -msgstr "" - -#: include/template/forecast_result.php:27 -#: include/template/forecast_result.php:28 include/class_acc_ledger.php:1492 -msgid "Totaux" -msgstr "" - -#: include/template/forecast_result.php:32 -#: include/template/forecast_result.php:33 -msgid "Estimé" -msgstr "" - -#: include/template/forecast_result.php:67 -#: include/template/forecast_result.php:68 -msgid "Réel" -msgstr "" - -#: include/template/forecast_result.php:81 -#: include/template/forecast_result.php:125 -#: include/template/forecast_result.php:82 -#: include/template/forecast_result.php:162 -msgid "Différence" -msgstr "" - -#: include/template/forecast_result.php:93 -#: include/template/forecast_result.php:108 -msgid "Diff. cumul." -msgstr "" - -#: include/template/forecast_result.php:119 -#: include/template/forecast_result.php:156 -msgid "Total Catégorie estimé" -msgstr "" - -#: include/template/forecast_result.php:122 -#: include/template/forecast_result.php:159 -msgid "Total Catégorie réel" -msgstr "" - -#: include/template/form_ledger_detail.php:18 -#: include/template/form_ledger_detail.php:12 -#: include/template/form_ledger_detail.php:15 -msgid "Num Pj" -msgstr "" - -#: include/template/form_ledger_detail.php:28 -#: include/ext/stock/form_stock_detail.php:34 -#: include/ext/stock/form_stock_detail.php:33 -#: include/ext/stock/form_stock_detail_in.php:33 -#: include/template/form_ledger_detail.php:22 -#: include/template/form_ledger_detail.php:25 -msgid "prix/unité htva" -msgstr "Eenheid prijs zonder BTW" - -#: include/template/form_ledger_detail.php:33 -#: include/template/form_ledger_detail.php:27 -#: include/template/form_ledger_detail.php:30 -msgid "tot.tva" -msgstr "tot btw" - -#: include/template/form_ledger_detail.php:34 -#: include/template/form_ledger_detail.php:28 -#: include/template/form_ledger_detail.php:31 -msgid "tvac" -msgstr "met btw" - -#: include/template/form_ledger_fin.php:11 -#: include/template/form_ledger_fin.php:15 -msgid "Extrait de compte" -msgstr "" - -#: include/template/form_ledger_fin.php:12 -#: include/template/form_ledger_fin.php:16 -msgid "Numéro extrait" -msgstr "" - -#: include/template/form_ledger_fin.php:13 -#: include/template/form_ledger_fin.php:17 -msgid "Solde début" -msgstr "" - -#: include/template/form_ledger_fin.php:14 -#: include/template/form_ledger_fin.php:18 -msgid "Solde Fin" -msgstr "" - -#: include/template/form_ledger_fin.php:23 -#: include/template/form_ledger_fin.php:28 -msgid "Op. Concernée(s)" -msgstr "" - -#: include/template/ledger_search.php:1 -msgid "Critères de Recherche" -msgstr "Zoeken criteria" - -#: include/template/ledger_search.php:5 -msgid "Dans le journal" -msgstr "En in het boek" - -#: include/template/ledger_search.php:14 -msgid "Et Compris entre les date" -msgstr "En tussen de datum" - -#: include/template/ledger_search.php:17 include/template/ledger_search.php:35 -msgid "et" -msgstr "en" - -#: include/template/ledger_search.php:23 -msgid "Et contenant dans la description, pièce justificative ou n° interne" -msgstr "En met de interne number, de beschrijving, " - -#: include/template/ledger_search.php:32 -msgid "Et compris entre les montants" -msgstr "En tussen de bedragen" - -#: include/template/ledger_search.php:40 -msgid "Et utilisant la fiche (quick code)" -msgstr "En met de blad (quick code)" - -#: include/template/ledger_search.php:48 -msgid "Et utilisant le poste comptable" -msgstr "En met de rekening" - -#: include/template/ledger_search.php:58 -msgid "Et uniquement non payées" -msgstr "En alleen niet betalend" - -#: include/template/new_mod_payment.php:2 -msgid "Nouveau moyen de paiement" -msgstr "Niew methode van betaling" - -#: include/template/new_mod_payment.php:25 -msgid "Pour le type de journal" -msgstr "Voor de soort van boek" - -#: include/template/new_mod_payment.php:34 -#: include/template/new_mod_payment.php:35 -msgid "Paiement enregistré dans " -msgstr "Betaling geregistreerd in" - -#: include/template/new_mod_payment.php:43 -#: include/template/new_mod_payment.php:44 -msgid "Avec la fiche" -msgstr "Met de blad" - -#: include/template/param_jrn.php:4 -msgid "Nom journal" -msgstr "Boek naam" - -#: include/template/param_jrn.php:8 -msgid "Postes utilisables journal (débit/crédit)" -msgstr "beschikbaar rekening (debit/credit) " - -#: include/template/param_jrn.php:22 include/template/param_jrn.php:71 -#: include/template/param_jrn.php:72 -msgid "Type de journal" -msgstr "Soort van boek" - -#: include/template/param_jrn.php:28 include/template/param_jrn.php:77 -#: include/template/param_jrn.php:78 -msgid "Préfixe code interne" -msgstr "" - -#: include/template/param_jrn.php:32 include/template/param_jrn.php:81 -#: include/template/param_jrn.php:82 -msgid "Préfixe pièce justificative" -msgstr "" - -#: include/template/param_jrn.php:36 include/template/param_jrn.php:87 -msgid "Le préfixe des pièces peut être différent pour chaque journal" -msgstr "" - -#: include/template/param_jrn.php:40 include/template/param_jrn.php:101 -#: include/template/param_jrn.php:102 -msgid "N° pièce justificative" -msgstr "Nummer " - -#: include/template/param_jrn.php:44 include/template/param_jrn.php:108 -#: include/template/param_jrn.php:109 -msgid "La numérotation est propre à chaque journal" -msgstr "De nummering hangt journal" - -#: include/template/param_jrn.php:53 include/template/param_jrn.php:121 -#: include/template/param_jrn.php:122 -msgid "Fiches Débit" -msgstr "Blad Debetzijde" - -#: include/template/param_jrn.php:54 include/template/param_jrn.php:122 -#: include/template/param_jrn.php:123 -msgid "Fiches Crédit" -msgstr "Blad Creditzijde" - -#: include/template/security_list_action.php:65 -msgid "Comptabilité Analytique" -msgstr "Analytische boekhoeding" - -#: include/template/security_list_action.php:87 include/menu_translate.php:58 -msgid "Prévision" -msgstr "Uitzicht" - -#: include/ext/stock/class_ext_stock.php:95 -msgid "Automne" -msgstr "Herfst" - -#: include/ext/stock/class_ext_stock.php:96 -msgid "Hivers" -msgstr "Winter" - -#: include/ext/stock/class_ext_stock.php:97 -msgid "Printemps" -msgstr "Lente" - -#: include/ext/stock/class_ext_stock.php:98 -msgid "Ete" -msgstr "Zomer" - -#: include/ext/stock/class_ext_stock.php:107 -#: include/ext/stock/class_ext_stock.php:141 -#: include/ext/stock/class_ext_stock.php:120 -#: include/ext/stock/class_ext_stock.php:117 -msgid "En-tête facture" -msgstr "Facturatie gegevens" - -#: include/ext/stock/class_ext_stock.php:454 -#: include/ext/stock/class_ext_stock.php:448 -#: include/ext/stock/class_ext_stock.php:493 -#: include/ext/stock/class_ext_stock.php:503 -#: include/ext/stock/class_ext_stock.php:483 -#: include/ext/stock/class_ext_stock.php:479 -msgid "Document à créer" -msgstr "Dokument te creeren" - -#: include/ext/stock/class_stock_in.php:45 -#: include/ext/stock/class_stock_out.php:41 -#: include/ext/stock/class_stock_in.php:24 -#: include/ext/stock/class_stock_out.php:20 -msgid "Marchandise inconnue" -msgstr "Onbekend goederen" - -#: include/ext/stock/ex.php:5 -msgid "Entrez votre barcode" -msgstr "Inbrengen van de barcode" - -#: include/ext/stock/ex.php:6 -msgid "Générez" -msgstr "Creeren" - -#: include/ext/stock/form_allocate_stock.php:17 -#: include/template/ledger_detail_ach.php:93 -#: include/template/ledger_detail_ven.php:94 -#: include/template/ledger_detail_ach.php:115 -#: include/template/ledger_detail_ven.php:110 -msgid "Quantité" -msgstr "Hoeveelheid" - -#: include/ext/stock/form_allocate_stock.php:23 -msgid "Stock 0" -msgstr "Voorraad 0" - -#: include/ext/stock/form_allocate_stock.php:29 -msgid "Stock 1" -msgstr "Voorraad 1" - -#: include/ext/stock/form_invoice.php:8 -msgid "Factures" -msgstr "Fakturen" - -#: include/ext/stock/form_invoice.php:13 -msgid "Client/Fournisseur" -msgstr "Klanten / Leverancier" - -#: include/ext/stock/form_invoice.php:17 -msgid "Heure d'encodage" -msgstr "Uur" - -#: include/ext/stock/form_payment.php:4 -msgid "Méthode de paiement" -msgstr "Betalingsmodaliteit" - -#: include/ext/stock/form_payment.php:11 -msgid "Encodé plus tard" -msgstr "In de later stadium in te boeken" - -#: include/ext/stock/form_payment.php:12 -msgid "Cash" -msgstr "Cash" - -#: include/ext/stock/form_payment.php:13 -msgid "Electronique" -msgstr "Elektronisch" - -#: include/ext/stock/form_payment.php:14 -msgid "Cheque" -msgstr "Cheque" - -#: include/ext/stock/form_sale_type.php:3 -msgid "Type de vente" -msgstr "Soort van verkoop" - -#: include/ext/stock/form_sale_type.php:6 -msgid "Vente en gros" -msgstr "Groothandel verkoop" - -#: include/ext/stock/form_sale_type.php:7 -msgid "Vente au détail" -msgstr "kleinhandel verkoop" - -#: include/ext/stock/form_stock_detail.php:23 -#: include/ext/stock/form_stock_detail_in.php:23 -msgid "N° facture" -msgstr "Faktuur nummer" - -#: include/ext/stock/form_stock_detail.php:24 -#: include/ext/stock/form_invoice.php:15 -#: include/ext/stock/form_stock_detail_in.php:24 -msgid "Autre info" -msgstr "Andere info" - -#: include/ext/stock/form_stock_detail.php:25 -msgid "Saison" -msgstr "Seizoen" - -#: include/ext/stock/form_stock_detail.php:37 -#: include/template/ledger_detail_ach.php:98 -#: include/template/ledger_detail_ven.php:97 include/menu_translate.php:18 -#: include/template/ledger_detail_ach.php:120 -#: include/template/ledger_detail_ven.php:117 -msgid "TVA" +#: include/class_acc_ledger_purchase.php:186 +#: include/class_acc_ledger_sold.php:177 +msgid " La TVA " msgstr "BTW" -#: include/ext/stock/form_user.php:7 -msgid "Vendeur" -msgstr "Verkoopster" +#: include/class_acc_payment.php:299 +msgid " Libellé du paiement" +msgstr "Formulering van betaling" -#: include/ext/stock/form_user.php:8 -msgid "Admin" -msgstr "Admin" +#: include/ext/rapport_avance/include/declaration.inc.php:57 +msgid " Sauvé " +msgstr "OPSLAAN" -#: include/ext/stock/form_user.php:9 -msgid "Super" -msgstr "super" - -#: include/ext/stock/index.php:35 -msgid "Entrée Marchandise" -msgstr "Goederen in" - -#: include/ext/stock/index.php:35 -msgid "Marchandise IN" -msgstr "Goederen in" - -#: include/ext/stock/index.php:36 -msgid "Sortie Marchandise" -msgstr "Goederen uit" - -#: include/ext/stock/index.php:36 -msgid "Marchandise Out" -msgstr "Goederen uit" - -#: include/ext/stock/index.php:39 -msgid "Facture" -msgstr "Faktuur" - -#: include/ext/stock/index.php:39 -msgid "Gestion des factures" -msgstr "Beheer van de fakturen" - -#: include/ext/stock/index.php:40 -msgid "Code barre" -msgstr "Barcode" - -#: include/ext/stock/index.php:40 -msgid "Code Barre" -msgstr "Barcode" - -#: include/ext/stock/stock_in.php:36 include/ext/stock/stock_out.php:44 -#: include/ext/stock/stock_out.php:45 -msgid "Enregistré" -msgstr "Bewaard" - -#: include/ext/stock/stock_in.php:37 include/ext/stock/stock_out.php:49 -#: include/ext/stock/stock_out.php:58 include/ext/stock/stock_out.php:50 -#: include/ext/stock/stock_out.php:59 -msgid "Autre facture" -msgstr "Andere faktuur" - -#: include/ext/stock/stock_invoice.php:30 include/ext/stock/stock_sto.php:35 -#: include/template/ledger_detail_ach.php:81 -#: include/template/ledger_detail_fin.php:89 -#: include/template/ledger_detail_misc.php:77 -#: include/template/ledger_detail_ven.php:83 -#: include/template/ledger_detail_ach.php:102 -#: include/template/ledger_detail_fin.php:95 -#: include/template/ledger_detail_ven.php:102 -msgid "Détail" -msgstr "Detail" - -#: include/ext/stock/stock_sto.php:41 -msgid "Ventiler" -msgstr "Opsplitsing" - -#: include/ext/stock/stock_sto.php:41 -msgid "Affectation par dépot" -msgstr "Bestemming van de voorraad" - -#: include/ext/stock/stock_sto.php:42 -msgid "Etat des stocks" -msgstr "Stand van voorraadsstand" - -#: include/ext/stock/stock_users.php:38 -msgid "Changements sauvés" -msgstr "Wijzingen bewaard" - -#: include/class_acc_ledger_sold.php:714 include/class_acc_ledger_sold.php:718 -#: include/class_acc_ledger_sold.php:850 -msgid "Payé par " -msgstr " Betaald door " - -#: include/class_acc_payment.php:282 include/class_acc_payment.php:323 -#: include/class_acc_payment.php:329 -msgid "Paiement encodé plus tard" -msgstr " Later in te brengen" - -#: include/class_acc_payment.php:313 include/class_acc_payment.php:301 -#: include/class_acc_payment.php:345 include/class_acc_payment.php:351 -msgid " paiement par " -msgstr " - " - -#: include/ext/stock/form_invoice.php:14 -msgid "Numero interne" -msgstr "Intern Nummer" - -#: include/ext/stock/form_invoice.php:16 -msgid "Utilisateur" -msgstr "Gebruiker" - -#: include/ext/stock/form_stock_detail.php:56 -#: include/template/ledger_detail_ach.php:89 -#: include/template/ledger_detail_ven.php:91 -#: include/template/ledger_detail_ach.php:110 -#: include/template/ledger_detail_ven.php:112 -msgid "Taux TVA" -msgstr "BTW %" - -#: include/class_anc_print.php:122 include/class_anc_print.php:126 -#: include/class_anc_print.php:129 -msgid "Plan Analytique :" -msgstr "Analytische plan" - -#: include/class_anc_print.php:126 include/class_anc_print.php:130 -msgid "Entre le poste " -msgstr "Tussen de rekening" - -#: include/class_anc_print.php:128 include/class_anc_print.php:132 -#: include/class_anc_print.php:133 -msgid "Choix Poste" -msgstr "keuze van de rekening" - -#: include/class_anc_print.php:133 include/class_anc_print.php:137 -msgid " et le poste " -msgstr " en de rekening " - -#: include/fiche.inc.php:71 include/fiche.inc.php:61 include/fiche.inc.php:65 -msgid "Recherche :" -msgstr "Zoeken" - -#: include/jrn.php:291 -msgid "Echéance " -msgstr "Termijn" - -#: include/ext/stock/class_ext_stock.php:341 -#: include/ext/stock/class_ext_stock.php:347 -#: include/ext/stock/class_ext_stock.php:326 -#: include/ext/stock/class_ext_stock.php:322 -msgid "Discount" -msgstr "Korting" - -#: include/class_fiche.php:1076 include/class_fiche.php:1078 -#: include/class_fiche.php:1278 include/class_fiche.php:1322 -msgid "Code interne" -msgstr "Interne code" - -#: include/class_fiche.php:1248 include/class_fiche.php:1250 -#: include/class_fiche.php:1513 include/template/ledger_detail_ach.php:86 -#: include/template/ledger_detail_ach.php:209 -#: include/template/ledger_detail_fin.php:99 -#: include/template/ledger_detail_misc.php:87 -#: include/template/ledger_detail_ven.php:88 -#: include/template/ledger_detail_ven.php:205 include/class_fiche.php:1596 -#: include/template/ledger_detail_ach.php:107 -#: include/template/ledger_detail_ach.php:249 -#: include/template/ledger_detail_fin.php:105 -#: include/template/ledger_detail_ven.php:107 -#: include/template/ledger_detail_ven.php:247 -msgid "Quick Code" -msgstr "Quick Code" - -#: include/class_fiche.php:1250 include/class_fiche.php:1252 -#: include/class_fiche.php:1515 include/class_fiche.php:1598 -msgid "Adresse" -msgstr "Adress" - -#: include/class_fiche.php:1251 include/class_fiche.php:1253 -#: include/class_fiche.php:1516 include/class_fiche.php:1599 -msgid "Total débit" -msgstr "Debit totaal" - -#: include/class_fiche.php:1252 include/class_fiche.php:1254 -#: include/class_fiche.php:1517 include/class_fiche.php:1600 -msgid "Total crédit" -msgstr "Credit totaal" - -#: include/client.inc.php:72 include/client.inc.php:65 -#: include/client.inc.php:50 include/contact.inc.php:50 -msgid "Vous ne pouvez pas enlever de fiche" -msgstr "U mag geen blad verwijderen" - -#: include/class_acc_account.php:167 include/class_acc_account.php:192 -#: include/class_acc_account.php:186 -#, php-format -msgid "Numéro de classe" -msgstr "rekeningsnummer" - -#: include/class_acc_account.php:171 include/class_acc_account.php:196 -#: include/class_acc_account.php:190 -#, php-format -msgid "Classe Parent" -msgstr "Rekening " - -#: include/class_acc_bilan.php:72 include/class_acc_bilan.php:75 -msgid " jusque " -msgstr "tot" - -#: include/class_acc_bilan.php:81 include/class_acc_bilan.php:84 -msgid "Choix du bilan" -msgstr "Keuze van de handelsbalans" - -#: include/class_acc_ledger_fin.php:59 include/class_acc_ledger.php:1436 -#: include/class_acc_ledger_purchase.php:60 -#: include/class_acc_ledger_sold.php:64 include/class_acc_ledger_fin.php:62 -#: include/class_acc_ledger.php:1607 include/class_acc_ledger_purchase.php:67 -#: include/class_acc_ledger_sold.php:70 include/class_acc_ledger.php:1769 -#: include/class_acc_ledger_purchase.php:68 -msgid "Accès interdit" -msgstr "Verboden" - -#: include/impress_bilan.inc.php:46 include/impress_bilan.inc.php:65 -#: include/impress_bilan.inc.php:64 -msgid "Verification comptabilite" -msgstr "Verificatie vand de boekhouding" - -#: include/impress_bilan.inc.php:66 -msgid "" -" Attention : si le bilan n'est pas équilibré.
" -"Vérifiez
    \n" -"
  • L'affectation du résultat est fait
  • \n" -"
  • Vos comptes actifs ont un solde débiteur (sauf les comptes dit inversés)" -"
  • \n" -"
  • les comptes passifs ont un solde créditeur (sauf les comptes dit " -"inversés)
  • \n" -"
\n" -"Utilisez la balance des comptes pour vérifier.
" -msgstr "" -" Opgelet: als de balans niet in evenwicht.
Check " -"
    \n" -"
  • verdeling van de inkomsten is gemaakt \n" -"Uw
  • actieve accounts hebben een negatief saldo (exclusief rekeningen zei " -"omgekeerd) \n" -"
  • passiva rekeningen hebben een tegoed (exclusief rekeningen " -"zeiomgekeerd) \n" -" \n" -"Gebruik de rekening van de betalingsbalans te controleren. " - -#: html/parametre.php:139 include/menu_translate.php:87 -msgid "Catégorie de documents" -msgstr "Categorie van documenten" - -#: html/parametre.php:139 -msgid "Ajoute des catégories de documents,..." -msgstr "Voegt categorieën van documenten toe" - -#: html/access.php:79 html/user_login.php:64 html/do.php:94 -msgid "Base de donnée invalide" -msgstr "" - -#: html/access.php:86 html/do.php:101 -msgid "" -"Attention: la version de base de donnée est supérieure à la version du " -"programme, vous devriez mettre à jour" -msgstr "" - -#: html/ajax_card.php:134 html/ajax_card.php:143 -msgid "Fiche non trouvée" -msgstr "" - -#: html/ajax_card.php:152 include/fiche.inc.php:302 -#: include/impress_fiche.inc.php:56 include/impress.inc.php:31 -#: include/user_menu.php:198 html/ajax_card.php:161 include/fiche.inc.php:311 -#: include/impress_fiche.inc.php:61 include/menu_translate.php:3 -#: include/menu_translate.php:71 include/menu_translate.php:96 -msgid "Historique" -msgstr "" - -#: html/ajax_card.php:161 html/ajax_card.php:170 -msgid "Aucune fiche demandée" -msgstr "" - -#: html/ajax_card.php:176 html/ajax_card.php:185 -msgid "Nouvelle fiche " -msgstr "" - -#: html/ajax_card.php:474 html/ajax_card.php:478 -msgid "Fiche non valide" -msgstr "" - -#: html/ajax_ledger.php:136 html/ajax_ledger.php:129 -msgid "Opération Effacée" -msgstr "" - -#: html/ajax_ledger.php:226 html/ajax_ledger.php:236 -msgid "Aucun fichier" -msgstr "" - -#: html/ajax_ledger.php:438 html/ajax_ledger.php:495 -msgid "Opération extournée" -msgstr "" - -#: html/ajax_misc.php:181 html/ajax_misc.php:183 -msgid "code" -msgstr "" - -#: html/ajax_misc.php:182 html/ajax_misc.php:184 -msgid "Taux" -msgstr "" - -#: html/ajax_misc.php:183 html/ajax_misc.php:185 -msgid "Symbole" -msgstr "" - -#: html/ajax_misc.php:184 html/ajax_misc.php:186 -msgid "Explication" -msgstr "" - -#: html/ajax_misc.php:237 html/ajax_misc.php:242 html/ajax_misc.php:238 -#: html/ajax_misc.php:243 -msgid "tva inconnue" -msgstr "" - -#: html/ajax_misc.php:276 include/adm_card.inc.php:72 -#: include/client_card.inc.php:70 include/supplier_card.inc.php:73 -#: include/user_menu.php:206 include/template/letter_all.php:17 -#: include/template/letter_prop.php:19 html/ajax_misc.php:278 -#: include/category_card.inc.php:69 include/menu_translate.php:51 -#: include/template/letter_prop.php:59 -msgid "Lettrage" -msgstr "" - -#: html/ajax_misc.php:298 html/ajax_misc.php:303 -msgid "Montant min. " -msgstr "" - -#: html/ajax_misc.php:305 html/ajax_misc.php:310 -msgid "Montant max. " -msgstr "" - -#: html/ajax_misc.php:327 include/impress_fiche.inc.php:270 -#: html/ajax_misc.php:332 include/class_anc_grandlivre.php:161 -#: include/impress_fiche.inc.php:339 -msgid "Debit" -msgstr "" - -#: html/ajax_misc.php:328 include/impress_fiche.inc.php:274 -#: html/ajax_misc.php:333 include/class_anc_grandlivre.php:162 -#: include/impress_fiche.inc.php:343 -msgid "Credit" -msgstr "" - -#: html/ajax_misc.php:329 html/ajax_misc.php:334 -msgid "Les 2" -msgstr "" - -#: html/ajax_misc.php:384 include/lettering.account.inc.php:102 -#: include/lettering.card.inc.php:105 include/lettering.gestion.inc.php:67 -#: html/ajax_misc.php:395 include/lettering.account.inc.php:103 -#: include/lettering.card.inc.php:106 include/lettering.gestion.inc.php:68 -msgid "Date malformée, désolé" -msgstr "" - -#: html/extension.php:72 -msgid "Retour accueil" -msgstr "" - -#: html/extension.php:80 -msgid "Déconnexion" -msgstr "" - -#: html/parametre.php:140 include/menu_translate.php:80 -msgid "Attribut de fiche" -msgstr "" - -#: html/parametre.php:140 -msgid "Modifie les attributs des catégories de fiches" -msgstr "" - -#: html/parametre.php:330 include/company.inc.php:109 -msgid "Suggérer la date" -msgstr "" - -#: html/show_pj.php:81 -msgid "Fichier effacé" -msgstr "" - -#: include/action.common.inc.php:155 include/action.common.inc.php:154 -msgid "Vous confirmez l\\'effacement" -msgstr "" - -#: include/adm_card.inc.php:71 include/client_card.inc.php:69 -#: include/impress_fiche.inc.php:60 include/supplier_card.inc.php:72 -#: include/category_card.inc.php:68 include/impress_fiche.inc.php:66 -#: include/menu_translate.php:102 include/menu_translate.php:84 -msgid "Balance" -msgstr "" - -#: include/adm_card.inc.php:71 include/supplier_card.inc.php:72 -#: include/category_card.inc.php:68 -msgid "Balance du fournisseur" -msgstr "" - -#: include/adm_card.inc.php:72 include/client_card.inc.php:70 -#: include/supplier_card.inc.php:73 include/category_card.inc.php:69 -msgid "Opérations & Lettrages" -msgstr "" - -#: include/adm.inc.php:93 include/client.inc.php:98 -#: include/supplier.inc.php:86 include/adm.inc.php:89 include/bank.inc.php:82 -#: include/client.inc.php:80 include/contact.inc.php:81 -msgid "Catégorie :" -msgstr "" - -#: include/balance.inc.php:46 include/impress_bilan.inc.php:48 -#: include/impress_jrn.inc.php:82 include/impress_rapport.inc.php:180 -#: include/impress_rapport.inc.php:182 -msgid "Choississez un autre exercice" -msgstr "" - -#: include/class_acc_ledger.php:169 include/class_acc_ledger.php:173 -#: include/class_acc_ledger.php:189 include/class_acc_ledger.php:193 -msgid "Cette opération n'existe pas" -msgstr "" - -#: include/class_acc_ledger.php:181 include/class_acc_ledger.php:201 -msgid "PERIODE FERMEE" -msgstr "" - -#: include/class_acc_ledger.php:1685 include/class_acc_ledger.php:1853 -msgid "Poste invalide [" -msgstr "" - -#: include/class_acc_ledger.php:1687 include/class_acc_ledger.php:1855 -msgid "Poste Inexistant [" -msgstr "" - -#: include/class_acc_ledger.php:2479 include/class_acc_ledger.php:2687 -msgid "Filtrer" -msgstr "" - -#: include/class_acc_ledger_purchase.php:173 -#: include/class_acc_ledger_purchase.php:178 -#: include/class_acc_ledger_sold.php:175 include/class_acc_ledger_sold.php:179 -#: include/class_acc_ledger_sold.php:174 include/class_acc_ledger_sold.php:178 -msgid "a un code tva invalide" -msgstr "" - -#: include/class_acc_ledger_purchase.php:187 -#: include/class_acc_ledger_sold.php:189 include/class_acc_ledger_sold.php:188 -msgid " La TVA " -msgstr "" - -#: include/class_acc_ledger_purchase.php:237 -msgid "ce code n'a pas de poste comptable, créez ce poste : [" -msgstr "" - -#: include/class_acc_ledger_purchase.php:253 -#, php-format -msgid "Pour la fiche %s, le compte %s n'existe pas" -msgstr "" - -#: include/class_anc_group_operation.php:190 -#: include/class_anticipation.php:419 include/class_anticipation.php:431 -msgid "Ajouter une ligne" -msgstr "" - -#: include/class_anticipation.php:120 include/class_anticipation.php:122 -msgid "Période de début non valable" -msgstr "" - -#: include/class_anticipation.php:121 include/class_anticipation.php:123 -msgid "Période de fin non valable" -msgstr "" - -#: include/class_document_modele.php:69 -msgid "Affect." -msgstr "" - -#: include/class_document_modele.php:70 -msgid "Fichier" -msgstr "" - -#: include/class_document_modele.php:255 -msgid "Affectation" -msgstr "" - -#: include/class_document_modele.php:259 -#: include/template/modele_document.php:47 -#: include/template/modele_document.php:45 -msgid "Uniquement journaux achat" -msgstr "" - -#: include/class_document_modele.php:260 -#: include/template/modele_document.php:48 -#: include/template/modele_document.php:46 -msgid "Uniquement journaux vente" -msgstr "" - -#: include/class_document_modele.php:261 -#: include/template/modele_document.php:49 -#: include/template/modele_document.php:47 -msgid "Partie gestion" -msgstr "" - -#: include/class_fiche.php:1277 include/class_fiche.php:1321 -msgid "n° pièce" -msgstr "" - -#: include/class_ibutton.php:56 -msgid "Inverser la sélection" -msgstr "" - -#: include/class_ibutton.php:63 -msgid "Cocher tous" -msgstr "" - -#: include/class_ibutton.php:70 -msgid "Décocher tous" -msgstr "" - -#: include/class_ibutton.php:77 -msgid "Calculatrice" -msgstr "" - -#: include/class_itva_popup.php:122 -msgid "Le nom ne peut être vide" -msgstr "" - -#: include/class_itva_popup.php:125 +#: include/class_itva_popup.php:131 msgid " TVA " -msgstr "" +msgstr "BTW" -#: include/class_periode.php:230 include/class_periode.php:268 +#: include/class_acc_ledger.php:107 +msgid " Tous les journaux" +msgstr "Financiele" + +#: html/ajax_card.php:416 html/ajax_card.php:417 +msgid " d'administration" +msgstr "van administratie" + +#: html/ajax_card.php:408 html/ajax_card.php:409 +msgid " de clients" +msgstr "van clients" + +#: html/ajax_card.php:421 +msgid " de contacts" +msgstr "van clients" + +#: html/ajax_card.php:412 html/ajax_card.php:413 +msgid " de fournisseurs" +msgstr "van Leveranciers" + +#: include/ext/rapport_avance/include/formulaire.inc.php:42 +msgid " dernière sauvegarde " +msgstr "laatste back-up" + +#: include/ext/invoicing/include/invoice_send_mail.inc.php:113 +msgid " destinataire " +msgstr "Ontvanger" + +#: include/dossier.inc.php:58 +msgid " doit être migré en unicode." +msgstr "Moet are in unicode" + +#: include/action.common.inc.php:218 +msgid " effacée" +msgstr "Wissen" + +#: include/dossier.inc.php:94 +msgid " est une année invalide" +msgstr "is a Jaar ongeldig" + +#: include/class_anc_print.php:137 +msgid " et l'activité " +msgstr "en de activiteit" + +#: include/class_acc_bilan.php:74 +msgid " jusque " +msgstr "peuter" + +#: include/class_acc_ledger_purchase.php:212 +msgid " le poste comptable" +msgstr "van rekening" + +#: include/class_acc_ledger_purchase.php:141 +#: include/class_acc_ledger_sold.php:132 include/class_acc_ledger_sold.php:191 +msgid " le poste comptable [" +msgstr "Rekening van [" + +#: include/class_acc_payment.php:327 +msgid " paiement par " +msgstr "-" + +#: include/class_acc_ledger_purchase.php:112 +msgid " vous ne pouvez pas encoder à une date antérieure dans ce journal" +msgstr "Mag Niet voor this U gegeven coderen" + +#: include/class_acc_ledger_fin.php:117 include/class_acc_ledger_fin.php:201 +#: include/class_acc_ledger_sold.php:109 +msgid " vous ne pouvez pas encoder à une date antérieure" +msgstr "Mag Niet voor this U gegeven coderen" + +#: include/ext/tools/include/tools_exercice.inc.php:38 #, php-format -msgid "Nombre opérations %d" -msgstr "" +msgid "%s Vous avez ajouté %d mois depuis le %d/%d pour l'exercice %d " +msgstr "Je hebt% s% d maanden sinds% d /% d% d voor het jaar toegevoegd" -#: include/class_periode.php:232 include/class_periode.php:328 -msgid "Confirmez Réouverture" -msgstr "" +#: include/class_acc_ledger.php:3234 +msgid "'Journaux Financier" +msgstr "Financiële" -#: include/class_periode.php:238 -msgid "Confirmez cloture" -msgstr "" +#: include/class_acc_ledger.php:3235 +msgid "'Journaux d'Opérations diverses" +msgstr "Menu verschillende bewerkingen" -#: include/class_periode.php:264 -msgid "Confirmez effacement ?" -msgstr "" - -#: include/class_periode.php:334 -msgid "Confirmez Cloture" -msgstr "" - -#: include/client_card.inc.php:69 -msgid "Balance du client" -msgstr "" - -#: include/client.inc.php:102 include/client.inc.php:84 -msgid "Inclure les clients sans opération :" -msgstr "" - -#: include/compta_fin.inc.php:39 -msgid "Rapprochements banquaires" -msgstr "" - -#: include/ext_inc.php:25 include/extension_get.inc.php:34 -msgid "Ce fichier n'existe pas " -msgstr "" - -#: include/fiche.inc.php:39 include/fiche.inc.php:40 -msgid "Choix TVA" -msgstr "" - -#: include/fiche.inc.php:117 include/fiche.inc.php:125 -msgid "" -"Attention : il n'y aura pas de demande de confirmation pour enlever les\n" -" attributs sélectionnés. Il ne sera pas " -"possible de revenir en arrière" -msgstr "" - -#: include/fiche.inc.php:303 include/fiche.inc.php:312 -msgid "Déplacer vers" -msgstr "" - -#: include/fiche.inc.php:303 include/fiche.inc.php:312 -msgid "" -"Attention, certains attributs pourraient être ajoutés à la catégorie de " -"destination, vous confirmez ?" -msgstr "" - -#: include/forecast.inc.php:373 include/forecast.inc.php:364 -msgid "Cloner" -msgstr "" - -#: include/forecast.inc.php:373 include/forecast.inc.php:364 -msgid "Vous confirmez le clonage " -msgstr "" - -#: include/forecast.inc.php:383 include/forecast.inc.php:373 -msgid "Erreur : " -msgstr "" - -#: include/forecast.inc.php:383 include/forecast.inc.php:373 -msgid "Vous devez corriger" -msgstr "" +#: include/class_acc_ledger.php:3233 +#, fuzzy +msgid "'Journaux d'achat" +msgstr "Ver" #: include/impress_bilan.inc.php:89 +#, fuzzy msgid "" " Attention : si le bilan n'est pas équilibré.
    " "Vérifiez
      \n" @@ -4135,916 +189,6619 @@ msgid "" "inversés) \n" "
    \n" " Utilisez la balance des comptes pour vérifier.
    " -msgstr "" +msgstr "Accepteren" -#: include/impress_fiche.inc.php:57 include/impress_fiche.inc.php:62 -msgid "Historique Lettré" -msgstr "" +#: include/template/stock_histo_search.php:43 +msgid "A partir de" +msgstr "Vanaf" -#: include/impress_fiche.inc.php:58 include/impress_fiche.inc.php:64 -msgid "Historique non Lettré" -msgstr "" +#: include/ext/amortis/include/print_fiche.inc.php:55 +msgid "Accepter" +msgstr "Accepteren" -#: include/impress_fiche.inc.php:59 include/impress_fiche.inc.php:65 -msgid "Résumé" -msgstr "" +#: include/database.item.php:73 include/user_menu.php:115 +#: include/user_menu.php:122 +msgid "Accueil" +msgstr "Welkom" -#: include/impress_fiche.inc.php:226 include/export_fiche_balance_csv.php:139 -#: include/impress_fiche.inc.php:289 -msgid "ref" -msgstr "" +#: include/template/profile_sec_repository.php:36 +#: include/template/security_list_action.php:8 +#: include/template/user_sec_profile.php:36 +msgid "Accès" +msgstr "Vergunning" -#: include/impress_fiche.inc.php:227 include/template/letter_all.php:26 -#: include/export_fiche_balance_csv.php:140 include/impress_fiche.inc.php:290 -msgid "Interne" -msgstr "" +#: include/ext/transform/raw.php:31 include/ext/transform/raw.php:70 +#: include/ext/transform/include/intervat_listing_assujetti_step_3.inc.php:27 +#, fuzzy +msgid "Accès directe incorrecte" +msgstr "Verkeerd periode van datum" -#: include/impress_fiche.inc.php:228 include/export_fiche_balance_csv.php:141 -#: include/impress_fiche.inc.php:291 -msgid "Comm" -msgstr "" +#: include/class_acc_ledger_fin.php:64 include/class_acc_ledger.php:1829 +#: include/class_acc_ledger_purchase.php:67 +#: include/class_acc_ledger_sold.php:71 include/ext/modop/modop_save.php:245 +#: html/export.php:41 html/recherche.php:53 +msgid "Accès interdit" +msgstr "Verboden" -#: include/impress_fiche.inc.php:230 include/export_fiche_balance_csv.php:144 -#: include/impress_fiche.inc.php:293 -msgid "Prog." -msgstr "" - -#: include/impress_fiche.inc.php:231 include/export_fiche_balance_csv.php:145 -#: include/impress_fiche.inc.php:294 -msgid "Let." -msgstr "" - -#: include/impress.inc.php:36 include/template/ledger_detail_bottom.php:4 -#: include/template/ledger_detail_bottom.php:3 include/menu_translate.php:77 -#: include/menu_translate.php:97 -msgid "Rapprochement" -msgstr "" - -#: include/impress_rec.inc.php:78 include/impress_reconciliation.php:47 -msgid "Visualisation" -msgstr "" - -#: include/letter.inc.php:28 -msgid "Par poste" -msgstr "" - -#: include/letter.inc.php:29 -msgid "Lettrage par poste" -msgstr "" - -#: include/letter.inc.php:30 -msgid "Par fiche" -msgstr "" - -#: include/letter.inc.php:31 include/menu_translate.php:89 -msgid "Lettrage par fiche" -msgstr "" - -#: include/lettering.account.inc.php:47 -msgid "Lettrage pour le poste comptable " -msgstr "" - -#: include/lettering.account.inc.php:58 include/lettering.card.inc.php:61 -#: include/lettering.gestion.inc.php:21 include/lettering.gestion.inc.php:22 -msgid "Date début" -msgstr "" - -#: include/lettering.account.inc.php:64 include/lettering.card.inc.php:67 -#: include/lettering.gestion.inc.php:27 include/lettering.gestion.inc.php:28 -msgid "Date fin" -msgstr "" - -#: include/lettering.account.inc.php:71 include/lettering.card.inc.php:74 -#: include/lettering.gestion.inc.php:34 include/lettering.gestion.inc.php:35 -msgid "Toutes opérations" -msgstr "" - -#: include/lettering.account.inc.php:72 include/lettering.card.inc.php:75 -#: include/lettering.gestion.inc.php:35 include/lettering.gestion.inc.php:36 -msgid "Opérations lettrées" -msgstr "" - -#: include/lettering.account.inc.php:73 include/lettering.card.inc.php:76 -#: include/lettering.gestion.inc.php:36 include/lettering.account.inc.php:74 -#: include/lettering.card.inc.php:77 include/lettering.gestion.inc.php:37 -msgid "Opérations NON lettrées" -msgstr "" - -#: include/lettering.card.inc.php:50 -msgid "Lettrage pour la fiche " -msgstr "" - -#: include/param_pcmn.inc.php:53 -msgid "Poste comptable" -msgstr "" - -#: include/param_pcmn.inc.php:57 -msgid "Parent" -msgstr "" - -#: include/param_pcmn.inc.php:59 -msgid "Type " -msgstr "" - -#: include/periode.inc.php:46 include/periode.inc.php:58 -#: include/periode.inc.php:45 include/periode.inc.php:56 -msgid "Valeurs invalides" -msgstr "" - -#: include/pref.inc.php:41 include/pref.inc.php:66 -msgid "Les mots de passe ne correspondent pas. Mot de passe inchangé" -msgstr "" - -#: include/stock_inc.php:107 -msgid "Sortie /Vente " -msgstr "" - -#: include/stock_inc.php:107 -msgid "Entrée/Achat " -msgstr "" - -#: include/supplier.inc.php:89 -msgid "Inclure les fournisseurs sans opération :" -msgstr "" - -#: include/user_menu.php:198 -msgid "Historique : toutes les opérations" -msgstr "" - -#: include/user_menu.php:199 -msgid "Recette" -msgstr "" - -#: include/user_menu.php:199 -msgid "Journal de vente, produit et recette" -msgstr "" - -#: include/user_menu.php:202 -msgid "Opération Diverses" -msgstr "" - -#: include/user_menu.php:202 -msgid "Journaux d'OD: salaires, déclarations TVA,..." -msgstr "" - -#: include/user_menu.php:206 -msgid "Ajouter, modifier ou effacer des lettrage" -msgstr "" - -#: include/user_menu.php:327 include/user_menu.php:113 -msgid "Audit" -msgstr "" - -#: include/user_menu.php:327 include/user_menu.php:113 -msgid "Utilisateurs qui se sont connectés" -msgstr "" - -#: include/user_menu.php:410 include/user_menu.php:138 -msgid " Hors Bilan" -msgstr "" - -#: include/user_menu.php:437 -msgid "Purge CSV" -msgstr "" - -#: include/template/impress_cat_card.php:3 -msgid "Categorie" -msgstr "" - -#: include/template/impress_cat_card.php:15 -msgid "Jusque" -msgstr "Tot" - -#: include/template/ledger_detail_ach.php:94 -#: include/template/ledger_detail_ach.php:116 -msgid "Non ded" -msgstr "" - -#: include/template/ledger_detail_ach.php:97 -#: include/template/ledger_detail_ven.php:96 -#: include/template/ledger_detail_ach.php:119 -#: include/template/ledger_detail_ven.php:116 -msgid "HTVA" -msgstr "Zonder BTW" - -#: include/template/ledger_detail_ach.php:99 -#: include/template/ledger_detail_ven.php:98 -#: include/template/ledger_detail_ach.php:121 -#: include/template/ledger_detail_ven.php:118 -msgid "TVAC" -msgstr "Met BTW" - -#: include/template/ledger_detail_ach.php:185 -#: include/template/ledger_detail_ven.php:180 -#: include/template/ledger_detail_ach.php:225 -#: include/template/ledger_detail_ven.php:222 -msgid "Ecritures comptables" -msgstr "" - -#: include/template/ledger_detail_bottom.php:77 -#: include/template/ledger_detail_bottom.php:81 -msgid "Extourner" -msgstr "" - -#: include/template/ledger_search.php:23 -msgid "Et contenant dans le libellé, pièce justificative ou n° interne" -msgstr "" - -#: include/template/letter_all.php:10 include/template/letter_prop.php:9 -msgid "Désolé aucun résultat trouvé" -msgstr "Sorry geen resultaat gevonden" - -#: include/template/letter_all.php:23 include/template/letter_prop.php:25 -#: include/template/letter_prop.php:65 -msgid "Ref" -msgstr "Ref" - -#: include/template/letter_all.php:35 include/template/letter_prop.php:34 -#: include/template/letter_prop.php:74 -msgid "Debit / Credit" -msgstr "Debit / Credit" - -#: include/template/letter_all.php:38 include/template/letter_prop.php:37 -#: include/template/letter_prop.php:77 -msgid "Op. concerné" -msgstr "Betreft op." - -#: include/template/letter_prop.php:105 include/template/letter_prop.php:145 -msgid "Total Debit" -msgstr "" - -#: include/template/letter_prop.php:106 include/template/letter_prop.php:146 -msgid "Total Credit" -msgstr "" - -#: include/template/param_jrn.php:11 -msgid "Postes utilisables journal (débit/crédit) " -msgstr "" - -#: include/template/param_jrn.php:17 -msgid "Uniquement pour les journaux d'Opérations Diverses" -msgstr "" - -#: include/template/param_jrn.php:28 include/template/param_jrn.php:29 -msgid "Numérotation de chaque opération" -msgstr "" - -#: include/template/param_jrn.php:36 include/template/param_jrn.php:37 -msgid "Compte en banque" -msgstr "Bankrekening" - -#: include/template/param_jrn.php:55 include/template/param_jrn.php:56 +#: include/template/ledger_detail_forbidden.php:5 +#, fuzzy msgid "" -"Obligatoire pour les journaux FIN : donner ici la fiche de la banque utilisée" +"Accès interdit : vous n'avez pas accès à cette information, contactez votre " +"responsable" +msgstr "Die Actie is Verboden" + +#: include/database.item.php:2 include/database.item.php:66 +#: include/database.item.php:196 +msgid "Achat" +msgstr "Aankoop" + +#: include/ext/amortis/include/template/listing_year.php:61 +msgid "Acquisition de l'année" +msgstr "Acquisitie jaar" + +#: include/user_menu.php:149 +msgid "Actif a un an au plus" +msgstr "Activa een jaar" + +#: include/class_acc_bilan.php:147 +msgid "Actif avec un solde crediteur" msgstr "" -#: include/template/param_jrn.php:88 include/template/param_jrn.php:89 -msgid "Uniquement des chiffres" -msgstr "Alleen cijffers" +#: include/template/dashboard.php:105 +#, fuzzy +msgid "Action" +msgstr "Actie" -#: include/template/param_jrn.php:94 include/template/param_jrn.php:95 -msgid "Dernière pièce numérotée" -msgstr "" +#: include/action.common.inc.php:218 +msgid "Action " +msgstr "Actie" -#: include/template/param_jrn.php:109 include/template/param_jrn.php:110 -msgid "Laissez à 0 pour ne pas changer le numéro" -msgstr "" +#: include/ajax_get_profile.php:43 +msgid "Action Gestion" +msgstr "Actie management" -#: html/user_login.php:124 -msgid "Bienvenue " -msgstr "" +#: include/action.common.inc.php:277 include/action.common.inc.php:281 +#, fuzzy +msgid "Action Sauvée" +msgstr "Opgeslagen Operatie" -#: html/user_login.php:140 -msgid "Donnez une partie du nom du dossier ou de la description à rechercher" -msgstr "" +#: include/template/dashboard.php:222 +#, fuzzy +msgid "Action en retard" +msgstr "Verboden Actie" -#: include/bank.inc.php:85 -msgid "Inclure les banques sans opération :" -msgstr "" +#: html/ajax_card.php:199 html/ajax_card.php:311 html/ajax_card.php:446 +#: html/ajax_card.php:483 html/ajax_card.php:491 html/ajax_card.php:312 +#: html/ajax_card.php:447 html/ajax_card.php:484 html/ajax_card.php:492 +msgid "Action interdite" +msgstr "Verboden Actie" -#: include/class_acc_ledger.php:1382 -msgid "Quick Code ou " -msgstr "" +#: include/class_acc_ledger.php:3684 +#, fuzzy +msgid "Action non accessible" +msgstr "Folder niet Bereikbaar" -#: include/class_acc_ledger.php:1495 -msgid "verifie Imputation Analytique" -msgstr "" +#: include/template/dashboard.php:253 +msgid "Action pour aujourd'hui" +msgstr "Voor vaandag" -#: include/class_acc_ledger.php:1839 include/class_acc_ledger.php:1965 -#, php-format -msgid "La fiche %s n'a pas de poste comptable" -msgstr "" +#: include/template/detail-action.php:176 +#, fuzzy +msgid "Actions concernées" +msgstr "betreft Operatie" -#: include/class_acc_ledger.php:1843 -msgid "Poste Inexistant pour la fiche [" -msgstr "" +#: include/template/action_other_action.php:17 +msgid "Actions sur plusieurs documents" +msgstr "Acties op verschillende documenten" -#: include/class_acc_ledger.php:3129 -msgid "Journal n'existe pas" -msgstr "" +#: include/compta_ach.inc.php:221 include/compta_ven.inc.php:237 +#: include/template/detail-action.php:359 +#: include/template/form_ledger_detail.php:107 +#: include/template/predf_ledger_detail.php:57 +#: include/ext/modop/modop_display.php:132 +msgid "Actualiser" +msgstr "verversen" -#: include/class_acc_ledger_purchase.php:247 -#, php-format -msgid "Pour la fiche %s, le compte contrepartie %s n'existe pas" -msgstr "" +#: include/database.item.php:125 html/user_login.php:96 +msgid "Administrateur" +msgstr "Beheerder" -#: include/class_acc_ledger_purchase.php:1426 -msgid "Vérifiez imputation analytique" -msgstr "" +#: include/database.item.php:122 +msgid "Administration" +msgstr "Administratie" -#: include/class_acc_ledger_purchase.php:1449 -msgid " TVAC" -msgstr "" +#: include/class_fiche.php:1570 include/stock_cfg.inc.php:66 +#: include/ajax_mod_stock_repo.php:47 include/audit_log.php:38 +#: include/template/stock_summary_list.php:39 +msgid "Adresse" +msgstr "Adres" -#: include/class_acc_ledger_sold.php:775 -msgid "Attention Différence entre TVA calculée et donnée" -msgstr "" +#: include/database.item.php:146 +msgid "Adresse " +msgstr "Adres" -#: include/class_acc_ledger_sold.php:816 -msgid "Vérifiez Imputation Analytique" -msgstr "" +#: include/class_document_modele.php:68 +msgid "Affect." +msgstr "Beïnvloeden." -#: include/class_anc_grandlivre.php:158 include/class_anc_listing.php:84 -msgid "Quick_code" -msgstr "" +#: include/class_document_modele.php:255 +#: include/template/modele_document.php:40 +msgid "Affectation" +msgstr "Toewijzing" -#: include/class_anc_grandlivre.php:159 include/class_anc_listing.php:87 -msgid "libelle" -msgstr "" +#: include/template/detail-action.php:125 +msgid "Affecté" +msgstr "Aangedaan" -#: include/class_anc_grandlivre.php:160 include/class_anc_listing.php:88 -msgid "Num.interne" -msgstr "" +#: include/template/action_search.php:63 +#, fuzzy +msgid "Affiche aussi les actions fermées" +msgstr "Ook ok Gesloten Acties" + +#: include/ext/tva/class_ext_list_assujetti.php:54 +#: include/ext/tva/class_ext_tvagen.php:114 +#, fuzzy +msgid "Afficher" +msgstr "Zoekcriteria Tonen" + +#: include/company.inc.php:121 +msgid "Afficher la période comptable pour éviter les erreurs de date" +msgstr "Tonen periode van OM fouten datum van je vermijden" + +#: include/database.item.php:127 +msgid "Agenda" +msgstr "Dagboek" + +#: include/ajax_navigator.php:59 +msgid "Aide sur le wiki" +msgstr "Help de wiki" + +#: include/cat_document.inc.php:55 include/template/dashboard.php:188 +#: include/ext/import_account/include/template/parameter_tva_add.php:52 +#: include/anc_pa.inc.php:127 include/anc_pa.inc.php:225 +msgid "Ajout" +msgstr "Toevoegen" + +#: include/template/action_button.php:35 +msgid "Ajout Action" +msgstr "Actie Toevoegen" + +#: include/class_acc_ledger_purchase.php:1271 +#: include/class_acc_ledger_sold.php:1273 include/class_pre_op_ach.php:390 +#: include/class_pre_op_ven.php:384 include/compta_fin.inc.php:142 +#: include/ext/modop/modop_display.php:98 +msgid "Ajout article" +msgstr "Artikel Toevoegen" + +#: include/template/periode_add_exercice.php:21 +#, fuzzy +msgid "Ajout d'un exercice comptable" +msgstr "Voegt Categorieën van Documenten teen" + +#: include/menu.inc.php:155 +#, fuzzy +msgid "Ajout d'un menu" +msgstr "Categorie Toevoegen" + +#: include/anc_pa.inc.php:248 include/anc_pa.inc.php:283 +#, fuzzy +msgid "Ajout d'un plan comptable" +msgstr "Voegt Categorieën van Documenten teen" + +#: include/menu.inc.php:154 +#, fuzzy +msgid "Ajout d'un plugin" +msgstr "Een lijn toe te voegen" + +#: include/ajax_tag_list.php:30 +#, fuzzy +msgid "Ajout d'un tag" +msgstr "Categorie Toevoegen" + +#: include/ext/import_account/include/template/parameter_tva_add.php:30 +msgid "Ajout d'un taux de tva" +msgstr "Het toevoegen van een BTW-tarieven" + +#: include/adm.inc.php:128 include/bank.inc.php:124 +#: include/contact.inc.php:133 include/customer.inc.php:123 +#: include/manager.inc.php:126 include/supplier.inc.php:128 +msgid "Ajout d'une catégorie" +msgstr "Categorie Toevoegen" + +#: include/ext/import_account/include/template/parameter.php:4 +#, fuzzy +msgid "Ajout d'une correspondance" +msgstr "Categorie Toevoegen" + +#: include/operation_ods_new.inc.php:102 +#: include/ext/modop/modop_display.php:160 +#: include/ext/coprop/include/appel_fond.inc.php:82 +#: include/ext/coprop/include/appel_fond.inc.php:151 +#: include/ext/coprop/include/class_coprop_appel_fond.php:199 +msgid "Ajout d'une ligne" +msgstr "Een lijn toe te voegen" + +#: include/template/fiche_def_list.php:84 +#, fuzzy +msgid "Ajout d'une nouvelle catégorie" +msgstr "Categorie Toevoegen" + +#: include/forecast.inc.php:241 +msgid "Ajout d'une prévision" +msgstr "Toevoeging van EEN Vooruitzicht" + +#: include/user.inc.php:74 +msgid "Ajout d'utilisateur" +msgstr "Gebruiker toevoegen" + +#: include/template/action_other_action.php:35 +#, fuzzy +msgid "Ajout d'étiquettes" +msgstr "Categorie Toevoegen" + +#: include/database.item.php:182 +msgid "Ajout de fiche" +msgstr "Het toevoegen van Record" + +#: include/ext/invoicing/include/invoice_to_zip.inc.php:43 +#, fuzzy +msgid "Ajout facture " +msgstr "Andere Faktuur" + +#: include/forecast.inc.php:241 +msgid "Ajout prévision" +msgstr "Vooruitzicht" + +#: include/action.common.inc.php:186 +msgid "Ajoute une action à celle-ci" +msgstr "EEN Actie Toevoegen BIJ this" + +#: include/dossier.inc.php:160 include/anc_group.inc.php:81 +msgid "Ajouter" +msgstr "Toevoegen" + +#: include/ajax_plugin_detail.php:54 +#, fuzzy +msgid "Ajouter ce plugin" +msgstr "VOEG zei element toe" + +#: include/ext/tools/index.php:43 +#, fuzzy +msgid "Ajouter des années comptables" +msgstr "Voegt Categorieën van Documenten teen" + +#: include/template/detail-action.php:462 +#, fuzzy +msgid "Ajouter un fichier" +msgstr "Geen bestand" + +#: include/class_anc_group_operation.php:189 +#: include/class_anticipation.php:430 include/template/stock_inv.php:103 +msgid "Ajouter une ligne" +msgstr "Voeg een lijn" + +#: include/class_fiche_def.php:783 +msgid "Ajoutez cet élément" +msgstr "VOEG zei element toe" + +#: include/ajax_bookmark.php:113 +msgid "Ajoutez le menu actuel à vos favoris" +msgstr "Voeg de huidige menu aan favorieten" + +#: include/class_acc_ledger_purchase.php:1632 +#: include/class_acc_ledger_sold.php:898 +msgid "Ajoutez une pièce justificative " +msgstr "VOEG EEN Bewijs teen" + +#: include/ext/amortis/include/class_pdf_card.php:103 +msgid "Am. actés" +msgstr "Am van het boekjaar" + +#: include/ext/amortis/include/template/material_detail.php:122 +#: include/ext/amortis/include/template/material_display.php:96 +#, fuzzy +msgid "Amorti" +msgstr "Uitgang" + +#: include/ext/amortis/raw.php:51 +#: include/ext/amortis/include/template/listing_year.php:15 +#: include/ext/amortis/include/template/listing_year.php:69 +msgid "Amortissement" +msgstr "Amortisatie" + +#: include/ext/amortis/include/class_am_generate.php:164 +msgid "Amortissement " +msgstr "Amortisatie" + +#: include/ext/amortis/include/template/material_detail.php:57 +#: include/ext/amortis/include/template/material_display.php:43 +msgid "Amortissement acté" +msgstr "Officieel geregistreerde afschrijvingen" #: include/class_anc_listing.php:85 msgid "Analytique" +msgstr "Analytisch" + +#: include/ajax_preference.php:166 include/ajax_preference.php:167 +msgid "Anglais" +msgstr "Engels" + +#: include/ext/amortis/include/template/material_detail.php:53 +#: include/ext/amortis/include/template/material_display.php:39 +msgid "Annuités" +msgstr "Lijfrentes" + +#: include/category_detail.inc.php:68 include/param_pcmn.inc.php:63 +#: include/template/dashboard.php:343 +#: include/ext/amortis/include/template/material_add.php:51 +#: html/ajax_card.php:284 include/ajax_mod_predf_op.php:56 +msgid "Annuler" +msgstr "Annuleren Reactie" + +#: include/ext/tva/form_periode.php:6 +#: include/ext/amortis/include/am_histo.inc.php:36 +#: include/ext/amortis/include/class_pdf_card.php:103 +#: include/ext/amortis/include/template/material_detail.php:55 +#: include/ext/amortis/include/template/material_display.php:41 +#: include/ext/amortis/include/template/util_generate.php:35 +msgid "Année" +msgstr "Jaar" + +#: include/ext/amortis/raw.php:100 +msgid "Année Achat" +msgstr "Aankoop jaar" + +#: include/ext/amortis/raw.php:51 +#: include/ext/amortis/include/template/material_listing.php:12 +#, fuzzy +msgid "Année achat" +msgstr "Aankopenlijst" + +#: include/ext/amortis/include/template/material_add.php:20 +#: include/ext/amortis/include/template/material_detail.php:22 +#: include/ext/amortis/include/template/material_display.php:20 +#, fuzzy +msgid "Année comptable d'achat" +msgstr "constant rekeningen" + +#: include/ext/amortis/include/class_pdf_card.php:78 +#: include/ext/amortis/include/template/listing_year.php:11 +msgid "Année d'achat" +msgstr "Jaar van aanschaf" + +#: include/ext/amortis/include/class_am_card.php:177 +#, fuzzy +msgid "Année invalide" +msgstr "is a Jaar ongeldig" + +#: include/ext/tva/decl_tva.inc.php:32 +#: include/ext/tva/list_assujetti.inc.php:30 +#: include/ext/tva/list_intra.inc.php:31 +#, fuzzy +msgid "Année invalide [" +msgstr "has EEN Ongeldige hoeveelheid" + +#: include/ext/coprop/index.php:45 +msgid "Appel de fond" +msgstr "Afstand bellen" + +#: include/template/action_search.php:119 +#, php-format +msgid "Après le " +msgstr "Na" + +#: include/company.inc.php:118 +msgid "Assujetti à la tva" +msgstr "Use of van BTW" + +#: include/ext/import_account/include/class_impacc_operation.php:61 +#, php-format +msgid "Attention %s ne contient pas 11 colonnes" +msgstr "Waarschuwing% s geen 11 kolommen bevatten" + +#: include/card_attr.inc.php:124 +msgid "Attention : effacera les données qui y sont liées" msgstr "" -#: include/class_anc_print.php:131 -msgid "Entre l'activité " +#: include/class_fiche_def.php:792 +msgid "" +"Attention : il n'y aura pas de demande de confirmation pour enlever les\n" +" attributs sélectionnés. Il ne sera pas " +"possible de revenir en arrière" msgstr "" -#: include/class_anc_print.php:138 -msgid " et l'activité " +#: include/class_acc_ledger.php:1421 +msgid "Attention : il vaut mieux utiliser les fiches que les postes comptables" msgstr "" -#: include/company.inc.php:111 -msgid "Utilisez des postes comptables alphanumérique" +#: include/class_acc_ledger.php:1983 +msgid "" +"Attention : il vaut mieux utiliser les fiches que les postes comptables " msgstr "" -#: include/company.inc.php:112 -msgid "Changer le libellé des détails en VEN ou ACH" +#: include/ext/transform/include/intervat_listing_assujetti_step_3.inc.php:37 +#, php-format +msgid "Attention : il y a %d enregistrements incorrects " +msgstr "Let op:% d administratie onjuist" + +#: include/class_acc_ledger_purchase.php:1484 +#: include/class_acc_ledger_sold.php:755 +msgid "Attention Différence entre TVA calculée et donnée" +msgstr "Aandacht Verschil tussen BTW en berekende gegevens" + +#: include/ajax_preference.php:102 include/ajax_preference.php:103 +msgid "" +"Attention cette période est fermée, vous ne pourrez rien modifier dans le " +"module comptable" +msgstr "" +"Aandacht deze periode is afgesloten, kunt u niets veranderen in de " +"boekhoudkundige module" + +#: include/class_acc_ledger_purchase.php:1344 +#: include/class_acc_ledger_sold.php:640 include/compta_ods.inc.php:94 +#: include/opening.inc.php:79 include/ext/modop/modop_save.php:86 +#: include/ext/modop/modop_save.php:167 +msgid "Attention numéro pièce existante, elle a du être adaptée" +msgstr "Opgelet bestaand Bewijs nummer, Moest aangepast Worden" + +#: include/ext/amortis/include/material_add.inc.php:37 +#: include/ext/amortis/include/print_fiche.inc.php:75 +msgid "Attention pas de catégorie de fiche à amortir" +msgstr "Wees voorzichtig niet puntenlijst kussen" + +#: include/ac_common.php:608 +#, php-format +msgid "" +"Attention periode \n" +"\t\t non trouvee periode p_from= %s p_to_periode = %s" msgstr "" -#: include/compta_fin.inc.php:78 -msgid "Confirmation" +#: include/fiche_def.inc.php:67 +msgid "Attention, ne changer pas la signification de ce poste." +msgstr "Opgelet van betekenis of this niet rekening veranderen" + +#: html/do.php:104 +msgid "" +"Attention: la version de base de donnée est supérieure à la version du " +"programme, vous devriez mettre à jour" +msgstr "" +"Waarschuwing: de versie van de database groter is dan de versie van het " +"programma, dient u een update" + +#: include/database.item.php:90 +msgid "Attribut de fiche" +msgstr "Attribuut opnemen" + +#: include/class_follow_up.php:1196 +msgid "Aucun" +msgstr "Geen" + +#: include/class_profile_menu.php:238 include/class_profile_menu.php:262 +msgid "Aucun accès" +msgstr "Geen toegang" + +#: include/ext/transform/ajax_modify_intervat_assujetti.php:27 +#, fuzzy +msgid "Aucun client" +msgstr "van clients" + +#: include/ext/import_account/include/class_impacc_operation.php:191 +#, fuzzy +msgid "Aucun client ou fournisseur" +msgstr "Customers / Leverancier" + +#: include/ext/import_account/include/class_impacc_operation.php:177 +#, fuzzy +msgid "Aucun code TVA ne correspond à ce taux" +msgstr "" +"Geen Enkele categorie bladeren Komen of your overeen legt stellen vraag" + +#: include/class_acc_ledger.php:3416 include/class_acc_ledger.php:3461 +#: include/class_acc_ledger.php:3594 +#, fuzzy +msgid "Aucun compte en banque n'est donné" +msgstr "Geen Enkele analytisch kaart" + +#: include/ext/rapport_avance/ajax_parameter_send_mail.php:23 +#, fuzzy +msgid "Aucun document" +msgstr "Document" + +#: include/class_acc_bilan.php:256 +#, fuzzy +msgid "Aucun enregistrement trouve" +msgstr "Geen Enkele Gegevens van stuurprogramma" + +#: include/class_acc_ledger.php:649 include/class_acc_ledger.php:843 +#: include/ext/invoicing/include/class_acc_ledger_sold_generate.php:97 +msgid "Aucun enregistrement trouvé" +msgstr "Geen Enkele Gegevens van stuurprogramma" + +#: html/ajax_ledger.php:263 +msgid "Aucun fichier" +msgstr "Geen bestand" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:108 +#, fuzzy +msgid "Aucun fichier donné" +msgstr "Geen Gegevens" + +#: include/balance.inc.php:101 +#, fuzzy +msgid "Aucun filtre, tous les journaux" +msgstr "Logging Configuratie" + +#: include/ajax_preference.php:152 include/ajax_preference.php:153 +msgid "Aucun mini rapport" +msgstr "Geen mini-verslag" + +#: include/anc_od.inc.php:43 +msgid "Aucun plan analytique défini" +msgstr "Geen Enkele analytisch kaart" + +#: include/anc_pa.inc.php:255 +#, fuzzy +msgid "Aucun plan analytique n'est défini" +msgstr "Geen Enkele analytisch kaart" + +#: include/class_anc_print.php:93 +msgid "Aucun plan défini" +msgstr "Geen Plan" + +#: include/ajax_anc_search.php:74 +#, fuzzy +msgid "Aucun poste trouvé" +msgstr "Geen Enkele periode van stuurprogramma" + +#: include/template/dashboard.php:59 +msgid "Aucun rapport défini" +msgstr "Geen Enkele available rapport" + +#: include/ajax_boxcard_search.php:71 +msgid "Aucun résultat" +msgstr "Geen resultaten" + +#: include/template/dashboard.php:247 +#, fuzzy +msgid "Aucune action en retard" +msgstr "van clients" + +#: include/ext/invoicing/include/invoice_send_mail.inc.php:123 +#, fuzzy +msgid "Aucune adresse email trouvée" +msgstr "Geen Enkele periode van stuurprogramma" + +#: html/ajax_card.php:265 +msgid "Aucune catégorie de fiche ne correspond à votre demande" +msgstr "Geen les plug zal uw wensen voldoen" + +#: html/ajax_card.php:253 html/ajax_card.php:356 html/ajax_card.php:357 +msgid "" +"Aucune catégorie de fiche ne correspond à votre demande, le journal pourrait " +"n'avoir accès à aucune fiche" +msgstr "" +"Geen les plug zal uw wensen voldoen, zou de krant kunnen de toegang tot een " +"record" + +#: include/ext/import_account/include/class_import_card.php:145 +#, fuzzy +msgid "Aucune colonne n'est définie" +msgstr "Geen Plan" + +#: include/ac_common.php:1091 +#, fuzzy +msgid "Aucune donnée" +msgstr "Geen Gegevens" + +#: include/extension_choice.inc.php:37 +msgid "Aucune extension disponible" +msgstr "Extensie available Geen" + +#: html/ajax_card.php:172 +msgid "Aucune fiche demandée" +msgstr "Geen records werden gevraagd" + +#: include/fiche.inc.php:305 +msgid "Aucune fiche trouvée" +msgstr "Geen verslag gevonden" + +#: include/ajax_add_menu.php:122 +#, fuzzy +msgid "Aucune impression disponible à ajouter" +msgstr "Extensie available Geen" + +#: include/ext/import_account/include/class_impacc_operation.php:196 +#, fuzzy +msgid "Aucune marchandise ou service" +msgstr "Geen geopende periode" + +#: html/ajax_history.php:113 html/ajax_history.php:184 +#: include/balance_card.inc.php:70 +msgid "Aucune opération pour l'exercice courant" +msgstr "Geen operatie in het lopende jaar" + +#: include/template/dashboard.php:35 +msgid "Aucune periode par defaut" +msgstr "Geen periode van stuurprogramma" + +#: include/class_iperiod.php:123 +msgid "Aucune periode trouvée" +msgstr "Geen Enkele periode van stuurprogramma" + +#: include/ext/invoicing/include/invoice_send_mail.inc.php:120 +msgid "Aucune pièce à envoyer" +msgstr "Geen ruimte om te sturen" + +#: include/class_acc_ledger.php:1633 +#: include/class_acc_ledger_purchase.php:1009 +#: include/class_acc_ledger_sold.php:1034 +#: include/ext/amortis/include/class_am_generate.php:86 +msgid "Aucune période ouverte" +msgstr "Geen geopende periode" + +#: include/class_user.php:405 +msgid "Aucune période trouvéee !!!" +msgstr "Geen Enkele periode van stuurprogramma" + +#: include/template/tag_choose.php:8 include/template/tag_search_select.php:8 +#: include/template/tag_select.php:8 +#, fuzzy +msgid "Aucune étiquette disponible" +msgstr "Extensie available Geen" + +#: include/user_menu.php:114 include/user_menu.php:121 +msgid "Audit" +msgstr "Audit" + +#: include/template/fiche_def_list.php:66 +#, fuzzy +msgid "Automatique" +msgstr "Analytisch" + +#: html/ajax_history.php:90 html/ajax_history.php:96 html/ajax_history.php:161 +#: html/ajax_history.php:167 +msgid "Autre exercice" +msgstr "Een andere oefening" + +#: include/template/ledger_detail_bottom.php:12 +#, fuzzy +msgid "Autre information" +msgstr "Andere Informatie" + +#: include/class_acc_ledger_purchase.php:1650 +#: include/class_acc_ledger_sold.php:916 +msgid "Autre information : " +msgstr "Andere Informatie" + +#: include/template/action_other_action.php:7 +#, fuzzy +msgid "Autres actions" +msgstr "Actie Toevoegen" + +#: include/database.item.php:117 +msgid "Avancé" +msgstr "Vergevorderd" + +#: include/template/action_search.php:126 +msgid "Avant le" +msgstr "Voor" + +#: include/template/profile.php:41 +#, fuzzy +msgid "Avec Calculatrice" +msgstr "Rekenmachine" + +#: include/template/profile.php:45 +msgid "Avec Direct Form" msgstr "" -#: include/contact.inc.php:90 -msgid "Société :" +#: include/template/form_ledger_fin.php:12 +#, fuzzy +msgid "Avec date d'extrait" +msgstr "Nieuwe extract" + +#: include/template/form_ledger_fin.php:13 +#, fuzzy +msgid "Avec date opérations" +msgstr "Operatie Doorsturen" + +#: include/balance.inc.php:172 +msgid "Avec la balance de l'année précédente" msgstr "" -#: include/export_fiche_balance_csv.php:143 -msgid "Crébit" -msgstr "" +#: include/template/new_mod_payment.php:47 +msgid "Avec la fiche" +msgstr "Ontmoette blad" -#: include/export_fiche_balance_csv.php:146 -msgid "Diff Let." -msgstr "" +#: include/dossier.inc.php:225 +msgid "Backup" +msgstr "Reservekopie" -#: include/impress_fiche.inc.php:63 -msgid "Historique Lettré et montants différents" -msgstr "" +#: include/ext/backup_noadmin/include/template/home.php:1 +msgid "Backup du dossier courant" +msgstr "Reservekopie van de huidige map" -#: include/impress_fiche.inc.php:67 +#: include/category_card.inc.php:68 include/database.item.php:65 +#: include/database.item.php:100 include/fiche.inc.php:69 +msgid "Balance" +msgstr "Evenwicht" + +#: include/database.item.php:6 +msgid "Balance Analytique/comptabilité" +msgstr "Analytische balans / Accounting" + +#: include/database.item.php:82 +msgid "Balance croisée double" +msgstr "Double Cross Balance" + +#: include/database.item.php:82 +msgid "Balance double croisées des imputations analytiques" +msgstr "Double Cross Analytische balans postings" + +#: include/category_card.inc.php:68 +msgid "Balance du fournisseur" +msgstr "Balance Leverancier" + +#: include/class_acc_ledger.php:2083 +#, fuzzy +msgid "Balance incorrecte" +msgstr "Verkeerde balans" + +#: include/class_acc_ledger.php:1934 +msgid "Balance incorrecte " +msgstr "Verkeerde balans" + +#: include/fiche.inc.php:70 msgid "Balance non soldée" +msgstr "Niet geleid Balance" + +#: include/database.item.php:100 +msgid "Balance par catégorie de fiche" +msgstr "Balans per categorie" + +#: include/database.item.php:7 +msgid "Balance par groupe" +msgstr "Balansgroep" + +#: include/database.item.php:4 +msgid "Balance simple" +msgstr "Eenvoudige balans" + +#: include/database.item.php:4 +msgid "Balance simple des imputations analytiques" +msgstr "Eenvoudige Analytische balans postings" + +#: include/class_anticipation.php:292 include/database.item.php:69 +#: include/template/form_ledger_fin.php:25 +#: include/ext/modop/template_ledger_fin.php:5 +msgid "Banque" +msgstr "Bank" + +#: include/dossier.inc.php:365 +msgid "Base de donnée " +msgstr "Database" + +#: html/do.php:97 html/user_login.php:66 +msgid "Base de donnée invalide" +msgstr "Base ongeldige gegevens" + +#: include/ext/amortis/include/material_delete.inc.php:5 +msgid "Bien à amortir" +msgstr "Hoewel demping" + +#: include/ext/amortis/include/material_modify.inc.php:41 +msgid "Bien à amortir effacé" +msgstr "Hoewel demping verwijderd" + +#: include/ext/amortis/index.php:52 +msgid "Biens amortissables" +msgstr "Af te schrijven eigendom" + +#: html/user_login.php:155 +msgid "Bienvenue" +msgstr "Welkome" + +#: html/user_login.php:155 +msgid "Bienvenue " +msgstr "Welkom" + +#: include/database.item.php:105 +msgid "Bilan" +msgstr "Balans" + +#: include/database.item.php:169 +msgid "Bon de commande Fournisseur" +msgstr "Bestel Leverancier" + +#: include/database.item.php:168 +msgid "Bons de commande client" +msgstr "Goede bestelling van de klant" + +#: include/ext/coprop/index.php:46 +msgid "Budget" +msgstr "Begroting" + +#: include/template/detail-action.php:337 +msgid "Cacher les détails" +msgstr "Detail verschuilen" + +#: include/database.item.php:190 include/database.item.php:192 +msgid "Caisse" +msgstr "Fonds" + +#: include/class_ibutton.php:82 +msgid "Calculatrice" +msgstr "Rekenmachine" + +#: include/template/dashboard.php:9 include/ajax_calendar_zoom.php:23 +msgid "Calendrier" +msgstr "Kalender" + +#: include/template/impress_cat_card.php:6 include/ajax_boxcard_search.php:57 +msgid "Categorie" +msgstr "Categorie" + +#: include/class_document_modele.php:67 +#: include/template/forecast-detail.php:11 include/template/fiche_list.php:45 +msgid "Catégorie" +msgstr "Categorie" + +#: include/adm.inc.php:90 include/bank.inc.php:83 include/contact.inc.php:81 +#: include/customer.inc.php:82 include/manager.inc.php:85 +#: include/supplier.inc.php:87 +msgid "Catégorie :" +msgstr "Categorie:" + +#: include/template/modele_document.php:23 +#, fuzzy +msgid "Catégorie de document" +msgstr "Categorie van Documenten" + +#: include/database.item.php:58 +msgid "Catégorie de documents" +msgstr "Categorie van Documenten" + +#: include/database.item.php:108 +#: include/ext/import_account/include/template/input_file.php:22 +#: include/ext/import_account/include/template/test_file.php:23 +#: include/ext/import_account/include/template/test_operation.php:23 +#: include/template/fiche_def_input.php:6 +msgid "Catégorie de fiche" +msgstr "Categorie van Bladeren" + +#: include/class_fiche_def.php:236 +msgid "Catégorie existante" +msgstr "Bestaande categorie" + +#: html/ajax_card.php:468 html/ajax_card.php:469 +msgid "Catégorie existe déjà" +msgstr "Die categorie doorsturingslijst is leeg al." + +#: html/ajax_card.php:470 html/ajax_card.php:471 +msgid "Catégorie sauvée" +msgstr "Opgeslagen categorie" + +#: include/template/forecast_cat.php:11 +msgid "Catégories" +msgstr "Categoriën" + +#: include/action.common.inc.php:197 include/ajax_view_action.php:51 +msgid "Ce document n'est pas accessible" +msgstr "Dit document is niet beschikbaar" + +#: include/ajax_bookmark.php:46 +msgid "Ce favori a déjà été ajouté" +msgstr "Deze favoriet is toegevoegd" + +#: include/extension_get.inc.php:38 +msgid "Ce fichier n'existe pas " +msgstr "Dit bestand bestaat niet" + +#: include/ajax_anc_search.php:65 +#, fuzzy +msgid "Ce plan n'existe pas" +msgstr "] Doorsturingslijst is leeg niet" + +#: include/class_acc_ledger.php:2376 +#, fuzzy +msgid "Celui qui paie n' a pas de poste comptable" +msgstr "has Geen rekening" + +#: include/ac_common.php:409 include/action.common.inc.php:125 +msgid "Cette action ne vous est pas autorisée Contactez votre responsable" +msgstr "Die Actie is Verboden" + +#: include/class_fiche.php:406 +msgid "Cette categorie de card n'existe pas" +msgstr "This categorie doorsturingslijst is leeg niet" + +#: include/ext/rapport_avance/ajax_parameter_send_mail.php:14 +msgid "Cette catégorie n'a pas d'attribut email" +msgstr "Deze categorie heeft geen e-attribuut" + +#: include/ext/tva/class_ext_tva.php:200 +msgid "Cette exercice comptable n'est pas dans ce dossier" +msgstr "Deze boekhoudkundige oefening is niet in deze folder" + +#: html/ajax.php:48 html/extension.raw.php:59 +msgid "Cette extension n'existe pas " +msgstr "Die plugin doorsturingslijst is leeg niet" + +#: include/ext/import_account/include/class_impacc_operation.php:146 +#, fuzzy +msgid "Cette fiche n'a pas de poste comptable valide" +msgstr "has Geen rekening" + +#: include/ext/import_account/include/class_impacc_operation.php:133 +#, fuzzy +msgid "Cette fiche n'existe pas" +msgstr "Die plugin doorsturingslijst is leeg niet" + +#: include/class_acc_ledger.php:200 include/class_acc_ledger.php:203 +msgid "Cette opération n'existe pas" +msgstr "Deze operatie bestaat niet" + +#: include/ext/import_account/include/imd_parameter.inc.php:41 +#: include/ext/import_account/include/imd_parameter.inc.php:68 +#, fuzzy +msgid "Cette tva est invalide" +msgstr "is a Jaar ongeldig" + +#: include/template/action_other_action.php:26 +#, fuzzy +msgid "Changement des états" +msgstr "Operatie Doorsturen" + +#: html/ajax_ledger.php:504 +msgid "" +"Changement impossible: on ne peut pas changer la date dans une période fermée" msgstr "" +"Niet veranderen: we kunnen de datum in een gesloten periode niet veranderen" + +#: include/template/stock_summary_list.php:87 +#, fuzzy +msgid "Changement manuel" +msgstr "Wijzingen bewaard" + +#: include/company.inc.php:123 +msgid "Changer le libellé des détails" +msgstr "Verander de verwoording gegevens" + +#: include/ext/tools/index.php:41 +#, fuzzy +msgid "Changer poste comptable ou fiche" +msgstr "Rekening van [" + +#: include/class_fiche_def.php:475 +msgid "Chaque fiche aura automatiquement son propre poste comptable : " +msgstr "Ieder blad ZAL are eigentijd Automatisch rekening hebben" + +#: html/ajax_ledger.php:353 +#, fuzzy +msgid "Chargement" +msgstr "Wijzingen bewaard" + +#: include/user_menu.php:153 +msgid "Charges" +msgstr "Kosten" + +#: include/ajax_navigator.php:52 +msgid "Chemin" +msgstr "Pad" + +#: html/ajax_card.php:273 +msgid "" +"Choississez la catégorie de fiche à laquelle vous aimeriez ajouter une fiche" +msgstr "Kies de categorie lijst waar u een record toe te voegen" + +#: include/balance.inc.php:45 include/impress_bilan.inc.php:48 +#: include/impress_jrn.inc.php:84 include/impress_rapport.inc.php:182 +msgid "Choississez un autre exercice" +msgstr "Kies een jaar" + +#: html/user_login.php:160 +msgid "Choississez votre dossier" +msgstr "Kiez UW map" + +#: include/ajax_anc_search.php:78 include/ajax_anc_search.php:79 +#, fuzzy +msgid "Choix" +msgstr "Keuze van rekening" + +#: include/class_anc_print.php:132 +msgid "Choix Poste" +msgstr "Keuze van rekening" + +#: include/ext/modop/modop_display.php:84 +#: include/ext/modop/modop_display.php:117 +msgid "Choix TVA" +msgstr "BTW-keuze" + +#: html/ajax_card.php:251 html/ajax_card.php:261 html/ajax_card.php:298 +#, fuzzy +msgid "Choix de la catégorie" +msgstr "Categorie Toevoegen" + +#: include/class_acc_bilan.php:83 +msgid "Choix du bilan" +msgstr "Keuze van handelsbalans" + +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:186 +#, fuzzy +msgid "Choix du type de journal " +msgstr "For the boek van soort" + +#: include/class_acc_account.php:189 +#, php-format +msgid "Classe Parent" +msgstr "Rekening" + +#: include/template/category_of_card.php:21 +#: include/template/fiche_def_input.php:18 +msgid "Classe de base" +msgstr "Basisklasse" + +#: include/ext/coprop/index.php:44 +msgid "Clef de répartition" +msgstr "Key distribution" + +#: include/class_acc_ledger_sold.php:663 +#: include/class_acc_ledger_sold.php:1005 +#: include/class_acc_ledger_sold.php:1260 include/class_pre_op_ven.php:371 +#: include/database.item.php:15 include/template/ledger_detail_ven.php:52 +#: include/ext/transform/ajax_modify_intervat_assujetti.php:24 +#: include/template/print_ledger_simple.php:10 +msgid "Client" +msgstr "Klant" + +#: include/ext/transform/ajax_save_intervat_assujetti.php:27 +#, fuzzy +msgid "Client incorrect" +msgstr "Verkeerde balans" + +#: include/template/dashboard.php:284 +#, fuzzy +msgid "Clients en retard" +msgstr "Verkeerde balans" + +#: include/template/dashboard.php:60 +msgid "Cliquez ici pour mettre à jour vos préférences" +msgstr "Click here OM UW voorkeuren kunt veranderen" + +#: include/forecast.inc.php:364 +msgid "Cloner" +msgstr "Clone" + +#: include/class_ibutton.php:68 +msgid "Cocher tous" +msgstr "Controleer alle" + +#: include/ext/amortis/include/template/util_generate.php:62 +msgid "Cochez ce qu'il faut amortir" +msgstr "Controleer wat afschrijven" + +#: include/ajax_get_menu_detail.php:97 +#, fuzzy +msgid "Cochez cette case si vous souhaitez effacer ce menu" +msgstr "" +"Kruis Indiase Aan u DAT u zei Zeker map gebogen verwelkingsziekte Wissen" + +#: include/ajax_get_menu_detail.php:107 +msgid "" +"Cochez cette case si vous souhaitez effacer ce menu ainsi que ceux qui en " +"dépendent" +msgstr "" +"Schakel dit vakje in als u dit menu wissen alsmede degenen die afhankelijk " +"zijn" + +#: include/dossier.inc.php:332 +msgid "Cochez la case si vous êtes sûr de vouloir effacer ce dossier" +msgstr "" +"Kruis Indiase Aan u DAT u zei Zeker map gebogen verwelkingsziekte Wissen" + +#: include/template/tag_detail.php:24 +#, fuzzy +msgid "Cochez pour cette case pour effacer ce tag" +msgstr "" +"Kruis Indiase Aan u DAT u zei Zeker map gebogen verwelkingsziekte Wissen" + +#: include/ajax_view_mod_stock.php:52 +#, fuzzy +msgid "Cochez pour confirmer effacement" +msgstr "Wissen Bevestigen" + +#: include/ext/transform/ajax_modify_intervat_assujetti.php:78 +#, fuzzy +msgid "Cochez pour effacer cette fiche" +msgstr "Zei blad Wissen" + +#: include/class_acc_ledger_purchase.php:1376 +#: include/class_acc_ledger_sold.php:670 include/ext/amortis/raw.php:51 +#: include/ext/amortis/include/template/listing_year.php:8 +#: include/ajax_get_menu_detail.php:75 include/ajax_plugin_detail.php:39 +#: include/anc_group.inc.php:62 include/template/stock_summary_list.php:45 +#: include/menu.inc.php:112 include/ext/tools/raw.php:80 +msgid "Code" +msgstr "Code" + +#: include/ac_common.php:1062 +#, fuzzy +msgid "Code Interne" +msgstr "Interne code" + +#: include/ext/transform/include/template/listing_assujetti_declarant.php:45 +#: include/ext/transform/include/template/listing_assujetti_representative.php:48 +#, fuzzy +msgid "Code Pays" +msgstr "Postcode" + +#: include/ext/transform/include/class_transform_declarant.php:166 +#: include/ext/transform/include/class_transform_representative.php:201 +#, fuzzy +msgid "Code Pays incorrect" +msgstr "Verkeerd periode van datum" + +#: include/company.inc.php:107 +msgid "Code Postal" +msgstr "Postcode" + +#: include/template/stock_histo_search.php:35 +#: include/template/stock_inv.php:60 +#: include/template/stock_summary_table.php:33 +#, fuzzy +msgid "Code Stock" +msgstr "Voorraad" + +#: include/template/detail-action.php:308 +msgid "Code TVA" +msgstr "BTW Code" + +#: include/ext/tva/form_parameter.php:183 +msgid "Code TVA pour clients Intracommunataire" +msgstr "BTW-code voor Intracommunataire klanten" + +#: include/ext/tva/form_parameter.php:189 +msgid "Code TVA pour clients nationaux" +msgstr "BTW-code voor binnenlandse klanten" + +#: include/template/menu_detail.php:27 +#, fuzzy +msgid "Code du menu" +msgstr "Nieuw" + +#: include/class_fiche.php:1283 +msgid "Code interne" +msgstr "Interne code" + +#: include/ext/modop/index.php:42 +#, fuzzy +msgid "Code interne de l'opération à modifier" +msgstr "Operatie Doorsturen" + +#: html/login.php:67 +#, fuzzy +msgid "Code invalide" +msgstr "Verkeerd datum" + +#: include/ext/transform/include/template/listing_assujetti_declarant.php:35 +#: include/ext/transform/include/template/listing_assujetti_representative.php:36 +#, fuzzy +msgid "Code postal" +msgstr "Postcode" + +#: include/class_default_menu.php:49 +msgid "Code pour appel gestion" +msgstr "Code voor call management" + +#: include/class_default_menu.php:48 +msgid "Code pour création facture depuis gestion" +msgstr "Code voor de schepping factuur van het management" + +#: include/export_fiche_balance_csv.php:142 include/fiche.inc.php:440 +msgid "Comm" +msgstr "Comm" + +#: include/template/detail-action.php:232 +#: include/template/form_ledger_fin.php:43 +#: include/ext/modop/template_ledger_fin.php:19 +#: include/ext/transform/ajax_modify_intervat_assujetti.php:71 +#: include/ext/transform/include/template/listing_client_display.php:48 +msgid "Commentaire" +msgstr "Commentaar" + +#: include/company.inc.php:109 +msgid "Commune" +msgstr "Gemeente" + +#: include/class_acc_ledger_fin.php:551 include/class_acc_ledger.php:1445 +#: include/class_acc_ledger_purchase.php:1399 +#: include/class_acc_ledger_sold.php:690 +#: include/template/ledger_detail_ach.php:146 +#: include/template/ledger_detail_fin.php:115 +#: include/template/ledger_detail_misc.php:99 +#: include/template/ledger_detail_ven.php:144 +msgid "Compt. Analytique" +msgstr "Analytischerekening" + +#: include/database.item.php:115 +msgid "Compta Analytique" +msgstr "Analytische boekhouding" + +#: include/database.item.php:74 +msgid "Comptabilité" +msgstr "Accounting" + +#: include/database.item.php:138 +msgid "Compte bancaire" +msgstr "Bankrekening" + +#: include/class_acc_bilan.php:149 +msgid "Compte de resultat : Charge avec un solde crediteur" +msgstr "" + +#: include/class_acc_bilan.php:150 +msgid "Compte de resultat : produit avec un solde debiteur" +msgstr "" + +#: include/template/param_jrn.php:41 include/template/ledger_detail_fin.php:34 +#: include/template/operation_detail_fin.php:31 +msgid "Compte en banque" +msgstr "Bankrekening" + +#: include/class_acc_bilan.php:155 +msgid "Compte inverse : Charge avec un solde debiteur" +msgstr "" + +#: include/class_acc_bilan.php:153 +msgid "Compte inverse : actif avec un solde debiteur" +msgstr "" + +#: include/class_acc_bilan.php:154 +msgid "Compte inverse : passif avec un solde crediteur" +msgstr "" + +#: include/class_acc_bilan.php:156 +msgid "Compte inverse : produit avec un solde crediteur" +msgstr "" + +#: include/user_menu.php:151 +msgid "Compte tiers" +msgstr "Derde rekening" + +#: include/class_acc_bilan.php:152 +#, fuzzy +msgid "Comptes inverses" +msgstr "Derde rekening" + +#: include/class_acc_bilan.php:146 +#, fuzzy +msgid "Comptes normaux" +msgstr "Bankrekening" + +#: include/class_acc_ledger.php:669 include/class_acc_ledger.php:867 +#: include/ext/invoicing/include/class_acc_ledger_sold_generate.php:124 +msgid "Concerne" +msgstr "Zorgen" + +#: include/database.item.php:202 +msgid "" +"Concerne tous les achats, factures reçues, notes de crédit reçues et notes " +"de frais" +msgstr "Alle aankopen, ontvangen facturen creditnota's ontvangen en kosten" + +#: include/database.item.php:203 +msgid "" +"Concerne tous les mouvements financiers (comptes en banque, caisses, visa...)" +msgstr "Alle financiële (bankrekeningen, contant geld, visa ...)" + +#: include/database.item.php:204 +msgid "" +"Concerne toutes les opérations comme les amortissements, les comptes TVA, ..." +msgstr "Betreft alle handelingen als afschrijvingen, BTW-rekeningen ..." + +#: include/database.item.php:205 +msgid "Concerne toutes les ventes, notes de crédit envoyées" +msgstr "Heeft betrekking op alle verkopen, creditnota's gestuurd" + +#: include/database.item.php:10 +msgid "Config. Menu" +msgstr "Config. Menu" + +#: include/database.item.php:58 +msgid "Config. catégorie de documents" +msgstr "Config. categorie van documenten" + +#: include/database.item.php:8 +msgid "Config. de la tva" +msgstr "Config. BTW" + +#: include/database.item.php:121 +msgid "Config. des méthodes de paiement" +msgstr "Config. betaalmethoden" + +#: include/database.item.php:101 +msgid "Config. du plan comptable" +msgstr "Config. Rekeningschema" + +#: include/database.item.php:87 +msgid "Config. modèle de document" +msgstr "Config. documentsjabloon" + +#: include/database.item.php:78 +msgid "Config. poste comptable de base" +msgstr "Config. bericht elementaire boekhoudkundige" + +#: include/database.item.php:109 +msgid "Configuration de catégorie de fiches" +msgstr "Configuratie categorie-pagina's" + +#: include/database.item.php:106 +msgid "Configuration des dépôts" +msgstr "Repository configuratie" + +#: include/database.item.php:88 +msgid "Configuration des journaux" +msgstr "Logging Configuratie" + +#: include/database.item.php:10 +msgid "Configuration des menus et plugins" +msgstr "Configuratiemenu's en plugins" + +#: include/database.item.php:126 +msgid "Configuration des menus par défaut" +msgstr "Configureren standaard menu" + +#: include/database.item.php:81 +msgid "Configuration des tags" +msgstr "Configuratie-tags" + +#: include/database.item.php:106 +msgid "Configuration dépôts" +msgstr "Deposito configuratie" + +#: include/ext/coprop/index.php:48 +msgid "Configuration et paramètre" +msgstr "Configuratie en parameter" + +#: include/database.item.php:77 +msgid "Configuration profil" +msgstr "Profiel configuratie" + +#: include/database.item.php:81 +msgid "Configuration étiquette" +msgstr "Configuratie label" + +#: include/compta_fin.inc.php:83 +msgid "Confirmer" +msgstr "Bevestigen" + +#: include/class_periode.php:242 include/class_periode.php:360 +msgid "Confirmez Réouverture" +msgstr "Bevestigen Heropening" + +#: include/class_periode.php:265 +msgid "Confirmez effacement ?" +msgstr "Bevestig de verwijdering?" + +#: include/template/periode_add_exercice.php:15 +msgid "Confirmez vous l'ajout d\\'un exercice comptable ?" +msgstr "" + +#: include/category_card.inc.php:66 include/database.item.php:51 +#: include/template/detail-action.php:74 +msgid "Contact" +msgstr "Contact" + +#: include/database.item.php:158 +msgid "Contrepartie pour TVA non Ded." +msgstr "Tegenprestatie voor de BTW niet Ded." + +#: include/database.item.php:157 +msgid "Contrepartie pour TVA récup par impot" +msgstr "Tegenprestatie voor de BTW belasting door Recycling" + +#: include/database.item.php:160 +msgid "Contrepartie pour dépense fiscal. non déd." +msgstr "Aanmerking voor fiscale uitgaven. niet ded." + +#: include/database.item.php:159 +msgid "Contrepartie pour dépense à charge du gérant" +msgstr "Tegenprestatie voor de uitgaven van de manager" + +#: include/ext/invoicing/include/invoicing.inc.php:106 +msgid "Conversion en PDF" +msgstr "PDF-conversie" + +#: include/compta_ach.inc.php:78 include/compta_fin.inc.php:84 +#: include/compta_ven.inc.php:87 +#: include/ext/amortis/include/class_am_generate.php:214 +msgid "Corriger" +msgstr "Verbetering" + +#: include/database.item.php:172 +msgid "Courrier" +msgstr "Mail" + +#: include/dossier.inc.php:286 +msgid "Creation Dossier" +msgstr "Folder Maken" + +#: html/ajax_misc.php:365 include/class_anc_grandlivre.php:162 +#: include/fiche.inc.php:499 +msgid "Credit" +msgstr "Credit" + +#: include/class_acc_ledger.php:3280 include/user_menu.php:51 +msgid "Création" +msgstr "Schepping" + +#: include/template/category_of_card.php:28 +msgid "Création automatique du poste comptable" +msgstr "Automatische creatie van de financieel administratieve post" + +#: include/template/fiche_def_input.php:23 +#, fuzzy +msgid "" +"Création automatique du poste comptable uniquement s'il n'y a qu'un seul " +"poste" +msgstr "" +"Automatische creatie van de financieel administratieve post alleen als er " +"slechts een bericht" + +#: include/template/fiche_def_input.php:23 +#, fuzzy +msgid "" +"Création automatique du poste comptable uniquement s'il n\\y a qu'un seul " +"poste" +msgstr "" +"Automatische creatie van de financieel administratieve post alleen als er " +"slechts een bericht" + +#: include/ext/tva/class_ext_tva.php:340 +#, fuzzy +msgid "Création de l'écriture comptable" +msgstr "Boekhoudingsperiode" + +#: include/database.item.php:13 +msgid "Création de rapport" +msgstr "Rapport maken" + +#: include/ext/tva/class_ext_tva.php:341 +msgid "Création du fichier xml" +msgstr "Creatie van xml-bestand" + +#: include/ext/coprop/index.php:45 +msgid "Création décompte pour appel de fond" +msgstr "Creatie verklaring voor interlokaal gesprek" + +#: include/database.item.php:183 +msgid "Création, modification et effacement de fiche" +msgstr "Aanmaken, wijzigen en verwijderen van het record" + +#: include/ext/rapport_avance/index.php:59 +msgid "Création, modification, Paramètre" +msgstr "Creëren, instellen" + +#: include/ext/rapport_avance/index.php:58 +msgid "Création, modification, Paramètre de listes, mailing list" +msgstr "Aanmaken, wijzigen, parameter lijsten, mailinglijst" + +#: include/export_fiche_balance_csv.php:144 +#: include/template/anc_balance_group.php:50 +msgid "Crébit" +msgstr "Crébit" + +#: include/class_acc_ledger.php:1437 include/class_anticipation.php:420 +#: include/class_fiche.php:1286 include/operation_ods_new.inc.php:92 +#: include/template/ledger_detail_ach.php:277 +#: include/template/ledger_detail_fin.php:109 +#: include/template/ledger_detail_misc.php:93 +#: include/template/ledger_detail_ven.php:276 +#: include/template/letter_all.php:38 include/template/letter_prop.php:37 +#: include/template/letter_prop.php:77 +#: include/template/operation_detail_misc.php:36 +#: include/ext/modop/modop_display.php:164 +#: include/ext/coprop/include/appel_fond.inc.php:86 +#: include/ext/coprop/include/appel_fond.inc.php:155 +#: include/ext/coprop/include/class_coprop_appel_fond.php:203 +#: include/anc_od.inc.php:150 +msgid "Crédit" +msgstr "Creditzijde" + +#: include/template/letter_prop.php:151 +#, fuzzy +msgid "Créditeur" +msgstr "Creditzijde" + +#: include/adm.inc.php:117 include/bank.inc.php:114 +#: include/category_card.inc.php:131 include/class_acc_ledger_fin.php:242 +#: include/class_acc_ledger.php:1586 include/class_acc_ledger.php:3493 +#: include/class_acc_ledger_purchase.php:949 +#: include/class_acc_ledger_sold.php:972 include/class_acc_ledger_sold.php:979 +#: include/class_follow_up.php:293 include/class_pre_op_ach.php:159 +#: include/class_pre_op_ach.php:167 include/class_pre_op_advanced.php:160 +#: include/class_pre_op_ven.php:153 include/class_pre_op_ven.php:160 +#: include/contact.inc.php:124 include/customer.inc.php:112 +#: include/fiche.inc.php:112 include/manager.inc.php:116 +#: include/supplier.inc.php:118 include/ext/modop/modop_display.php:188 +#: include/ext/coprop/include/class_copro_budget.php:114 +#: include/ext/coprop/include/lot.inc.php:34 +msgid "Créer une nouvelle fiche" +msgstr "Maak EEN Nieuwe blad" + +#: include/class_anc_listing.php:90 include/export_fiche_balance_csv.php:146 +msgid "D/C" +msgstr "D / C" + +#: include/ext/tools/raw.php:83 +#, fuzzy +msgid "DC" +msgstr "D / C" + +#: include/template/stock_summary_table.php:89 +#: include/template/stock_summary_table.php:123 +msgid "DIFF" +msgstr "" + +#: include/template/ledger_search.php:8 +msgid "Dans le journal" +msgstr "Zoals in Het boek" + +#: include/class_acc_ledger.php:1424 include/class_acc_ledger.php:1610 +#: include/class_acc_ledger_purchase.php:1350 +#: include/class_acc_ledger_sold.php:647 include/class_anc_grandlivre.php:156 +#: include/class_anc_listing.php:82 include/class_fiche.php:1281 +#: include/export_fiche_balance_csv.php:139 include/fiche.inc.php:437 +#: include/template/dashboard.php:337 include/template/detail-action.php:36 +#: include/template/form_ledger_detail.php:16 +#: include/template/form_ledger_fin.php:20 +#: include/template/form_ledger_fin.php:40 include/template/letter_all.php:23 +#: include/template/letter_prop.php:25 include/template/letter_prop.php:65 +#: include/ext/modop/template_ledger_fin.php:3 +#: include/ext/import_account/include/class_impacc_operation.php:248 +#: include/ext/import_account/include/class_impacc_operation.php:486 +#: include/ac_common.php:1061 include/audit_log.php:37 +#: include/template/action_search_result.php:44 include/card_attr.inc.php:79 +#: include/class_acc_ledger.php:663 include/class_acc_ledger.php:816 +#: include/template/impress_reconciliation.php:10 +#: include/template/ledger_detail_ach.php:23 +#: include/template/ledger_detail_fin.php:24 +#: include/template/ledger_detail_misc.php:27 +#: include/template/ledger_detail_ven.php:25 +#: include/template/print_ledger_simple.php:7 +#: include/template/stock_inv.php:34 +msgid "Date" +msgstr "Datum" + +#: include/ext/amortis/include/template/material_display.php:108 +#, fuzzy +msgid "Date " +msgstr "Datum" + +#: include/ext/amortis/include/template/material_detail.php:13 +msgid "Date Acquisition" +msgstr "Overnamedatum" + +#: include/ext/tools/raw.php:75 +#, fuzzy +msgid "Date DMY" +msgstr "Datum" + +#: include/database.item.php:162 +msgid "Date Fin" +msgstr "Einde Datum" + +#: include/ext/amortis/raw.php:51 include/ext/amortis/raw.php:100 +#: include/ext/amortis/include/template/material_listing.php:11 +msgid "Date acquisition" +msgstr "Overnamedatum" + +#: include/ext/amortis/include/template/listing_year.php:10 +#: include/ext/amortis/include/template/material_add.php:10 +#: include/ext/amortis/include/template/material_display.php:10 +msgid "Date d'acquisition" +msgstr "Datum van verwerving" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:67 +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:71 +#, fuzzy +msgid "Date de calcul incorrect" +msgstr "Verkeerde balans" + +#: include/template/forecast_cat.php:8 +#, fuzzy +msgid "Date de début" +msgstr "Startdatum" + +#: include/template/forecast_cat.php:9 +#, fuzzy +msgid "Date de fin" +msgstr "Einddatum" + +#: include/ext/amortis/include/template/util_generate.php:43 +#, fuzzy +msgid "Date de l'opération" +msgstr "Operatie Doorsturen" + +#: include/template/action_search.php:51 +msgid "Date de rappel après" +msgstr "Datum van recall na" + +#: include/template/action_search.php:57 +msgid "Date de rappel avant" +msgstr "Datum herinnering voor" + +#: include/database.item.php:139 include/lettering.account.inc.php:65 +#: include/lettering.card.inc.php:69 include/lettering.gestion.inc.php:28 +#: include/ext/tools/include/export_operation.inc.php:32 +msgid "Date début" +msgstr "Startdatum" + +#: include/class_acc_ledger_fin.php:100 include/class_acc_ledger_fin.php:184 +#: include/class_acc_ledger.php:1852 include/class_acc_ledger_purchase.php:96 +#: include/class_acc_ledger_sold.php:91 +msgid "Date et periode ne correspondent pas" +msgstr "Datum periode Komen niet overeen" + +#: include/lettering.account.inc.php:77 include/lettering.card.inc.php:82 +#: include/lettering.gestion.inc.php:34 +#: include/ext/tools/include/export_operation.inc.php:33 +msgid "Date fin" +msgstr "Einddatum" + +#: include/class_acc_ledger.php:191 include/class_acc_ledger_purchase.php:81 +#: include/class_acc_ledger_sold.php:79 include/ext/tools/raw.php:42 +msgid "Date invalide" +msgstr "Verkeerd datum" + +#: include/ext/amortis/include/class_am_generate.php:121 +#, fuzzy +msgid "Date invalide " +msgstr "Verkeerd datum" + +#: include/template/detail-action.php:55 +msgid "Date limite" +msgstr "Termijn" + +#: html/ajax_misc.php:338 html/ajax_misc.php:352 +msgid "Date malformée" +msgstr "Datum misvormde" + +#: include/lettering.account.inc.php:59 include/lettering.account.inc.php:72 +#: include/lettering.account.inc.php:116 include/lettering.card.inc.php:62 +#: include/lettering.card.inc.php:76 include/lettering.gestion.inc.php:74 +msgid "Date malformée, désolé" +msgstr "Datum misvormde, sorry" + +#: include/template/ledger_detail_ach.php:36 +#: include/template/ledger_detail_ven.php:38 +#, fuzzy +msgid "Date paiement" +msgstr "Betaling" + +#: html/ajax_misc.php:364 include/class_anc_grandlivre.php:161 +#: include/fiche.inc.php:495 +msgid "Debit" +msgstr "Debet" + +#: html/user_login.php:151 +msgid "Deconnexion" +msgstr "Afmelden" + +#: include/class_acc_bilan.php:70 include/impress_gl_comptes.inc.php:62 +#: include/impress_poste.inc.php:93 include/template/impress_cat_card.php:14 +msgid "Depuis" +msgstr "VANAF" #: include/impress_gl_comptes.inc.php:80 msgid "Depuis le poste" +msgstr "Aangezien de positie" + +#: include/template/modele_document.php:80 +msgid "Dernier numéro utilisé pour ce type de document" msgstr "" +#: include/template/param_jrn.php:102 +msgid "Dernière pièce numérotée" +msgstr "Laatste stuk genummerd" + +#: include/template/dashboard.php:291 +msgid "Dernières opérations" +msgstr "Recente activiteit" + +#: include/class_anc_account.php:277 include/class_anc_listing.php:86 +#: include/class_anc_plan.php:124 include/class_fiche.php:1284 +#: include/database.item.php:143 include/dossier.inc.php:278 +#: include/dossier.inc.php:312 include/param_pcmn.inc.php:53 +#: include/template/dashboard.php:339 include/template/detail-action.php:208 +#: include/template/detail-action.php:305 +#: include/template/ledger_detail_ach.php:119 +#: include/template/ledger_detail_ven.php:123 +#: include/template/letter_all.php:32 include/template/letter_prop.php:31 +#: include/template/letter_prop.php:71 +#: include/template/operation_detail_ach.php:36 +#: include/template/operation_detail_ven.php:36 +#: include/template/param_jrn.php:124 include/ext/amortis/raw.php:51 +#: include/ext/tva/form_parameter.php:117 +#: include/ext/amortis/include/template/listing_year.php:9 +#: include/ext/amortis/include/template/util_generate.php:68 +#: include/ac_common.php:1063 include/ajax_boxcard_search.php:60 +#: include/ajax_plugin_detail.php:43 include/anc_group.inc.php:62 +#: include/anc_pa.inc.php:196 include/card_attr.inc.php:95 +#: include/class_acc_ledger.php:666 include/class_acc_ledger.php:822 +#: include/template/menu_detail.php:43 +#: include/template/print_ledger_simple.php:11 include/template/profile.php:37 +#: include/template/tag_detail.php:18 include/template/tag_list.php:14 +#: include/template/tag_search_select.php:19 +#: include/template/tag_select.php:19 include/menu.inc.php:114 +msgid "Description" +msgstr "Beschrijving" + +#: include/ajax_mod_predf_op.php:44 +#, fuzzy +msgid "Description (max 50 car.)" +msgstr "Beschrijving" + +#: include/ajax_navigator.php:56 +#, fuzzy +msgid "Description complète" +msgstr "Beschrijving" + +#: include/dossier.inc.php:76 +msgid "" +"Desole la creation de ce dossier a echoue,\n" +" la cause la plus probable est deux fois le même nom de dossier" +msgstr "" + +#: include/template/action_search.php:94 include/template/detail-action.php:65 +#: include/template/action_search_result.php:53 +msgid "Destinataire" +msgstr "Ontvanger" + +#: include/export_fiche_balance_csv.php:148 +msgid "Diff Let." +msgstr "Laat Diff." + +#: include/template/forecast_result.php:128 +msgid "Diff. cumul." +msgstr "Diff. cumulatie." + +#: include/operation_ods_new.inc.php:93 +#: include/ext/modop/modop_display.php:165 +#: include/ext/coprop/include/appel_fond.inc.php:87 +#: include/ext/coprop/include/appel_fond.inc.php:156 +#: include/ext/coprop/include/class_coprop_appel_fond.php:204 +#: include/anc_od.inc.php:151 +msgid "Difference" +msgstr "Verschil" + +#: include/class_acc_bilan.php:230 +msgid "Difference Produit - Charge" +msgstr "" + +#: include/template/forecast_result.php:102 +#: include/template/forecast_result.php:182 +msgid "Différence" +msgstr "Verschil" + +#: include/ext/amortis/include/template/material_detail.php:128 +#: include/ext/amortis/include/template/material_display.php:102 +msgid "Différence entre le montant à amortir et le montant amorti =" +msgstr "" +"Verschil tussen het bedrag dat moet worden afgeschreven en afgeschreven " +"bedrag =" + +#: include/class_calendar.php:168 include/class_calendar.php:256 +msgid "Dimanche" +msgstr "Zondag" + +#: include/template/stock_histo_search.php:64 +#, fuzzy +msgid "Direction" +msgstr "Beschrijving" + +#: include/database.item.php:75 include/database.item.php:175 +#: include/ext/tva/form_parameter.php:111 +msgid "Divers" +msgstr "Divers" + +#: html/ajax_ledger.php:284 html/ajax_ledger.php:324 html/ajax_ledger.php:348 +#: include/class_acc_ledger.php:868 include/database.item.php:87 +#: include/ext/invoicing/include/class_acc_ledger_sold_generate.php:125 +msgid "Document" +msgstr "Document" + +#: include/database.item.php:167 +msgid "Document Interne" +msgstr "Intern document" + +#: include/database.item.php:120 +msgid "Document de suivi sous forme de liste" +msgstr "Zending als lijst" + +#: include/ext/rapport_avance/ajax_parameter_send_mail.php:24 +#, fuzzy +msgid "Document en PDF" +msgstr "Document" + +#: include/ext/rapport_avance/ajax_parameter_send_mail.php:25 +msgid "Document généré" +msgstr "Gegenereerd papier" + +#: include/template/detail-action.php:382 +#: include/ext/invoicing/include/invoicing.inc.php:95 +msgid "Document à générer" +msgstr "Documenteer je Maken" + +#: include/class_acc_account.php:138 +msgid "Donnee member inconnue " +msgstr "" + +#: include/ac_common.php:782 +#, fuzzy +msgid "Données non disponibles" +msgstr "Extensie available Geen" + +#: include/dossier.inc.php:214 +msgid "Dossier inexistant" +msgstr "Map niet bestaat" + +#: include/class_user.php:897 +msgid "Dossier non accessible" +msgstr "Folder niet Bereikbaar" + +#: include/user_menu.php:111 +msgid "Dossiers" +msgstr "Archief" + +#: include/ext/amortis/include/class_am_generate.php:157 +msgid "Dotation à " +msgstr "Staffing" + +#: include/class_acc_ledger_fin.php:60 +#: include/class_acc_ledger_purchase.php:72 +#: include/class_acc_ledger_sold.php:67 +msgid "Double Encodage" +msgstr "Dubbel gecodeerd" + +#: include/database.item.php:132 +msgid "Durée Amortissement" +msgstr "Afschrijvingstermijn" + +#: include/class_acc_ledger.php:1436 include/class_acc_ledger.php:1690 +#: include/class_anticipation.php:419 include/class_fiche.php:1285 +#: include/class_pre_op_advanced.php:186 +#: include/export_fiche_balance_csv.php:143 +#: include/operation_ods_new.inc.php:91 +#: include/template/ledger_detail_ach.php:276 +#: include/template/ledger_detail_fin.php:108 +#: include/template/ledger_detail_misc.php:92 +#: include/template/ledger_detail_ven.php:275 +#: include/template/letter_all.php:35 include/template/letter_prop.php:34 +#: include/template/letter_prop.php:74 +#: include/template/operation_detail_misc.php:35 +#: include/ext/modop/modop_display.php:163 +#: include/ext/coprop/include/appel_fond.inc.php:85 +#: include/ext/coprop/include/appel_fond.inc.php:154 +#: include/ext/coprop/include/class_coprop_appel_fond.php:202 +#: include/anc_od.inc.php:149 include/template/anc_balance_group.php:49 +msgid "Débit" +msgstr "debiet" + +#: include/template/forecast-detail.php:16 +msgid "Débit ou Crédit" +msgstr "Debet of Credit" + +#: include/template/letter_prop.php:153 +#, fuzzy +msgid "Débiteur" +msgstr "debiet" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:60 +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:271 +msgid "Déclarant" +msgstr "De leider" + +#: include/ext/skel/index.php:43 include/ext/tva/index.php:32 +msgid "Déclaration TVA" +msgstr "BTW-aangifte" + +#: include/ext/skel/index.php:43 include/ext/tva/index.php:32 +msgid "Déclaration Trimestriel ou annuel de TVA" +msgstr "Driemaandelijkse of jaarlijkse BTW-aangifte" + +#: include/ext/tva/decl_tva.inc.php:49 +#: include/ext/tva/list_assujetti.inc.php:48 +#: include/ext/tva/list_intra.inc.php:49 +#, fuzzy +msgid "Déclaration sauvée" +msgstr "Opgeslagen Operatie" + +#: include/class_ibutton.php:75 +msgid "Décocher tous" +msgstr "Vinkje bij alle" + +#: include/ac_common.php:784 +#, fuzzy +msgid "Déconnecté" +msgstr "U hebt Geen meer Verbinding" + +#: include/class_acc_ledger_purchase.php:1608 +#: include/class_acc_ledger_sold.php:864 +msgid "Déduction acompte " +msgstr "Borg aftrek" + +#: include/report.inc.php:97 +msgid "Définition" +msgstr "Definitie" + +#: include/ext/import_account/include/template/input_file.php:16 +#: include/ext/import_account/include/template/test_file.php:16 +#: include/ext/import_account/include/template/test_operation.php:16 +msgid "Délimiteur" +msgstr "Scheidingsteken" + +#: include/class_acc_ledger_purchase.php:1377 +#: include/class_acc_ledger_sold.php:671 +#: include/template/form_ledger_detail.php:67 +#: include/template/predf_ledger_detail.php:17 +msgid "Dénomination" +msgstr "Beschrijving" + +#: include/ajax_get_menu_detail.php:82 +#, fuzzy +msgid "Dépendant de" +msgstr "Uitgaven" + +#: include/class_anticipation.php:292 +msgid "Dépense" +msgstr "Uitgaven" + +#: include/database.item.php:137 +msgid "Dépense charge du grant (partie privé) " +msgstr "Uitgaven ten laste van de subsidie ​​(private partij)" + +#: include/template/fiche_list.php:89 +#, fuzzy +msgid "Déplacer la sélection vers" +msgstr "Afvegen Plugin" + +#: include/template/profile_sec_repository.php:35 +#: include/template/stock_inv.php:42 +msgid "Dépot" +msgstr "Storting" + +#: include/template/stock_histo_search.php:51 +#, fuzzy +msgid "Dépôt" +msgstr "Deposito" + +#: include/ajax_get_profile.php:44 +msgid "Dépôts" +msgstr "Deposito" + +#: include/template/letter_all.php:13 include/template/letter_prop.php:11 +msgid "Désolé aucun résultat trouvé" +msgstr "Sorry Geen Result van stuurprogramma" + +#: html/ajax_ledger.php:200 +msgid "Désolé il y a une erreur" +msgstr "Sorry er is een fout opgetreden" + +#: include/ext/invoicing/include/invoice_send_mail.inc.php:39 +msgid "Désolé mais il faut donner l'email de celui qui envoie" +msgstr "Sorry, maar je moet de e-mail van de afzender te geven" + +#: include/dossier.inc.php:56 +msgid "Désolé vous devez migrer ce modèle en unicode" +msgstr "This model Moet are in unicode" + +#: include/dossier.inc.php:345 +msgid "Désolé, vous n'avez pas coché la case" +msgstr "Sorry hebt u Het niet VAK aangekruisd" + +#: include/template/ledger_detail_ach.php:112 +#: include/template/ledger_detail_fin.php:96 +#: include/template/ledger_detail_misc.php:81 +#: include/template/ledger_detail_ven.php:115 +#: include/template/result_cat_card_summary.php:14 +#: include/template/stock_summary_list.php:46 +msgid "Détail" +msgstr "Detail" + +#: include/ajax_get_profile.php:42 +msgid "Détail Impressions" +msgstr "Retail Impressions" + +#: include/ajax_get_profile.php:41 +msgid "Détail Menus" +msgstr "Gedetailleerde Menus" + +#: include/ajax_view_action.php:33 +msgid "Détail action" +msgstr "Gedetailleerde Actie" + +#: include/class_pre_op_ach.php:183 +msgid "Détail articles acheté" +msgstr "Detail gekochte Artikelen" + +#: include/class_acc_ledger_purchase.php:972 +#: include/class_acc_ledger_purchase.php:1372 +msgid "Détail articles achetés" +msgstr "Detail gekochte Artikelen" + +#: include/class_acc_ledger_sold.php:666 +#: include/class_acc_ledger_sold.php:1138 include/class_pre_op_ven.php:241 +msgid "Détail articles vendus" +msgstr "Detail VERKOCHT Artikelen" + +#: include/ajax_view_mod_stock.php:33 +#, fuzzy +msgid "Détail changement" +msgstr "Detail van de blad" + +#: include/category_card.inc.php:64 +msgid "Détail de la fiche" +msgstr "Detail van de blad" + +#: include/ext/amortis/include/material_modify.inc.php:40 +#: include/ext/amortis/include/template/material_display.php:1 +#, fuzzy +msgid "Détail de matériel" +msgstr "Artiken detal" + +#: include/template/detail-action.php:290 +msgid "Détail des articles" +msgstr "Artiken detal" + +#: include/ajax_tag_detail.php:15 +msgid "Détail du dossier ou tag" +msgstr "Detail map of label" + +#: include/extension.inc.php:41 +msgid "Détail extension" +msgstr "Extensie detail" + +#: include/ext/amortis/include/am_print.php:32 html/ajax_card.php:130 +#: html/ajax_card.php:322 +#, fuzzy +msgid "Détail fiche" +msgstr "Detail van de blad" + +#: html/ajax_card.php:504 +#, fuzzy +msgid "Détail fiche (sauvée)" +msgstr "Detail van de blad" + +#: include/class_acc_ledger_purchase.php:1328 +#: include/class_acc_ledger_sold.php:624 +msgid "Détail opération " +msgstr "Retail operatie" + +#: include/class_acc_ledger_purchase.php:1353 +#: include/class_acc_ledger_sold.php:650 +#: include/template/form_ledger_detail.php:24 include/class_acc_ledger.php:817 +#: include/template/ledger_detail_ach.php:30 +#: include/template/ledger_detail_ven.php:33 +msgid "Echeance" +msgstr "Termijn" + +#: include/class_acc_ledger_purchase.php:1678 +#: include/class_acc_ledger_sold.php:943 +msgid "Echeance dépassée" +msgstr "termijn wordt overschreden" + +#: include/class_acc_ledger_sold.php:1012 +msgid "Echéance" +msgstr "Termijn" + +#: include/class_profile_menu.php:237 include/class_profile_menu.php:261 +msgid "Ecriture" +msgstr "Schrift" + +#: include/database.item.php:86 +msgid "Ecriture Ouverture" +msgstr "Opening Schrift" + +#: include/ext/tva/class_ext_tva.php:340 +#, fuzzy +msgid "Ecriture comptable" +msgstr "Boekhoudingsperiode" + +#: include/database.item.php:86 +msgid "Ecriture d'ouverture" +msgstr "Opening Schrift" + +#: include/database.item.php:53 +msgid "Ecriture prédefinie" +msgstr "Het schrijven van vooraf gedefinieerde" + +#: include/template/ledger_detail_ach.php:249 +#: include/template/ledger_detail_ven.php:247 +msgid "Ecritures comptables" +msgstr "Boekingen" + +#: include/payment_middle.inc.php:55 include/anc_pa.inc.php:100 +#: include/cfgledger.inc.php:124 +msgid "Efface" +msgstr "Wissen" + +#: include/action.common.inc.php:187 +msgid "Efface cette action" +msgstr "This Actie Wissen" + +#: include/report.inc.php:134 +msgid "Effacement" +msgstr "Erasure" + +#: include/ext/tva/class_ext_tva.php:342 +#, fuzzy +msgid "Effacement déclaration" +msgstr "This Actie Wissen" + +#: include/class_document_modele.php:70 include/class_document_type.php:82 +#: include/compta_fin.inc.php:144 include/dossier.inc.php:220 +#: include/dossier.inc.php:334 include/forecast.inc.php:363 +#: include/template/ledger_detail_bottom.php:123 +#: include/ext/transform/ajax_save_intervat_assujetti.php:72 +#: include/ext/amortis/include/template/material_detail.php:137 +#: include/ajax_view_mod_stock.php:55 include/anc_group.inc.php:88 +#: include/card_attr.inc.php:86 include/template/detail-action.php:159 +#: include/template/detail-action.php:189 +msgid "Effacer" +msgstr "Wissen" + +#: include/compta_ach.inc.php:223 include/compta_ven.inc.php:239 +msgid "Effacer " +msgstr "Wissen" + +#: include/ajax_get_profile.php:87 +#, fuzzy +msgid "Effacer ce profil" +msgstr "Zei blad Wissen" + +#: include/class_fiche_def.php:785 +msgid "Effacer cette catégorie" +msgstr "This categorie Wissen" + +#: include/category_detail.inc.php:69 +msgid "Effacer cette fiche" +msgstr "Zei blad Wissen" + +#: include/ext/amortis/include/template/listing_histo.php:50 +#, fuzzy +msgid "Effacer la sélection" +msgstr "Afvegen Plugin" + +#: include/template/fiche_list.php:87 +#, fuzzy +msgid "Effacer la sélection " +msgstr "Afvegen Plugin" + +#: include/template/action_other_action.php:55 +#, fuzzy +msgid "Effacer les documents choisis" +msgstr "Wilt u sterven afvegen papier?" + +#: include/database.item.php:185 +msgid "Effacer les documents du suivi" +msgstr "Duidelijke documentatie van de monitoring" + +#: include/ext/amortis/include/material_delete.inc.php:6 +#, fuzzy +msgid "Effacé" +msgstr "Wissen" + +#: include/class_anticipation.php:341 +msgid "Elements" +msgstr "Elementen" + +#: include/database.item.php:174 +msgid "Email" +msgstr "E-mail" + +#: include/ext/invoicing/include/invoicing.inc.php:109 +#, fuzzy +msgid "Email envoyé par" +msgstr "Betaald deur" + +#: include/ext/transform/include/class_transform_declarant.php:163 +#: include/ext/transform/include/class_transform_representative.php:198 +#, fuzzy +msgid "Email incorrect" +msgstr "Verkeerde balans" + +#: include/template/stock_summary_list.php:49 +#, fuzzy +msgid "En Stock" +msgstr "Voorraad" + +#: include/ext/amortis/include/template/material_detail.php:52 +msgid "" +"En changeant le montant à amortir, l'année ou le nombre d'années, les " +"annuités seront recalculées et l'historique effacé" +msgstr "" +"Door het veranderen van het bedrag dat wordt afgeschreven, jaar of aantal " +"jaren, zal de rente worden herberekend en geschiedenis gewist" + +#: include/template/dashboard.php:100 +msgid "En retard" +msgstr "" + +#: include/class_pre_op_ven.php:176 +msgid "En-tête facture client" +msgstr "Hoofding" + +#: include/class_pre_op_ach.php:182 +msgid "En-tête facture fournisseur" +msgstr "Hoefdbrief Leverancier" + +#: include/template/dashboard.php:283 +msgid "Encaissement clients aujourd'hui" +msgstr "" + +#: include/ext/import_account/include/template/test_file.php:26 +#: include/ext/import_account/include/template/test_operation.php:26 +#, fuzzy +msgid "Encodage" +msgstr "Dubbel gecodeerd" + +#: include/ext/import_account/include/template/input_file.php:25 +msgid "Encodage unicode" +msgstr "Unicode-codering" + +#: include/class_fiche_def.php:789 +msgid "Enleve les éléments cochés" +msgstr "Verwijdert van aangekruiste elements" + +#: include/template/action_other_action.php:43 +msgid "Enlever des étiquettes" +msgstr "-Tags verwijderen" + +#: include/template/action_other_action.php:51 +msgid "Enlever toutes les étiquettes des documents choisis" +msgstr "Verwijder alle tags geselecteerde documenten" + +#: include/payment_middle.inc.php:103 include/anc_pa.inc.php:52 +#: include/anc_pa.inc.php:99 +msgid "Enregistre" +msgstr "OPSLAAN" + +#: include/compta_ach.inc.php:77 include/compta_fin.inc.php:114 +#: include/compta_ven.inc.php:86 +msgid "Enregistrement" +msgstr "Opgeslagen" + +#: include/action.common.inc.php:160 include/action.common.inc.php:258 +#: include/compta_ach.inc.php:222 include/compta_ven.inc.php:238 +msgid "Enregistrer" +msgstr "OPSLAAN" + +#: include/class_anc_print.php:130 +msgid "Entre l'activité " +msgstr "Tussen de activiteit" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:99 +#, fuzzy, php-format +msgid "Entre les date %s et %s" +msgstr "Between van rekening" + +#: include/ext/tva/form_periode.php:3 +msgid "Entrez la période de la déclaration" +msgstr "Voer de datum van de verklaring" + +#: include/ext/rapport_avance/include/template/parameter_send_mail_input.php:23 +msgid "Envoi" +msgstr "Verzending" + +#: include/ext/invoicing/include/invoicing.inc.php:102 +msgid "Envoi des factures par email" +msgstr "Facturen versturen per e-mail" + +#: include/ext/invoicing/include/invoice_send_mail.inc.php:116 +msgid "Envoi echoué" +msgstr "Het verzenden mislukt" + +#: include/ext/invoicing/include/invoice_send_mail.inc.php:113 +#, fuzzy +msgid "Envoi facture " +msgstr "Facturatie Gegevens" + +#: include/ext/rapport_avance/ajax_parameter_send_mail.php:17 +msgid "Envoi par email" +msgstr "Verzenden per e-mail" + +#: include/ext/invoicing/include/invoicing.inc.php:104 +msgid "Envoi uniquement à ceux ayant une adresse email et une facture" +msgstr "Het verzenden van alleen die met een e-mailadres en een factuur" + +#: include/ext/invoicing/include/invoicing.inc.php:124 +msgid "Envoyer copie à l'expéditeur" +msgstr "Kopie naar afzender" + +#: include/forecast.inc.php:373 +msgid "Erreur : " +msgstr "Fout:" + +#: include/ext/import_account/include/class_sql_impacc.php:36 +#: include/ext/import_account/include/class_sql_impacc.php:47 +#: include/class_acc_account.php:66 include/class_acc_account.php:77 +#: include/class_acc_compute.php:94 include/class_acc_compute.php:104 +#, fuzzy +msgid "Erreur attribut inexistant" +msgstr "Journaal onbestaand" + +#: include/ext/import_account/include/class_impacc_operation.php:284 +msgid "Erreur ce type journal n' est pas encore supporté" +msgstr "Foutenlogboek dit type wordt nog niet ondersteund" + +#: include/template/forecast_result.php:36 +msgid "Estimé" +msgstr "Waardevol" + +#: include/template/ledger_search.php:22 +msgid "Et Compris entre les date" +msgstr "In between datum" + +#: include/template/ledger_search.php:48 +msgid "Et compris entre les montants" +msgstr "In between van bedragen" + +#: include/template/ledger_search.php:39 +msgid "Et contenant dans le libellé, pièce justificative ou n° interne" +msgstr "En die in de formulering voucher of intern nummer" + +#: include/template/ledger_search.php:30 +msgid "Et paiement compris entre les date " +msgstr "En betaling tussen de tijd" + +#: include/template/ledger_search.php:74 +msgid "Et uniquement non payées" +msgstr "In Actie Alleen niet betalend" + +#: include/template/ledger_search.php:56 +msgid "Et utilisant la fiche (quick code)" +msgstr "Puts van blad (quick-code)" + +#: include/template/ledger_search.php:64 +msgid "Et utilisant le poste comptable" +msgstr "Puts van rekening" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:45 +msgid "Etape 1/3" +msgstr "Stap 1/3" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:266 +msgid "Etape 2/3" +msgstr "Stap 2/3" + +#: include/ext/transform/include/intervat_listing_assujetti_step_3.inc.php:34 +msgid "Etape 3/3" +msgstr "Stap 3/3" + +#: include/template/action_search.php:103 +#: include/template/detail-action.php:105 +msgid "Etat" +msgstr "Toestand" + +#: include/database.item.php:110 +msgid "Etat des documents" +msgstr "Documenten staat" + +#: include/database.item.php:91 +msgid "Etat des stock" +msgstr "Toestand van het bestand" + +#: include/dossier.inc.php:329 +msgid "Etes vous sûr et certain de vouloir effacer " +msgstr "Bent u DAT u verwelkingsziekte Zeker Wissen" + +#: include/template/action_search.php:67 include/template/tag_choose.php:5 +msgid "Etiquette" +msgstr "Etiquette" + +#: include/template/tag_detail.php:15 +#, fuzzy +msgid "Etiquette (tag)" +msgstr "Etiquette" + +#: include/template/action_search.php:107 +msgid "Exclure Etat" +msgstr "Uitsluiten State" + +#: include/ext/tools/index.php:43 include/bank.inc.php:73 +#: include/template/stock_state_search.php:35 +msgid "Exercice" +msgstr "Oefening" + +#: html/ajax_misc.php:197 +msgid "Explication" +msgstr "Uitleg" + +#: include/ext/tools/index.php:44 +#, fuzzy +msgid "Export" +msgstr "Export CSV" + +#: include/database.item.php:46 +msgid "Export Action Gestion" +msgstr "Export Management Actie" + +#: include/database.item.php:38 include/database.item.php:39 +msgid "Export Balance comptable" +msgstr "Export Accounting Balance" + +#: include/database.item.php:42 +msgid "Export Balance groupe analytique" +msgstr "Export Analytische balans groep" + +#: include/database.item.php:43 +msgid "Export Bilan" +msgstr "Balans export" + +#: include/ext/amortis/include/print_all.inc.php:40 html/popup.php:54 +#: include/ext/tools/include/export_operation.inc.php:36 +msgid "Export CSV" +msgstr "Export CSV" + +#: include/database.item.php:33 include/database.item.php:35 +msgid "Export Comptabilité analytique" +msgstr "Export Cost Accounting" + +#: include/database.item.php:36 include/database.item.php:37 +msgid "Export Comptabilité analytique balance double" +msgstr "Export Cost Accounting dual balans" + +#: include/database.item.php:34 +msgid "Export Comptabilité analytique balance simple" +msgstr "Export Cost Accounting louter balans" + +#: include/database.item.php:28 include/database.item.php:29 +msgid "Export Fiche" +msgstr "Export Record" + +#: include/database.item.php:24 include/database.item.php:25 +msgid "Export Fiche balance" +msgstr "Balans export sheet" + +#: include/database.item.php:22 include/database.item.php:23 +msgid "Export Fiche détail" +msgstr "Export Listing details" + +#: include/database.item.php:30 include/database.item.php:31 +msgid "Export Grand Livre" +msgstr "Export Ledger" + +#: include/database.item.php:17 +msgid "Export Historique" +msgstr "Export Geschiedenis" + +#: include/database.item.php:41 +msgid "Export Historique Compt. Analytique" +msgstr "Export Geschiedenis Compt. Analytisch" + +#: include/database.item.php:47 +msgid "Export Historique mouvement stock" +msgstr "Export Achtergrond stock beweging" + +#: include/database.item.php:18 include/database.item.php:19 +msgid "Export Journaux" +msgstr "Export Kranten" + +#: html/popup.php:55 +msgid "Export PDF" +msgstr "PDF exporteren" + +#: include/database.item.php:20 include/database.item.php:21 +msgid "Export Poste détail" +msgstr "Export Item Detail" + +#: include/database.item.php:48 +msgid "Export Résumé list stock" +msgstr "Samenvatting Export lijst voorraad" + +#: include/database.item.php:32 +msgid "Export Sécurité" +msgstr "Export Beveiliging" + +#: include/database.item.php:40 +msgid "Export Tableau Analytique" +msgstr "Exporteer tabel Analytische" + +#: include/database.item.php:45 +msgid "Export définition d'un raport" +msgstr "Export definitie van Openingstijden" + +#: include/database.item.php:124 +msgid "Export opérations rapprochées" +msgstr "Export dicht operaties" + +#: include/database.item.php:124 +msgid "Export opérations rapprochées en CSV" +msgstr "Export CSV dicht operaties" + +#: include/database.item.php:26 include/database.item.php:27 +msgid "Export report" +msgstr "Export rapport" + +#: include/ext/tools/index.php:44 +#, fuzzy +msgid "Exporter les opérations" +msgstr "Alle Operaties" + +#: include/database.item.php:52 include/ajax_navigator.php:102 +msgid "Extension" +msgstr "Plugin" + +#: include/menu.inc.php:132 +#, fuzzy +msgid "Extension / Plugin" +msgstr "Uitbreidingen (plugins)" + +#: include/database.item.php:52 +msgid "Extensions (plugins)" +msgstr "Uitbreidingen (plugins)" + +#: include/template/ledger_detail_bottom.php:129 +msgid "Extourner" +msgstr "Extourner" + +#: include/template/form_ledger_fin.php:31 +#: include/ext/modop/template_ledger_fin.php:10 +msgid "Extrait de compte" +msgstr "Rekeningoverzicht" + +#: include/database.item.php:170 +#: include/ext/invoicing/include/invoice_to_zip.inc.php:64 +msgid "Facture" +msgstr "Faktuur" + +#: include/database.item.php:118 +msgid "Favori" +msgstr "Favoriet" + +#: include/ajax_bookmark.php:28 +msgid "Favoris" +msgstr "Favorieten" + +#: include/company.inc.php:101 include/database.item.php:152 +msgid "Fax" +msgstr "Fax" + +#: include/doc_state.inc.php:57 +msgid "Ferme l'action" +msgstr "Krachtdadig optreden" + +#: include/class_html_input.php:686 include/class_ipopup.php:123 +#: include/template/action_search.php:142 +#: include/ext/amortis/include/material_delete.inc.php:7 +#: include/ext/amortis/include/material_modify.inc.php:42 +#: include/ext/amortis/include/template/material_detail.php:138 +#: include/ext/import_account/include/template/parameter_tva_add.php:55 +#: html/ajax_card.php:173 html/ajax_card.php:314 +#: include/template/action_search.php:31 include/template/action_search.php:35 +#: include/class_acc_ledger.php:2854 include/template/history_top.php:12 +#: include/template/ledger_detail_bottom.php:101 +#: include/template/ledger_detail_bottom.php:102 +#: include/template/ledger_detail_top.php:11 +#: include/template/search_top.php:36 +#, php-format +msgid "Fermer" +msgstr "Dicht" + +#: include/category_card.inc.php:64 include/database.item.php:79 +#: include/database.item.php:109 include/template/detail-action.php:304 +#: include/template/form_ledger_fin.php:42 +#: include/template/security_list_action.php:54 +#: include/ext/amortis/include/print_fiche.inc.php:44 +#: include/ext/amortis/include/template/material_add.php:6 +#: include/ext/amortis/include/template/material_detail.php:8 +#: include/ext/amortis/include/template/material_display.php:5 +#: include/card_attr.inc.php:82 include/template/stock_histo_search.php:39 +#: include/template/stock_inv.php:64 +msgid "Fiche" +msgstr "Blad" + +#: include/ext/import_account/include/template/parameter.php:11 +#, fuzzy +msgid "Fiche TVA" +msgstr "Blad" + +#: html/ajax_card.php:326 html/ajax_card.php:327 +msgid "Fiche contenant" +msgstr "Blad Bevat" + +#: include/fiche.inc.php:175 +msgid "Fiche non effacées" +msgstr "Undeleted opnemen" + +#: html/ajax_card.php:145 +msgid "Fiche non trouvée" +msgstr "Record niet gevonden" + +#: html/ajax_card.php:497 html/ajax_card.php:498 +msgid "Fiche non valide" +msgstr "Ongeldige opnemen" + +#: html/ajax_card.php:304 +#, fuzzy +msgid "Fiche sauvée" +msgstr "Opslagen Actie" + +#: include/ext/import_account/index.php:57 +#: include/ext/import_doli/index.php:57 +#, fuzzy +msgid "Fiches" +msgstr "Blad" + +#: include/class_document_modele.php:69 include/ajax_plugin_detail.php:47 +#: include/template/modele_document.php:61 include/menu.inc.php:116 +msgid "Fichier" +msgstr "Bestand" + +#: html/show_pj.php:82 include/ext/rapport_avance/raw.php:65 +#: include/ext/rapport_avance/raw.php:109 +#: include/ext/rapport_avance/raw.php:163 +#: include/ext/rapport_avance/raw.php:210 +msgid "Fichier effacé" +msgstr "Verwijderde bestand" + +#: include/ext/import_account/include/template/input_file.php:19 +#: include/ext/import_account/include/template/test_file.php:20 +#: include/ext/import_account/include/template/test_operation.php:20 +#: include/ext/import_account/include/template/upload_operation.php:40 +msgid "Fichier à charger" +msgstr "Bestand te laden" + +#: include/template/menu_detail.php:59 +msgid "Fichier à inclure (depuis le répertoire include)" +msgstr "" + +#: html/user_login.php:163 include/balance.inc.php:278 +#: include/compta_fin_rec.inc.php:126 include/dossier.inc.php:177 +#: include/modele.inc.php:237 include/user.inc.php:117 +#: include/ext/rapport_avance/ajax_listing_search_code.php:34 +#: include/ext/rapport_avance/ajax_rapav_search_code.php:32 +#: include/ext/rapport_avance/include/historique.inc.php:54 +#: include/ext/amortis/include/template/listing_histo.php:10 +#: include/ajax_boxcard_search.php:46 +#: include/template/result_cat_card_summary.php:5 include/menu.inc.php:150 +msgid "Filtre" +msgstr "Filter" + +#: include/class_html_input.php:323 +msgid "Filtre " +msgstr "Filter" + +#: include/compta_fin_saldo.inc.php:38 +msgid "Filtre :" +msgstr "Filter:" + +#: include/fiche.inc.php:312 +msgid "Filtre rapide:" +msgstr "Rapid filter:" + +#: include/class_acc_ledger.php:2860 +#: include/template/stock_state_search.php:50 +msgid "Filtrer" +msgstr "Filter" + +#: include/ext/tva/list_tva.inc.php:35 +msgid "Filtrer par " +msgstr "Filteren op" + +#: include/balance.inc.php:109 +#, fuzzy +msgid "Filtré par catégorie" +msgstr "Categorie Toevoegen" + +#: include/balance.inc.php:104 +#, fuzzy +msgid "Filtré par journal" +msgstr "Filteren op" + +#: include/database.item.php:197 include/user_menu.php:152 +msgid "Financier" +msgstr "Financieel" + +#: include/ext/rapport_avance/index.php:59 +msgid "Formulaire" +msgstr "Vorm" + +#: include/template/forecast-detail.php:12 +msgid "Formules" +msgstr "Formules" + +#: include/class_acc_ledger_purchase.php:1262 +#: include/class_acc_ledger_purchase.php:1369 include/class_pre_op_ach.php:381 +#: include/database.item.php:11 include/template/ledger_detail_ach.php:50 +#: include/template/print_ledger_simple.php:10 +msgid "Fournisseur" +msgstr "Leverancier" + +#: include/class_acc_ledger_purchase.php:1096 include/class_pre_op_ach.php:216 +msgid "Fournisseur " +msgstr "Leverancier" + +#: include/template/dashboard.php:282 +#, fuzzy +msgid "Fournisseurs en retad" +msgstr "Leverancier" + +#: include/template/dashboard.php:281 +msgid "Fournisseurs à payer aujourd'hui" +msgstr "" + +#: include/ajax_preference.php:165 include/ajax_preference.php:166 +msgid "Français" +msgstr "Frans" + +#: include/database.item.php:153 +msgid "GSM" +msgstr "GSM" + +#: include/database.item.php:71 +msgid "Gestion" +msgstr "Beheer" + +#: include/database.item.php:108 +msgid "Gestion catégorie de fiche" +msgstr "Categorie record management" + +#: include/database.item.php:90 +msgid "Gestion des attributs de fiches " +msgstr "Beheer attributen vellen" + +#: include/user_menu.php:111 +msgid "Gestion des dossiers" +msgstr "Records Management" + +#: include/user_menu.php:112 +msgid "Gestion des modèles" +msgstr "Managementmodellen" + +#: include/database.item.php:53 +msgid "Gestion des opérations prédéfinifies" +msgstr "Operations Management prédéfinifies" + +#: include/database.item.php:84 +msgid "Gestion des périodes" +msgstr "Beheersperioden" + +#: include/user_menu.php:110 include/user_menu.php:120 +msgid "Gestion des utilisateurs" +msgstr "Users Beheer" + +#: include/database.item.php:163 +msgid "Gestion stock" +msgstr "Voorraadbeheer" + +#: include/database.item.php:64 include/class_acc_ledger.php:342 +msgid "Grand Livre" +msgstr "Grootboek" + +#: include/database.item.php:70 +msgid "Grand livre analytique" +msgstr "Grote analytische boek" + +#: include/database.item.php:70 +msgid "Grand'Livre" +msgstr "Grand'Livre" + +#: include/ext/tva/form_parameter.php:68 +msgid "Grille 00 : opérations soumises à un régime particulier" +msgstr "Grid 00: transacties onderworpen aan bijzondere regels" + +#: include/ext/tva/form_parameter.php:69 +msgid "Grille 01 : Opérations pour lesquelles la TVA est due (6%)" +msgstr "Grid 01: Concrete acties waarvan de BTW verschuldigd (6%)" + +#: include/ext/tva/form_parameter.php:70 +msgid "Grille 02 : Opérations pour lesquelles la TVA est due (12%)" +msgstr "Grid 02: Concrete acties waarvan de btw verschuldigd is (12%)" + +#: include/ext/tva/form_parameter.php:71 +msgid "Grille 03 : Opérations pour lesquelles la TVA est due (21%)" +msgstr "Grid 03: Concrete acties waarvan de btw verschuldigd is (21%)" + +#: include/ext/tva/form_parameter.php:72 +msgid "" +"Grille 44 : Opérations pour lesquelles la TVA étrangère est due par le " +"cocontractant" +msgstr "" +"Grid 44: Concrete acties waarvan de buitenlandse btw is verschuldigd door de " +"aannemer" + +#: include/ext/tva/form_parameter.php:73 +msgid "" +"Grille 45 : Opérations pour lesquelles la TVA est due par le cocontractant" +msgstr "" +"Grid 45: Bewerkingen waarvoor de belasting is verschuldigd door de aannemer" + +#: include/ext/tva/form_parameter.php:74 +msgid "" +"Grille 46 : Livraisons intracommunautaires exemptées effectuées en Belgique " +"et ventes ABC" +msgstr "" +"Grid 46: vrijgestelde intracommunautaire leveringen in België en ABC sales" + +#: include/ext/tva/form_parameter.php:75 +msgid "" +"Grille 47 :Autres opérations exemptées et autres opérations effectuées à " +"l’étranger" +msgstr "" +"Grid 47: Andere operaties en andere vrijgestelde handelingen in het " +"buitenland" + +#: include/ext/tva/form_parameter.php:76 +msgid "" +"Grille 48 : Opérations relatives aux notes de crédit des grilles 44 et 48" +msgstr "" +"Grid 48: Transacties in verband met de credit ratings van de poorten 44 en 48" + +#: include/ext/tva/form_parameter.php:77 +msgid "Grille 49 : Opérations relatives aux notes de crédit" +msgstr "Grid 49: Transacties in verband met credit ratings" + +#: include/ext/tva/form_parameter.php:94 +msgid "Grille 54 : tva due sur opération grille 01,02 et 03" +msgstr "Grid 54: verschuldigde BTW op netbeheer 01,02 en 03" + +#: include/ext/tva/form_parameter.php:95 +msgid "Grille 55 : tva due sur opération grille 86 et 88" +msgstr "Grid 55: verschuldigde BTW op 86 en 88 netbeheer" + +#: include/ext/tva/form_parameter.php:106 +msgid "" +"Grille 56 : T.V.A. à récupérer mentionnée sur les notes de crédit délivrées " +msgstr "Grid 56: te vorderen BTW vermeld op de afgegeven ratings" + +#: include/ext/tva/form_parameter.php:96 +msgid "Grille 56 : tva due sur opération grille 87" +msgstr "Grid 56: verschuldigde BTW op exploitatie van het net 87" + +#: include/ext/tva/form_parameter.php:97 +msgid "Grille 57 :T.V.A. relative aux importations avec report de perception " +msgstr "Grid 57: BTW op de invoer uitgestelde collectie" + +#: include/ext/tva/form_parameter.php:104 +msgid "Grille 59 : taxe déductible" +msgstr "Grille 59 fiscaal aftrekbaar" + +#: include/ext/tva/form_parameter.php:98 +msgid "Grille 61 :Diverses régularisations T.V.A. en faveur de l'Etat" +msgstr "Grid 61: Diverse aanpassingen BTW voor de staat" + +#: include/ext/tva/form_parameter.php:105 +msgid "Grille 62 : Diverses régularisations T.V.A. en faveur du déclarant" +msgstr "Grid 62: Diverse aanpassingen in het voordeel te verklaren BTW" + +#: include/ext/tva/form_parameter.php:99 +msgid "Grille 63 :T.V.A. à reverser mentionnée sur les notes de crédit reçues" +msgstr "" +"Grid 63: BTW moet worden terugbetaald vermeld op creditnota's ontvangen" + +#: include/ext/tva/form_parameter.php:82 +msgid "Grille 81 : Opération sur les marchandises, matières premières..." +msgstr "Grid 81: Operatie op goederen, grondstoffen ..." + +#: include/ext/tva/form_parameter.php:83 +msgid "Grille 82 : Opération sur les services et biens divers" +msgstr "Grid 82: Operatie op diverse goederen en diensten" + +#: include/ext/tva/form_parameter.php:84 +msgid "Grille 83 : Opération sur les biens d'investissements" +msgstr "Grid 83: Operatie op vastgoedbeleggingen" + +#: include/ext/tva/form_parameter.php:85 +msgid "" +"Grille 84 : Montant des notes de crédit reçues et des corrections négatives " +"relatif aux opérations inscrites en grilles 86 et 88" +msgstr "" +"Grid 84: Bedrag van de creditnota's ontvangen en negatieve aanpassingen " +"op transacties in rasters 86 en 88 opgenomen" + +#: include/ext/tva/form_parameter.php:86 +msgid "" +"Grille 85 : Montant des notes de crédit reçues et des corrections négatives " +"relatif aux autres opérations du cadre III " +msgstr "" +"Grid 85: Bedrag van de creditnota's ontvangen en negatieve aanpassingen " +"op andere bewerkingen als onderdeel III" + +#: include/ext/tva/form_parameter.php:87 +msgid "" +"Grille 86 : Acquisitions intracommunautaires effectuées en Belgique et " +"ventes ABC " +msgstr "Grid 86: overnames in België en intra ABC sales" + +#: include/class_anc_account.php:287 include/database.item.php:7 +#: include/database.item.php:50 include/anc_pa.inc.php:197 +msgid "Groupe" +msgstr "Groep" + +#: include/database.item.php:50 +msgid "Groupe analytique" +msgstr "Analytische groep" + +#: include/action.common.inc.php:161 +msgid "Génère le document" +msgstr "Maak document" + +#: include/ext/rapport_avance/index.php:61 +#, fuzzy +msgid "Génération" +msgstr "Operatie" + +#: include/ext/rapport_avance/index.php:61 +msgid "Génération Déclaration / listing" +msgstr "Generatie Statement / bedrijf" + +#: include/ext/amortis/index.php:54 include/ext/amortis/include/am_util.php:30 +#, fuzzy +msgid "Génération écriture comptable" +msgstr "Boekhoudingsperiode" + +#: include/class_follow_up.php:407 +msgid "Génére le document" +msgstr "Document Maken" + +#: include/ext/amortis/include/am_util.php:30 +#, fuzzy +msgid "Génére écriture" +msgstr "Document Maken" + +#: include/ext/tva/class_ext_tva.php:341 +#, fuzzy +msgid "Générer fichier" +msgstr "Creeren" + +#: include/ext/amortis/include/template/util_generate.php:98 +#, fuzzy +msgid "Générer l'écriture" +msgstr "Document Maken" + +#: include/ext/invoicing/include/invoicing.inc.php:93 +#, fuzzy +msgid "Générer les factures" +msgstr "EEN van factuurmaken" + +#: include/template/ledger_detail_ach.php:133 +#: include/template/ledger_detail_ven.php:132 +#: include/template/operation_detail_ach.php:52 +#: include/template/operation_detail_ven.php:44 +msgid "HTVA" +msgstr "Zonder BTW" + +#: include/template/detail-action.php:45 +msgid "Heure" +msgstr "Tijd" + +#: include/database.item.php:93 +msgid "Histo. Changement" +msgstr "Histo. Verandering" + +#: html/ajax_card.php:163 include/database.item.php:3 +#: include/database.item.php:96 include/fiche.inc.php:64 +#: include/ext/coprop/index.php:47 include/ext/rapport_avance/index.php:62 +#: include/ext/amortis/include/am_util.php:31 +#: include/ext/amortis/include/template/listing_histo.php:2 +msgid "Historique" +msgstr "Historisch" + +#: include/fiche.inc.php:65 +msgid "Historique Lettré" +msgstr "Geschiedenis Scholar" + +#: include/fiche.inc.php:66 +msgid "Historique Lettré et montants différents" +msgstr "Geschiedenis Scholar en verschillende hoeveelheden" + +#: include/database.item.php:60 +msgid "Historique achat" +msgstr "Historische aankoop" + +#: include/ext/coprop/index.php:47 +msgid "Historique des appels" +msgstr "Call History" + +#: include/ext/skel/index.php:46 include/ext/tva/index.php:35 +#, fuzzy +msgid "Historique des déclarations TVA" +msgstr "Listing van Operatie" + +#: include/ext/rapport_avance/index.php:62 +#, fuzzy +msgid "Historique des déclarations faites" +msgstr "Listing van Operatie" + +#: include/ext/importbank/index.php:57 +msgid "Historique des imports effectués" +msgstr "Geschiedenis geschreven invoer" + +#: include/database.item.php:3 +msgid "Historique des imputations analytiques" +msgstr "Geschiedenis analytische postings" + +#: include/database.item.php:16 +msgid "Historique des mouvement de stock" +msgstr "Geschiedenis beweging van voorraad" + +#: include/ext/amortis/include/am_util.php:31 +#, fuzzy +msgid "Historique des opérations" +msgstr "Listing van Operatie" + +#: include/database.item.php:102 +msgid "Historique des ventes" +msgstr "Sales Geschiedenis" + +#: include/database.item.php:103 +msgid "Historique financier" +msgstr "Financiële Geschiedenis" + +#: include/fiche.inc.php:67 +msgid "Historique non Lettré" +msgstr "Niet Scholar Geschiedenis" + +#: include/database.item.php:61 +msgid "Historique opérations diverses" +msgstr "Historische verschillende bewerkingen" + +#: include/database.item.php:16 +msgid "Historique stock" +msgstr "Stock Geschiedenis" + +#: include/database.item.php:102 +msgid "Historique vente" +msgstr "Historische omzet" + +#: include/user_menu.php:155 include/user_menu.php:156 +msgid "Hors Comptabilité" +msgstr "Exclusief Accounting" + +#: include/template/stock_summary_list.php:47 +#: include/template/stock_summary_table.php:73 +#: include/template/stock_summary_table.php:107 +msgid "IN" +msgstr "" + +#: include/class_acc_ledger_purchase.php:258 +#: include/class_acc_ledger_sold.php:201 +msgid "Il n'y a aucune marchandise" +msgstr "Er are Geen goederen" + +#: include/ajax_preference.php:129 include/ajax_preference.php:131 +#: include/ajax_preference.php:130 include/ajax_preference.php:132 +msgid "Illimité" +msgstr "Onbeperkt" + +#: include/ext/transform/include/intervat_listing_assujetti_step_3.inc.php:38 +msgid "Ils ne seront inclus pas dans le fichier XML" +msgstr "Ze zijn niet in het XML-bestand" + +#: include/ext/coprop/index.php:43 +msgid "Immeubles,lots et copropriétaires" +msgstr "Gebouwen, percelen, en condominium" + +#: include/ext/importbank/index.php:56 +#, fuzzy +msgid "Importation" +msgstr "Invoeging gedaan" + +#: include/ext/import_account/index.php:58 +#: include/ext/import_doli/index.php:58 +msgid "Importation d'opérations de vente ou d'achat" +msgstr "Import transacties van verkoop of aankoop" + +#: include/ext/import_account/include/template/input_file.php:3 +#: include/ext/import_account/include/template/test_file.php:4 +#: include/ext/import_account/include/template/test_operation.php:4 +#: include/ext/importbank/include/template/input_file.php:3 +#: include/ext/importbank/include/template/test_file.php:4 +#: include/ext/import_card/include/template/input_file.php:3 +#: include/ext/import_card/include/template/test_file.php:4 +#: include/ext/import_doli/include/template/input_file.php:3 +#: include/ext/import_doli/include/template/test_file.php:4 +#: include/ext/import_doli/include/template/test_operation.php:4 +#, fuzzy +msgid "Importation de données" +msgstr "Invoeging gedaan" + +#: include/ext/importbank/index.php:56 +msgid "Importation de nouveaux fichiers" +msgstr "Nieuwe bestanden importeren" + +#: include/ext/import_account/index.php:57 +#: include/ext/import_doli/index.php:57 +#, fuzzy +msgid "Importation de nouvelles fiches" +msgstr "Maak EEN Nieuwe blad" + +#: include/ext/import_account/include/template/upload_operation.php:32 +#: include/ext/import_doli/include/template/upload_operation.php:32 +#, fuzzy +msgid "Importation des opération" +msgstr "Listing van Operatie" + +#: include/report.inc.php:116 +msgid "Importer ce rapport" +msgstr "Importeer dit verslag" + +#: include/class_acc_ledger.php:3611 +msgid "Impossible d'effacer un journal qui contient des opérations" +msgstr "" + +#: include/cfgfiche.inc.php:69 +msgid "" +"Impossible d'enlever cette catégorie, certaines fiches sont encore " +"utilisées\n" +"Les fiches non utilisées ont cependant été effacées" +msgstr "" + +#: include/class_acc_account.php:222 +msgid "Impossible de changer la valeur: poste déjà utilisé" +msgstr "" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:117 +msgid "Impossible de sauver ce fichier" +msgstr "Kan dit bestand op te slaan" + +#: include/database.item.php:68 include/database.item.php:114 +#: include/ajax_get_profile.php:98 include/template/action_other_action.php:22 +#: include/template/menu_detail.php:18 include/menu.inc.php:131 +msgid "Impression" +msgstr "Indruk" + +#: include/database.item.php:44 +msgid "Impression Grand-Livre" +msgstr "Print Ledger" + +#: include/database.item.php:112 +msgid "Impression Journaux" +msgstr "Kranten Printing" + +#: include/database.item.php:114 +msgid "Impression compta. analytique" +msgstr "Printing geteld. analytisch" + +#: include/database.item.php:105 +msgid "Impression de bilan" +msgstr "Balans Printing" + +#: include/database.item.php:63 +msgid "Impression de rapport" +msgstr "Rapport afdrukken" + +#: include/database.item.php:65 +msgid "Impression des balances comptables" +msgstr "Print boekhoudsaldi" + +#: include/database.item.php:112 +msgid "Impression des journaux" +msgstr "Drukken van kranten" + +#: include/database.item.php:104 +msgid "Impression des rapprochements" +msgstr "Print verzoeningen" + +#: include/database.item.php:62 +msgid "Impression du détail d'un poste comptable" +msgstr "Detail van een afdruktaak boekhoudkundige" + +#: include/database.item.php:64 +msgid "Impression du grand livre" +msgstr "Het grootboek afdrukken" + +#: include/bank.inc.php:86 +msgid "Inclure les banques sans opération :" +msgstr "Zijn onder meer banken zonder operatie:" + +#: include/customer.inc.php:86 +msgid "Inclure les clients sans opération :" +msgstr "Onder andere clients zonder operatie:" + +#: include/manager.inc.php:88 +msgid "Inclure les employés sans opération :" +msgstr "Behoren medewerkers zonder operatie:" + +#: include/supplier.inc.php:90 +msgid "Inclure les fournisseurs sans opération :" +msgstr "Onder andere leveranciers zonder operatie:" + +#: html/ajax_ledger.php:100 html/ajax_ledger.php:122 +msgid "Information" +msgstr "Informatie" + +#: include/database.item.php:69 +msgid "Information Banque" +msgstr "Informatie Bank" + +#: include/category_detail.inc.php:49 +msgid "Information sauvée" +msgstr "Opgeslagen Informatie" + +#: include/template/ledger_detail_bottom.php:6 +#, fuzzy +msgid "Informations" +msgstr "Informatie" + +#: include/template/detail-action.php:6 +msgid "Informations générales" +msgstr "Algemene informatie" + +#: include/class_acc_ledger.php:656 +#, fuzzy +msgid "Internal" +msgstr "Intern" + +#: include/export_fiche_balance_csv.php:141 include/fiche.inc.php:439 +#: include/template/letter_all.php:29 +msgid "Interne" +msgstr "Intern" + +#: include/class_ibutton.php:61 +msgid "Inverser la sélection" +msgstr "Omgekeerde selectie" + +#: include/menu.inc.php:119 +msgid "Javascript" +msgstr "" + +#: include/template/detail-action.php:446 +msgid "Je ne peux pas ajouter de fichier" +msgstr "EEN blad Toevoegen is niet mogelijk" + +#: include/class_calendar.php:168 include/class_calendar.php:256 +msgid "Jeudi" +msgstr "Donderdag" + +#: include/class_acc_ledger_purchase.php:1361 +#: include/class_acc_ledger_sold.php:656 +#: include/template/form_ledger_detail.php:11 include/class_acc_ledger.php:660 +#: include/ext/tools/raw.php:76 +msgid "Journal" +msgstr "Journaal" + +#: include/ext/amortis/include/template/util_generate.php:39 +msgid "Journal dans lequel l'écriture sera passée" +msgstr "Tijdschrift waarin schriftelijk zal worden doorgegeven" + +#: include/cfgledger.inc.php:50 +#, fuzzy +msgid "Journal inexistant" +msgstr "Module bestaat niet" + +#: include/class_acc_ledger.php:3305 +msgid "Journal n'existe pas" +msgstr "Inloggen bestaat niet" + +#: include/class_acc_ledger.php:3232 +#, fuzzy +msgid "Journaux de vente" +msgstr "Sales Geschiedenis" + #: include/impress_gl_comptes.inc.php:84 msgid "Jusqu'au poste" +msgstr "Om de positie" + +#: include/template/impress_cat_card.php:18 +#: include/template/stock_histo_search.php:47 +msgid "Jusque" +msgstr "Peuter" + +#: include/impress_gl_comptes.inc.php:63 include/impress_poste.inc.php:94 +msgid "Jusque " +msgstr "Peuter" + +#: include/ext/coprop/index.php:84 include/ext/rapport_avance/index.php:39 +#: include/ext/skel/index.php:82 include/ext/tva/index.php:69 +msgid "L'extension est installée, pourriez-vous en vérifier le paramètrage ?" +msgstr "De extensie is geïnstalleerd, kunt u de instellingen te controleren?" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:54 +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:58 +#, fuzzy +msgid "La date donnée est invalide" +msgstr "is a Jaar ongeldig" + +#: include/ext/import_account/include/class_impacc_operation.php:125 +msgid "La date est invalide, format n'est pas JJ.MM.AAAA" +msgstr "De datum is ongeldig, formaat is dd.mm.yyyy" + +#: include/class_acc_ledger_purchase.php:122 +#: include/class_acc_ledger_purchase.php:147 +#: include/class_acc_ledger_purchase.php:164 +#: include/class_acc_ledger_purchase.php:166 +#: include/class_acc_ledger_purchase.php:172 +#: include/class_acc_ledger_purchase.php:177 +#: include/class_acc_ledger_purchase.php:193 +#: include/class_acc_ledger_purchase.php:218 +#: include/class_acc_ledger_sold.php:116 include/class_acc_ledger_sold.php:139 +#: include/class_acc_ledger_sold.php:151 include/class_acc_ledger_sold.php:153 +#: include/class_acc_ledger_sold.php:158 include/class_acc_ledger_sold.php:163 +#: include/class_acc_ledger_sold.php:167 include/class_acc_ledger_sold.php:197 +msgid "La fiche " +msgstr "Het blad" + +#: include/class_acc_ledger.php:1898 include/class_acc_ledger.php:2028 +#, php-format +msgid "La fiche %s n'a pas de poste comptable" +msgstr "De% s-plug heeft geen financieel administratieve post" + +#: include/template/param_jrn.php:117 +msgid "La numérotation est propre à chaque journal" +msgstr "Dagboek van nummering hängt" + +#: include/class_fiche_def.php:453 include/ajax_plugin_detail.php:35 +msgid "Label" +msgstr "Etiket" + +#: include/template/param_jrn.php:118 +msgid "Laissez à 0 pour ne pas changer le numéro" +msgstr "Laat 0 het nummer niet wijzigen" + +#: include/ajax_preference.php:163 include/ajax_preference.php:164 +msgid "Langue" +msgstr "Taal" + +#: include/ajax_preference.php:158 include/ajax_preference.php:159 +msgid "Le mini rapport est un rapport qui s'affiche sur votre page d'accueil" +msgstr "De quick ratio is een verhouding die op uw homepage verschijnt" + +#: include/class_fiche_def.php:210 +msgid "Le nom de la catégorie ne peut pas être vide" +msgstr "De categorie naam mag niet leeg zijn" + +#: include/dossier.inc.php:49 +msgid "Le nom du dossier est vide" +msgstr "De Naam van de map is leeg" + +#: html/ajax_card.php:475 html/ajax_card.php:476 +msgid "Le nom et la classe base ne peuvent être vide" +msgstr "EEN Naam bij post are Moeder Verplicht" + +#: include/cat_document.inc.php:42 include/class_forecast.php:70 +msgid "Le nom ne peut pas être vide" +msgstr "De Naam mag are niet leeg" + +#: include/class_itva_popup.php:125 +msgid "Le nom ne peut être vide" +msgstr "De naam mag niet leeg zijn" + +#: include/class_acc_ledger.php:1910 +msgid "Le poste" +msgstr "Van rekening" + +#: include/template/param_jrn.php:94 +msgid "" +"Le préfixe des pièces doit être différent pour chaque journal, on peut aussi " +"utiliser l'année" +msgstr "" +"Het voorvoegsel onderdelen moeten verschillend zijn voor elk logboek kunt u " +"ook gebruik maken van het jaar" + +#: include/ext/invoicing/include/invoice_send_mail.inc.php:42 +#, fuzzy +msgid "Le sujet est obligatoire" +msgstr "Verplicht" + +#: include/class_profile_menu.php:236 include/class_profile_menu.php:260 +msgid "Lecture" +msgstr "Lezing" + +#: html/ajax_misc.php:366 +msgid "Les 2" +msgstr "2" + +#: include/class_anc_print.php:120 +msgid "Les dates sont en format DD.MM.YYYY" +msgstr "referentiepunt in formaat TT.MM.JJJJ" + +#: include/ext/import_account/include/class_import_card.php:150 +msgid "Les fiches doivent avoir au minimum un nom" +msgstr "De stekkers moet ten minste een naam hebben" + +#: include/report.inc.php:105 include/report.inc.php:120 +#: include/report.inc.php:144 +msgid "Les lignes vides seront effacées" +msgstr "Lege regels worden gewist" + +#: include/class_user.php:1141 +msgid "Les mots de passe ne correspondent pas. Mot de passe inchangé" +msgstr "Wachtwoorden komen niet overeen. Wachtwoord ongewijzigd" + +#: include/ext/import_account/include/imd_operation.inc.php:55 +msgid "" +"Les opérations qui ne sont pas marquées comme correctes ne seront pas " +"transfèrées" +msgstr "Bewerkingen die niet correct zijn gemarkeerd worden niet overgedragen" + +#: include/export_fiche_balance_csv.php:147 include/fiche.inc.php:443 +msgid "Let." +msgstr "Laten." + +#: html/ajax_misc.php:291 include/category_card.inc.php:69 +#: include/database.item.php:72 include/template/letter_all.php:20 +#: include/template/letter_prop.php:22 include/template/letter_prop.php:62 +msgid "Lettrage" +msgstr "Belettering" + +#: include/database.item.php:59 +msgid "Lettrage par Fiche" +msgstr "Belettering Sheet" + +#: include/database.item.php:99 +msgid "Lettrage par Poste" +msgstr "Belettering Bericht" + +#: include/database.item.php:59 +msgid "Lettrage par fiche" +msgstr "Belettering vel" + +#: include/lettering.card.inc.php:50 +msgid "Lettrage pour la fiche " +msgstr "Belettering voor de goede orde" + +#: include/lettering.account.inc.php:47 +msgid "Lettrage pour le poste comptable " +msgstr "Belettering voor de boekhoudkundige positie" + +#: include/database.item.php:171 +msgid "Lettre de rappel" +msgstr "Herinnering" + +#: include/class_acc_account.php:187 include/class_acc_ledger.php:1428 +#: include/class_acc_ledger.php:1435 include/class_acc_ledger.php:1661 +#: include/class_acc_ledger.php:1688 +#: include/class_acc_ledger_purchase.php:1364 +#: include/class_acc_ledger_sold.php:659 include/class_pre_op_advanced.php:184 +#: include/template/forecast-detail.php:14 +#: include/template/form_ledger_detail.php:50 +#: include/template/ledger_detail_ach.php:71 +#: include/template/ledger_detail_ach.php:275 +#: include/template/ledger_detail_fin.php:53 +#: include/template/ledger_detail_fin.php:107 +#: include/template/ledger_detail_misc.php:38 +#: include/template/ledger_detail_misc.php:91 +#: include/template/ledger_detail_ven.php:73 +#: include/template/ledger_detail_ven.php:274 +#: include/template/new_mod_payment.php:19 +#: include/template/operation_detail_misc.php:34 +#: include/ext/import_account/include/class_impacc_operation.php:251 +#: include/ext/import_account/include/class_impacc_operation.php:487 +#: include/template/impress_reconciliation.php:19 +#: include/template/operation_detail_fin.php:33 +#, php-format +msgid "Libellé" +msgstr "Opstellen" + +#: include/class_acc_ledger_purchase.php:1609 +#: include/class_acc_ledger_sold.php:865 +msgid "Libellé :" +msgstr "Volgt:" + +#: include/template/menu_detail.php:35 +#, fuzzy +msgid "Libellé du menu" +msgstr "Formulering van betaling" + +#: include/database.item.php:6 +msgid "Lien entre comptabilité et Comptabilité analytique" +msgstr "Verband tussen Boekhouding en Cost Accounting" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:130 +#, fuzzy +msgid "Ligne non importée" +msgstr "Niet Betaald 'verkopenlijst" + +#: include/fiche.inc.php:63 include/ext/rapport_avance/index.php:58 +msgid "Liste" +msgstr "Fractie Lijst" + +#: include/ext/importbank/index.php:57 +#, fuzzy +msgid "Liste Import " +msgstr "Operatielijsten" + +#: include/database.item.php:120 +msgid "Liste Suivi" +msgstr "Tracking lijst" + +#: include/category_card.inc.php:66 +msgid "Liste de contacts" +msgstr "Lijst met contacten" + +#: include/ext/amortis/index.php:52 +#, fuzzy +msgid "Liste des biens amortissables" +msgstr "Verkopenlijst" + +#: include/database.item.php:93 +msgid "Liste des changements manuels des stocks" +msgstr "Lijst van boeken stock veranderingen" + +#: include/database.item.php:51 +msgid "Liste des contacts" +msgstr "Lijst met contacten" + +#: include/ext/skel/index.php:46 include/ext/tva/index.php:35 +#, fuzzy +msgid "Liste des déclarations TVA" +msgstr "Listing van Operatie" + +#: include/anc_od.inc.php:61 +msgid "Liste opérations" +msgstr "Operatielijsten" + +#: include/database.item.php:79 +msgid "Liste,Balance,Historique par fiche" +msgstr "Lijst, Balans, Geschiedenis van Record" + +#: include/ext/coprop/index.php:43 +msgid "Listes des immeubles, copropriétaire et lots " +msgstr "Lijsten van gebouwen, mede-eigenaar en prijzen" + +#: include/ext/amortis/include/am_print.php:33 +msgid "Listing" +msgstr "lijst" + +#: include/ext/skel/index.php:45 include/ext/tva/index.php:34 +msgid "Listing Assujetti" +msgstr "Onderwerp Listing" + +#: include/ext/skel/index.php:45 include/ext/tva/index.php:34 +#, fuzzy +msgid "Listing des clients assujettis" +msgstr "Verkopenlijst" + +#: include/ext/skel/index.php:44 include/ext/tva/index.php:33 +msgid "Listing intracommunautaire" +msgstr "Intra Listing" + +#: include/ext/skel/index.php:44 include/ext/tva/index.php:33 +msgid "Listing intracommunautaire trimestriel" +msgstr "Quarterly intra Listing" + +#: include/class_calendar.php:168 include/class_calendar.php:256 +msgid "Lundi" +msgstr "Maandag" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:49 +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:267 +#, fuzzy +msgid "Mandataire" +msgstr "Ontvanger" + +#: include/template/fiche_def_list.php:66 +msgid "Manuel" msgstr "" -#: include/lettering.account.inc.php:73 include/lettering.card.inc.php:76 -msgid "Opérations lettrées montants différents" -msgstr "" +#: include/class_calendar.php:168 include/class_calendar.php:256 +msgid "Mardi" +msgstr "Dinsdag" -#: include/menu_translate.php:3 -msgid "Historique des imputations analytiques" -msgstr "" +#: include/ext/amortis/include/material_add.inc.php:36 +#: include/ext/amortis/include/print_fiche.inc.php:74 +msgid "Matériel à amortir" +msgstr "Materiaaldemping" -#: include/menu_translate.php:4 -msgid "Grand" -msgstr "" +#: html/ajax_misc.php:458 +msgid "Mauvais type objet" +msgstr "Verkeerd type object" -#: include/menu_translate.php:5 -msgid "Balance simple des imputations analytiques" -msgstr "" +#: include/anc_pa.inc.php:60 include/anc_pa.inc.php:73 +msgid "Maximum de plan analytique est atteint" +msgstr "Maximale analytisch niveau is bereikt" -#: include/menu_translate.php:6 -msgid "Balance croisée double" -msgstr "" +#: include/template/menu_detail.php:19 include/menu.inc.php:113 +#: include/menu.inc.php:130 +#, fuzzy +msgid "Menu" +msgstr "Menu" -#: include/menu_translate.php:6 -msgid "Balance double croisées des imputations analytiques" -msgstr "" - -#: include/menu_translate.php:7 -msgid "Tableau" -msgstr "" - -#: include/menu_translate.php:7 -msgid "Tableau lié à la comptabilité" -msgstr "" - -#: include/menu_translate.php:8 -msgid "Balance par groupe" -msgstr "" - -#: include/menu_translate.php:9 -msgid "Impression Grand-Livre" -msgstr "" - -#: include/menu_translate.php:10 -msgid "Export Balance groupe analytique" -msgstr "" - -#: include/menu_translate.php:11 -msgid "Export Bilan" -msgstr "" - -#: include/menu_translate.php:12 include/menu_translate.php:47 -msgid "Export Journaux" -msgstr "" - -#: include/menu_translate.php:13 include/menu_translate.php:14 -msgid "Export Poste détail" -msgstr "" - -#: include/menu_translate.php:15 include/menu_translate.php:29 -msgid "Export Fiche détail" -msgstr "" - -#: include/menu_translate.php:17 -msgid "Paramètres divers" -msgstr "" - -#: include/menu_translate.php:18 -msgid "Config. de la tva" -msgstr "" - -#: include/menu_translate.php:21 -msgid "Menu et profil" -msgstr "" - -#: include/menu_translate.php:21 +#: include/database.item.php:67 msgid "Menu " -msgstr "" +msgstr "Menu" -#: include/menu_translate.php:22 -msgid "Profil" -msgstr "" +#: include/database.item.php:119 +msgid "Menu Financier" +msgstr "Financiële Menu" -#: include/menu_translate.php:22 -msgid "Configuration profil" -msgstr "" +#: include/database.item.php:66 +msgid "Menu achat" +msgstr "Aankoop menu" -#: include/menu_translate.php:23 -msgid "Config. des méthodes de paiement" -msgstr "" +#: include/ajax_bookmark.php:109 +msgid "Menu actuel" +msgstr "Huidige menu" -#: include/menu_translate.php:24 -msgid "Config. poste comptable de base" -msgstr "" +#: include/database.item.php:117 +msgid "Menu avancé" +msgstr "Menu Geavanceerd" -#: include/menu_translate.php:25 -msgid "Nouvelle vente ou recette" -msgstr "" +#: include/database.item.php:67 +msgid "Menu et profil" +msgstr "Menu en het profiel" -#: include/menu_translate.php:26 -msgid "Config. Menu" -msgstr "" - -#: include/menu_translate.php:26 -msgid "Configuration des menus et plugins" -msgstr "" - -#: include/menu_translate.php:28 -msgid "Gestion des périodes" -msgstr "" - -#: include/menu_translate.php:30 include/menu_translate.php:31 -msgid "Export Fiche balance" -msgstr "" - -#: include/menu_translate.php:32 include/menu_translate.php:33 -msgid "Export report" -msgstr "" - -#: include/menu_translate.php:34 include/menu_translate.php:35 -msgid "Export Fiche" -msgstr "" - -#: include/menu_translate.php:36 include/menu_translate.php:37 -msgid "Export Grand Livre" -msgstr "" - -#: include/menu_translate.php:38 -msgid "Export Sécurité" -msgstr "" - -#: include/menu_translate.php:39 include/menu_translate.php:41 -msgid "Export Comptabilité analytique" -msgstr "" - -#: include/menu_translate.php:40 -msgid "Export Comptabilité analytique balance simple" -msgstr "" - -#: include/menu_translate.php:42 include/menu_translate.php:43 -msgid "Export Comptabilité analytique balance double" -msgstr "" - -#: include/menu_translate.php:44 include/menu_translate.php:45 -msgid "Export Balance comptable" -msgstr "" - -#: include/menu_translate.php:46 -msgid "Export Historique" -msgstr "" - -#: include/menu_translate.php:48 -msgid "Export Tableau Analytique" -msgstr "" - -#: include/menu_translate.php:49 -msgid "Export Historique Compt. Analytique" -msgstr "" - -#: include/menu_translate.php:50 -msgid "Suivi fournisseur" -msgstr "" - -#: include/menu_translate.php:52 include/menu_translate.php:75 -msgid "Opérations diverses" -msgstr "" - -#: include/menu_translate.php:52 -msgid "OD analytique" -msgstr "" - -#: include/menu_translate.php:53 -msgid "Vérification " -msgstr "" - -#: include/menu_translate.php:53 -msgid "Vérification de la comptabilité" -msgstr "" - -#: include/menu_translate.php:54 -msgid "Création de rapport" -msgstr "" - -#: include/menu_translate.php:55 -msgid "Ecriture Ouverture" -msgstr "" - -#: include/menu_translate.php:55 -msgid "Ecriture d" -msgstr "" - -#: include/menu_translate.php:99 -msgid "Impression de rapport" -msgstr "" - -#: include/menu_translate.php:100 -msgid "Impression de bilan" -msgstr "" - -#: include/menu_translate.php:101 -msgid "Impression du grand livre" -msgstr "" - -#: include/menu_translate.php:102 -msgid "Impression des balances comptables" -msgstr "" - -#: include/menu_translate.php:103 -msgid "Catégorie de Fiches" -msgstr "" - -#: include/menu_translate.php:103 -msgid "Impression catégorie de fiches" -msgstr "" - -#: include/menu_translate.php:104 +#: include/database.item.php:68 msgid "Menu impression" +msgstr "Print menu" + +#: include/database.item.php:111 +msgid "Menu opérations diverses" +msgstr "Menu verschillende bewerkingen" + +#: include/database.item.php:126 include/ajax_get_menu_detail.php:91 +msgid "Menu par défaut" +msgstr "Standaardmenu" + +#: include/database.item.php:94 +msgid "Menu simplifié pour retrouver rapidement un menu" +msgstr "Vereenvoudigd menu om een ​​menu snel te lokaliseren" + +#: include/database.item.php:113 +msgid "Menu ventes et recettes" +msgstr "Menu Winsten" + +#: include/class_calendar.php:168 include/class_calendar.php:256 +msgid "Mercredi" +msgstr "Woensdag" + +#: include/ext/import_account/include/class_impacc_operation.php:259 +#: include/ext/invoicing/include/invoicing.inc.php:120 +msgid "Message" +msgstr "Bericht" + +#: include/template/action_search_result.php:32 +#: include/template/action_search_result.php:88 +#, fuzzy +msgid "Mettre à jour" +msgstr "OPSLAAN" + +#: include/ajax_preference.php:149 include/ajax_preference.php:150 +msgid "Mini-Rapport : " +msgstr "Mini-Report:" + +#: include/report.inc.php:133 +msgid "Mise a jour" +msgstr "Update" + +#: include/anc_pa.inc.php:93 +#, fuzzy +msgid "Mise à jour" +msgstr "OPSLAAN" + +#: include/ext/tva/index.php:98 +msgid "Mise à jour du plugin, pourriez-vous en vérifier le paramètrage ?" +msgstr "Werk plugin, kunt u de parameter instelling te controleren?" + +#: include/class_acc_ledger_purchase.php:1689 +#: include/class_acc_ledger_sold.php:954 include/history_operation.inc.php:140 +msgid "Mise à jour paiement" +msgstr "OPSLAAN" + +#: include/class_anticipation.php:202 +#: include/ext/import_account/include/imd_parameter.inc.php:86 +#: include/ajax_plugin_detail.php:29 +msgid "Modification" +msgstr "Verandering" + +#: include/database.item.php:92 +msgid "Modification Stocks" +msgstr "Veranderen Voorraden" + +#: include/ext/amortis/include/template/material_detail.php:1 +#, fuzzy +msgid "Modification de matériel" +msgstr "Verandering" + +#: include/database.item.php:92 +msgid "Modification des stocks (inventaire)" +msgstr "Veranderen van voorraden (inventaris)" + +#: include/ajax_mod_predf_op.php:32 +#, fuzzy +msgid "Modification du nom" +msgstr "Verandering" + +#: include/dossier.inc.php:315 include/template/list_mod_payment.php:79 +msgid "Modifie" +msgstr "Veranderen" + +#: include/class_document_type.php:75 include/dossier.inc.php:222 +#: include/stock_cfg.inc.php:110 +#: include/ext/transform/ajax_save_intervat_assujetti.php:61 +#: include/ext/transform/include/template/listing_client_display.php:89 +#: include/ajax_get_profile.php:70 +msgid "Modifier" +msgstr "Veranderen" + +#: include/ajax_plugin_detail.php:58 +#, fuzzy +msgid "Modifier ce plugin" +msgstr "Veranderen" + +#: include/database.item.php:187 +msgid "Modifier le type de document" +msgstr "Wijzig het type document" + +#: include/forecast.inc.php:360 +msgid "Modifier nom ou catégories" +msgstr "Change Naam categorie" + +#: include/forecast.inc.php:361 +msgid "Modifier éléments" +msgstr "Change van Elementen" + +#: include/audit_log.php:39 +msgid "Module" +msgstr "Module" + +#: include/database.item.php:74 +msgid "Module comptabilité" +msgstr "Accounting Module" + +#: include/database.item.php:115 +msgid "Module comptabilité analytique" +msgstr "Cost Accounting Module" + +#: include/database.item.php:71 +msgid "Module gestion" +msgstr "Management Module" + +#: include/ac_common.php:825 +msgid "Module inexistant" +msgstr "Module bestaat niet" + +#: include/database.item.php:57 +msgid "Module paramètre" +msgstr "Module instellen" + +#: include/dossier.inc.php:281 +msgid "Modèle" +msgstr "Model" + +#: include/ajax_update_predef.php:54 +#, fuzzy +msgid "Modèle d'opérations" +msgstr "Alle Operaties" + +#: include/template/modele_document.php:5 +#, fuzzy +msgid "Modèle de document" +msgstr "Config. documentsjabloon" + +#: include/user_menu.php:112 +msgid "Modèles" +msgstr "Modellen" + +#: include/ext/tva/form_periode.php:7 +msgid "Mois" +msgstr "Maand" + +#: include/class_acc_ledger.php:1689 +#: include/class_acc_ledger_purchase.php:1388 +#: include/class_acc_ledger_sold.php:682 include/class_anc_account.php:271 +#: include/class_anc_listing.php:89 include/class_pre_op_advanced.php:185 +#: include/fiche.inc.php:441 include/template/forecast-detail.php:15 +#: include/template/form_ledger_fin.php:44 +#: include/ext/modop/template_ledger_fin.php:20 +#: include/ext/transform/ajax_modify_intervat_assujetti.php:55 +#: include/ext/amortis/include/am_histo.inc.php:35 +#: include/ext/amortis/include/class_pdf_card.php:74 +#: include/ext/amortis/include/class_pdf_card.php:103 +#: include/ext/amortis/include/template/material_detail.php:56 +#: include/ext/amortis/include/template/material_display.php:42 +#: include/ext/transform/include/template/listing_client_display.php:42 +#: include/ac_common.php:1065 include/anc_pa.inc.php:195 +#: include/class_acc_ledger.php:668 include/class_acc_ledger.php:821 +#: include/template/impress_reconciliation.php:22 +#: include/template/ledger_detail_misc.php:44 +#: include/template/operation_detail_fin.php:34 +msgid "Montant" +msgstr "Bedrag" + +#: include/ext/import_account/include/class_impacc_operation.php:253 +#, fuzzy +msgid "Montant / unité" +msgstr "Bedrag" + +#: include/ext/amortis/raw.php:51 +#, fuzzy +msgid "Montant Achats" +msgstr "BTW Bedrag" + +#: include/ext/amortis/include/template/material_listing.php:14 +#, fuzzy +msgid "Montant Amorti" +msgstr "BTW Bedrag" + +#: include/class_acc_ledger_purchase.php:1385 +#: include/class_acc_ledger_sold.php:679 +msgid "Montant HTVA" +msgstr "BTW Bedrag Zonder" + +#: include/ext/amortis/include/template/material_listing.php:13 +#, fuzzy +msgid "Montant Initial" +msgstr "Bedrag" + +#: include/class_acc_ledger_purchase.php:1384 +#: include/class_acc_ledger_sold.php:678 +#: include/template/detail-action.php:309 +#: include/ext/import_account/include/class_impacc_operation.php:149 +msgid "Montant TVA" +msgstr "BTW Bedrag" + +#: include/ext/transform/include/class_transform_client.php:102 +#, fuzzy +msgid "Montant TVA incorrect" +msgstr "BTW Bedrag" + +#: include/class_acc_ledger_purchase.php:1386 +#: include/class_acc_ledger_sold.php:680 +#: include/template/detail-action.php:310 +msgid "Montant TVAC" +msgstr "BTW Inbegrepen Bedrag" + +#: include/ext/import_account/include/class_impacc_operation.php:254 +#, fuzzy +msgid "Montant Total TVA" +msgstr "BTW Bedrag" + +#: include/ext/amortis/raw.php:100 +msgid "Montant a amortir" +msgstr "Bedrag kussen" + +#: include/ext/amortis/raw.php:100 +#, fuzzy +msgid "Montant achat" +msgstr "Bedrag" + +#: include/ext/amortis/raw.php:100 +#, fuzzy +msgid "Montant amorti" +msgstr "Bedrag" + +#: include/ext/transform/include/class_transform_client.php:98 +#, fuzzy +msgid "Montant incorrect" +msgstr "Verkeerde balans" + +#: include/template/stock_histo_search.php:59 +msgid "Montant inférieur ou égal à" msgstr "" -#: include/menu_translate.php:106 -msgid "Impression compta. analytique" +#: include/database.item.php:133 +msgid "Montant initial" +msgstr "Oorspronkelijk bedrag" + +#: include/ext/amortis/include/class_am_card.php:179 +#: include/class_acc_compute.php:194 +#, fuzzy +msgid "Montant invalide" +msgstr "has EEN verkeerde Bedrag" + +#: html/ajax_misc.php:323 +msgid "Montant max. " +msgstr "Max bedrag." + +#: html/ajax_misc.php:316 +msgid "Montant min. " +msgstr "Bedragen min." + +#: include/template/stock_histo_search.php:55 +msgid "Montant supérieur ou égal à" msgstr "" -#: include/menu_translate.php:107 -msgid "saut de ligne" +#: include/ext/import_account/include/class_impacc_operation.php:149 +#, fuzzy +msgid "Montant total" +msgstr "Bedrag" + +#: include/ext/import_account/include/class_impacc_operation.php:257 +#, fuzzy +msgid "Montant total TVAC" +msgstr "BTW Inbegrepen Bedrag" + +#: include/ext/amortis/raw.php:51 +#: include/ext/amortis/include/template/listing_year.php:14 +#: include/ext/amortis/include/template/material_add.php:15 +#: include/ext/amortis/include/template/material_detail.php:17 +#: include/ext/amortis/include/template/material_display.php:15 +#: include/ext/amortis/include/template/material_listing.php:15 +msgid "Montant à amortir" +msgstr "Af te schrijven" + +#: include/ext/amortis/include/template/listing_year.php:12 +msgid "Montant à l'achat" +msgstr "Oplopen tot aankoop" + +#: include/template/detail-action.php:336 +msgid "Montrer les détails" +msgstr "Details Tonen" + +#: include/template/stock_inv.php:50 +#, fuzzy +msgid "Motif de changement" +msgstr "Detail van de blad" + +#: include/database.item.php:121 +msgid "Moyen de paiement" +msgstr "Betaling" + +#: include/database.item.php:94 +msgid "Navigateur" +msgstr "Navigator" + +#: include/ext/amortis/raw.php:100 +msgid "Nbre annuité" +msgstr "Nummer lijfrente" + +#: include/ext/amortis/include/class_pdf_card.php:96 +msgid "Nbre annuités" +msgstr "Aantal lijfrentes" + +#: include/ext/import_account/include/class_impacc_operation.php:255 +msgid "Nbre unités" +msgstr "Aantal eenheden" + +#: include/class_acc_bilan.php:134 +#, fuzzy +msgid "Nbres anomalies" +msgstr "Aantal lijfrentes" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:150 +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:261 +#, fuzzy +msgid "Ne peut pas ajouter " +msgstr "Het kan-niet OPSLAAN" + +#: include/class_document.php:297 +#: include/ext/rapport_avance/include/class_rapav_declaration.php:267 +#: include/ext/rapport_avance/include/class_rapav_declaration.php:339 +#: include/ext/rapport_avance/include/class_rapav_listing_compute_fiche.php:218 +#: include/ext/rapport_avance/include/class_rapav_listing_compute_fiche.php:297 +#: include/ext/rapport_avance/include/class_rapav_listing_compute_fiche.php:459 +msgid "Ne peut pas sauver " +msgstr "Het kan-niet OPSLAAN" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:52 +msgid "Ne remplissez pas s'il n'y a pas de mandataire" +msgstr "Niet compleet als er geen vertegenwoordiger" + +#: include/balance.inc.php:128 +#, fuzzy +msgid "Niveau 1" +msgstr "Nieuw" + +#: include/balance.inc.php:129 +#, fuzzy +msgid "Niveau 2" +msgstr "Nieuw" + +#: include/balance.inc.php:130 +#, fuzzy +msgid "Niveau 3" +msgstr "Nieuw" + +#: include/ext/transform/ajax.php:23 +#, fuzzy +msgid "No action" +msgstr "Actie Toevoegen" + +#: include/ajax_get_profile.php:40 include/class_anc_account.php:266 +#: include/class_anc_plan.php:123 include/class_document_modele.php:66 +#: include/class_fiche.php:1569 include/database.item.php:140 +#: include/dossier.inc.php:307 include/stock_cfg.inc.php:65 +#: include/template/document_mod_change.php:34 +#: include/template/forecast_cat.php:15 include/ext/amortis/raw.php:100 +#: include/ext/transform/ajax_modify_intervat_assujetti.php:39 +#: include/ext/amortis/include/am_histo.inc.php:34 +#: include/ext/amortis/include/template/util_generate.php:67 +#: include/ext/transform/include/template/listing_assujetti_declarant.php:25 +#: include/ext/transform/include/template/listing_assujetti_representative.php:25 +#: include/ext/transform/include/template/listing_client_display.php:36 +#: include/ajax_mod_stock_repo.php:39 include/anc_pa.inc.php:194 +#: include/template/fiche_list.php:37 include/template/profile.php:33 +msgid "Nom" +msgstr "Naam" + +#: include/database.item.php:142 +msgid "Nom de la banque" +msgstr "Naam van de bank" + +#: include/template/category_of_card.php:17 +msgid "Nom de la catégorie de fiche" +msgstr "Categorie naam van het record" + +#: include/template/modele_document.php:10 +#, fuzzy +msgid "Nom du document" +msgstr "Document nr." + +#: include/dossier.inc.php:275 +msgid "Nom du dossier" +msgstr "Naam van de map" + +#: include/template/param_jrn.php:7 +msgid "Nom journal" +msgstr "Boek Naam" + +#: include/company.inc.php:97 +msgid "Nom société" +msgstr "Maatschappij Naam" + +#: include/card_attr.inc.php:78 +msgid "Nombre" msgstr "" -#: include/menu_translate.php:107 -msgid "Saut de ligne" +#: include/ext/amortis/include/template/listing_year.php:13 +msgid "Nombre amortissement" +msgstr "Totaal afschrijvingen" + +#: include/ext/amortis/raw.php:51 +msgid "Nombre annuités" +msgstr "Aantal lijfrentes" + +#: include/ext/amortis/include/class_am_card.php:178 +#, fuzzy +msgid "Nombre annuités invalide" +msgstr "has EEN Verkeerd hoeveelheid" + +#: include/ext/amortis/include/template/material_add.php:34 +msgid "Nombre d'années amortissement" +msgstr "Aantal jaren afschrijving" + +#: include/ext/amortis/include/template/material_detail.php:36 +#: include/ext/amortis/include/template/material_display.php:34 +msgid "Nombre d'années amortissement (non modifiable)" +msgstr "Aantal jaar amortisatie (niet bewerkbaar)" + +#: include/template/account_result.php:59 +msgid "Nombre d'enregistrements" +msgstr "Aantal records" + +#: include/ext/import_account/include/class_impacc_operation.php:149 +msgid "Nombre d'unité" +msgstr "Aantal eenheid" + +#: include/class_acc_ledger.php:3406 +#, fuzzy +msgid "Nombre de ligne incorrect" +msgstr "Aantal geregistreerde lijnen" + +#: include/ext/import_account/include/class_impacc_operation.php:80 +msgid "Nombre de lignes enregistrées" +msgstr "Aantal geregistreerde lijnen" + +#: include/class_periode.php:240 include/class_periode.php:269 +#, php-format +msgid "Nombre opérations %d" +msgstr "Aantal operaties %d" + +#: include/company.inc.php:40 include/company.inc.php:44 +#: include/company.inc.php:47 include/company.inc.php:85 +msgid "Non" +msgstr "Geboren" + +#: include/template/impress_reconciliation_detail.php:13 +#, fuzzy +msgid "Non Deductible" +msgstr "Fiscaal aftrekbaar" + +#: include/class_acc_ledger_purchase.php:1680 +#: include/class_acc_ledger_sold.php:945 +msgid "Non Payée" +msgstr "Niet Betaald '" + +#: include/ext/import_account/include/template/test_file.php:81 +#: include/ext/import_account/include/template/test_operation.php:81 +#, fuzzy +msgid "Non Utilisé" +msgstr "niet use of" + +#: include/template/ledger_detail_ach.php:129 +#: include/template/operation_detail_ach.php:48 +msgid "Non ded" +msgstr "Niet DED" + +#: include/class_acc_ledger.php:1023 +#, fuzzy +msgid "Non payé" +msgstr "Niet Betaald '" + +#: include/ext/amortis/include/class_am_card.php:245 html/fid_card.php:169 +msgid "Non trouvé" +msgstr "Niet gevonden" + +#: include/template/ledger_detail_ven.php:95 +#, fuzzy +msgid "Note" +msgstr "Notes" + +#: include/database.item.php:176 +msgid "Note de frais" +msgstr "Onkostennota" + +#: include/class_calendar.php:129 include/class_acc_ledger.php:667 +msgid "Notes" +msgstr "Notes" + +#: include/anc_od.inc.php:58 include/class_anticipation.php:260 +#: include/class_follow_up.php:152 +msgid "Nouveau" +msgstr "Nieuw" + +#: include/ext/amortis/include/template/material_add.php:3 +msgid "Nouveau matériel" +msgstr "Nieuwe apparatuur" + +#: include/ajax_add_menu.php:70 include/ajax_add_menu.php:119 +#, fuzzy +msgid "Nouveau menu" +msgstr "Nieuw" + +#: include/anc_pa.inc.php:47 +#, fuzzy +msgid "Nouveau plan" +msgstr "Nieuw" + +#: include/database.item.php:2 +msgid "Nouvel achat ou dépense" +msgstr "Nieuwe Aankopen van uitgave" + +#: include/database.item.php:55 +msgid "Nouvel extrait" +msgstr "Nieuwe extract" + +#: include/database.item.php:55 +msgid "Nouvel extrait bancaire" +msgstr "Nieuwe bankafschrift" + +#: include/extension.inc.php:49 include/ajax_plugin_detail.php:29 +msgid "Nouvelle extension" +msgstr "Nieuwe extensie" + +#: html/ajax_card.php:182 +#, fuzzy +msgid "Nouvelle fiche" +msgstr "Nieuwe Verkoop" + +#: include/ext/coprop/include/appel_fond.inc.php:214 +msgid "Nouvelle fiche " +msgstr "Nieuw record" + +#: include/database.item.php:54 +msgid "Nouvelle opérations diverses" +msgstr "Nieuwe verschillende bewerkingen" + +#: include/database.item.php:9 +msgid "Nouvelle vente ou recette" +msgstr "Nieuwe omzet of inkomsten" + +#: include/class_anc_grandlivre.php:160 include/class_anc_listing.php:88 +msgid "Num.interne" +msgstr "Num.interne" + +#: include/class_acc_ledger_purchase.php:1649 +#: include/class_acc_ledger_sold.php:915 +msgid "Numero de bon de commande : " +msgstr "Nummer van bestelbon" + +#: include/database.item.php:155 +msgid "Numero de client" +msgstr "Aantal klanten" + +#: include/company.inc.php:105 +msgid "Numéro" +msgstr "Nummer" + +#: include/class_acc_ledger_purchase.php:1338 +#: include/class_acc_ledger_purchase.php:1343 +#: include/class_acc_ledger_purchase.php:1346 +#: include/class_acc_ledger_sold.php:634 include/class_acc_ledger_sold.php:639 +#: include/class_acc_ledger_sold.php:642 +#: include/template/form_ledger_detail.php:42 +msgid "Numéro Pièce" +msgstr "Referentie" + +#: include/ext/transform/include/template/listing_client_display.php:39 +#: include/ajax_boxcard_search.php:63 +#, fuzzy +msgid "Numéro TVA" +msgstr "Nummer" + +#: include/ext/transform/include/class_transform_declarant.php:173 +#, fuzzy +msgid "Numéro de TVA incorrect" +msgstr "Verkeerd periode van datum" + +#: include/company.inc.php:113 +msgid "Numéro de Tva" +msgstr "BTW nummer" + +#: include/class_acc_account.php:185 +#, php-format +msgid "Numéro de classe" +msgstr "rekeningsnummer" + +#: include/ext/transform/include/class_transform_client.php:94 +#, fuzzy +msgid "Numéro de tva incorrect" +msgstr "Verkeerd periode van datum" + +#: include/ext/transform/include/class_transform_declarant.php:170 +#: include/ext/transform/include/class_transform_representative.php:205 +#, fuzzy +msgid "Numéro de téléphone incorrect" +msgstr "Verkeerd periode van datum" + +#: include/template/action_search.php:88 +#, fuzzy +msgid "Numéro document" +msgstr "Document nr." + +#: include/template/form_ledger_fin.php:32 +#: include/ext/modop/template_ledger_fin.php:11 +msgid "Numéro extrait" +msgstr "Extract nummer" + +#: include/template/param_jrn.php:33 +msgid "Numérotation de chaque opération" +msgstr "Nummering van elke operatie" + +#: include/template/impress_reconciliation.php:7 +#, fuzzy +msgid "N°" +msgstr "Geen BTW" + +#: include/ext/transform/include/template/listing_assujetti_declarant.php:74 +msgid "N° TVA" +msgstr "Geen BTW" + +#: include/template/detail-action.php:19 +msgid "N° document" +msgstr "Document nr." + +#: include/ext/amortis/include/am_histo.inc.php:38 +#, fuzzy +msgid "N° interne" +msgstr "Intern Nummer" + +#: include/template/impress_reconciliation.php:13 +#, fuzzy +msgid "N° op" +msgstr "Operatie" + +#: include/ext/import_account/include/class_impacc_operation.php:489 +#, fuzzy +msgid "N° opération" +msgstr "Operatie" + +#: include/template/param_jrn.php:110 +msgid "N° pièce justificative" +msgstr "Nummer" + +#: include/ajax_preference.php:167 include/ajax_preference.php:168 +msgid "Néerlandais" +msgstr "Nederlands" + +#: include/database.item.php:12 +msgid "OD analytique" +msgstr "Analytische OD" + +#: include/class_acc_ledger.php:2120 +msgid "OPERATION ANNULEE " msgstr "" -#: include/menu_translate.php:108 -msgid "Export définition d" +#: include/template/stock_summary_list.php:48 +#: include/template/stock_summary_table.php:81 +#: include/template/stock_summary_table.php:115 +msgid "OUT" msgstr "" +#: include/ext/transform/include/class_transform_representative.php:208 +#: include/ext/transform/include/class_transform_representative.php:211 +#: include/ext/transform/include/class_transform_representative.php:214 +#, fuzzy +msgid "Obligatoire" +msgstr "Verplicht" + +#: include/template/param_jrn.php:61 +msgid "" +"Obligatoire pour les journaux FIN : donner ici la fiche de la banque utilisée" +msgstr "Verplicht voor FIN kranten geven hier de Data Bank gebruikt" + +#: include/template/form_ledger_fin.php:45 +msgid "Op. Concernée(s)" +msgstr "Relevant Op (s)" + +#: include/template/letter_all.php:41 include/template/letter_prop.php:40 +#: include/template/letter_prop.php:80 +msgid "Op. concernée" +msgstr "Betrokken Op" + +#: include/class_anc_group_operation.php:73 +msgid "Operation non equilibrée" +msgstr "Niet evenwichtige Operatie" + +#: include/ajax_preference.php:69 include/ajax_preference.php:70 +msgid "Options Générales" +msgstr "Algemeen Opties" + +#: include/export_ledger_csv.php:49 +#, fuzzy +msgid "Options invalides" +msgstr "Algemeen Opties" + +#: include/ajax_preference.php:148 include/ajax_preference.php:149 +msgid "Options pour la page d'accueil" +msgstr "Opties voor de home page" + +#: include/ext/tools/index.php:41 +#, fuzzy +msgid "Opération" +msgstr "Operatie" + +#: include/database.item.php:198 +msgid "Opération Diverses" +msgstr "Diverse operatie" + +#: html/ajax_ledger.php:156 +msgid "Opération Effacée" +msgstr "Operatie Ontruimde" + +#: include/class_acc_ledger.php:762 include/class_acc_ledger.php:990 +#, fuzzy +msgid "Opération annulée" +msgstr "Opgeslagen Operatie" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:129 +#, fuzzy +msgid "Opération de vente" +msgstr "Operatie opgeslagen" + +#: include/ext/import_account/include/class_impacc_operation.php:113 +#, fuzzy +msgid "Opération déjà transférée : doublon " +msgstr "Operatie Doorsturen" + +#: html/ajax_ledger.php:546 +msgid "Opération extournée" +msgstr "Werking omgekeerd" + +#: html/ajax_ledger.php:498 include/anc_od.inc.php:122 +#: include/ext/modop/modop_save.php:80 include/ext/modop/modop_save.php:162 +#: include/ext/amortis/include/am_generate.inc.php:76 +msgid "Opération sauvée" +msgstr "Opgeslagen Operatie" + +#: include/ext/tva/form_parameter.php:81 +#, fuzzy +msgid "Opération à l'entrée" +msgstr "Operatie opgeslagen" + +#: include/ext/tva/form_parameter.php:66 +#, fuzzy +msgid "Opération à la sortie" +msgstr "Operatie Doorsturen" + +#: include/category_card.inc.php:67 include/template/form_ledger_fin.php:37 +#: include/ext/modop/template_ledger_fin.php:15 +msgid "Opérations" +msgstr "Operatie" + +#: include/category_card.inc.php:69 +msgid "Opérations & Lettrages" +msgstr "Operations & Belettering" + +#: include/database.item.php:54 +msgid "Opérations Diverses" +msgstr "Verschillende bewerkingen" + +#: include/lettering.account.inc.php:87 include/lettering.card.inc.php:92 +#: include/lettering.gestion.inc.php:43 +msgid "Opérations NON lettrées" +msgstr "NON operaties geletterde" + +#: include/ext/import_account/index.php:58 +#: include/ext/import_doli/index.php:58 +#, fuzzy +msgid "Opérations Ventes/Achats" +msgstr "Operatie" + +#: include/database.item.php:12 include/database.item.php:111 +msgid "Opérations diverses" +msgstr "Verschillende bewerkingen" + +#: include/lettering.account.inc.php:85 include/lettering.card.inc.php:90 +#: include/lettering.gestion.inc.php:42 +msgid "Opérations lettrées" +msgstr "Geletterde operaties" + +#: include/lettering.account.inc.php:86 include/lettering.card.inc.php:91 +msgid "Opérations lettrées montants différents" +msgstr "Geletterde operaties verschillende bedragen" + +#: include/template/print_ledger_simple.php:31 +#, fuzzy +msgid "Opérations rapprochées" +msgstr "Export dicht operaties" + +#: include/ext/import_account/include/class_impacc_operation.php:483 +#, fuzzy +msgid "Opérations sauvées" +msgstr "Opgeslagen Operatie" + +#: include/template/forecast_cat.php:14 +msgid "Ordre" +msgstr "Orde" + +#: include/ajax_get_menu_detail.php:87 +msgid "Ordre d'apparition" +msgstr "Volgorde van verschijning" + +#: include/company.inc.php:41 include/company.inc.php:45 +#: include/company.inc.php:48 include/company.inc.php:86 +msgid "Oui" +msgstr "Ja" + +#: include/class_acc_ledger.php:211 +msgid "PERIODE FERMEE" +msgstr "Gesloten periode" + +#: include/class_acc_ledger.php:1429 +msgid "PJ Num" +msgstr "Bewijs nummer" + +#: include/class_acc_ledger.php:818 include/template/print_ledger_simple.php:8 +#, fuzzy +msgid "Paiement" +msgstr "Wijzingen bewaard" + +#: include/template/dashboard.php:160 +#, fuzzy +msgid "Paiement client" +msgstr "Elektronisch betalen" + +#: include/class_acc_payment.php:305 +msgid "Paiement encodé plus tard" +msgstr "Later in te brengen" + +#: include/template/new_mod_payment.php:38 +msgid "Paiement enregistré dans " +msgstr "Betaling geregistreerd in" + +#: include/template/dashboard.php:135 +#, fuzzy +msgid "Paiement fournisseur" +msgstr "van Leveranciers" + +#: include/database.item.php:191 +msgid "Paiement électronique" +msgstr "Elektronisch betalen" + +#: include/ext/tva/form_periode.php:13 +msgid "Par année" +msgstr "Per jaar" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:94 +msgid "Par calcul" +msgstr "Door berekening" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:191 +#, fuzzy +msgid "Par calcul : date opération" +msgstr "Operatie Doorsturen" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:194 +msgid "Par calcul : date paiement" +msgstr "Berekening: Betaaldatum" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:35 +#, fuzzy +msgid "Par date opération" +msgstr "Operatie Doorsturen" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:34 +#, fuzzy +msgid "Par date paiement" +msgstr "Betaling" + +#: include/ext/import_account/include/template/input_file.php:10 +msgid "" +"Par défaut, correspond à un export CSV depuis Calc (OpenOffice.org ou " +"libreoffice)" +msgstr "" +"Standaard komt overeen met een CSV-export uit Calc (OpenOffice.org of " +"LibreOffice)" + +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:80 +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:152 +#, fuzzy +msgid "Par fichier" +msgstr "Het blad" + +#: include/database.item.php:193 +msgid "Par gérant ou administrateur" +msgstr "Door de manager of beheerder" + +#: html/ajax_card.php:106 +#, fuzzy +msgid "Parametre ad_id est invalide" +msgstr "Verkeerd datum" + +#: include/database.item.php:83 +msgid "Parametre societe" +msgstr "Parameter bedrijf" + +#: include/class_acc_ledger.php:1248 +msgid "Parametres journaux non trouves" +msgstr "Parameters van niet journaal van stuurprogramma" + +#: include/ext/import_account/index.php:59 +#: include/ext/import_doli/index.php:59 +#, fuzzy +msgid "Paramètrage" +msgstr "Wordt EEN parameter gemist" + +#: include/ext/skel/index.php:47 include/ext/tva/index.php:36 +#, fuzzy +msgid "Paramètrage " +msgstr "Wordt EEN parameter gemist" + +#: include/database.item.php:57 include/ext/coprop/index.php:48 +#: include/card_attr.inc.php:98 include/menu.inc.php:118 +msgid "Paramètre" +msgstr "Parameter" + +#: include/ext/rapport_avance/ajax_modify_param_detail.php:68 +#, fuzzy +msgid "Paramètre invalide" +msgstr "Verkeerd datum" + +#: include/ext/skel/index.php:47 include/ext/tva/index.php:36 +msgid "Paramètre pour la TVA" +msgstr "Parameter voor de BTW" + +#: include/database.item.php:75 +msgid "Paramètres divers" +msgstr "Verschillende parameters" + +#: include/param_pcmn.inc.php:55 +msgid "Parent" +msgstr "Relatief" + +#: include/template/account_search.php:5 +msgid "Partie du poste comptable ou du libellé" +msgstr "Een deel van de financieel administratieve post of etiket" + +#: include/database.item.php:136 +msgid "Partie fiscalement non déductible" +msgstr "Fiscaal niet aftrekbare gedeelte" + +#: include/class_document_modele.php:261 +#: include/template/modele_document.php:50 +msgid "Partie gestion" +msgstr "Deel beheer" + +#: include/template/security_list_action.php:7 +msgid "Pas d'accès" +msgstr "Geen Toegang" + +#: include/class_acc_bilan.php:137 +msgid "Pas d'anomalie détectée" +msgstr "" + +#: include/ext/invoicing/include/invoice_send_mail.inc.php:75 +#, fuzzy +msgid "Pas de conversion en PDF disponible" +msgstr "Journaal available Geen" + +#: include/ext/import_account/include/class_impacc_operation.php:38 +#, fuzzy +msgid "Pas de fichier donné" +msgstr "Database" + +#: include/class_acc_ledger_fin.php:1002 include/class_acc_ledger.php:1594 +#: include/class_acc_ledger_purchase.php:1035 +#: include/class_acc_ledger_sold.php:1055 +msgid "Pas de journal disponible" +msgstr "Journaal available Geen" + +#: include/class_acc_bilan.php:148 +msgid "Passif avec un solde debiteur" +msgstr "" + +#: include/company.inc.php:111 include/stock_cfg.inc.php:68 +#: include/ajax_mod_stock_repo.php:63 +#: include/template/stock_summary_list.php:41 +msgid "Pays" +msgstr "Land" + +#: include/class_acc_ledger.php:865 +#: include/ext/invoicing/include/class_acc_ledger_sold_generate.php:122 +#: include/class_acc_ledger.php:1019 include/template/ledger_detail_ven.php:79 +msgid "Payé" +msgstr "Betaald" + +#: include/class_acc_ledger.php:3478 +msgid "Payé par" +msgstr "Betaald deur" + +#: include/template/dashboard.php:185 +msgid "Pense-Bête" +msgstr "Je Doen fractie Lijst" + +#: include/class_acc_ledger_fin.php:106 include/class_acc_ledger_fin.php:190 +#: include/class_acc_ledger_purchase.php:101 +#: include/class_acc_ledger_sold.php:100 +msgid "Periode fermee" +msgstr "Gesloten periode" + +#: include/database.item.php:144 +msgid "Personne de contact " +msgstr "Contactpersoon" + +#: include/template/operation_detail_ach.php:47 +msgid "Personnel" +msgstr "Personeel" + +#: include/class_acc_ledger.php:1654 include/template/ledger_detail_ach.php:62 +#: include/template/ledger_detail_fin.php:65 +#: include/template/ledger_detail_misc.php:50 +#: include/template/ledger_detail_ven.php:64 include/ext/tools/index.php:42 +#: include/ext/amortis/include/am_histo.inc.php:37 +#: include/ext/amortis/include/class_pdf_card.php:103 +#: include/ext/import_account/include/class_impacc_operation.php:488 +#: include/ext/amortis/include/template/material_detail.php:58 +#: include/ext/amortis/include/template/material_display.php:44 +#: include/ext/amortis/include/template/util_generate.php:57 +#: include/class_acc_ledger.php:664 include/class_acc_ledger.php:819 +#: include/template/print_ledger_simple.php:6 +msgid "Pièce" +msgstr "Bewijs" + +#: include/template/detail-action.php:393 +msgid "Pièces attachées" +msgstr "Documenten" + +#: include/balance.inc.php:162 +#, fuzzy +msgid "Plage de postes" +msgstr "Basisklasse" + +#: include/anc_group.inc.php:62 +msgid "Plan" +msgstr "Plan" + +#: include/anc_pa.inc.php:198 +msgid "Plan A" +msgstr "Kaart" + +#: include/class_anc_account.php:282 +msgid "Plan Analytique" +msgstr "Analytic Plan" + +#: include/class_anc_print.php:128 +msgid "Plan Analytique :" +msgstr "Analytic Plan" + +#: include/database.item.php:49 +msgid "Plan Compt. analytique" +msgstr "Plan Compt. analytisch" + +#: include/database.item.php:101 +msgid "Plan Comptable" +msgstr "Accounting Plan" + +#: include/database.item.php:49 +msgid "Plan analytique" +msgstr "Analytisch" + +#: include/ext/import_account/include/class_impacc_operation.php:172 +msgid "Plusieurs code TVA correspondent à ce taux" +msgstr "Verschillende fiscale code prijs evenaren" + +#: include/class_acc_ledger.php:1434 include/class_acc_ledger.php:1687 +#: include/class_anc_grandlivre.php:157 include/class_anc_listing.php:83 +#: include/class_pre_op_advanced.php:183 include/database.item.php:62 +#: include/database.item.php:78 +msgid "Poste" +msgstr "Rekening" + +#: include/ext/amortis/raw.php:100 +#, fuzzy +msgid "Poste Charge" +msgstr "rekening" + +#: html/ajax_poste.php:86 include/database.item.php:161 +#: include/template/ledger_detail_ach.php:273 +#: include/template/ledger_detail_fin.php:105 +#: include/template/ledger_detail_misc.php:89 +#: include/template/ledger_detail_ven.php:272 +#: include/template/operation_detail_misc.php:32 include/card_attr.inc.php:81 +#: include/template/fiche_list.php:41 +msgid "Poste Comptable" +msgstr "rekening" + +#: include/class_fiche_def.php:466 +msgid "Poste Comptable de base" +msgstr "Basis rekening" + +#: include/class_acc_ledger.php:1914 +msgid "Poste Inexistant [" +msgstr "Niet aanwezig positie [" + +#: include/class_acc_ledger.php:1902 +msgid "Poste Inexistant pour la fiche [" +msgstr "Niet aanwezig post voor details [" + +#: include/ext/amortis/raw.php:100 +#, fuzzy +msgid "Poste amortis" +msgstr "Operatielijsten" + +#: include/ext/amortis/include/template/material_add.php:29 +#: include/ext/amortis/include/template/material_detail.php:31 +#: include/ext/amortis/include/template/material_display.php:29 +msgid "Poste amortissement en contrepartie" +msgstr "Dempers overweging" + +#: include/ext/amortis/include/class_pdf_card.php:82 +#, fuzzy +msgid "Poste charge" +msgstr "Verkeerde rekening" + +#: include/param_pcmn.inc.php:51 include/ext/tva/form_parameter.php:116 +#: include/ajax_boxcard_search.php:66 +msgid "Poste comptable" +msgstr "Accountant Vacature" + +#: include/ext/tva/form_parameter.php:137 +msgid "Poste comptable utilisé pour les avances faites à la TVA" +msgstr "Rekenitem gebruikt voor voorschotten aan de BTW" + +#: include/ext/tva/form_parameter.php:173 +msgid "Poste comptable utilisé pour les dettes envers la TVA" +msgstr "Rekenitem gebruikt voor BTW-schulden" + +#: include/ext/amortis/include/class_pdf_card.php:89 +#, fuzzy +msgid "Poste contrepartie" +msgstr "Verkeerde rekening" + +#: include/ext/amortis/include/template/material_add.php:24 +#: include/ext/amortis/include/template/material_detail.php:26 +#: include/ext/amortis/include/template/material_display.php:24 +msgid "Poste de charge dotations amortissement (débit)" +msgstr "Laadstation afschrijvingen amortisatie (debet)" + +#: include/ext/amortis/include/class_am_card.php:181 +#, fuzzy +msgid "Poste de charge incorrect" +msgstr "Verkeerd periode van datum" + +#: include/class_acc_account.php:97 +#, fuzzy +msgid "Poste inconnu" +msgstr "onbekend btw" + +#: include/class_acc_ledger.php:1912 +msgid "Poste invalide [" +msgstr "Ongeldig bericht [" + +#: include/ext/amortis/include/class_am_card.php:182 +#, fuzzy +msgid "Poste à créditer incorrect" +msgstr "Verkeerd periode van datum" + +#: include/template/param_jrn.php:15 +msgid "Postes utilisables journal (débit/crédit) " +msgstr "Bericht bruikbare krant (debet / credit)" + +#: include/template/dashboard.php:97 +msgid "Pour aujourd'hui" +msgstr "" + +#: include/ext/import_account/include/template/test_operation.php:9 +msgid "" +"Pour importer des données, c'est-à-dire transformer des fichiers CSV (Valeur " +"séparé par des virgules) en des fiches. Vous devez choisir, un fichier et " +"donner une catégorie de fiche existante. Ensuite, il suffit d'indiquer " +"quelles colonnes correspondent à quelle attribut" +msgstr "" +"Om gegevens te importeren, dat wil zeggen, te transformeren CSV (comma " +"separated value) in bladen. U moet een bestand selecteren en geven een " +"klasse van bestaande record. Vervolgens volstaat aangeven welke kolommen " +"geven welke attribuut" + +#: include/ext/import_account/include/template/input_file.php:7 +#: include/ext/import_account/include/template/test_file.php:9 +msgid "" +"Pour importer des données, c'est-à-dire transformer des fichiers CSV (Valeur " +"séparé par des virgules) en des fiches. Vous devez choisir, un fichier et " +"donner une catégorie de fiche existante. Ensuite, il suffit d'indiquer " +"quelles colonnes correspondent à quelle attribut." +msgstr "" +"Om gegevens te importeren, dat wil zeggen, te transformeren CSV (comma " +"separated value) in bladen. U moet een bestand selecteren en geven een " +"klasse van bestaande record. Vervolgens volstaat aangeven welke kolommen " +"geven wat attribuut." + +#: include/class_acc_ledger_purchase.php:141 +#: include/class_acc_ledger_purchase.php:212 +#: include/class_acc_ledger_sold.php:132 include/class_acc_ledger_sold.php:191 +msgid "Pour la fiche " +msgstr "VOOR Het blad" + +#: include/class_acc_ledger.php:2393 +#, fuzzy, php-format +msgid "Pour la fiche %s le poste comptable [%s] n'existe pas" +msgstr "Voor de goede orde% s, is de wederpartij% s-account niet bestaat" + +#: include/class_acc_ledger_purchase.php:246 +#, php-format +msgid "Pour la fiche %s, le compte contrepartie %s n'existe pas" +msgstr "Voor de goede orde% s, is de wederpartij% s-account niet bestaat" + +#: include/ext/tva/ajax.php:188 +#, fuzzy +msgid "Pour la grille " +msgstr "VOOR Het blad" + +#: include/template/new_mod_payment.php:10 +msgid "Pour le journal" +msgstr "Voor de krant" + +#: include/dossier.inc.php:59 +msgid "" +"Pour le passer en unicode, faites-en un backup puis restaurez le fichier reçu" +msgstr "" +"Om over te schakelen naar unicode, maak een back-up en vervolgens het " +"ontvangen bestand herstellen" + +#: html/user_login.php:41 +msgid "" +"Pour une meilleure expérience web, prenez le temps de mettre votre " +"navigateur à jour" +msgstr "For a Betere Kennismaking zet Web, neem Tijd OM browser up-to-date" + +#: include/ext/amortis/include/template/material_detail.php:62 +#: include/ext/amortis/include/template/material_display.php:48 +msgid "Pourcent" +msgstr "Procent" + +#: include/ext/amortis/include/template/listing_year.php:16 +msgid "Pourcentage" +msgstr "Percentage" + +#: include/template/detail-action.php:115 +msgid "Priorité" +msgstr "Prioriteit" + +#: include/template/impress_reconciliation_detail.php:10 +#, fuzzy +msgid "Prix HTVA" +msgstr "Zonder BTW" + +#: include/database.item.php:131 +msgid "Prix achat" +msgstr "Aankoopprijs" + +#: include/database.item.php:130 +msgid "Prix vente" +msgstr "Verkoopprijs" + +#: include/template/ledger_detail_ven.php:124 +#: include/template/operation_detail_ven.php:37 +msgid "Prix/Un" +msgstr "Prijs / A" + +#: include/template/ledger_detail_ach.php:127 +#: include/template/operation_detail_ach.php:45 +msgid "Prix/Un." +msgstr "Prijs / A." + +#: include/template/document_mod_change.php:71 +msgid "Prochain numéro" +msgstr "Het volgende nummer" + +#: include/user_menu.php:154 +msgid "Produits" +msgstr "Producten" + +#: include/database.item.php:77 include/param_sec.inc.php:271 +#: include/template/action_search.php:99 +#: include/template/user_sec_profile.php:35 +msgid "Profil" +msgstr "Profiel" + +#: include/export_fiche_balance_csv.php:145 include/fiche.inc.php:442 +msgid "Prog." +msgstr "Prog." + +#: include/database.item.php:173 +msgid "Proposition" +msgstr "Voorstel" + +#: include/template/document_mod_change.php:45 +msgid "Préfixe" +msgstr "Voorvoegsel" + +#: include/template/param_jrn.php:84 +msgid "Préfixe code interne" +msgstr "Prefix interne code" + +#: include/template/param_jrn.php:88 +msgid "Préfixe pièce justificative" +msgstr "Prefix voucher" + +#: html/user_login.php:149 include/ajax_preference.php:31 +#: include/database.item.php:80 html/user_pref.php:87 +msgid "Préférence" +msgstr "Voorkeur" + +#: include/database.item.php:156 +msgid "Prénom" +msgstr "Voornaam" + +#: include/template/stock_state_search.php:43 +#, fuzzy +msgid "Présentation" +msgstr "Schepping" + +#: include/database.item.php:123 +msgid "Prévision" +msgstr "Uitzicht" + +#: include/ajax_preference.php:114 include/database.item.php:84 +#: include/template/forecast_result.php:25 +#: include/ext/transform/include/intervat_listing_assujetti_step_1.inc.php:67 +#: include/ajax_preference.php:115 +msgid "Période" +msgstr "Periode" + +#: include/class_acc_ledger.php:1427 +#: include/class_acc_ledger_purchase.php:1358 +#: include/class_acc_ledger_sold.php:653 +msgid "Période Comptable" +msgstr "Boekhoudingsperiode" + +#: include/class_acc_ledger.php:1638 +#: include/class_acc_ledger_purchase.php:1016 +#: include/class_acc_ledger_sold.php:1039 +#: include/ext/amortis/include/class_am_generate.php:91 +msgid "Période comptable" +msgstr "Boekhoudingsperiode" + +#: include/class_anticipation.php:122 +msgid "Période de début non valable" +msgstr "Periode Start ongeldig" + +#: include/class_anticipation.php:123 +msgid "Période de fin non valable" +msgstr "Periode van ongeldige einde" + +#: include/template/ledger_detail_ach.php:128 +#: include/template/ledger_detail_ven.php:125 +#: include/template/operation_detail_ach.php:46 +#: include/template/operation_detail_ven.php:38 +#: include/template/stock_inv.php:68 +msgid "Quantité" +msgstr "Hoeveelheid" + +#: include/class_fiche.php:1568 include/database.item.php:150 +#: include/template/ledger_detail_ach.php:118 +#: include/template/ledger_detail_ach.php:274 +#: include/template/ledger_detail_fin.php:106 +#: include/template/ledger_detail_misc.php:90 +#: include/template/ledger_detail_ven.php:122 +#: include/template/ledger_detail_ven.php:273 +#: include/template/operation_detail_ach.php:35 +#: include/template/operation_detail_misc.php:33 +#: include/template/operation_detail_ven.php:35 +#: include/ext/amortis/include/template/util_generate.php:66 +#: include/ajax_boxcard_search.php:50 include/template/fiche_list.php:34 +msgid "Quick Code" +msgstr "Quick Code" + +#: include/class_acc_ledger.php:1433 +msgid "Quick Code ou " +msgstr "Quick Code of" + +#: include/ext/import_account/include/class_impacc_operation.php:250 +msgid "QuickCode" +msgstr "QuickCode" + +#: include/class_anc_grandlivre.php:158 include/class_anc_listing.php:84 +msgid "Quick_code" +msgstr "Quick_code" + +#: include/ext/amortis/include/template/material_listing.php:6 +#, fuzzy +msgid "Quickcode" +msgstr "Quick Code" + +#: include/database.item.php:118 +msgid "Raccourci vers vos menus préférés" +msgstr "Snel naar uw favoriete menu" + +#: include/dossier.inc.php:159 +msgid "Rafraîchir" +msgstr "Hernieuwen" + +#: include/class_fiche.php:451 +msgid "Rappel: Poste créé automatiquement à partir de " +msgstr "HERINNERING: rekening Automatisch aangemaakt VANAF" + +#: include/class_fiche.php:459 +msgid "Rappel: Poste par défaut sera " +msgstr "HERINNERING: Rekining ZAL" + +#: include/database.item.php:63 include/ext/amortis/index.php:53 +msgid "Rapport" +msgstr "Verslag" + +#: include/database.item.php:97 include/database.item.php:104 +#: include/template/ledger_detail_bottom.php:18 +msgid "Rapprochement" +msgstr "Verzoening" + +#: include/database.item.php:97 +msgid "Rapprochement bancaire" +msgstr "Bank Verzoening" + +#: html/ajax_card.php:328 html/ajax_poste.php:83 html/recherche.php:65 +#: include/adm.inc.php:81 include/ajax_anc_search.php:45 +#: include/ajax_anc_search.php:56 include/bank.inc.php:75 +#: include/class_anc_balance_double.php:330 include/class_anc_print.php:133 +#: include/class_icard.php:290 include/class_iposte.php:133 +#: include/contact.inc.php:73 include/customer.inc.php:75 +#: include/database.item.php:56 include/database.item.php:95 +#: include/fiche.inc.php:83 include/lettering.account.inc.php:97 +#: include/lettering.card.inc.php:102 include/lettering.gestion.inc.php:54 +#: include/manager.inc.php:78 include/search.inc.php:70 +#: include/supplier.inc.php:79 include/user_menu.php:52 +#: include/template/action_button.php:39 +#: include/ext/amortis/include/am_card.php:44 +#: include/ext/tools/include/operation.inc.php:9 html/ajax_card.php:329 +#: include/anc_acc_balance.inc.php:11 include/anc_acc_table.inc.php:11 +#: include/anc_great_ledger.inc.php:11 include/anc_group_balance.inc.php:11 +#: include/template/search_top.php:41 +#: include/template/stock_histo_search.php:30 +#: include/template/stock_histo_search.php:68 include/menu.inc.php:147 +#, php-format +msgid "Recherche" +msgstr "Vinden" + +#: include/ajax_anc_search.php:41 +#, fuzzy +msgid "Recherche activité" +msgstr "Gedetailleerder Zoeken" + +#: include/template/action_search.php:39 +msgid "Recherche avancée" +msgstr "Gedetailleerder Zoeken" + +#: html/ajax_card.php:354 include/fiche.inc.php:90 +#: include/forecast.inc.php:264 include/forecast.inc.php:329 +#: include/impress_poste.inc.php:43 include/ext/modop/modop_display.php:80 +#: include/ext/modop/modop_display.php:113 +#: include/ext/modop/modop_display.php:147 +#: include/ext/modop/modop_display.php:183 html/ajax_card.php:355 +msgid "Recherche de fiche" +msgstr "VIND EEN blad" + +#: html/ajax_card.php:430 include/class_acc_report.php:151 +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:121 +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:163 +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:279 +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:286 +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:346 +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:353 +#: include/ext/rapport_avance/include/class_formulaire_param_detail.php:360 +#: include/ext/rapport_avance/include/class_rapav_listing_formula.php:375 +#: include/ext/rapport_avance/include/class_rapav_listing_formula.php:795 +#: html/ajax_card.php:431 +msgid "Recherche poste" +msgstr "Bericht Vinden" + +#: include/class_acc_ledger_fin.php:1037 include/class_acc_ledger.php:2842 +msgid "Rechercher" +msgstr "Vinden" + +#: include/template/modele_document.php:101 +msgid "Redémarrer la séquence (laisser à 0 pour ne pas changer)" +msgstr "" + +#: include/template/letter_all.php:26 include/template/letter_prop.php:28 +#: include/template/letter_prop.php:68 +#: include/template/action_search_result.php:47 +#: include/template/print_ledger_simple.php:9 +msgid "Ref" +msgstr "Ref" + +#: include/template/detail-action.php:27 +msgid "Reference" +msgstr "Verwijzing" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:287 +msgid "Rejeté" +msgstr "Verworpen" + +#: include/user_menu.php:113 +msgid "Restaure" +msgstr "Herstelt" + +#: include/user_menu.php:113 +msgid "Restaure une base de données" +msgstr "Restore Database" + +#: include/ext/amortis/include/template/material_detail.php:123 +#: include/ext/amortis/include/template/material_display.php:97 +msgid "Reste" +msgstr "Rest" + +#: include/ext/amortis/include/template/listing_year.php:17 +msgid "Reste à amortir" +msgstr "Rest kussen" + +#: html/ajax_misc.php:281 include/dossier.inc.php:288 +#: include/dossier.inc.php:316 include/dossier.inc.php:335 +#: include/ext/tva/ajax.php:17 +msgid "Retour" +msgstr "Terug" + +#: include/action.inc.php:26 +msgid "Retour liste" +msgstr "Terug fractie Lijst" + #: include/payment_middle.inc.php:56 include/payment_middle.inc.php:104 msgid "Retour sans sauver" +msgstr "Terug zonder op te slaan" + +#: include/ajax_fiche_def_detail.php:40 +#, fuzzy +msgid "Retour à la liste" +msgstr "Terug fractie Lijst" + +#: include/ext/transform/include/template/listing_assujetti_declarant.php:30 +#: include/ext/transform/include/template/listing_assujetti_representative.php:30 +#, fuzzy +msgid "Rue" +msgstr "Straat" + +#: include/company.inc.php:103 +msgid "Rue " +msgstr "Straat" + +#: include/database.item.php:178 +msgid "Réception commande Client" +msgstr "Client commando receptie" + +#: include/database.item.php:177 +msgid "Réception commande Fournisseur" +msgstr "Command receptie Leverancier" + +#: include/database.item.php:179 +msgid "Réception magazine" +msgstr "Voorkant tijdschrift" + +#: include/template/forecast_result.php:71 +msgid "Réel" +msgstr "Echt" + +#: include/template/action_search.php:82 +#, fuzzy +msgid "Référence" +msgstr "Voorkeur" + +#: include/ext/tools/index.php:42 +#, fuzzy +msgid "Rénuméroter des pièces justificative" +msgstr "Suggeren nummer van de akte" + +#: include/ext/rapport_avance/ajax_send_mail.php:10 include/audit_log.php:40 +msgid "Résultat" +msgstr "Resultaat" + +#: include/ajax_boxcard_search.php:43 +#, php-format +msgid "Résultat limité à %d , %d nombre de fiches trouvées" +msgstr "Beperkt tot% d resultaat% d aantal records gevonden" + +#: html/fid_card.php:164 +#, php-format +msgid "Résultat limité à 12" +msgstr "Beperkt tot 12 resultaten" + +#: include/ajax_boxcard_search.php:39 +#, fuzzy +msgid "Résultat recherche" +msgstr "Zoeken" + +#: include/template/account_result.php:6 include/template/card_result.php:6 +msgid "Résultats" +msgstr "Resultaten" + +#: include/fiche.inc.php:68 +msgid "Résumé" +msgstr "Overzicht" + +#: include/class_calendar.php:168 include/class_calendar.php:256 +msgid "Samedi" +msgstr "Zaterdag" + +#: include/database.item.php:14 +msgid "Saut de ligne" +msgstr "Newline" + +#: html/ajax_card.php:437 include/company.inc.php:126 +#: include/compta_fin.inc.php:143 include/param_pcmn.inc.php:62 +#: include/payment_middle.inc.php:54 include/report.inc.php:103 +#: include/report.inc.php:118 include/template/dashboard.php:342 +#: include/ext/modop/modop_display.php:311 html/ajax_card.php:193 +#: html/ajax_card.php:438 include/ajax_mod_predf_op.php:55 +#: include/cfgledger.inc.php:122 +msgid "Sauve" +msgstr "OPSLAAN" + +#: include/ext/tva/decl_tva.inc.php:105 +#: include/ext/tva/list_assujetti.inc.php:95 +#: include/ext/tva/list_intra.inc.php:117 +#, fuzzy +msgid "Sauvegarde" +msgstr "OPSLAAN" + +#: html/ajax_misc.php:461 include/class_fiche_def.php:773 +#: include/forecast.inc.php:274 include/forecast.inc.php:289 +#: include/forecast.inc.php:309 include/forecast.inc.php:339 +#: include/forecast.inc.php:382 include/template/document_mod_change.php:86 +#: include/template/ledger_detail_bottom.php:114 +#: include/ext/rapport_avance/ajax_listing_detail_modify.php:73 +#: include/ext/amortis/include/template/material_add.php:52 +#: include/ext/amortis/include/template/material_detail.php:135 +#: html/ajax_card.php:160 include/ajax_mod_stock_repo.php:79 +#: include/template/modele_document.php:118 +#: include/template/profile_sec_repository.php:59 +#: include/template/stock_inv.php:104 include/template/user_sec_profile.php:58 +msgid "Sauver" +msgstr "OPSLAAN" + +#: include/category_detail.inc.php:67 +msgid "Sauver les modifications" +msgstr "Veranderingen OPSLAAN" + +#: include/class_fiche_def.php:784 include/operation_ods_new.inc.php:103 +msgid "Sauvez" +msgstr "OPSLAAN" + +#: include/ext/amortis/include/template/util_generate.php:65 +#: include/card_attr.inc.php:83 include/class_acc_ledger.php:655 +#: include/template/fiche_list.php:49 +#, fuzzy +msgid "Selection" +msgstr "Actie" + +#: include/class_anc_balance_double.php:338 +msgid "" +"Selectionnez le plan qui vous intéresse avant de cliquer sur Recherche" +msgstr "Selectionneer plannen DAT u interesseert je op VOOR Zoeken Klikken" + +#: include/class_anc_print.php:140 +msgid "Selectionnez le plan qui vous intéresse avant de cliquer sur Recherche" +msgstr "Selectionneer plannen DAT u interesseert je op VOOR Zoeken Klikken" + +#: include/ajax_preference.php:164 include/ajax_preference.php:165 +msgid "Selectionnez votre langue" +msgstr "Selecteer uw taal" + +#: include/ext/tva/form_parameter.php:89 +msgid "Services intracommunautaires avec report de perception" +msgstr "Diensten-intra uitgestelde waarneming" + +#: include/class_user.php:51 +msgid "Session expirée
    Utilisateur déconnecté" +msgstr "Sessie Vervallen
    " + +#: include/template/category_of_card.php:35 +msgid "" +"Si vous n'utilisez pas la création automatique, toutes les nouvelles fiches " +"auront par défaut le même poste comptable. Ce poste comptable par défaut est " +"la classe de base." +msgstr "" +"Als u niet de automatische creatie gebruiken, zullen alle nieuwe kaarten van " +"dezelfde administratieve post standaard. Dit item accounting standaard " +"basisklasse." + +#: include/template/category_of_card.php:32 +msgid "" +"Si vous utilisez la création automatique de poste, chaque nouvelle fiche de " +"cette catégorie aura son propre poste comptable. Ce poste comptable sera la " +"classe de base augmenté de 1." +msgstr "" +"Als u de automatische creatie van te kunnen gebruiken, zal elke nieuwe " +"vermelding in deze categorie zijn eigen post hebben. Deze boekhoudkundige " +"positie zal de basisklasse met 1 verhoogd worden." + +#: include/ajax_preference.php:34 +msgid "" +"Si vous validez, la page sera rechargée et vous pourriez perdre ce que vous " +"faisiez" +msgstr "" +"Als u bevestigt, wordt de pagina herladen en je zou kunnen verliezen wat je " +"hebt gedaan" + +#: include/template/dashboard.php:90 +#, fuzzy +msgid "Situation" +msgstr "Visualisatie" + +#: include/database.item.php:164 +msgid "Société" +msgstr "Vennootschap" + +#: include/contact.inc.php:90 +msgid "Société :" +msgstr "Bedrijf:" + +#: include/database.item.php:83 +msgid "Sociétés" +msgstr "Bedrijven" + +#: include/class_fiche.php:1573 include/template/anc_balance_group.php:51 +#: include/template/anc_balance_group.php:72 include/class_acc_bilan.php:157 +msgid "Solde" +msgstr "evenwicht" + +#: include/template/form_ledger_fin.php:34 +msgid "Solde Fin" +msgstr "Evenwicht End" + +#: include/template/letter_all.php:109 +#, fuzzy +msgid "Solde crédit" +msgstr "Credit Totaal" + +#: include/template/letter_all.php:117 +#, fuzzy +msgid "Solde créditeur" +msgstr "Credit Totaal" + +#: include/database.item.php:98 +msgid "Solde des comptes en banques, caisse..." +msgstr "Saldo van bankrekeningen, contant ..." + +#: include/template/letter_all.php:108 +#, fuzzy +msgid "Solde débit" +msgstr "Evenwicht begin" + +#: include/template/letter_all.php:115 +#, fuzzy +msgid "Solde débiteur" +msgstr "Evenwicht begin" + +#: include/template/form_ledger_fin.php:33 +msgid "Solde début" +msgstr "Evenwicht begin" + +#: include/database.item.php:98 +msgid "Soldes" +msgstr "Sales" + +#: include/database.item.php:76 +msgid "Sortie" +msgstr "Uitgang" + +#: include/database.item.php:107 +msgid "Stock" +msgstr "Voorraad" + +#: include/user_menu.php:150 +msgid "Stock et commande" +msgstr "Voorraad in Bestelling" + +#: include/company.inc.php:120 +msgid "Suggérer la date" +msgstr "Suggereren de datum" + +#: include/company.inc.php:119 +msgid "Suggérer le numéro de pièce justificative" +msgstr "Suggeren nummer van de akte" + +#: include/category_card.inc.php:65 +#: include/template/security_list_action.php:57 +msgid "Suivi" +msgstr "Toko" + +#: include/category_card.inc.php:65 +msgid "Suivi Fournisseur, client, banque, devis, bon de commande, courrier" +msgstr "Gevolgd leverancier, klant, bank, offerte, order, mail" + +#: include/database.item.php:122 +msgid "Suivi administration, banque" +msgstr "Gevolgd administratie, bank" + +#: include/database.item.php:15 +msgid "Suivi client" +msgstr "Customer care" + +#: include/database.item.php:125 +msgid "Suivi des gérants, administrateurs et salariés" +msgstr "Monitoring van managers, bestuurders en werknemers" + +#: include/database.item.php:11 +msgid "Suivi fournisseur" +msgstr "Leverancier controle" + +#: include/ext/invoicing/include/invoicing.inc.php:115 +msgid "Sujet" +msgstr "Onderwerp" + +#: include/ajax_bookmark.php:103 +msgid "Supprimez favoris sélectionnés" +msgstr "Verwijder geselecteerde bladwijzers" + +#: html/ajax_misc.php:196 +msgid "Symbole" +msgstr "Symbool" + +#: include/database.item.php:89 +msgid "Sécurité" +msgstr "Veiligheid" + +#: include/template/action_other_action.php:18 +msgid "Sélectionner les documents et l' action :" +msgstr "Alle documenten en actie:" + +#: include/ext/amortis/include/template/util_generate.php:100 +#: include/template/letter_prop.php:164 +msgid "Sélectionner tout" +msgstr "Selecteer alle" + +#: include/database.item.php:8 include/template/ledger_detail_ach.php:135 +#: include/template/ledger_detail_ven.php:133 +#: include/template/operation_detail_ach.php:53 +#: include/template/operation_detail_ven.php:45 +#: include/ext/transform/ajax_modify_intervat_assujetti.php:47 +#: include/ext/transform/ajax_modify_intervat_assujetti.php:63 +#: include/ext/transform/include/template/listing_client_display.php:45 +#: include/template/impress_reconciliation_detail.php:19 +msgid "TVA" +msgstr "BTW" + +#: include/ext/tva/form_parameter.php:93 +msgid "TVA Due" +msgstr "Verschuldigde belasting" + +#: include/ext/tva/form_parameter.php:103 +msgid "TVA Déductible" +msgstr "Fiscaal aftrekbaar" + +#: include/template/ledger_detail_ach.php:134 +msgid "TVA ND" +msgstr "BTW ND" + +#: include/database.item.php:134 +msgid "TVA non déductible" +msgstr "Niet-aftrekbare BTW" + +#: include/database.item.php:135 +msgid "TVA non déductible récupérable par l'impôt" +msgstr "Niet-aftrekbare BTW terugvorderbaar door de Belastingdienst" + +#: include/template/ledger_detail_ach.php:136 +#: include/template/ledger_detail_ven.php:134 +#: include/template/operation_detail_ach.php:54 +#: include/template/operation_detail_ven.php:46 +#: include/template/impress_reconciliation_detail.php:25 +msgid "TVAC" +msgstr "BTW Met" + +#: include/database.item.php:5 +msgid "Tableau" +msgstr "Tafel" + +#: include/ext/amortis/include/am_print.php:34 +msgid "Tableau / année" +msgstr "Tafel / jaar" + +#: include/ext/amortis/include/am_print.php:34 +msgid "Tableau amortissement par année" +msgstr "Tabel afschrijving per jaar" + +#: include/database.item.php:116 +msgid "Tableau de bord" +msgstr "Dashboard" + +#: include/database.item.php:5 +msgid "Tableau lié à la comptabilité" +msgstr "Tabel met betrekking tot boekhouding" + +#: include/template/tag_list.php:11 include/template/tag_search_select.php:16 +#: include/template/tag_select.php:16 +msgid "Tag" msgstr "" -#: include/template/forecast-detail.php:8 -msgid "Formules" +#: include/card_attr.inc.php:97 +#, fuzzy +msgid "Taille" +msgstr "City" + +#: include/ajax_preference.php:120 include/ajax_preference.php:121 +msgid "Taille des pages" +msgstr "Paginaformaat" + +#: html/ajax_misc.php:195 +msgid "Taux" +msgstr "Tarief" + +#: include/database.item.php:141 include/template/ledger_detail_ach.php:122 +#: include/template/ledger_detail_ven.php:127 +#: include/template/operation_detail_ach.php:39 +#: include/template/operation_detail_ven.php:40 +msgid "Taux TVA" +msgstr "BTW%" + +#: include/ext/import_account/include/template/parameter.php:12 +msgid "Taux correspondant" +msgstr "Overeenkomstige tarief" + +#: include/ext/import_account/include/class_impacc_operation.php:149 +#, fuzzy +msgid "Taux de TVA" +msgstr "BTW%" + +#: include/card_attr.inc.php:77 +msgid "Texte" msgstr "" -#: include/template/forecast-detail.php:9 -msgid "ou QuickCode" +#: include/ext/import_account/include/template/input_file.php:28 +msgid "Texte entouré du signe" +msgstr "Tekst omgeven teken" + +#: include/ext/import_account/include/template/test_file.php:29 +#: include/ext/import_account/include/template/test_operation.php:29 +msgid "Texte entouré par" +msgstr "Tekst omgeven door" + +#: include/ajax_preference.php:81 include/ajax_preference.php:82 +msgid "Thème" +msgstr "Thema" + +#: include/class_acc_ledger.php:820 include/template/ledger_detail_fin.php:44 +#: include/template/operation_detail_fin.php:32 +#, fuzzy +msgid "Tiers" +msgstr "Archief" + +#: include/template/dashboard.php:338 include/template/detail-action.php:227 +#: include/template/action_search_result.php:50 +#: include/template/dashboard.php:191 +msgid "Titre" +msgstr "Titel" + +#: include/template/form_ledger_detail.php:128 +#: include/template/ledger_detail_ach.php:138 +#: include/template/ledger_detail_ach.php:236 +#: include/template/ledger_detail_ach.php:238 +#: include/template/ledger_detail_ven.php:136 +#: include/template/ledger_detail_ven.php:229 +#: include/template/ledger_detail_ven.php:231 +#: include/template/operation_detail_ach.php:56 +#: include/template/operation_detail_ach.php:116 +#: include/template/operation_detail_ach.php:118 +#: include/template/operation_detail_ven.php:48 +#: include/template/operation_detail_ven.php:99 +#: include/template/operation_detail_ven.php:101 +#: include/template/predf_ledger_detail.php:78 +#: include/ext/amortis/include/template/material_detail.php:121 +#: include/ext/amortis/include/template/material_display.php:95 +#: include/template/letter_prop.php:161 +#: include/template/stock_summary_table.php:41 +msgid "Total" +msgstr "Totaal" + +#: include/template/form_ledger_detail.php:78 +#: include/template/letter_prop.php:161 +#: include/template/predf_ledger_detail.php:28 +msgid "Total " +msgstr "Totaal" + +#: include/template/forecast_result.php:176 +msgid "Total Catégorie estimé" +msgstr "Totale geschatte Categorie" + +#: include/template/forecast_result.php:179 +msgid "Total Catégorie réel" +msgstr "Totaal echte Categorie" + +#: include/template/letter_prop.php:160 +msgid "Total Credit" +msgstr "Total Credit" + +#: include/template/letter_prop.php:159 +msgid "Total Debit" +msgstr "Totaal Debet" + +#: include/template/form_ledger_detail.php:71 +#: include/template/form_ledger_detail.php:124 +#: include/template/predf_ledger_detail.php:21 +#: include/template/predf_ledger_detail.php:74 +msgid "Total HTVA" +msgstr "Totaal Zonder BTW" + +#: include/class_acc_ledger_purchase.php:1539 +#: include/class_acc_ledger_sold.php:810 +#: include/template/form_ledger_detail.php:125 +#: include/template/predf_ledger_detail.php:75 +msgid "Total TVA" +msgstr "Totaal BTW" + +#: include/class_acc_ledger_purchase.php:1540 +#: include/class_acc_ledger_sold.php:811 +#: include/template/form_ledger_detail.php:126 +#: include/template/predf_ledger_detail.php:76 +msgid "Total TVAC" +msgstr "Totaal zet BTW" + +#: include/class_acc_bilan.php:175 +#, fuzzy +msgid "Total actif" +msgstr "Totaal" + +#: include/class_acc_bilan.php:211 +#, fuzzy +msgid "Total charge " +msgstr "Verkeerde rekening" + +#: include/class_fiche.php:1572 +msgid "Total crédit" +msgstr "Credit Totaal" + +#: include/class_fiche.php:1571 +msgid "Total débit" +msgstr "Debet Totaal" + +#: include/template/letter_prop.php:158 +#, fuzzy +msgid "Total lettré" +msgstr "Werkelijke totale" + +#: include/class_acc_bilan.php:192 +#, fuzzy +msgid "Total passif" +msgstr "Totaal" + +#: include/class_acc_bilan.php:226 +#, fuzzy +msgid "Total produit" +msgstr "Total Credit" + +#: include/template/forecast_result.php:84 +msgid "Total réel" +msgstr "Werkelijke totale" + +#: include/class_acc_ledger.php:1543 include/export_fiche_balance_pdf.php:153 +#: include/fiche.inc.php:357 include/template/forecast_result.php:31 +msgid "Totaux" +msgstr "Totalen" + +#: include/balance.inc.php:111 +msgid "Totaux par sous-niveaux" msgstr "" -#: include/template/ledger_detail_ach.php:114 -msgid "Prix/Un." +#: include/class_follow_up.php:1187 +msgid "Tous les Etats" +msgstr "Alle staten" + +#: include/ext/amortis/include/am_card.php:43 +msgid "Tous les biens y compris ceux qui sont complétement amortis" +msgstr "Alle woningen inclusief die volledig afgeschreven" + +#: include/class_acc_ledger_fin.php:1007 +msgid "Tous les journaux financiers" +msgstr "Financiele Alle grootboeken" + +#: include/class_follow_up.php:1218 +msgid "Tous les profiles" +msgstr "Alle profielen" + +#: include/class_follow_up.php:1180 +msgid "Tous les types" +msgstr "Alle soorten" + +#: include/menu.inc.php:129 +msgid "Tout" msgstr "" -#: include/template/ledger_detail_ven.php:109 -msgid "Prix/Un" +#: include/ext/amortis/include/template/util_generate.php:101 +#: include/template/letter_prop.php:165 +msgid "Tout Désélectionner" +msgstr "Vinkje bij alle" + +#: include/ext/amortis/include/print_fiche.inc.php:63 +msgid "Toutes les fiches en PDF" +msgstr "Alle bladen in PDF" + +#: include/category_card.inc.php:67 +msgid "Toutes les opérations" +msgstr "Alle Operaties" + +#: include/lettering.account.inc.php:84 include/lettering.card.inc.php:89 +#: include/lettering.gestion.inc.php:41 +msgid "Toutes opérations" +msgstr "Alle activiteiten" + +#: include/ext/import_account/include/class_impacc_operation.php:258 +msgid "Transfert" +msgstr "Overdracht" + +#: include/ext/import_account/include/imd_operation.inc.php:64 +#, fuzzy +msgid "Transfert des opérations" +msgstr "Operatie Doorsturen" + +#: include/ext/tva/form_periode.php:8 +#, fuzzy +msgid "Trimestre" +msgstr "OPSLAAN" + +#: include/database.item.php:119 +msgid "Trésorerie" +msgstr "Schatkist" + +#: include/template/impress_reconciliation_detail.php:22 +msgid "Tva ND" msgstr "" -#: include/template/new_mod_payment.php:7 -msgid "Pour le journal" +#: include/template/detail-action.php:95 +#: include/template/impress_cat_card.php:10 +#: include/ext/transform/include/template/listing_assujetti_representative.php:71 +#: include/template/action_search_result.php:56 include/card_attr.inc.php:96 +#: include/template/menu_detail.php:51 include/menu.inc.php:115 +msgid "Type" +msgstr "Type" + +#: include/param_pcmn.inc.php:57 +msgid "Type " +msgstr "Type" + +#: include/template/action_search.php:114 +#: include/template/document_mod_change.php:25 +msgid "Type de document" +msgstr "Soort document" + +#: include/template/new_mod_payment.php:28 +msgid "Type de fiche" +msgstr "Soort blad" + +#: include/template/param_jrn.php:78 +msgid "Type de journal" +msgstr "Soort boek van" + +#: include/class_calendar.php:85 +msgid "Tâches" +msgstr "Taken" + +#: include/ext/invoicing/include/invoice_to_zip.inc.php:76 +msgid "Télécharger le fichier" +msgstr "Download bestand" + +#: include/ext/invoicing/include/invoice_generate.inc.php:65 +#: include/ext/invoicing/include/invoicing.inc.php:87 +#, fuzzy +msgid "Télécharger toutes les factures" +msgstr "EEN van factuurmaken" + +#: include/company.inc.php:99 include/stock_cfg.inc.php:69 +#: include/ext/transform/include/template/listing_assujetti_declarant.php:64 +#: include/ext/transform/include/template/listing_assujetti_representative.php:60 +#: include/ajax_mod_stock_repo.php:71 +#: include/template/stock_summary_list.php:42 +msgid "Téléphone" +msgstr "Telefoon" + +#: include/menu.inc.php:117 +msgid "URL" msgstr "" -#: include/template/param_jrn.php:17 +#: include/class_acc_ledger.php:3410 +msgid "Un journal avec ce nom existe déjà" +msgstr "" + +#: include/template/action_search.php:133 +msgid "Uniquement actions internes" +msgstr "Alleen interne acties" + +#: include/balance.inc.php:169 +#, fuzzy +msgid "Uniquement comptes non soldés" +msgstr "Alleen interne acties" + +#: include/template/param_jrn.php:95 +msgid "Uniquement des chiffres" +msgstr "ALLEEN cijffers" + +#: include/class_document_modele.php:259 +#: include/template/modele_document.php:48 +msgid "Uniquement journaux achat" +msgstr "Alleen kopen kranten" + +#: include/class_document_modele.php:260 +#: include/template/modele_document.php:49 +msgid "Uniquement journaux vente" +msgstr "Alleen de verkoop van kranten" + +#: include/template/param_jrn.php:21 msgid "" "Uniquement pour les journaux d'Opérations Diverses, les valeurs sont " "séparées par des espaces, on peut aussi\n" "\tutiliser le * pour indiquer 'tous les postes qui en dépendent' exemple: 4*" msgstr "" -#: include/template/param_jrn.php:88 +#: html/user_login.php:96 include/audit_log.php:36 +#, fuzzy +msgid "Utilisateur" +msgstr "Users" + +#: include/ac_common.php:907 msgid "" -"Le préfixe des pièces doit être différent pour chaque journal, on peut aussi " -"utiliser l'année" +"Utilisateur n'a pas de profile, votre administrateur doit en configurer un " +"dans CFGSEC" msgstr "" +"Gebruiker heeft geen profiel, moet de beheerder een in CFGSEC configureren" -#: html/do.php:41 -msgid "Vous êtes déconnecté" -msgstr "" +#: include/class_user.php:175 +msgid "Utilisateur ou mot de passe incorrect" +msgstr "Verkeerd login van wachword" -#: include/ac_common.php:807 -msgid "Module inexistant" -msgstr "" +#: include/user_menu.php:110 include/user_menu.php:120 +msgid "Utilisateurs" +msgstr "Users" -#: include/ac_common.php:865 -msgid "Utilisateur n'a pas de profile" -msgstr "" +#: include/user_menu.php:114 include/user_menu.php:121 +msgid "Utilisateurs qui se sont connectés" +msgstr "Gebruikers die zijn aangesloten" -#: include/ac_common.php:873 -msgid "Plusieurs modules sont le module par défaut" -msgstr "" +#: include/company.inc.php:114 +msgid "Utilisation de la compta. analytique" +msgstr "Use of van analytisch Boekhouding" -#: include/menu_translate.php:4 -msgid "Grand'Livre" -msgstr "" +#: include/company.inc.php:115 +msgid "Utilisation des stocks" +msgstr "Gebruik van de voorraden" -#: include/menu_translate.php:4 -msgid "Grand livre d'plan analytique" -msgstr "" +#: include/company.inc.php:117 +msgid "Utilisation du mode strict " +msgstr "Use of van Strikt Wijze" -#: include/menu_translate.php:55 -msgid "Ecriture d'ouverture" -msgstr "" +#: include/company.inc.php:122 +msgid "Utilisez des postes comptables alphanumérique" +msgstr "Gebruik alfanumerieke boekhoudkundige posten" -#: include/menu_translate.php:56 -msgid "Historique achat" -msgstr "" +#: include/ext/amortis/index.php:54 +#, fuzzy +msgid "Utilitaire" +msgstr "Gebruiker" -#: include/menu_translate.php:57 -msgid "Courrier" -msgstr "" +#: include/ext/amortis/include/template/listing_year.php:75 +msgid "Valeur net " +msgstr "Nettowaarde" -#: include/menu_translate.php:57 -msgid "Suivi, courrier, devis" -msgstr "" +#: include/periode.inc.php:45 include/periode.inc.php:56 +msgid "Valeurs invalides" +msgstr "Ongeldige waarden" -#: include/menu_translate.php:59 -msgid "Extensions (plugins)" -msgstr "" +#: include/menu.inc.php:133 +#, fuzzy +msgid "Valeurs spéciales" +msgstr "Ongeldige waarden" -#: include/menu_translate.php:60 -msgid "Config. modèle de document" -msgstr "" +#: include/ajax_preference.php:182 include/template/action_other_action.php:60 +#: include/ext/transform/ajax_modify_intervat_assujetti.php:81 +#: include/ext/import_account/include/template/input_file.php:31 +#: include/ext/import_account/include/template/test_file.php:39 +#: include/ext/import_account/include/template/test_operation.php:39 +#: include/ext/import_account/include/template/upload_operation.php:43 +#: include/ajax_add_menu.php:142 include/ajax_get_menu_detail.php:115 +#: include/ajax_preference.php:183 +msgid "Valider" +msgstr "Bevestigen" -#: include/menu_translate.php:61 -msgid "journaux" -msgstr "" +#: include/class_calendar.php:168 include/class_calendar.php:256 +msgid "Vendredi" +msgstr "Vrijdag" -#: include/menu_translate.php:61 -msgid "Configuration des journaux" -msgstr "" +#: include/database.item.php:9 include/database.item.php:199 +msgid "Vente" +msgstr "Verkoop" -#: include/menu_translate.php:62 -msgid "Ecriture prédefinie" -msgstr "" - -#: include/menu_translate.php:62 -msgid "Gestion des opérations prédéfinifies" -msgstr "" - -#: include/menu_translate.php:63 -msgid "Menu avancé" -msgstr "" - -#: include/menu_translate.php:64 -msgid "Compta Analytique" -msgstr "" - -#: include/menu_translate.php:64 -msgid "Module comptabilité analytique" -msgstr "" - -#: include/menu_translate.php:65 -msgid "configuration de la sécurité" -msgstr "" - -#: include/menu_translate.php:66 -msgid "Plan Compt. analytique" -msgstr "" - -#: include/menu_translate.php:66 -msgid "Plan analytique" -msgstr "" - -#: include/menu_translate.php:67 -msgid "Groupe analytique" -msgstr "" - -#: include/menu_translate.php:68 -msgid "Historique opérations diverses" -msgstr "" - -#: include/menu_translate.php:69 +#: include/database.item.php:113 msgid "Vente / Recette" +msgstr "Sales / Recepten" + +#: include/class_anticipation.php:292 +msgid "Ventes" +msgstr "Verkoop" + +#: include/impress_bilan.inc.php:64 +msgid "Verification comptabilite" +msgstr "Verificatie vand van Boekhouding" + +#: html/login.php:53 html/login.php:85 +#, fuzzy +msgid "Version de base de données incorrectes, vous devez mettre à jour" +msgstr "UW datagegevens is niet van de laatste versie" + +#: include/ac_common.php:783 +msgid "Veuillez vous reconnecter" +msgstr "Gelieve opnieuw" + +#: include/database.item.php:151 include/stock_cfg.inc.php:67 +#: include/ext/transform/include/template/listing_assujetti_declarant.php:40 +#: include/ext/transform/include/template/listing_assujetti_representative.php:42 +#: include/ajax_mod_stock_repo.php:55 +#: include/template/stock_summary_list.php:40 +msgid "Ville" +msgstr "City" + +#: include/ext/amortis/raw.php:100 +#: include/ext/amortis/include/template/material_detail.php:40 +msgid "Visible" +msgstr "Zichtbaar" + +#: include/ext/amortis/include/class_am_card.php:180 +msgid "Visible Y ou N" +msgstr "Zichtbare Y of N" + +#: include/impress_rec.inc.php:79 include/balance.inc.php:175 +msgid "Visualisation" +msgstr "Visualisatie" + +#: include/database.item.php:186 +msgid "Voir les documents du suivi" +msgstr "Zie documenten controle" + +#: html/do.php:108 html/user_login.php:75 +msgid "Votre base de données n'est pas à jour" +msgstr "UW datagegevens is niet van de laatste versie" + +#: include/ext/backup_noadmin/include/template/home.php:3 +msgid "Voulez-vous avoir une copie de ce dossier" +msgstr "Heeft u een kopie van deze kwestie" + +#: include/template/detail-action.php:240 +#, fuzzy, php-format +msgid "Voulez-vous effacer ce commentaire" +msgstr "Wilt u deze opmerking wilt verwijderen" + +#: include/template/detail-action.php:240 +#, php-format +msgid "Voulez-vous effacer ce commentaire " +msgstr "Wilt u deze opmerking wilt verwijderen" + +#: include/ajax_plugin_detail.php:57 +#, fuzzy +msgid "Voulez-vous effacer ce plugin ?" +msgstr "Wilt u sterven afvegen papier?" + +#: include/template/detail-action.php:185 +#, php-format +msgid "Voulez-vous effacer cette action " +msgstr "Wilt u deze actie wilt verwijderen" + +#: include/template/detail-action.php:156 +#, php-format +msgid "Voulez-vous effacer cette opération " +msgstr "Wilt u deze transactie verwijderen" + +#: include/template/detail-action.php:426 +#, php-format +msgid "Voulez-vous effacer le document" +msgstr "Wilt u sterven afvegen papier?" + +#: include/fiche_def.inc.php:65 +msgid "Voulez-vous modifier ?" +msgstr "Wilt u veranderen" + +#: include/contact.inc.php:50 include/customer.inc.php:51 +#: include/bank.inc.php:49 +msgid "Vous ne pouvez pas enlever de fiche" +msgstr "U mag Geen blad verwijderen" + +#: html/do.php:44 +msgid "Vous êtes déconnecté" +msgstr "Wordt verbroken" + +#: include/ext/import_account/include/class_import_card.php:155 +msgid "Vous avez défini plusieurs fois la même colonne" +msgstr "Je hebt meer dan een keer in dezelfde kolom gedefinieerd" + +#: include/class_document_type.php:83 include/payment_middle.inc.php:46 +#: include/ajax_add_menu.php:72 include/ajax_get_menu_detail.php:70 +#: include/ajax_plugin_detail.php:32 +msgid "Vous confirmez" +msgstr "U bevestigt" + +#: include/class_fiche_def.php:785 include/ajax_add_menu.php:126 +#: include/template/fiche_list.php:30 include/template/stock_inv.php:31 +msgid "Vous confirmez ?" +msgstr "U bevestigt" + +#: include/forecast.inc.php:363 +#, fuzzy +msgid "Vous confirmez l\\' effacement" +msgstr "U bevestigt Het Wissen" + +#: include/action.common.inc.php:187 +#, fuzzy +msgid "Vous confirmez l\\'effacement" +msgstr "U bevestigt wissen" + +#: include/forecast.inc.php:364 +msgid "Vous confirmez le clonage " +msgstr "U bevestigt het klonen" + +#: include/category_card.inc.php:125 +msgid "Vous devez aller dans fiche et créer une catégorie pour les contacts" +msgstr "U Moet Naar het blad menu in Maken for a Niewe categorie en contacten" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:62 +#, fuzzy +msgid "Vous devez choisir au moins un taux TVA" +msgstr "U Moet EEN map kiezen" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:41 +#, fuzzy +msgid "Vous devez choisir par fichier ou par calcul" +msgstr "U Moet EEN map kiezen" + +#: include/forecast.inc.php:373 +msgid "Vous devez corriger" +msgstr "U moet corrigeren" + +#: include/ext/import_account/include/class_import_card.php:160 +msgid "Vous devez donner la colonne quick_code" +msgstr "U moet de kolom quick_code geven" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:45 +#, fuzzy +msgid "Vous devez donner la période" +msgstr "U Moet EEN kiezen categorie" + +#: include/ext/modop/modop_save.php:248 +msgid "Vous n'avez pas donné de banque" +msgstr "U hebt Geen bank opgegeven" + +#: include/class_acc_ledger_sold.php:75 +msgid "Vous n'avez pas donné de client" +msgstr "U has Geen Klant gegeven" + +#: include/class_acc_ledger_purchase.php:76 +msgid "Vous n'avez pas donné de fournisseur" +msgstr "U hebt Geen Leverancier gegeven" + +#: include/stock_cfg.inc.php:37 +msgid "Vous n'utilisez pas de gestion de stock" +msgstr "U niet gebruikt voorraadbeheer" + +#: html/backup.php:34 +#, fuzzy +msgid "Vous n\\'êtes pas administrateur" +msgstr "Je bent geen admin" + +#: include/ajax_navigator.php:37 +msgid "" +"Vous permet d'accèder rapidement au menu qui vous intéresse, utiliser le " +"filtre pour trouver plus rapidement" +msgstr "" +"Hiermee kunt u snel toegang tot het gewenste menu, gebruik de filter om snel " +"te vinden" + +#: include/cfgtags.inc.php:51 +msgid "" +"Vous pouvez utiliser ceci comme des étiquettes pour marquer des documents " +"ou \n" +" comme des dossiers pour rassembler des documents. Un document peut " +"appartenir\n" +" à plusieurs dossiers ou avoir plusieurs étiquettes." msgstr "" -#: include/menu_translate.php:69 -msgid "Menu ventes et recettes" +#: include/class_acc_ledger_sold.php:108 +msgid "Vous utilisez le mode strict la dernière operation est date du " +msgstr "U van Gebruikt Strikt-modus, datum van de laatste is Operatie" + +#: include/class_acc_ledger.php:1869 +msgid "Vous utilisez le mode strict la dernière operation est la date du " +msgstr "U van Gebruikt Strikt-modus, datum van de laatste is Operatie" + +#: include/class_acc_ledger_fin.php:116 include/class_acc_ledger_fin.php:200 +#: include/class_acc_ledger_purchase.php:111 +msgid "Vous utilisez le mode strict la dernière operation est à la date du " +msgstr "U van Gebruikt Strikt-modus, datum van de laatste is Operatie" + +#: html/user_login.php:40 +msgid "Vous utilisez un navigateur dépassé depuis près de 8 ans!" +msgstr "IE 6 wordt niet ondersteund" + +#: html/logout.php:30 +#, fuzzy +msgid "Vous êtes déconnecté" +msgstr "U hebt Geen meer Verbinding" + +#: include/database.item.php:85 +msgid "Vérification " +msgstr "Verificatie" + +#: include/database.item.php:85 +msgid "Vérification de la comptabilité" +msgstr "Accounting Audit" + +#: include/class_acc_ledger_sold.php:794 +msgid "Vérifiez Imputation Analytique" +msgstr "Controleer Imputatie Analytische" + +#: include/class_acc_ledger_purchase.php:1523 +msgid "Vérifiez imputation analytique" +msgstr "Controleer analytische toerekening" + +#: include/ext/amortis/include/template/material_detail.php:40 +msgid "Y pour oui ou N pour non" +msgstr "Y voor ja of N voor geen" + +#: include/card_attr.inc.php:80 +msgid "Zone de texte" msgstr "" -#: include/menu_translate.php:72 -msgid "Menu Financier" +#: include/class_acc_ledger_sold.php:132 +msgid "] n'existe pas" +msgstr "] Doorsturingslijst is leeg niet" + +#: include/class_acc_ledger_purchase.php:172 +#: include/class_acc_ledger_purchase.php:177 +#: include/class_acc_ledger_sold.php:163 include/class_acc_ledger_sold.php:167 +msgid "a un code tva invalide" +msgstr "een vat code ongeldig" + +#: include/class_acc_ledger_purchase.php:164 +msgid "a un montant invalide" +msgstr "has EEN verkeerde Bedrag" + +#: include/class_acc_ledger_sold.php:151 +msgid "a un montant invalide [" +msgstr "Heet EEN ongeldig Bedrag" + +#: include/class_acc_ledger_purchase.php:166 +msgid "a une quantité invalide" +msgstr "has EEN Verkeerd hoeveelheid" + +#: include/class_acc_ledger_sold.php:153 +msgid "a une quantité invalide [" +msgstr "has EEN Ongeldige hoeveelheid" + +#: include/ext/rapport_avance/ajax.php:4 +#, fuzzy +msgid "act invalide" +msgstr "Verkeerd datum" + +#: include/class_anc_grandlivre.php:136 include/class_anc_grandlivre.php:250 +#: include/class_anc_listing.php:77 +msgid "aucune donnée" +msgstr "Geen Gegevens" + +#: include/ext/coprop/index.php:46 +msgid "budgets" +msgstr "budgetten" + +#: include/class_acc_ledger_purchase.php:236 +msgid "ce code n'a pas de poste comptable, créez ce poste : [" +msgstr "" +"Deze code heeft geen financieel administratieve post, maken dit bericht: [" + +#: include/class_acc_ledger.php:3527 +#, fuzzy +msgid "choix du type de journal" +msgstr "For the boek van soort" + +#: html/do.php:109 html/user_login.php:76 +msgid "cliquez ici pour appliquer le patch" +msgstr "Click here for the laatste versie kunt verkrijgen" + +#: html/ajax_misc.php:194 +msgid "code" +msgstr "code" + +#: include/database.item.php:154 +msgid "code postal" +msgstr "postcode" + +#: include/template/impress_reconciliation_detail.php:16 +#, fuzzy +msgid "code tva" +msgstr "postcode" + +#: include/database.item.php:89 +msgid "configuration de la sécurité" +msgstr "Beveiliging" + +#: include/template/action_search.php:110 +#, php-format +msgid "contenant le mot" +msgstr "die het woord" + +#: include/database.item.php:184 +msgid "création, modification et effacement de catégorie de fiche" +msgstr "aanmaken, wijzigen en verwijderen van categorie opnemen" + +#: html/user_login.php:155 +msgid "dans NOALYSS" +msgstr "in NOALYSS" + +#: include/template/dashboard.php:112 include/template/dashboard.php:124 +#: include/template/dashboard.php:140 include/template/dashboard.php:150 +#: include/template/dashboard.php:165 include/template/dashboard.php:175 +#, fuzzy +msgid "détail" +msgstr "Detail" + +#: include/ext/transform/include/template/listing_assujetti_declarant.php:54 +#: include/ext/transform/include/template/listing_assujetti_representative.php:54 +msgid "email" +msgstr "e-mail" + +#: include/database.item.php:149 +msgid "email " +msgstr "e-mail" + +#: html/ajax_ledger.php:288 html/ajax_ledger.php:326 +#, fuzzy, php-format +msgid "enlever" +msgstr "Verwijderen" + +#: html/ajax_ledger.php:527 +#, fuzzy +msgid "entrez une date" +msgstr "In between datum" + +#: include/class_acc_bilan.php:348 include/class_acc_bilan.php:656 +#: include/class_acc_bilan.php:681 +#, fuzzy +msgid "erreur Ouverture fichier" +msgstr "Opening Schrift" + +#: html/ajax_history.php:61 html/ajax_history.php:131 +#: include/balance_card.inc.php:36 +msgid "" +"erreur aucune période par défaut, allez dans préférence pour en choisir une" +msgstr "" +"enig verzuim periode gemaakte fout, ga dan naar een voorkeur voor kiezen" + +#: include/class_acc_bilan.php:662 +msgid "erreur écriture fichier" msgstr "" -#: include/menu_translate.php:73 -msgid "Historique financier" -msgstr "" +#: include/dossier.inc.php:112 include/dossier.inc.php:366 +msgid "est accèdée, déconnectez-vous d'abord" +msgstr "is in use of, logout eerst" -#: include/menu_translate.php:74 -msgid "Menu achat" -msgstr "" +#: include/template/ledger_search.php:25 include/template/ledger_search.php:33 +#: include/template/ledger_search.php:51 +msgid "et" +msgstr "in" -#: include/menu_translate.php:75 -msgid "Menu opérations diverses" -msgstr "" +#: include/ext/import_account/include/class_import_card.php:242 +msgid "fiches sont insérées dans la catégorie" +msgstr "pluggen in de categorie ingevoegd" -#: include/menu_translate.php:76 -msgid "Opérations Diverses" -msgstr "" +#: include/card_attr.inc.php:94 +msgid "id" +msgstr "id" -#: include/menu_translate.php:76 -msgid "Nouvelle opérations diverses" -msgstr "" +#: include/dossier.inc.php:355 +msgid "inexistant" +msgstr "onbestaand" -#: include/menu_translate.php:77 -msgid "Rapprochement bancaire" -msgstr "" +#: include/database.item.php:88 +msgid "journaux" +msgstr "Kranten" -#: include/menu_translate.php:78 -msgid "Suivi administration, banque" -msgstr "" +#: include/balance.inc.php:164 +#, fuzzy +msgid "jusque" +msgstr "peuter" -#: include/menu_translate.php:79 -msgid "Nouvel extrait bancaire" -msgstr "" +#: include/dossier.inc.php:58 +msgid "le modele " +msgstr "Het model" -#: include/menu_translate.php:80 -msgid "Gestion des modèles de fiches" -msgstr "" +#: include/ext/import_account/include/class_impacc_operation.php:120 +msgid "le numéro de ligne pour dolibarr est invalide" +msgstr "lijn is ongeldig voor Dolibarr" -#: include/menu_translate.php:81 -msgid "Soldes" -msgstr "" +#: include/ext/import_account/include/imd_parameter.inc.php:38 +#: include/ext/import_account/include/imd_parameter.inc.php:65 +#, fuzzy +msgid "le taux est invalide" +msgstr "Verkeerd datum" -#: include/menu_translate.php:81 -msgid "Solde des comptes en banques, caisse..." -msgstr "" +#: include/ext/import_account/include/imd_parameter.inc.php:63 +msgid "le taux n'est pas un nombre" +msgstr "tarief is geen getal" -#: include/menu_translate.php:83 -msgid "Lettrage par Poste" -msgstr "" +#: include/ext/transform/include/template/listing_client_display.php:31 +msgid "les enregistrements incorrects ne seront inclus pas dans le fichier XML" +msgstr "onjuiste gegevens zal niet in het XML-bestand" -#: include/menu_translate.php:83 +#: include/ext/tools/raw.php:84 +#, fuzzy +msgid "lettrage" +msgstr "Belettering" + +#: include/database.item.php:99 msgid "lettrage par poste comptable" +msgstr "belettering rekenitem" + +#: include/class_anc_grandlivre.php:159 include/class_anc_listing.php:87 +msgid "libelle" +msgstr "smaad" + +#: include/ext/transform/include/template/listing_assujetti_representative.php:66 +#, fuzzy +msgid "listing id" +msgstr "lijst" + +#: html/ajax_misc.php:297 include/template/ledger_detail_fin.php:59 +#: include/ext/tools/raw.php:82 +#, fuzzy +msgid "montant" +msgstr "Bedrag" + +#: include/class_acc_ledger_purchase.php:122 +#: include/class_acc_ledger_purchase.php:193 +#: include/class_acc_ledger_sold.php:116 include/class_acc_ledger_sold.php:158 +msgid "n'a pas de poste comptable" +msgstr "has Geen rekening" + +#: include/class_acc_ledger_purchase.php:147 +#: include/class_acc_ledger_purchase.php:218 +#: include/class_acc_ledger_sold.php:139 include/class_acc_ledger_sold.php:197 +msgid "n'est pas accessible à ce journal" +msgstr "Kan niet Worden deur Gebruikt zei journaal" + +#: include/class_acc_ledger.php:1910 +msgid "n'est pas dans ce journal" +msgstr "wordt niet in this journaal" + +#: include/class_acc_ledger_purchase.php:141 +#: include/class_acc_ledger_purchase.php:212 +#: include/class_acc_ledger_sold.php:191 +msgid "n'existe pas" +msgstr "doorsturingslijst is leeg niet" + +#: include/company.inc.php:37 +msgid "non utilisé" +msgstr "niet use of" + +#: include/template/document_mod_change.php:56 +msgid "numéro actuel" +msgstr "huidige uitgave" + +#: include/database.item.php:145 +msgid "numéro de tva " +msgstr "BTW-nummer" + +#: include/ext/import_account/include/class_impacc_operation.php:252 +#, fuzzy +msgid "n° Pièce" +msgstr "Bewijs" + +#: include/ext/amortis/include/class_pdf_card.php:103 +#: include/ext/amortis/include/template/material_detail.php:59 +#: include/ext/amortis/include/template/material_display.php:45 +#: include/class_acc_ledger.php:849 include/ext/tools/raw.php:77 +#, fuzzy +msgid "n° interne" +msgstr "Interne code" + +#: include/ext/import_account/include/class_impacc_operation.php:246 +msgid "n° ligne" +msgstr "Geen online" + +#: include/class_fiche.php:1282 include/template/impress_reconciliation.php:16 +msgid "n° pièce" +msgstr "Geen ruimte" + +#: include/company.inc.php:35 +msgid "obligatoire" +msgstr "Verplicht" + +#: include/ext/importbank/include/class_bank_item.php:63 +msgid "op. concernée" +msgstr "betreft Operatie" + +#: include/company.inc.php:36 +msgid "optionnel" +msgstr "Optie" + +#: include/ext/amortis/ajax.php:32 +#, fuzzy +msgid "opération non trouvée" +msgstr "Operatie opgeslagen" + +#: include/template/forecast-detail.php:13 +msgid "ou QuickCode" +msgstr "of QuickCode" + +#: include/class_acc_ledger_purchase.php:1638 +msgid "ou générer un document" +msgstr "Maak van een document" + +#: include/class_acc_ledger_sold.php:904 +msgid "ou générer une facture" +msgstr "Creeren een faktuur" + +#: include/fiche_def.inc.php:68 +#, fuzzy +msgid "par exemple ne pas changer Client par fournisseur" +msgstr "Bijvoorbeeld niet deur Klant Leverancier" + +#: include/dossier.inc.php:254 +msgid "pas de modèle disponible" +msgstr "Beschikbaar Geen model" + +#: include/database.item.php:147 +msgid "pays " +msgstr "land" + +#: include/ext/tools/raw.php:78 +msgid "piece" msgstr "" -#: include/menu_translate.php:84 -msgid "Balance par catégorie de fiche" +#: include/ext/tools/raw.php:79 +#, fuzzy +msgid "poste" +msgstr "Rekening" + +#: include/class_acc_ledger_purchase.php:1378 +#: include/class_acc_ledger_sold.php:672 +msgid "prix" +msgstr "Prijs" + +#: include/template/detail-action.php:306 +msgid "prix unitaire" +msgstr "Eenheid Prijs" + +#: include/template/form_ledger_detail.php:76 +#: include/template/predf_ledger_detail.php:26 +msgid "prix/unité " +msgstr "prijs / eenheid" + +#: include/template/form_ledger_detail.php:69 +#: include/template/predf_ledger_detail.php:19 +msgid "prix/unité htva" +msgstr "Eenheid Prijs Zonder BTW" + +#: include/ext/transform/include/intervat_listing_assujetti_step_2.inc.php:264 +#, php-format +msgid "période %s entre [%s] et [%s]" +msgstr "periode tussen% s [% s] en [% s]" + +#: include/ext/amortis/raw.php:100 +msgid "qcode" +msgstr "Qcode" + +#: include/class_acc_ledger_purchase.php:1379 +#: include/class_acc_ledger_purchase.php:1389 +#: include/class_acc_ledger_sold.php:673 +#: include/template/detail-action.php:307 +#: include/template/form_ledger_detail.php:70 +#: include/template/form_ledger_detail.php:77 +#: include/template/predf_ledger_detail.php:20 +#: include/template/predf_ledger_detail.php:27 +msgid "quantité" +msgstr "hoeveelheid" + +#: include/ext/amortis/index.php:53 +msgid "rapport et tableaux sur les biens amortissables" +msgstr "Verslag en tabellen op te schrijven activa" + +#: include/adm.inc.php:93 include/bank.inc.php:89 include/contact.inc.php:93 +#: include/customer.inc.php:88 include/manager.inc.php:90 +#: include/supplier.inc.php:93 include/template/action_search.php:138 +msgid "recherche" +msgstr "Zoeken" + +#: include/export_fiche_balance_csv.php:140 include/fiche.inc.php:438 +msgid "ref" +msgstr "ref" + +#: include/database.item.php:14 +msgid "saut de ligne" +msgstr "newline" + +#: include/fiche_def.inc.php:69 +msgid "" +"sinon le programme fonctionnera mal, utiliser uniquement des chiffres pour " +"la classe de base ou rien" +msgstr "" +"ZAL anders programmeren SLECHT functionneren, use of Enkele cijffers for the " +"rekening Grondslag van niets" + +#: include/ajax_navigator.php:106 +msgid "sur le wiki" +msgstr "op de wiki" + +#: include/ext/import_account/include/class_impacc_operation.php:256 +#, fuzzy +msgid "taux TVA" +msgstr "BTW%" + +#: include/ext/tools/raw.php:81 +msgid "texte" +msgstr "Text" + +#: include/class_acc_ledger.php:187 +msgid "this->jr_id is not set ou opération inconnue" msgstr "" -#: include/menu_translate.php:85 -msgid "Suivi client" -msgstr "" +#: include/class_acc_ledger.php:665 +#, fuzzy +msgid "tiers" +msgstr "Archief" -#: include/menu_translate.php:86 -msgid "Gestion catégorie de fiche" -msgstr "" +#: include/template/form_ledger_detail.php:73 +#: include/template/predf_ledger_detail.php:23 +msgid "tot.tva" +msgstr "tot btw" -#: include/menu_translate.php:87 -msgid "Config. catégorie de documents" -msgstr "" +#: include/ext/amortis/include/class_pdf_card.php:133 +msgid "toutes_les_fiches.pdf" +msgstr "toutes_les_fiches.pdf" -#: include/menu_translate.php:88 -msgid "Historique vente" -msgstr "" +#: include/class_acc_ledger_purchase.php:1383 +#: include/class_acc_ledger_sold.php:677 +#: include/template/form_ledger_detail.php:72 +#: include/template/predf_ledger_detail.php:22 +msgid "tva" +msgstr "btw" -#: include/menu_translate.php:88 -msgid "Historique des ventes" -msgstr "" +#: html/ajax_misc.php:250 html/ajax_misc.php:255 +msgid "tva inconnue" +msgstr "onbekend btw" -#: include/menu_translate.php:89 -msgid "Lettrage par Fiche" -msgstr "" +#: include/template/form_ledger_detail.php:74 +#: include/template/predf_ledger_detail.php:24 +msgid "tvac" +msgstr "zet btw" -#: include/menu_translate.php:90 -msgid "Config. du plan comptable" -msgstr "" +#: include/class_acc_account.php:136 +#, fuzzy +msgid "type de compte incorrect " +msgstr "Verkeerd periode van datum" -#: include/menu_translate.php:93 -msgid "Comptabilité" -msgstr "" +#: include/database.item.php:148 +msgid "téléphone " +msgstr "telefoon" -#: include/menu_translate.php:93 -msgid "Module comptabilité" -msgstr "" +#: include/template/ledger_detail_bottom.php:117 +msgid "verifie CA" +msgstr "Controlleren Analytischrekening" -#: include/menu_translate.php:94 -msgid "Module gestion" -msgstr "" +#: include/class_acc_ledger.php:1546 +msgid "verifie Imputation Analytique" +msgstr "Toerekening geverifieerd Analytische" -#: include/menu_translate.php:95 -msgid "Module paramètre" -msgstr "" +#: include/ajax_get_profile.php:74 include/ajax_get_profile.php:82 +#, fuzzy +msgid "vous confirmez" +msgstr "U bevestigt" -#: include/menu_translate.php:96 -msgid "Impression historique" -msgstr "" +#: include/class_acc_ledger.php:1870 +msgid "vous ne pouvez pas encoder à une date antérieure" +msgstr "Mag Niet voor this U gegeven coderen" -#: include/menu_translate.php:97 -msgid "Impression des rapprochements" -msgstr "" - -#: include/menu_translate.php:98 -msgid "Impression du détail d'un poste comptable" -msgstr "" - -#: include/menu_translate.php:108 -msgid "Export définition d'un raport" -msgstr "" - -#: include/menu_translate.php:109 -msgid "PCMN" -msgstr "" - -#: include/menu_translate.php:109 -msgid "Outils plan comptable" -msgstr "" - -#: include/menu_translate.php:110 -msgid "Module de TVA" -msgstr "" - -#: include/menu_translate.php:110 -msgid "Cette extension permet de faire les listings et declarations TVA" -msgstr "" - -#: include/menu_translate.php:111 -msgid "Balance Analytique/comptabilité" -msgstr "" - -#: include/menu_translate.php:111 -msgid "Lien entre comptabilité et Comptabilité analytique" -msgstr "" - -#: include/menu_translate.php:112 -msgid "test" -msgstr "" diff --git a/html/login.php b/html/login.php index 34d329d30..3940daa7b 100644 --- a/html/login.php +++ b/html/login.php @@ -50,7 +50,7 @@ if ( isset ($_POST["p_user"] ) ) if ($version != DBVERSIONREPO) { - echo alert('Version de base de données incorrectes, vous devez mettre à jour'); + echo alert(_('Version de base de données incorrectes, vous devez mettre à jour')); echo ""; exit(); } @@ -64,7 +64,7 @@ if ( isset ($_POST["p_user"] ) ) $valid = $img->check($_POST['captcha_code']); if ( $valid == false ) { - echo alert('Code invalide'); + echo alert(_('Code invalide')); echo ""; exit(); } @@ -82,7 +82,7 @@ else if ( $version != DBVERSIONREPO) { - echo alert('Version de base de données incorrectes, vous devez mettre à jour'); + echo alert(_('Version de base de données incorrectes, vous devez mettre à jour')); echo ""; exit(); diff --git a/html/logout.php b/html/logout.php index 156396098..de566e04e 100644 --- a/html/logout.php +++ b/html/logout.php @@ -27,7 +27,7 @@ require_once('class_database.php'); html_page_start("classic"); session_unset(); -echo '

    Vous êtes déconnecté

    '; +echo '

    '._('Vous êtes déconnecté').'

    '; echo ''; html_page_stop(); diff --git a/html/popup.php b/html/popup.php index 10a4ee675..109d280b5 100644 --- a/html/popup.php +++ b/html/popup.php @@ -51,8 +51,8 @@ if ( basename($_GET['ajax']) == 'ajax_history.php' ) $href_pdf="export.php?".$href.'&f_id='.$_GET['f_id'].'&ople=0&type=poste&'.$from_periode.'&'.$to_periode."&act=PDF:fichedetail"; } - echo 'Export CSV'; - echo 'Export PDF'; + echo ''._("Export CSV").''; + echo ''._("Export PDF").''; } echo '
'; echo HtmlInput::hidden('inpopup',1); diff --git a/html/recherche.php b/html/recherche.php index 0bb4c2126..3941adc9e 100644 --- a/html/recherche.php +++ b/html/recherche.php @@ -50,7 +50,7 @@ if ($act =='P') } if ( $act=='X') { - alert('Accès interdit'); + alert(_('Accès interdit')); exit(); } // display a search box diff --git a/html/user_login.php b/html/user_login.php index ea77f1610..12dec1af3 100644 --- a/html/user_login.php +++ b/html/user_login.php @@ -93,7 +93,7 @@ if ( $User->Admin() == 1) } include_once("user_menu.php"); -$priv=($User->admin==1)?"Administrateur":"Utilisateur"; +$priv=($User->admin==1)?_("Administrateur"):_("Utilisateur"); load_all_script(); if ( isset ($_POST['set_preference'])) { //// Save value @@ -146,13 +146,13 @@ if ( $User->Admin() == 1 ) $result.=" Administration "; } $result.=''; -$result.='Préférence'; +$result.=''._('Préférence').''; $result.= ''; $result.=''._('Deconnexion').''; $result.=""; $result.=""; -echo '

'._('Bienvenue ').$User->first_name.' '.$User->name.' '._("dans NOALYSS")."

"; +echo '

'._('Bienvenue')." ".$User->first_name.' '.$User->name.' '._("dans NOALYSS")."

"; echo '
'.$result.'
'; echo '
'; ?> diff --git a/html/user_pref.php b/html/user_pref.php index 1482956be..d0c7f6500 100644 --- a/html/user_pref.php +++ b/html/user_pref.php @@ -84,7 +84,7 @@ if ( isset ($_POST['val']) ) // comta style include_once ("user_menu.php"); -echo "

Préférences

"; +echo "

"._('Préférence')."

"; require_once("pref.inc.php"); html_page_stop(); diff --git a/include/ac_common.php b/include/ac_common.php index ed3c4682a..b5dc78424 100644 --- a/include/ac_common.php +++ b/include/ac_common.php @@ -605,9 +605,9 @@ function sql_filter_per($p_cn, $p_from, $p_to, $p_form='p_id', $p_field='jr_tech $a_start = $pPeriode->get_date_limit($p_from); $a_end = $pPeriode->get_date_limit($p_to); if ($a_start == null || $a_end == null) - throw new Exception(__FILE__ . __LINE__ . 'Attention periode ' . - ' non trouvee periode p_from=' . $p_from . - 'p_to_periode = ' . $p_to); + throw new Exception(__FILE__ . __LINE__ . sprintf(_('Attention periode + non trouvee periode p_from= %s p_to_periode = %s'), $p_from , + $p_to)); $p_from = $a_start['p_start']; @@ -658,7 +658,7 @@ function set_language() { $g_lang = 'fr_FR.utf8'; $dir = setlocale(LC_MESSAGES, $g_lang); - echo '' . $_SESSION['g_lang'] . ' domaine non supporté'; + // echo '' . $_SESSION['g_lang'] . ' domaine non supporté'; } bindtextdomain('messages', './lang'); textdomain('messages'); @@ -782,7 +782,7 @@ function ajax_disconnected($div) $html.='
'; $html.=h2(_('Données non disponibles'), 'class="title" style="width:auto"'); $html.=h2(_('Veuillez vous reconnecter'), 'class="error"'); - $html.=alert("Déconnecté", true); + $html.=alert(_("Déconnecté"), true); $html = escape_xml($html); header('Content-type: text/xml; charset=UTF-8'); @@ -1059,11 +1059,11 @@ function display_dashboard_operation($p_array,$p_title,$p_div) 0) :?> - - - + + + @@ -1089,7 +1089,7 @@ function display_dashboard_operation($p_array,$p_title,$p_div) ?>
DateCode InterneDescription - Montant +
-

Aucune donnée

+

diff --git a/include/action.common.inc.php b/include/action.common.inc.php index d8cd9377f..e2b1b4056 100644 --- a/include/action.common.inc.php +++ b/include/action.common.inc.php @@ -122,7 +122,7 @@ if ($sub_action == "update") if ($g_user->can_write_action($act2->ag_id) == false ) { echo '
'; - echo '

Cette action ne vous est pas autorisée Contactez votre responsable

'; + echo '

'._('Cette action ne vous est pas autorisée Contactez votre responsable').'

'; echo '
'; exit(); } @@ -274,11 +274,11 @@ if ($sub_action == "save_action_st2") // insert into action_gestion echo $act->save(); $url = "?$base&sa=detail&ag_id=" . $act->ag_id . '&' . dossier::get(); - echo '

' . hb('Action Sauvée : ' . $act->ag_ref) . '

'; + echo '

' . hb(_('Action Sauvée').' : ' . $act->ag_ref) . '

'; Follow_Up::show_action_list($cn,$base); $url = "?$base&sa=detail&ag_id=" . $act->ag_id . '&' . dossier::get(); - echo '

' . hb('Action Sauvée : ' . $act->ag_ref) . '

'; + echo '

' . hb(_('Action Sauvée').' : ' . $act->ag_ref) . '

'; } ?> diff --git a/include/ajax_add_menu.php b/include/ajax_add_menu.php index 8a71159ab..5b22fc2bb 100644 --- a/include/ajax_add_menu.php +++ b/include/ajax_add_menu.php @@ -67,9 +67,9 @@ $me_code_dep->value=$ame_code_dep; $p_type=new ISelect('p_type'); $p_type->value=$atype; $pm_default=new ICheckBox('pm_default'); -echo HtmlInput::title_box("Nouveau menu", $ctl); +echo HtmlInput::title_box(_("Nouveau menu"), $ctl); ?> - + @@ -116,14 +116,14 @@ select me_code,me_code||' '||coalesce(me_menu,'')||' '||coalesce(me_description, $me_code=new ISelect('me_code'); $me_code->value=$ame_code; - echo HtmlInput::title_box("Nouveau menu", $ctl); + echo HtmlInput::title_box(_("Nouveau menu"), $ctl); if (count($ame_code)==0) { - echo h2("Aucune impression disponible à ajouter",'class="notice"'); + echo h2(_("Aucune impression disponible à ajouter"),'class="notice"'); return; } ?> - + @@ -139,7 +139,7 @@ $me_code->value=$ame_code; '; } diff --git a/include/ajax_anc_search.php b/include/ajax_anc_search.php index 2a32b57f5..d659e22d7 100644 --- a/include/ajax_anc_search.php +++ b/include/ajax_anc_search.php @@ -38,7 +38,7 @@ require_once ('class_anc_account.php'); require_once ('class_anc_plan.php'); require_once('function_javascript.php'); -echo HtmlInput::title_box("Recherche activité", $ctl); +echo HtmlInput::title_box(_("Recherche activité"), $ctl); //------------- FORM ---------------------------------- echo ''; @@ -62,7 +62,7 @@ if ( isset($_REQUEST['go'])) $plan=new Anc_Plan($cn,$_REQUEST['c2']); $plan->pa_id=$_REQUEST['c2']; if ( $plan->exist()==false) - exit("Ce plan n'existe pas"); + exit(_("Ce plan n'existe pas")); $sql="select po_name , po_description from poste_analytique ". "where pa_id=$1 and ". @@ -71,12 +71,12 @@ if ( isset($_REQUEST['go'])) if (empty($array) == true) { - echo "Désolé aucun poste trouvé"; + echo _("Aucun poste trouvé"); return; } $button=new IButton(); - $button->name="Choix"; - $button->label="Choix"; + $button->name=_("Choix"); + $button->label=_("Choix"); echo ''; foreach ($array as $line) diff --git a/include/ajax_bookmark.php b/include/ajax_bookmark.php index 18c534110..c67d7eba9 100644 --- a/include/ajax_bookmark.php +++ b/include/ajax_bookmark.php @@ -25,7 +25,7 @@ * @brief user's bookmark */ if ( ! defined ('ALLOWED')) die('Appel direct ne sont pas permis'); -echo HtmlInput::title_box("Favoris", "bookmark_div"); +echo HtmlInput::title_box(_("Favoris"), "bookmark_div"); if (! isset($_GET['ac'])) { /* * find default module @@ -43,7 +43,7 @@ if (isset($_GET['bookmark_add'])){ $cn->exec_sql("insert into bookmark(b_action,login) values($1,$2)", array($_GET['ac'],$g_user->login)); } else { - $js="error_message('Ce favori a déjà été ajouté');"; + $js="error_message('"._("Ce favori a déjà été ajouté")."');"; echo create_script($js); } } @@ -100,17 +100,17 @@ $url="do.php?gDossier=".Dossier::id()."&ac=";
0) : - echo HtmlInput::submit("bookmark_delete", "Supprimez favoris sélectionnés","","smallbutton"); + echo HtmlInput::submit("bookmark_delete",_("Supprimez favoris sélectionnés"),"","smallbutton"); endif; ?>

- +

diff --git a/include/ajax_boxcard_search.php b/include/ajax_boxcard_search.php index 632883d82..207391113 100644 --- a/include/ajax_boxcard_search.php +++ b/include/ajax_boxcard_search.php @@ -36,39 +36,39 @@ $sql=" order by 2 "; $array=$cn->get_array($sql,array($_GET['card'])); -echo HtmlInput::title_box("Résultat recherche", "boxsearch_card_div"); +echo HtmlInput::title_box(_("Résultat recherche"), "boxsearch_card_div"); $max=(count($array)>MAX_CARD_SEARCH)?MAX_CARD_SEARCH:count($array); ?> MAX_CARD_SEARCH ): ?> -

Résultat limité à , nombre de fiches trouvées :

+

-Filtre + : -

Aucun résultat

+

diff --git a/include/ajax_calendar_zoom.php b/include/ajax_calendar_zoom.php index 2786c450c..4d1e7dd6b 100644 --- a/include/ajax_calendar_zoom.php +++ b/include/ajax_calendar_zoom.php @@ -20,7 +20,7 @@ if ( !defined ('ALLOWED') ) die('Appel direct ne sont pas permis'); require_once 'class_calendar.php'; ob_start(); -echo HtmlInput::title_box("Calendrier", "calendar_zoom_div"); +echo HtmlInput::title_box(_("Calendrier"), "calendar_zoom_div"); $cal=new Calendar(); $cal->set_periode($_GET['in']); echo $cal->zoom(); diff --git a/include/ajax_fiche_def_detail.php b/include/ajax_fiche_def_detail.php index d4bd7eb6c..0ebe9095e 100644 --- a/include/ajax_fiche_def_detail.php +++ b/include/ajax_fiche_def_detail.php @@ -37,7 +37,7 @@ if ( $_GET['id'] > 0 ) { echo $fd->input_detail(); - echo HtmlInput::button("retour_b", "Retour à la liste", "onclick=\"$('detail_category_div').hide();$('list_cat_div').show()\""); + echo HtmlInput::button("retour_b", _("Retour à la liste"), "onclick=\"$('detail_category_div').hide();$('list_cat_div').show()\""); } else { diff --git a/include/ajax_get_menu_detail.php b/include/ajax_get_menu_detail.php index fb3c0cde7..c3e9100fd 100644 --- a/include/ajax_get_menu_detail.php +++ b/include/ajax_get_menu_detail.php @@ -67,34 +67,34 @@ $pm_default=new ICheckBox('pm_default','1'); $pm_default->set_check($array[0]['pm_default']); ?> - + ?')">
- Quick Code + Nom  ▾ - Categorie + - Description + - Numéro TVA + - Poste comptable +
- + - + - + - +
Code input()?>
Dépendant de input()?>
Ordre d'apparition input()?>
Menu par défaut input()?>

-Cochez cette case si vous souhaitez effacer ce menu + input(); @@ -104,7 +104,7 @@ echo $delete->input(); if ($array[0]['p_type_display']!='P'): ?>

-Cochez cette case si vous souhaitez effacer ce menu ainsi que ceux qui en dépendent + input(); @@ -112,7 +112,7 @@ echo $delete->input();

'; diff --git a/include/ajax_get_profile.php b/include/ajax_get_profile.php index 0b6630440..bc06030a0 100644 --- a/include/ajax_get_profile.php +++ b/include/ajax_get_profile.php @@ -67,11 +67,11 @@ echo ''; echo HtmlInput::hidden('tab','profile_gen_div'); echo HtmlInput::hidden('p_id',$profile->p_id); require_once("template/profile.php"); -echo HtmlInput::submit("save_name","Modifier"); +echo HtmlInput::submit("save_name",_("Modifier")); echo ''; if ($profile->p_id > 0) { - echo '
'; + echo ''; echo 'Vous pouvez aussi copier ce profil et puis le corriger'; @@ -79,12 +79,12 @@ if ($profile->p_id > 0) echo HtmlInput::submit("clone", "Copier"); echo '
'; - echo '
'; + echo ''; echo 'Effacer ce profil'; echo HtmlInput::hidden('p_id', $profile->p_id); - echo HtmlInput::submit("delete_profil", "Effacer ce profil"); + echo HtmlInput::submit("delete_profil", _("Effacer ce profil")); echo '
'; echo '
'; echo ''; echo ''; diff --git a/include/ajax_mod_predf_op.php b/include/ajax_mod_predf_op.php index d5f5c9f01..09ff48878 100644 --- a/include/ajax_mod_predf_op.php +++ b/include/ajax_mod_predf_op.php @@ -41,7 +41,7 @@ $opd_description=new ITextarea('od_description'); $opd_description->style=' class="itextarea" style="width:30em;height:4em;vertical-align:top"'; $opd_description->value=$op->od_description; echo '

'; -echo "Description (max 50 car.)"; +echo _("Description (max 50 car.)"); echo $opd_description->input(); echo '

'; echo dossier::hidden() . HtmlInput::hidden('od_id', $_GET['id']); diff --git a/include/ajax_mod_stock_repo.php b/include/ajax_mod_stock_repo.php index 0ff7597f4..c9dc1a640 100644 --- a/include/ajax_mod_stock_repo.php +++ b/include/ajax_mod_stock_repo.php @@ -36,7 +36,7 @@ $st=new Stock_Sql($_GET['r_id']);
- Nom + r_name); echo $name->input();?> @@ -44,7 +44,7 @@ $st=new Stock_Sql($_GET['r_id']);
- Adresse + r_adress); echo $name->input();?> @@ -52,7 +52,7 @@ $st=new Stock_Sql($_GET['r_id']);
- Ville + r_city); echo $name->input();?> @@ -60,7 +60,7 @@ $st=new Stock_Sql($_GET['r_id']);
- Pays + r_country); echo $name->input();?> @@ -68,7 +68,7 @@ $st=new Stock_Sql($_GET['r_id']);
- Téléphone + r_phone); echo $name->input();?> @@ -76,5 +76,5 @@ $st=new Stock_Sql($_GET['r_id']);
- + \ No newline at end of file diff --git a/include/ajax_navigator.php b/include/ajax_navigator.php index 223e6e387..1b0c58687 100644 --- a/include/ajax_navigator.php +++ b/include/ajax_navigator.php @@ -34,7 +34,7 @@ $a_menu=$cn->get_array($sql,array($_SESSION['g_user'])); ?>

- Vous permet d'accèder rapidement au menu qui vous intéresse, utiliser le filtre pour trouver plus rapidement +

Filtre : get_array($sql,array($_SESSION['g_user']));  ▾ - Chemin + - Description complète + - Aide sur le wiki + - - sur le wiki : + : diff --git a/include/ajax_plugin_detail.php b/include/ajax_plugin_detail.php index 60ca42e80..c60aa5f6e 100644 --- a/include/ajax_plugin_detail.php +++ b/include/ajax_plugin_detail.php @@ -26,36 +26,36 @@ * */ if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis'); -$msg=($new==1)?"Nouvelle extension":"Modification ".$me_menu->value; +$msg=($new==1)?_("Nouvelle extension"):_("Modification"). " ".$me_menu->value; echo HtmlInput::title_box($msg, $ctl); ?> -

+')"> - + - + - + - +
Label input();?>
Code input();?>
Description input();?>
Fichier input();?>
Voulez-vous effacer ce plugin ? ".$delete->input()."

"; - echo HtmlInput::submit("mod_plugin","Modifier ce plugin"); + echo "

"._("Voulez-vous effacer ce plugin ?")." ".$delete->input()."

"; + echo HtmlInput::submit("mod_plugin",_("Modifier ce plugin")); } ?> diff --git a/include/ajax_preference.php b/include/ajax_preference.php index 19438f523..3e1beabf6 100644 --- a/include/ajax_preference.php +++ b/include/ajax_preference.php @@ -30,8 +30,9 @@ require_once('class_acc_report.php'); require_once('class_periode.php'); echo HtmlInput::title_box(_('Préférence'), 'preference_div'); echo '
'; -echo '

Si vous validez, la page sera rechargée et vous pourriez perdre' -. ' ce que vous faisiez

'; +echo '

'; +echo _("Si vous validez, la page sera rechargée et vous pourriez perdre ce que vous faisiez"); +echo '

'; //---------------------------------------------------------------------- // global $g_user; diff --git a/include/ajax_tag_detail.php b/include/ajax_tag_detail.php index ed9d77e48..2e5726c89 100644 --- a/include/ajax_tag_detail.php +++ b/include/ajax_tag_detail.php @@ -12,7 +12,7 @@ ob_start(); $tag=new Tag($cn); $tag->data->t_id=$_GET['tag']; $tag->data->load(); -echo HtmlInput::title_box("Détail du dossier / tag", "tag_div"); +echo HtmlInput::title_box(_("Détail du dossier ou tag"), "tag_div"); ?> select(); //------------------- Propose to add a tag $js=sprintf("onclick=\"show_tag('%s','%s','%s','j')\"",Dossier::id(),'','-1'); -echo HtmlInput::button("tag_add", "Ajout d'un tag", $js); +echo HtmlInput::button("tag_add", _("Ajout d'un tag"), $js); $response= ob_get_clean(); $html=escape_xml($response); diff --git a/include/ajax_update_predef.php b/include/ajax_update_predef.php index 42cb0ced4..7b68b9ad8 100644 --- a/include/ajax_update_predef.php +++ b/include/ajax_update_predef.php @@ -51,7 +51,7 @@ $op->set('direct',$d); $url=http_build_query(array('action'=>'use_opd','p_jrn_predef'=>$l,'ac'=>$_GET['ac'],'gDossier'=>dossier::id())); $html=""; -$html.=HtmlInput::title_box("Modèle d'opérations ", 'modele_op_div', 'hide'); +$html.=HtmlInput::title_box(_("Modèle d'opérations"), 'modele_op_div', 'hide'); $html.=$op->show_button('do.php?'.$url); $html=escape_xml($html); diff --git a/include/ajax_view_mod_stock.php b/include/ajax_view_mod_stock.php index 62afd938a..e3eb69859 100644 --- a/include/ajax_view_mod_stock.php +++ b/include/ajax_view_mod_stock.php @@ -30,7 +30,7 @@ if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis'); $st=new Stock_Goods($cn); $array=$cn->get_array("select * from stock_goods where c_id=$1",array($_GET['c_id'])); -echo HtmlInput::title_box("Détail changement",$_GET['ctl']); +echo HtmlInput::title_box(_("Détail changement"),$_GET['ctl']); $p_array=array(); $p_array['p_date']=$cn->get_value("select to_char(c_date,'DD.MM.YYYY') from stock_change where c_id=$1",array($_GET['c_id'])); $p_array['p_motif']=$cn->get_value("select c_comment from stock_change where c_id=$1",array($_GET['c_id'])); @@ -49,10 +49,10 @@ echo $st->input($p_array,true);

label= "Cochez pour confirmer effacement "; + $ck->label= _("Cochez pour confirmer effacement"); echo $ck->input();?>

- + diff --git a/include/anc_acc_balance.inc.php b/include/anc_acc_balance.inc.php index 6d863c53f..a68211d0f 100644 --- a/include/anc_acc_balance.inc.php +++ b/include/anc_acc_balance.inc.php @@ -8,7 +8,7 @@ $tab = new Anc_Acc_List($cn); $tab->get_request(); echo '
'; echo $tab->display_form(); -echo '

' . HtmlInput::submit('Recherche', 'Recherche') . '

'; +echo '

' . HtmlInput::submit('Recherche', _('Recherche')) . '

'; echo '
'; if (isset($_GET['result'])) diff --git a/include/anc_acc_table.inc.php b/include/anc_acc_table.inc.php index 3acb3182b..6688d0ccb 100644 --- a/include/anc_acc_table.inc.php +++ b/include/anc_acc_table.inc.php @@ -8,7 +8,7 @@ $tab = new Anc_Table($cn); $tab->get_request(); echo '
'; echo $tab->display_form(); -echo '

' . HtmlInput::submit('Recherche', 'Recherche') . '

'; +echo '

' . HtmlInput::submit('Recherche', _('Recherche')) . '

'; echo '
'; if (isset($_GET['result'])) diff --git a/include/anc_great_ledger.inc.php b/include/anc_great_ledger.inc.php index 68e385656..a21335589 100644 --- a/include/anc_great_ledger.inc.php +++ b/include/anc_great_ledger.inc.php @@ -8,7 +8,7 @@ $gl = new Anc_GrandLivre($cn); $gl->get_request(); echo '
'; echo $gl->display_form(); -echo '

' . HtmlInput::submit('Recherche', 'Recherche') . '

'; +echo '

' . HtmlInput::submit('Recherche', _('Recherche')) . '

'; echo '
'; if (isset($_GET['result'])) { diff --git a/include/anc_group.inc.php b/include/anc_group.inc.php index 64641c98c..833fd42a2 100644 --- a/include/anc_group.inc.php +++ b/include/anc_group.inc.php @@ -59,7 +59,7 @@ echo '
'; echo '
'; echo dossier::hidden(); echo ''; -echo ''; +echo ''; foreach ($array as $idx=>$m) { echo ''; @@ -78,13 +78,13 @@ $wPa_id->value=$val_pa_id; echo ""; echo ""; echo ""; ; echo '
Code Plan Description
'._("Code")." "._("Plan")." "._("Description").'
".$w->input()."".$wPa_id->input("pa_id")."".$wDesc->input("ga_description"). -HtmlInput::submit('add','Ajouter'). +HtmlInput::submit('add',_('Ajouter')). "
'; echo "
"; -echo HtmlInput::submit('remove','Effacer'); +echo HtmlInput::submit('remove',_('Effacer')); echo '
'; diff --git a/include/anc_group_balance.inc.php b/include/anc_group_balance.inc.php index fced32d47..f3281121a 100644 --- a/include/anc_group_balance.inc.php +++ b/include/anc_group_balance.inc.php @@ -8,7 +8,7 @@ $gr = new Anc_Group($cn); $gr->get_request(); echo ''; echo $gr->display_form(); -echo '

' . HtmlInput::submit('Recherche', 'Recherche') . '

'; +echo '

' . HtmlInput::submit('Recherche', _('Recherche')) . '

'; echo ''; if (isset($_GET['result'])) { diff --git a/include/anc_od.inc.php b/include/anc_od.inc.php index 7441d57b6..592783fe1 100644 --- a/include/anc_od.inc.php +++ b/include/anc_od.inc.php @@ -145,10 +145,10 @@ if ( isset($_GET['new'])) echo $a->form(); echo HtmlInput::submit("save","Sauver"); echo ''; - echo '
- Débit = - Crédit = - Difference = + echo '
'; + echo _('Débit').' = '; + echo _('Crédit').' = '; + echo _('Difference').' =
'; diff --git a/include/anc_pa.inc.php b/include/anc_pa.inc.php index 32fff0515..f045a2910 100644 --- a/include/anc_pa.inc.php +++ b/include/anc_pa.inc.php @@ -44,12 +44,12 @@ if ( isset($_REQUEST['sa'])) if ( $new->isAppend() == true) { $ret.= '
'; - $ret.= '

Nouveau plan

'; + $ret.= '

'._("Nouveau plan").'

'; $ret.= '
'; $ret.=dossier::hidden(); $ret.= $new->form(); $ret.= HtmlInput::hidden("sa","pa_write"); - $ret.=HtmlInput::submit("submit","Enregistre"); + $ret.=HtmlInput::submit("submit",_("Enregistre")); $ret.= '
'; $ret.= '
'; } @@ -57,7 +57,7 @@ if ( isset($_REQUEST['sa'])) { $ret.= '
'. '

'. - "Maximum de plan analytique est atteint". + _("Maximum de plan analytique est atteint"). "

"; } } @@ -70,7 +70,7 @@ if ( isset($_REQUEST['sa'])) if ( $new->isAppend() == false) { $ret.= '

'. - "Maximum de plan analytique est atteint". + _("Maximum de plan analytique est atteint"). "

"; } else @@ -90,14 +90,14 @@ if ( isset($_REQUEST['sa'])) $new->get(); $ret.= '
'; - $ret.= '

Mise à jour

'; + $ret.= '

'._("Mise à jour").'

'; $ret.= '
'; $ret.=dossier::hidden(); $ret.= $new->form(); $ret.= $wSa; - $ret.=HtmlInput::submit("submit","Enregistre"); - $ret.=HtmlInput::button_anchor('Efface',"?ac=".$_REQUEST['ac']."&pa_id=".$_GET['pa_id']."&sa=pa_delete&$str_dossier",'Efface','onclick="return confirm(\'Effacer ?\')"'); + $ret.=HtmlInput::submit("submit",_("Enregistre")); + $ret.=HtmlInput::button_anchor(_('Efface'),"?ac=".$_REQUEST['ac']."&pa_id=".$_GET['pa_id']."&sa=pa_delete&$str_dossier",'Efface','onclick="return confirm(\'Effacer ?\')"'); $ret.= '
'; $ret.= '
'; @@ -124,7 +124,7 @@ if ( isset($_REQUEST['sa'])) $ret.=dossier::hidden(); $ret.=$po->form(); $ret.=$wSa; - $ret.=HtmlInput::submit("add","Ajout"); + $ret.=HtmlInput::submit("add",_("Ajout")); $ret.=""; $ret.="
"; } @@ -191,11 +191,11 @@ if ( isset($_REQUEST['sa'])) $ret.='
'; $ret.=''; $ret.=""; - $ret.=""; - $ret.=""; + $ret.=""; $class=""; foreach ($array as $obj) @@ -222,7 +222,7 @@ if ( isset($_REQUEST['sa'])) } $ret.="
Nom "; - $ret.=" Montant "; - $ret.=" Description "; - $ret.="Groupe Plan A "; + $ret.=""._("Nom")." "; + $ret.=""._("Montant")." "; + $ret.=""._("Description")." "; + $ret.=""._("Groupe").""._("Plan A")." "; $ret.="
"; - $ret.=HtmlInput::button_anchor('Ajout',"?ac=".$_REQUEST['ac']."&sa=po_add&pa_id=".$_GET['pa_id']."&".$str_dossier); + $ret.=HtmlInput::button_anchor(_('Ajout'),"?ac=".$_REQUEST['ac']."&sa=po_add&pa_id=".$_GET['pa_id']."&".$str_dossier); $ret.='
'; } @@ -245,14 +245,14 @@ if ( empty($list) ) echo ''; if ( ! isset ( $_REQUEST['sa'])) echo '
'. - "Aucun plan analytique n'est défini". + _("Aucun plan analytique n'est défini"). '
'; } @@ -280,7 +280,7 @@ else { echo ''; echo ''; echo '
'; - echo 'Ajout d\'un plan comptable'; + echo ''._("Ajout d'un plan comptable").''; echo '
'; } diff --git a/include/audit_log.php b/include/audit_log.php index d126aeb5f..a9a93f0b9 100644 --- a/include/audit_log.php +++ b/include/audit_log.php @@ -33,11 +33,11 @@ if ( !defined ('ALLOWED')) die('Forbidden'); ?> - - - - - + + + + +'; if ( ! isset($_GET['p_filter']) || $_GET['p_filter']==0) $rad->selected='t'; else $rad->selected=false; -echo '
  • '.$rad->input('p_filter',0).'Aucun filtre, tous les journaux'.'
  • '; +echo '
  • '.$rad->input('p_filter',0)._('Aucun filtre, tous les journaux').'
  • '; if ( isset($_GET['p_filter']) && $_GET['p_filter']==1) $rad->selected='t'; else $rad->selected=false; -echo '
  • '.$rad->input('p_filter',1).'Filtré par journal '; +echo '
  • '.$rad->input('p_filter',1)._('Filtré par journal'); echo HtmlInput::button_choice_ledger(array('div'=>'bal','type'=>'ALL','all_type'=>1)); echo '
  • '; if ( isset($_GET['p_filter']) && $_GET['p_filter']==2) $rad->selected='t'; else $rad->selected=false; -echo '
  • '.$rad->input('p_filter',2).'Filtré par catégorie'.HtmlInput::select_cat($array_cat).'
  • '; +echo '
  • '.$rad->input('p_filter',2)._('Filtré par catégorie').HtmlInput::select_cat($array_cat).'
  • '; echo ''; -echo 'Totaux par sous-niveaux'; +echo _('Totaux par sous-niveaux'); $ck_lev1=new ICheckBox('lvl1'); $ck_lev2=new ICheckBox('lvl2'); $ck_lev3=new ICheckBox('lvl3'); @@ -125,9 +125,9 @@ if (HtmlInput::default_value('lvl2',false,$_GET) !== false) $ck_lev2->selected=true; if (HtmlInput::default_value('lvl3',false,$_GET) !== false) $ck_lev3->selected=true; -echo '
  • '.$ck_lev1->input().'Niveau 1
  • '; -echo '
  • '.$ck_lev2->input().'Niveau 2
  • '; -echo '
  • '.$ck_lev3->input().'Niveau 3
  • '; +echo '
  • '.$ck_lev1->input()._('Niveau 1').'
  • '; +echo '
  • '.$ck_lev2->input()._('Niveau 2').'
  • '; +echo '
  • '.$ck_lev3->input()._('Niveau 3').'
  • '; echo ''; $unsold=new ICheckBox('unsold'); @@ -159,20 +159,20 @@ $to_poste->value=(isset($_GET['to_poste']))?$_GET['to_poste']:""; $to_span=new ISpan("to_poste_label",""); echo "
    "; -echo "Plage de postes :".$from_poste->input(); +echo _("Plage de postes")." :".$from_poste->input(); echo $from_span->input(); -echo " jusque :".$to_poste->input(); +echo " "._("jusque")." :".$to_poste->input(); echo $to_span->input(); echo "
    "; echo '
    '; echo '

    '; -echo "Uniquement comptes non soldés ".$unsold->input(); +echo _("Uniquement comptes non soldés")." ".$unsold->input(); echo '

    '; echo '

    '; -echo "Avec la balance de l'année précédente".$previous_exc->input(); +echo _("Avec la balance de l'année précédente")." ".$previous_exc->input(); echo '

    '; echo '
    '; -echo HtmlInput::submit("view","Visualisation"); +echo HtmlInput::submit("view",_("Visualisation")); echo ''; echo '
    '; //----------------------------------------------------- diff --git a/include/balance_card.inc.php b/include/balance_card.inc.php index 7f2bc3c22..006168eac 100644 --- a/include/balance_card.inc.php +++ b/include/balance_card.inc.php @@ -32,7 +32,7 @@ $fiche=new Fiche($cn,$_GET['f_id']); $year=$g_user->get_exercice(); if ( $year == 0 ) { - $html="erreur aucune période par défaut, allez dans préférence pour en choisir une"; + $html=_("erreur aucune période par défaut, allez dans préférence pour en choisir une"); } else { @@ -66,7 +66,7 @@ else } if ( $fiche->HtmlTable($array,0,0)==-1){ - echo h2("Aucune opération pour l'exercice courant",'class="error"'); + echo h2(_("Aucune opération pour l'exercice courant",'class="error"')); } echo $old; diff --git a/include/bank.inc.php b/include/bank.inc.php index 50f35a1d5..c76d7459e 100644 --- a/include/bank.inc.php +++ b/include/bank.inc.php @@ -46,7 +46,7 @@ if ( isset($_POST['delete_card'] ) ) { if ( $g_user->check_action(FICADD) == 0 ) { - alert('Vous ne pouvez pas enlever de fiche'); + alert(_('Vous ne pouvez pas enlever de fiche')); return; } @@ -70,7 +70,7 @@ if ( $low_action == "list" ) ' . "Exercice " . $g_user->get_exercice() . ''; + echo '

    ' ._( "Exercice")." " . $g_user->get_exercice() . '

    '; $a=(isset($_GET['query']))?$_GET['query']:""; printf (_('Recherche').' ', $a); diff --git a/include/card_attr.inc.php b/include/card_attr.inc.php index f0d430bf6..0b7269916 100644 --- a/include/card_attr.inc.php +++ b/include/card_attr.inc.php @@ -74,16 +74,16 @@ $size->size=5; $extra=new IText('extra[]'); $select_type->value=array( - array('value'=>'text','label'=>'Texte'), - array('value'=>'numeric','label'=>'Nombre'), - array('value'=>'date','label'=>'Date'), - array('value'=>'zone','label'=>'Zone de texte'), - array('value'=>'poste','label'=>'Poste Comptable'), - array('value'=>'card','label'=>'Fiche'), - array('value'=>'select','label'=>'Selection') + array('value'=>'text','label'=>_('Texte')), + array('value'=>'numeric','label'=>_('Nombre')), + array('value'=>'date','label'=>_('Date')), + array('value'=>'zone','label'=>_('Zone de texte')), + array('value'=>'poste','label'=>_('Poste Comptable')), + array('value'=>'card','label'=>_('Fiche')), + array('value'=>'select','label'=>_('Selection')) ); $remove=new IButton('rmfa'); -$remove->label='Effacer'; +$remove->label=_('Effacer'); echo '
    '; echo ''; @@ -91,11 +91,11 @@ echo HtmlInput::hidden('sa','fat'); echo HtmlInput::hidden('p_action','divers'); echo '
    Utilisateur Date Adresse Module Résultat
    '; echo ''; -echo th("id"); -echo th("Description"); -echo th("Type "); -echo th("Taille"); -echo th("Paramètre"); +echo th(_("id")); +echo th(_("Description")); +echo th(_("Type")); +echo th(_("Taille")); +echo th(_("Paramètre")); echo ''; for ($e=0;$ejavascript=sprintf('if ( confirm(\'Vous confirmez ?\')) { removeCardAttribut(%d,%d,\'tb_rmfa\',this);}', $row->get_parameter('id'),$gDossier); - $msg=' Attention : effacera les données qui y sont liées '; + $msg=''._("Attention : effacera les données qui y sont liées").' '; $r.=td($remove->input().$msg); } else diff --git a/include/cfgfiche.inc.php b/include/cfgfiche.inc.php index b480032ae..16392e45c 100644 --- a/include/cfgfiche.inc.php +++ b/include/cfgfiche.inc.php @@ -66,8 +66,8 @@ if ( isset ($_POST['remove_cat'])) $remains=$fd_id->remove(); if ( $remains != 0 ) /* some card are not removed because it is used */ - alert('Impossible d\'enlever cette catégorie, certaines fiches sont encore utilisées'."\n". - 'Les fiches non utilisées ont cependant été effacées'); + alert(_('Impossible d\'enlever cette catégorie, certaines fiches sont encore utilisées'."\n". + 'Les fiches non utilisées ont cependant été effacées')); } /*******************************************************************************************/ // Change some basis info diff --git a/include/cfgledger.inc.php b/include/cfgledger.inc.php index 3c5e49d53..6ddbfaa68 100644 --- a/include/cfgledger.inc.php +++ b/include/cfgledger.inc.php @@ -47,7 +47,7 @@ if (isset($_POST['update'])) try { $ledger->id=$_POST['p_jrn']; - if ( $ledger->load() == -1) throw new Exception ('Journal inexistant'); + if ( $ledger->load() == -1) throw new Exception (_('Journal inexistant')); $ledger->verify_ledger($_POST); $ledger->update($_POST); } catch (Exception $e) @@ -119,9 +119,9 @@ switch ($sa) echo '
    '; echo ''; echo $ledger->display_ledger(); - echo ' + echo ' - '; + '; echo ''; echo "
    "; } diff --git a/include/cfgtags.inc.php b/include/cfgtags.inc.php index a66d0a1d3..f812dc231 100644 --- a/include/cfgtags.inc.php +++ b/include/cfgtags.inc.php @@ -48,9 +48,9 @@ if ( isset ($_POST['save_tag_sb'])) ?>

    - Vous pouvez utiliser ceci comme des étiquettes pour marquer des documents ou +

    show_list(); diff --git a/include/class_acc_account.php b/include/class_acc_account.php index 16033ff63..db3e8457e 100644 --- a/include/class_acc_account.php +++ b/include/class_acc_account.php @@ -63,7 +63,7 @@ class Acc_Account return $this->$idx; } else - exit (__FILE__.":".__LINE__.'Erreur attribut inexistant'); + exit (__FILE__.":".__LINE__._('Erreur attribut inexistant')); } function set_parameter($p_string,$p_value) @@ -74,7 +74,7 @@ class Acc_Account if ($this->check($idx,$p_value) == true ) $this->$idx=$p_value; } else - exit (__FILE__.":".__LINE__.'Erreur attribut inexistant'); + exit (__FILE__.":".__LINE__._('Erreur attribut inexistant')); } @@ -94,7 +94,7 @@ class Acc_Account } else { - $this->pcm_lib="Poste inconnu"; + $this->pcm_lib=_("Poste inconnu"); } return $this->pcm_lib; } @@ -133,9 +133,9 @@ class Acc_Account if ( strcmp ($k['value'],$p_value) == 0 ) return true; } - throw new Exception('type de compte incorrect '.$p_value); + throw new Exception(_('type de compte incorrect ').$p_value); } - throw new Exception ('Donnee member inconnue '.$p_member); + throw new Exception (_('Donnee member inconnue ').$p_member); } } @@ -219,7 +219,7 @@ class Acc_Account array($p_old) ); if ($count != 0) - throw new Exception('Impossible de changer la valeur: poste déjà utilisé'); + throw new Exception(_('Impossible de changer la valeur: poste déjà utilisé')); } $this->pcm_lib=mb_substr($this->pcm_lib,0,150); $this->check(); diff --git a/include/class_acc_bilan.php b/include/class_acc_bilan.php index db4d2fde7..cbdab052a 100644 --- a/include/class_acc_bilan.php +++ b/include/class_acc_bilan.php @@ -131,10 +131,10 @@ class Acc_Bilan if ( $count <> 0 ) { echo '
      '.$ret.'
    '; - echo 'Nbres anomalies : '.$count.''; + echo ''._("Nbres anomalies").' : '.$count.''; } else - echo " Pas d'anomalie détectée"; + echo _("Pas d'anomalie détectée"); echo ''; @@ -143,18 +143,18 @@ class Acc_Bilan function verify() { bcscale(2); - echo '

    Comptes normaux

    '; - $this->warning('Actif avec un solde crediteur','ACT','D'); - $this->warning('Passif avec un solde debiteur','PAS','C'); - $this->warning('Compte de resultat : Charge avec un solde crediteur','CHA','D'); - $this->warning('Compte de resultat : produit avec un solde debiteur','PRO','C'); + echo '

    '._("Comptes normaux").'

    '; + $this->warning(_('Actif avec un solde crediteur'),'ACT','D'); + $this->warning(_('Passif avec un solde debiteur'),'PAS','C'); + $this->warning(_('Compte de resultat : Charge avec un solde crediteur'),'CHA','D'); + $this->warning(_('Compte de resultat : produit avec un solde debiteur'),'PRO','C'); echo '
    '; - echo '

    Comptes inverses

    '; - $this->warning('Compte inverse : actif avec un solde debiteur','ACTINV','C'); - $this->warning('Compte inverse : passif avec un solde crediteur','PASINV','D'); - $this->warning('Compte inverse : Charge avec un solde debiteur','CHAINV','C'); - $this->warning('Compte inverse : produit avec un solde crediteur','PROINV','D'); - echo '

    Solde

    '; + echo '

    '._("Comptes inverses").'

    '; + $this->warning(_('Compte inverse : actif avec un solde debiteur'),'ACTINV','C'); + $this->warning(_('Compte inverse : passif avec un solde crediteur'),'PASINV','D'); + $this->warning(_('Compte inverse : Charge avec un solde debiteur'),'CHAINV','C'); + $this->warning(_('Compte inverse : produit avec un solde crediteur'),'PROINV','D'); + echo ''; /* set the periode filter */ $sql_periode=sql_filter_per($this->db,$this->from,$this->to,'p_id','j_tech_per'); /* debit Actif */ @@ -172,7 +172,7 @@ class Acc_Bilan $credit_actif=$this->db->get_value($sql); $total_actif=abs(bcsub($debit_actif,$credit_actif)); echo '
    '; - echo tr(td( 'Total actif ').td($total_actif,'style="text-align:right"')); + echo tr(td(_('Total actif')).td($total_actif,'style="text-align:right"')); /* debit passif */ $sql="select sum(j_montant) from jrnx join tmp_pcmn on (j_poste=pcm_val)". @@ -189,7 +189,7 @@ class Acc_Bilan $total_passif=abs(bcsub($debit_passif,$credit_passif)); /* diff actif / passif */ - echo tr(td('Total passif ').td($total_passif,'style="text-align:right"')); + echo tr(td(_('Total passif')).td($total_passif,'style="text-align:right"')); if ( $total_actif != $total_passif ) { $diff=bcsub($total_actif,$total_passif); @@ -208,7 +208,7 @@ class Acc_Bilan $sql.="and $sql_periode"; $credit_charge=$this->db->get_value($sql); $total_charge=abs(bcsub($debit_charge,$credit_charge)); - echo tr(td('Total charge ').td($total_charge,'style="text-align:right"')); + echo tr(td(_('Total charge ')).td($total_charge,'style="text-align:right"')); /* debit prod */ @@ -223,11 +223,11 @@ class Acc_Bilan $sql.="and $sql_periode"; $credit_pro=$this->db->get_value($sql); $total_pro=abs(bcsub($debit_pro,$credit_pro)); - echo tr(td('Total produit ').td($total_pro,'style="text-align:right"')); + echo tr(td(_('Total produit')).td($total_pro,'style="text-align:right"')); $diff=bcsub($total_pro,$total_charge); - echo tr( td("Difference Produit - Charge",'style="padding-right:20px"').td($diff,'style="text-align:right"'),'style="font-weight:bolder"'); + echo tr( td(_("Difference Produit - Charge"),'style="padding-right:20px"').td($diff,'style="text-align:right"'),'style="font-weight:bolder"'); echo '
    '; } /*! @@ -253,7 +253,7 @@ class Acc_Bilan $res=$this->db->exec_sql($sql); if ( Database::num_row($res)==0) - throw new Exception ('Aucun enregistrement trouve'); + throw new Exception (_('Aucun enregistrement trouve')); $array=Database::fetch_array($res,0); foreach ($array as $name=>$value) $this->$name=$value; @@ -345,7 +345,7 @@ class Acc_Bilan $work_file=basename($file_base); if ( copy ($file_base,$work_file) == false ) { - echo "Je ne peux pas ouvrir ce fichier "; + echo _("erreur Ouverture fichier"); exit(); } ob_start(); @@ -653,13 +653,13 @@ class Acc_Bilan $p_file=fopen($dirname.DIRECTORY_SEPARATOR.'content.xml','wb'); if ( $p_file == false ) { - exit('Je ne peux pas ouvrir content.xml'); + exit ( _("erreur Ouverture fichier").' content.xml'); } $a=fwrite($p_file,$p_result); if ( $a==false) { - echo "Je ne peux pas ecrire dans content.xml"; + echo _("erreur écriture fichier").' content.xml'; exit(); } // repack @@ -678,7 +678,7 @@ class Acc_Bilan $fdoc=fopen($dirname.DIRECTORY_SEPARATOR.$this->b_name.'.'.$this->b_type,'r'); if ( $fdoc == false ) { - exit('Je ne peux pas ouvrir ce document'); + exit (_("erreur Ouverture fichier")); } $buffer=fread ($fdoc,filesize($dirname.DIRECTORY_SEPARATOR.$this->b_name.'.'.$this->b_type)); echo $buffer; diff --git a/include/class_acc_compute.php b/include/class_acc_compute.php index 0082a4fcb..88d3c3763 100644 --- a/include/class_acc_compute.php +++ b/include/class_acc_compute.php @@ -91,7 +91,7 @@ class Acc_Compute return $this->$idx; } else - exit (__FILE__.":".__LINE__.'Erreur attribut inexistant'); + exit (__FILE__.":".__LINE__._('Erreur attribut inexistant')); } public function set_parameter($p_string,$p_value) { @@ -101,7 +101,7 @@ class Acc_Compute $this->$idx=$p_value; } else - exit (__FILE__.":".__LINE__.'Erreur attribut inexistant'); + exit (__FILE__.":".__LINE__._('Erreur attribut inexistant')); } @@ -191,7 +191,7 @@ class Acc_Compute { foreach (self::$variable as $key=>$value) if ( $this->$value < 0 ) - throw new Exception ("Montant invalide "); + throw new Exception (_("Montant invalide")); if ( $p_obj != null ) { @@ -202,7 +202,7 @@ class Acc_Compute $cmp=bcadd($p_obj->amount,$p_obj->amount_vat); $diff=bcsub($sum,$cmp); if ( $diff != 0.0 ) - throw new Exception ("ECHEC VERIFICATION : valeur totale = $sum valeur attendue = $cmp diff = $diff"); + throw new Exception (_("ECHEC VERIFICATION : valeur totale = $sum valeur attendue = $cmp diff = $diff")); } } function display() diff --git a/include/class_acc_ledger.php b/include/class_acc_ledger.php index cbc781dea..4fe479eb0 100644 --- a/include/class_acc_ledger.php +++ b/include/class_acc_ledger.php @@ -104,7 +104,7 @@ class Acc_Ledger extends jrn_def_sql { if ($this->id == 0) { - $this->name = " Tous les journaux"; + $this->name = _(" Tous les journaux"); $this->type = "GL"; return "GL"; } @@ -184,7 +184,7 @@ class Acc_Ledger extends jrn_def_sql { $this->db->start(); if (!isset($this->jr_id) || $this->jr_id == '') - throw new Exception("this->jr_id is not set ou opération inconnue"); + throw new Exception(_("this->jr_id is not set ou opération inconnue")); /* check if the date is valid */ if (isDate($p_date) == null) @@ -243,7 +243,7 @@ class Acc_Ledger extends jrn_def_sql $Res = $this->db->exec_sql($sql, array($p_date, $grp_new, $p_internal, $g_user->id, $per->p_id, $row)); // Check return code if ($Res == false) - throw (new Exception(__FILE__ . __LINE__ . "sql a echoue [ $sql ]")); + throw (new Exception(__FILE__ . __LINE__ . "SQL ERROR [ $sql ]")); $aj_id = $this->db->fetch(0); $j_id = $aj_id['j_id']; @@ -271,7 +271,7 @@ class Acc_Ledger extends jrn_def_sql FROM quant_purchase where j_id=$3", array($p_internal, $j_id, $row)); if ($Res == false) - throw (new Exception(__FILE__ . __LINE__ . "sql a echoue [ $sql ]")); + throw (new Exception(__FILE__ . __LINE__ . "SQL ERROR [ $sql ]")); } $sql = "insert into jrn ( jr_id, @@ -292,14 +292,14 @@ class Acc_Ledger extends jrn_def_sql $Res = $this->db->exec_sql($sql, array($seq, $p_date, $grp_new, $p_internal, $per->p_id, $this->jr_id)); // Check return code if ($Res == false) - throw (new Exception(__FILE__ . __LINE__ . "sql a echoue [ $sql ]")); + throw (new Exception(__FILE__ . __LINE__ . "SQL ERROR [ $sql ]")); // reverse in QUANT_FIN table $Res = $this->db->exec_sql(" INSERT INTO quant_fin( qf_bank, qf_other, qf_amount,jr_id) SELECT qf_bank, qf_other, qf_amount*(-1),$1 FROM quant_fin where jr_id=$2", array($seq, $this->jr_id)); if ($Res == false) - throw (new Exception(__FILE__ . __LINE__ . "sql a echoue [ $sql ]")); + throw (new Exception(__FILE__ . __LINE__ . "SQL ERROR[ $sql ]")); // Add a "concerned operation to bound these op.together // @@ -310,7 +310,7 @@ class Acc_Ledger extends jrn_def_sql // Check return code if ($Res == false) { - throw (new Exception(__FILE__ . __LINE__ . "sql a echoue [ $sql ]")); + throw (new Exception(__FILE__ . __LINE__ . "SQL ERROR [ $sql ]")); } @@ -321,7 +321,7 @@ class Acc_Ledger extends jrn_def_sql from stock_goods natural join jrnx where j_grpt=" . $this->jr_grpt_id . ")"; $Res = $this->db->exec_sql($sql); if ($Res == false) - throw (new Exception(__FILE__ . __LINE__ . "sql a echoue [ $sql ]")); + throw (new Exception(__FILE__ . __LINE__ . "SQL ERROR [ $sql ]")); } catch (Exception $e) { @@ -339,7 +339,7 @@ class Acc_Ledger extends jrn_def_sql { if ($this->id == 0) { - $this->name = " Grand Livre "; + $this->name = _("Grand Livre"); return $this->name; } @@ -652,20 +652,20 @@ class Acc_Ledger extends jrn_def_sql $r.=""; - $r.="Selection"; - $r.="Internal"; + $r.=""._("Selection").""; + $r.=""._("Internal").""; if ($this->type == 'ALL') { - $r.=th('Journal'); + $r.=th(_('Journal')); } - $r.='Date'; - $r.='Pièce'; - $r.=th('tiers'); - $r.='Description'; - $r.=th('Notes', ' '); - $r.='Montant'; + $r.=''._("Date").''; + $r.=''._("Pièce").''; + $r.=th(_('tiers')); + $r.=''._("Description").''; + $r.=th(_('Notes'), ' '); + $r.=''._("Montant").''; $r.="" . _('Concerne') . ""; $r.=""; // Total Amount @@ -759,7 +759,7 @@ class Acc_Ledger extends jrn_def_sql if ($row['jr_valid'] == 'f') { - $r.=" Opération annulée"; + $r.=""._("Opération annulée").""; } // end row $r.=""; @@ -813,13 +813,13 @@ class Acc_Ledger extends jrn_def_sql // Sort $url = "?" . CleanUrl(); $str_dossier = dossier::get(); - $table->add("Date", $url, 'order by jr_date asc,substring(jr_pj_number,\'[0-9]+$\')::numeric asc', 'order by jr_date desc,substring(jr_pj_number,\'[0-9]+$\')::numeric desc', "da", "dd"); - $table->add('Echeance', $url, " order by jr_ech asc", " order by jr_ech desc", 'ea', 'ed'); - $table->add('Paiement', $url, " order by jr_date_paid asc", " order by jr_date_paid desc", 'eap', 'edp'); - $table->add('PJ', $url, ' order by substring(jr_pj_number,\'[0-9]+$\')::numeric asc ', ' order by substring(jr_pj_number,\'[0-9]+$\')::numeric desc ', "pja", "pjd"); - $table->add('Tiers', $url, " order by name asc", " order by name desc", 'na', 'nd'); - $table->add('Montant', $url, " order by jr_montant asc", " order by jr_montant desc", "ma", "md"); - $table->add("Description", $url, "order by jr_comment asc", "order by jr_comment desc", "ca", "cd"); + $table->add(_("Date"), $url, 'order by jr_date asc,substring(jr_pj_number,\'[0-9]+$\')::numeric asc', 'order by jr_date desc,substring(jr_pj_number,\'[0-9]+$\')::numeric desc', "da", "dd"); + $table->add(_('Echeance'), $url, " order by jr_ech asc", " order by jr_ech desc", 'ea', 'ed'); + $table->add(_('Paiement'), $url, " order by jr_date_paid asc", " order by jr_date_paid desc", 'eap', 'edp'); + $table->add(_('Pièce'), $url, ' order by substring(jr_pj_number,\'[0-9]+$\')::numeric asc ', ' order by substring(jr_pj_number,\'[0-9]+$\')::numeric desc ', "pja", "pjd"); + $table->add(_('Tiers'), $url, " order by name asc", " order by name desc", 'na', 'nd'); + $table->add(_('Montant'), $url, " order by jr_montant asc", " order by jr_montant desc", "ma", "md"); + $table->add(_("Description"), $url, "order by jr_comment asc", "order by jr_comment desc", "ca", "cd"); $ord = (!isset($_GET['ord'])) ? 'da' : $_GET['ord']; $order = $table->get_sql_order($ord); @@ -846,7 +846,7 @@ class Acc_Ledger extends jrn_def_sql $r.=""; - $r.="Internal"; + $r.=""._("n° interne").""; if ($this->type == 'ALL') { $r.=th('Journal'); @@ -987,7 +987,7 @@ class Acc_Ledger extends jrn_def_sql if ($row['jr_valid'] == 'f') { - $r.=" Opération annulée"; + $r.=""._("Opération annulée").""; } else { @@ -1016,11 +1016,11 @@ class Acc_Ledger extends jrn_def_sql if ($p_paid != 0) { $r.=""; - $r.='Payé'; + $r.=''._("Payé").''; $r.='' . nbm($amount_paid) . ""; $r.=""; $r.=""; - $r.='Non payé'; + $r.=''._("Non payé").''; $r.='' . nbm($amount_unpaid) . ""; $r.=""; } @@ -1418,7 +1418,7 @@ class Acc_Ledger extends jrn_def_sql $ret = ""; if (!empty($msg)) { - $ret.=$this->display_warning($msg, "Attention : il vaut mieux utiliser les fiches que les postes comptables pour"); + $ret.=$this->display_warning($msg, _("Attention : il vaut mieux utiliser les fiches que les postes comptables")); } $ret.=""; $ret.=""; @@ -1889,7 +1889,7 @@ class Acc_Ledger extends jrn_def_sql $f->quick_code = ${'qc_' . $i}; if ($f->belong_ledger($p_jrn) < 0) throw new Exception("La fiche quick_code = " . - $f->quick_code . " n\'est pas dans ce journal", 4); + $f->quick_code . " n'est pas dans ce journal", 4); if (strlen(trim(${'qc_' . $i})) != 0 && isNumber(${'amount' . $i}) == 0) throw new Exception('Montant invalide', 3); @@ -1980,7 +1980,7 @@ class Acc_Ledger extends jrn_def_sql $msg = $this->verify($p_array); if (!empty($msg)) { - echo $this->display_warning($msg, "Attention : il vaut mieux utiliser les fiches que les postes comptables pour"); + echo $this->display_warning($msg, _("Attention : il vaut mieux utiliser les fiches que les postes comptables ")); } $this->db->start(); @@ -2080,7 +2080,7 @@ class Acc_Ledger extends jrn_def_sql $jr_id = $acc_end->insert_jrn(); $this->jr_id = $jr_id; if ($jr_id == false) - throw new Exception('Balance incorrecte'); + throw new Exception(_('Balance incorrecte')); $acc_end->pj = $e_pj; /* if e_suggest != e_pj then do not increment sequence */ @@ -2117,7 +2117,7 @@ class Acc_Ledger extends jrn_def_sql catch (Exception $e) { $this->db->rollback(); - echo 'OPERATION ANNULEE '; + echo _('OPERATION ANNULEE '); echo '
    '; echo __FILE__ . __LINE__ . $e->getMessage(); exit(); @@ -2373,7 +2373,7 @@ class Acc_Ledger extends jrn_def_sql $empl->get_by_qcode($e_mp_qcode); if ($empl->empty_attribute(ATTR_DEF_ACCOUNT) == true) { - throw new Exception('Celui qui paie n\' a pas de poste comptable', 20); + throw new Exception(_("Celui qui paie n' a pas de poste comptable"), 20); } /* get the account and explode if necessary */ $sposte = $empl->strAttribut(ATTR_DEF_ACCOUNT); @@ -2390,7 +2390,7 @@ class Acc_Ledger extends jrn_def_sql $poste = new Acc_Account_Ledger($this->db, $poste_val); if ($poste->load() == false) { - throw new Exception('Pour la fiche' . $empl->quick_code . ' le poste comptable [' . $poste->id . 'n\'existe pas', 9); + throw new Exception(sprintf(_("Pour la fiche %s le poste comptable [%s] n'existe pas"),$empl->quick_code,$poste->id ), 9); } } } @@ -3229,10 +3229,10 @@ class Acc_Ledger extends jrn_def_sql static function array_cat() { $r = array( - array('cat' => 'VEN', 'name' => 'Journaux de vente'), - array('cat' => 'ACH', 'name' => 'Journaux d\'achat'), - array('cat' => 'FIN', 'name' => 'Journaux Financier'), - array('cat' => 'ODS', 'name' => 'Journaux d\'Opérations diverses') + array('cat' => 'VEN', 'name' => _("Journaux de vente")), + array('cat' => 'ACH', 'name' => _("'Journaux d'achat")), + array('cat' => 'FIN', 'name' => _("'Journaux Financier")), + array('cat' => 'ODS', 'name' => _("'Journaux d'Opérations diverses")) ); return $r; } @@ -3403,17 +3403,17 @@ class Acc_Ledger extends jrn_def_sql if (isNumber($p_jrn) == 0) throw new Exception("Id invalide"); if (isNumber($p_jrn_deb_max_line) == 0) - throw new Exception("Nombre de ligne incorrect"); + throw new Exception(_("Nombre de ligne incorrect")); if (trim($p_jrn_name) == "") throw new Exception("Nom de journal invalide"); if ($this->db->get_value("select count(*) from jrn_def where jrn_def_name=$1 and jrn_Def_id<>$2", array($p_jrn_name, $p_jrn)) > 0) - throw new Exception("Un journal avec ce nom existe déjà"); + throw new Exception(_("Un journal avec ce nom existe déjà")); if ($p_jrn_type == 'FIN') { $a = new Fiche($this->db); $result = $a->get_by_qcode(trim(strtoupper($_POST['bank'])), false); if ($result == 1) - throw new Exception("Aucun compte en banque n'est donné"); + throw new Exception(_("Aucun compte en banque n'est donné")); } } catch (Exception $e) @@ -3458,7 +3458,7 @@ class Acc_Ledger extends jrn_def_sql $bank = $a->id; $this->jrn_def_bank = $bank; if ($result == -1) - throw new Exception("Aucun compte en banque n'est donné"); + throw new Exception(_("Aucun compte en banque n'est donné")); $this->jrn_def_num_op = (isset($numb_operation)) ? 1 : 0; break; } @@ -3524,7 +3524,7 @@ class Acc_Ledger extends jrn_def_sql $name = ""; $code = ""; $wType = new ISelect(); - $a_jrn= $this->db->make_array("select '-1',' -- choix du type de journal -- ' union select jrn_type_id,jrn_desc from jrn_type"); + $a_jrn= $this->db->make_array("select '-1',' -- "._("choix du type de journal")." -- ' union select jrn_type_id,jrn_desc from jrn_type"); $wType->selected='-1'; $wType->value =$a_jrn; $wType->name = "p_jrn_type"; @@ -3591,7 +3591,7 @@ class Acc_Ledger extends jrn_def_sql $bank = $a->id; $this->jrn_def_bank = $bank; if ($result == -1) - throw new Exception("Aucun compte en banque n'est donné"); + throw new Exception(_("Aucun compte en banque n'est donné")); $this->jrn_def_num_op = (isset($numb_operation)) ? 1 : 0; break; } @@ -3608,7 +3608,7 @@ class Acc_Ledger extends jrn_def_sql try { if ($this->db->get_value("select count(jr_id) from jrn where jr_def_id=$1", array($this->jrn_def_id)) > 0) - throw new Exception("Impossible d'effacer un journal qui contient des opérations"); + throw new Exception(_("Impossible d'effacer un journal qui contient des opérations")); parent::delete(); } catch (Exception $e) @@ -3681,7 +3681,7 @@ class Acc_Ledger extends jrn_def_sql { global $g_user; if (isNumber($p_ag_id)==0) return null; - if (! $g_user->can_read_action($p_ag_id)) die ('Action non accessible'); + if (! $g_user->can_read_action($p_ag_id)) die (_('Action non accessible')); $array=array(); // retrieve info from action_gestion diff --git a/include/constant.php b/include/constant.php index 9ec8504d5..e7c63b3d2 100644 --- a/include/constant.php +++ b/include/constant.php @@ -84,7 +84,7 @@ define ('MAX_FORECAST_ITEM',10); define ('MAX_PREDEFINED_OPERATION',50); define ('MAX_COMPTE_CARD',4); define ('COMPTA_MAX_YEAR',2100); -define ('COMPTA_MIN_YEAR',1990); +define ('COMPTA_MIN_YEAR',1900); define ('MAX_RECONCILE',25); define ('MAX_QCODE',4); define ('MAX_SEARCH_CARD',20); @@ -98,7 +98,7 @@ if ( DEBUG ) { error_reporting(0); ini_set("display_errors",1); ini_set("html_errors",1); - + } // Erreur define ("NOERROR",0); @@ -177,6 +177,7 @@ define ("FICHE_TYPE_ADM_TAX",14); define ("FICHE_TYPE_ACH_MAR",2); define ("FICHE_TYPE_ACH_SER",3); define ("FICHE_TYPE_ACH_MAT",7); +define ("FICHE_TYPE_PROJET",26); /** -- pour utiliser unoconv démarrer un server libreoffice * commande * libreoffice --headless --accept="socket,host=127.0.0.1,port=2002;urp;" --nofirststartwizard diff --git a/include/database.item.php b/include/database.item.php new file mode 100644 index 000000000..ab507a838 --- /dev/null +++ b/include/database.item.php @@ -0,0 +1,206 @@ + + + + + + + diff --git a/include/menu.inc.php b/include/menu.inc.php index fe3683fb7..01bc0a4cc 100644 --- a/include/menu.inc.php +++ b/include/menu.inc.php @@ -109,14 +109,14 @@ global $cn; $table=new Sort_Table(); $url=$_SERVER['REQUEST_URI']; -$table->add('Code',$url,"order by me_code asc","order by me_code desc","codea","coded"); -$table->add('Menu',$url,"order by me_menu asc","order by me_menu desc","menua","menud"); -$table->add('Description',$url,"order by me_description asc","order by me_description desc","desa","desd"); -$table->add('Type',$url,"order by me_type asc","order by me_type desc","ta","td"); -$table->add('Fichier',$url,"order by me_file asc","order by me_file desc","fa","fd"); -$table->add('URL',$url,"order by me_url asc","order by me_url desc","urla","urld"); -$table->add('Paramètre',$url,"order by me_parametere asc","order by me_parameter desc","paa","pad"); -$table->add('Javascript',$url,"order by me_javascript asc","order by me_javascript desc","jsa","jsd"); +$table->add(_('Code'),$url,"order by me_code asc","order by me_code desc","codea","coded"); +$table->add(_('Menu'),$url,"order by me_menu asc","order by me_menu desc","menua","menud"); +$table->add(_('Description'),$url,"order by me_description asc","order by me_description desc","desa","desd"); +$table->add(_('Type'),$url,"order by me_type asc","order by me_type desc","ta","td"); +$table->add(_('Fichier'),$url,"order by me_file asc","order by me_file desc","fa","fd"); +$table->add(_('URL'),$url,"order by me_url asc","order by me_url desc","urla","urld"); +$table->add(_('Paramètre'),$url,"order by me_parametere asc","order by me_parameter desc","paa","pad"); +$table->add(_('Javascript'),$url,"order by me_javascript asc","order by me_javascript desc","jsa","jsd"); $ord=(isset($_REQUEST['ord']))?$_REQUEST['ord']:'codea'; @@ -126,11 +126,11 @@ $order=$table->get_sql_order($ord); $iselect=new ISelect('p_type'); $iselect->value=array( - array("value"=>'',"label"=>"Tout"), - array("value"=>'ME',"label"=>"Menu"), - array("value"=>'PR',"label"=>"Impression"), - array("value"=>'PL',"label"=>"Extension / Plugin"), - array("value"=>'SP',"label"=>"Valeurs spéciales") + array("value"=>'',"label"=>_("Tout")), + array("value"=>'ME',"label"=>_("Menu")), + array("value"=>'PR',"label"=>_("Impression")), + array("value"=>'PL',"label"=>_("Extension / Plugin")), + array("value"=>'SP',"label"=>_("Valeurs spéciales")) ); $iselect->selected=(isset($_REQUEST['p_type']))?$_REQUEST['p_type']:''; $sql=""; @@ -144,15 +144,15 @@ $ret=$menu->seek($sql.$order);
    Recherche
    input()?> - + - Filtre +
    '; echo ''; @@ -182,8 +182,8 @@ for ($i = 0; $i < Database::num_row($ret); $i++) $class = ( $i % 2 == 0) ? $class = ' class="odd"' : $class = ' class="even"'; echo ""; echo td($js); - echo td($row->me_menu); - echo td(h($row->me_description)); + echo td(_($row->me_menu)); + echo td(h(_($row->me_description))); echo td(h($row->me_type)); echo td(h($row->me_file)); echo td(h($row->me_url)); diff --git a/include/template/action_other_action.php b/include/template/action_other_action.php index 35c0a2d46..8f6d855cf 100644 --- a/include/template/action_other_action.php +++ b/include/template/action_other_action.php @@ -4,7 +4,7 @@ ?>
    " . _('Date') . " : $e_date
    - + - + - + @@ -79,13 +79,13 @@ - + - + diff --git a/include/template/action_search_result.php b/include/template/action_search_result.php index 24602a293..9b5c30d89 100644 --- a/include/template/action_search_result.php +++ b/include/template/action_search_result.php @@ -29,7 +29,7 @@ ?> - +

    Recherche limitée à résultats

    @@ -41,19 +41,19 @@ @@ -85,5 +85,5 @@
    Date de rappel après input();?>
    Date de rappel avant input();?>
    Affiche aussi les actions fermées input();?>
    Référence input();?>
    Numéro document input();?>
    - Date + - Ref + - Titre + - Destinataire + - Type +
    - + \ No newline at end of file diff --git a/include/template/anc_balance_group.php b/include/template/anc_balance_group.php index 61a4b99a4..32d8a6873 100644 --- a/include/template/anc_balance_group.php +++ b/include/template/anc_balance_group.php @@ -46,9 +46,9 @@ if ( $prev != $array[$i]['ga_id']) ?> Activité -Débit -Crébit -Solde + + + '; -echo td('Solde'); +echo td(_('Solde')); echo td(nbm($tot_group_deb),' class="num"'); echo td(nbm($tot_group_cred),' class="num"'); echo td(nbm(bcsub($tot_group_cred,$tot_group_deb)),' class="num"'); diff --git a/include/template/dashboard.php b/include/template/dashboard.php index f9931cd1f..fbd9f0372 100644 --- a/include/template/dashboard.php +++ b/include/template/dashboard.php @@ -64,10 +64,6 @@ if ( ! empty ($array) ) { - - - - @@ -208,7 +204,7 @@ endif; - - - - + + + +
    @@ -340,4 +336,4 @@ for (i=0;i < array.length;i++) { new Draggable(array[i],{}); } } catch (e) { alert(e.getMessage);} - \ No newline at end of file + diff --git a/include/template/detail-action.php b/include/template/detail-action.php index 8adc58161..751e9b31f 100644 --- a/include/template/detail-action.php +++ b/include/template/detail-action.php @@ -156,7 +156,7 @@ $rmOperation=sprintf("javascript:if ( confirm('"._('Voulez-vous effacer cette opération ')."')==true ) {remove_operation('%s','%s');}", dossier::id(), $operation[$o]['ago_id']); - $js= 'Effacer'; + $js= ''._("Effacer").''; echo '
  • '.$operation[$o]['str_date']." ".HtmlInput::detail_op($operation[$o]['jr_id'],$operation[$o]['jr_internal'])." ".h($operation[$o]['jr_comment'])." " .$js.'
  • '; } @@ -173,7 +173,7 @@
    -

    Actions concernées

    +

      '; - $js= 'Effacer'; + $js= ''._("Effacer").''; echo '
    1. '.$showAction.$action[$o]['str_date']." ".$action[$o]['ag_ref']." ". h($action[$o]['sub_title']).'('.h($action[$o]['dt_value']).')'." " .$js.'
    2. '; @@ -237,7 +237,7 @@ Document créé le ag_timestamp ?> par ag_ow for( $c=0;$cEffacer'; @@ -459,7 +459,7 @@ catch(exception) { alert('
    - + ">
    diff --git a/include/template/fiche_def_input.php b/include/template/fiche_def_input.php index 3fd8d8734..524fa2d55 100644 --- a/include/template/fiche_def_input.php +++ b/include/template/fiche_def_input.php @@ -3,7 +3,7 @@ //see licence.txt ?> - + @@ -20,7 +20,7 @@ - + @@ -81,7 +81,7 @@ endfor; ?>