From 5f24f5d7819d798270cb0a8f0a07fb1d319d3f39 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Fri, 7 Aug 2015 18:05:03 +0200 Subject: [PATCH 01/22] account_netting: AR/AP netting AR/AP netting ============= This module allows to compensate the balance of a receivable account with the balance of a payable account for the same partner, creating a journal item that reflects this operation. **WARNING**: This operation can be forbidden in your country by the accounting regulations, so you should check current laws before using it. For example, in Spain, this is not allowed at first instance, unless you document well the operation from both parties. Usage ===== From any account journal entries view: * Accounting/Journal Entries/Journal Items * Accounting/Periodic Processing/Reconciliation/Manual Reconciliation select all the lines that corresponds to both AR/AP operations from the same partner. Click on "More > Compensate". If the items don't correspond to the same partner or they aren't AR/AP accounts, you will get an error. On contrary, a dialog box will be presented with the result of the operation and a selection of the journal to register the operation. When you click on the "Compensate" button, a journal entry is created with the corresponding counterparts of the AR/AP operations. --- account_netting/README.rst | 76 ++++++++++ account_netting/__init__.py | 5 + account_netting/__openerp__.py | 20 +++ account_netting/i18n/es.po | 133 ++++++++++++++++++ account_netting/static/description/icon.png | Bin 0 -> 9455 bytes account_netting/tests/__init__.py | 5 + account_netting/tests/test_account_netting.py | 77 ++++++++++ account_netting/wizard/__init__.py | 5 + .../wizard/account_move_make_netting.py | 115 +++++++++++++++ .../wizard/account_move_make_netting_view.xml | 37 +++++ 10 files changed, 473 insertions(+) create mode 100644 account_netting/README.rst create mode 100644 account_netting/__init__.py create mode 100644 account_netting/__openerp__.py create mode 100644 account_netting/i18n/es.po create mode 100644 account_netting/static/description/icon.png create mode 100644 account_netting/tests/__init__.py create mode 100644 account_netting/tests/test_account_netting.py create mode 100644 account_netting/wizard/__init__.py create mode 100644 account_netting/wizard/account_move_make_netting.py create mode 100644 account_netting/wizard/account_move_make_netting_view.xml diff --git a/account_netting/README.rst b/account_netting/README.rst new file mode 100644 index 000000000..73cf5f783 --- /dev/null +++ b/account_netting/README.rst @@ -0,0 +1,76 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +============= +AR/AP netting +============= + +This module allows to compensate the balance of a receivable account with the +balance of a payable account for the same partner, creating a journal item +that reflects this operation. + +**WARNING**: This operation can be forbidden in your country by the accounting +regulations, so you should check current laws before using it. For example, in +Spain, this is not allowed at first instance, unless you document well the +operation from both parties. + +Usage +===== + +From any account journal entries view: + +* Accounting/Journal Entries/Journal Items +* Accounting/Periodic Processing/Reconciliation/Manual Reconciliation + +select all the lines that corresponds to both AR/AP operations from the same +partner. Click on "More > Compensate". If the items don't correspond to the +same partner or they aren't AR/AP accounts, you will get an error. + +On contrary, a dialog box will be presented with the result of the operation +and a selection of the journal to register the operation. When you click on the +"Compensate" button, a journal entry is created with the corresponding +counterparts of the AR/AP operations. + + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/92/8.0 + +Known issues / Roadmap +====================== + +* We can add the possibility to pay the netting result amount directly from + the wizard. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed feedback +`here `_. + + +Credits +======= + +Contributors +------------ + +* Pedro M. Baeza + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit http://odoo-community.org. diff --git a/account_netting/__init__.py b/account_netting/__init__.py new file mode 100644 index 000000000..9b0f517f5 --- /dev/null +++ b/account_netting/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# (c) 2015 Pedro M. Baeza +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +from . import wizard diff --git a/account_netting/__openerp__.py b/account_netting/__openerp__.py new file mode 100644 index 000000000..7f4bafe60 --- /dev/null +++ b/account_netting/__openerp__.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# (c) 2015 Pedro M. Baeza +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +{ + 'name': 'Account netting', + 'version': '8.0.1.0.0', + 'summary': "Compensate AR/AP accounts from the same partner", + 'category': 'Accounting & Finance', + 'author': 'Serv. Tecnol. Avanzados - Pedro M. Baeza, ' + 'Odoo Community Association (OCA)', + 'website': 'https://github.com/OCA/account-financial-tools', + 'depends': [ + 'account', + ], + 'data': [ + 'wizard/account_move_make_netting_view.xml', + ], + "installable": True, +} diff --git a/account_netting/i18n/es.po b/account_netting/i18n/es.po new file mode 100644 index 000000000..9c6e19e27 --- /dev/null +++ b/account_netting/i18n/es.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-07 15:54+0000\n" +"PO-Revision-Date: 2015-08-07 15:54+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "Compensación a cobrar/a pagar" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "Todos los apuntes deben tener una cuenta a pagar o a cobrar" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "Ningún apunte debe estar conciliado" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "All entries should have a partner and the partner must be the same for all." +msgstr "Todos los apuntes deben tener una empresa y la empresa debe ser la misma para todos." + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "Saldo" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "Tipo de saldo" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "Compensar" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "Compensar apuntes" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Diario" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "Apuntes" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "Seleccione el diario en el que se guardarán los apuntes" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "This operation will generate account entries that are counterpart of the receivable/payable accounts selected, and reconcile each other, letting this balance in the partner:" +msgstr "Esta operación generará apuntes que serán la contrapartida de las cuentas a cobrar/a pagar seleccionadas, y las reconciliará entre ellas, dejando este saldo en la empresa:" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "A pagar" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "A cobrar" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "Debe compensar al menos 2 apuntes" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "o" + diff --git a/account_netting/static/description/icon.png b/account_netting/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 zcmW++2RxMjAAjx~&dlBk9S+%}OXg)AGE&Cb*&}d0jUxM@u(PQx^-s)697TX`ehR4?GS^qbkof1cslKgkU)h65qZ9Oc=ml_0temigYLJfnz{IDzUf>bGs4N!v3=Z3jMq&A#7%rM5eQ#dc?k~! zVpnB`o+K7|Al`Q_U;eD$B zfJtP*jH`siUq~{KE)`jP2|#TUEFGRryE2`i0**z#*^6~AI|YzIWy$Cu#CSLW3q=GA z6`?GZymC;dCPk~rBS%eCb`5OLr;RUZ;D`}um=H)BfVIq%7VhiMr)_#G0N#zrNH|__ zc+blN2UAB0=617@>_u;MPHN;P;N#YoE=)R#i$k_`UAA>WWCcEVMh~L_ zj--gtp&|K1#58Yz*AHCTMziU1Jzt_jG0I@qAOHsk$2}yTmVkBp_eHuY$A9)>P6o~I z%aQ?!(GqeQ-Y+b0I(m9pwgi(IIZZzsbMv+9w{PFtd_<_(LA~0H(xz{=FhLB@(1&qHA5EJw1>>=%q2f&^X>IQ{!GJ4e9U z&KlB)z(84HmNgm2hg2C0>WM{E(DdPr+EeU_N@57;PC2&DmGFW_9kP&%?X4}+xWi)( z;)z%wI5>D4a*5XwD)P--sPkoY(a~WBw;E~AW`Yue4kFa^LM3X`8x|}ZUeMnqr}>kH zG%WWW>3ml$Yez?i%)2pbKPI7?5o?hydokgQyZsNEr{a|mLdt;X2TX(#B1j35xPnPW z*bMSSOauW>o;*=kO8ojw91VX!qoOQb)zHJ!odWB}d+*K?#sY_jqPdg{Sm2HdYzdEx zOGVPhVRTGPtv0o}RfVP;Nd(|CB)I;*t&QO8h zFfekr30S!-LHmV_Su-W+rEwYXJ^;6&3|L$mMC8*bQptyOo9;>Qb9Q9`ySe3%V$A*9 zeKEe+b0{#KWGp$F+tga)0RtI)nhMa-K@JS}2krK~n8vJ=Ngm?R!9G<~RyuU0d?nz# z-5EK$o(!F?hmX*2Yt6+coY`6jGbb7tF#6nHA zuKk=GGJ;ZwON1iAfG$E#Y7MnZVmrY|j0eVI(DN_MNFJmyZ|;w4tf@=CCDZ#5N_0K= z$;R~bbk?}TpfDjfB&aiQ$VA}s?P}xPERJG{kxk5~R`iRS(SK5d+Xs9swCozZISbnS zk!)I0>t=A<-^z(cmSFz3=jZ23u13X><0b)P)^1T_))Kr`e!-pb#q&J*Q`p+B6la%C zuVl&0duN<;uOsB3%T9Fp8t{ED108<+W(nOZd?gDnfNBC3>M8WE61$So|P zVvqH0SNtDTcsUdzaMDpT=Ty0pDHHNL@Z0w$Y`XO z2M-_r1S+GaH%pz#Uy0*w$Vdl=X=rQXEzO}d6J^R6zjM1u&c9vYLvLp?W7w(?np9x1 zE_0JSAJCPB%i7p*Wvg)pn5T`8k3-uR?*NT|J`eS#_#54p>!p(mLDvmc-3o0mX*mp_ zN*AeS<>#^-{S%W<*mz^!X$w_2dHWpcJ6^j64qFBft-o}o_Vx80o0>}Du;>kLts;$8 zC`7q$QI(dKYG`Wa8#wl@V4jVWBRGQ@1dr-hstpQL)Tl+aqVpGpbSfN>5i&QMXfiZ> zaA?T1VGe?rpQ@;+pkrVdd{klI&jVS@I5_iz!=UMpTsa~mBga?1r}aRBm1WS;TT*s0f0lY=JBl66Upy)-k4J}lh=P^8(SXk~0xW=T9v*B|gzIhN z>qsO7dFd~mgxAy4V?&)=5ieYq?zi?ZEoj)&2o)RLy=@hbCRcfT5jigwtQGE{L*8<@Yd{zg;CsL5mvzfDY}P-wos_6PfprFVaeqNE%h zKZhLtcQld;ZD+>=nqN~>GvROfueSzJD&BE*}XfU|H&(FssBqY=hPCt`d zH?@s2>I(|;fcW&YM6#V#!kUIP8$Nkdh0A(bEVj``-AAyYgwY~jB zT|I7Bf@%;7aL7Wf4dZ%VqF$eiaC38OV6oy3Z#TER2G+fOCd9Iaoy6aLYbPTN{XRPz z;U!V|vBf%H!}52L2gH_+j;`bTcQRXB+y9onc^wLm5wi3-Be}U>k_u>2Eg$=k!(l@I zcCg+flakT2Nej3i0yn+g+}%NYb?ta;R?(g5SnwsQ49U8Wng8d|{B+lyRcEDvR3+`O{zfmrmvFrL6acVP%yG98X zo&+VBg@px@i)%o?dG(`T;n*$S5*rnyiR#=wW}}GsAcfyQpE|>a{=$Hjg=-*_K;UtD z#z-)AXwSRY?OPefw^iI+ z)AXz#PfEjlwTes|_{sB?4(O@fg0AJ^g8gP}ex9Ucf*@_^J(s_5jJV}c)s$`Myn|Kd z$6>}#q^n{4vN@+Os$m7KV+`}c%4)4pv@06af4-x5#wj!KKb%caK{A&Y#Rfs z-po?Dcb1({W=6FKIUirH&(yg=*6aLCekcKwyfK^JN5{wcA3nhO(o}SK#!CINhI`-I z1)6&n7O&ZmyFMuNwvEic#IiOAwNkR=u5it{B9n2sAJV5pNhar=j5`*N!Na;c7g!l$ z3aYBqUkqqTJ=Re-;)s!EOeij=7SQZ3Hq}ZRds%IM*PtM$wV z@;rlc*NRK7i3y5BETSKuumEN`Xu_8GP1Ri=OKQ$@I^ko8>H6)4rjiG5{VBM>B|%`&&s^)jS|-_95&yc=GqjNo{zFkw%%HHhS~e=s zD#sfS+-?*t|J!+ozP6KvtOl!R)@@-z24}`9{QaVLD^9VCSR2b`b!KC#o;Ki<+wXB6 zx3&O0LOWcg4&rv4QG0)4yb}7BFSEg~=IR5#ZRj8kg}dS7_V&^%#Do==#`u zpy6{ox?jWuR(;pg+f@mT>#HGWHAJRRDDDv~@(IDw&R>9643kK#HN`!1vBJHnC+RM&yIh8{gG2q zA%e*U3|N0XSRa~oX-3EAneep)@{h2vvd3Xvy$7og(sayr@95+e6~Xvi1tUqnIxoIH zVWo*OwYElb#uyW{Imam6f2rGbjR!Y3`#gPqkv57dB6K^wRGxc9B(t|aYDGS=m$&S!NmCtrMMaUg(c zc2qC=2Z`EEFMW-me5B)24AqF*bV5Dr-M5ig(l-WPS%CgaPzs6p_gnCIvTJ=Y<6!gT zVt@AfYCzjjsMEGi=rDQHo0yc;HqoRNnNFeWZgcm?f;cp(6CNylj36DoL(?TS7eU#+ z7&mfr#y))+CJOXQKUMZ7QIdS9@#-}7y2K1{8)cCt0~-X0O!O?Qx#E4Og+;A2SjalQ zs7r?qn0H044=sDN$SRG$arw~n=+T_DNdSrarmu)V6@|?1-ZB#hRn`uilTGPJ@fqEy zGt(f0B+^JDP&f=r{#Y_wi#AVDf-y!RIXU^0jXsFpf>=Ji*TeqSY!H~AMbJdCGLhC) zn7Rx+sXw6uYj;WRYrLd^5IZq@6JI1C^YkgnedZEYy<&4(z%Q$5yv#Boo{AH8n$a zhb4Y3PWdr269&?V%uI$xMcUrMzl=;w<_nm*qr=c3Rl@i5wWB;e-`t7D&c-mcQl7x! zZWB`UGcw=Y2=}~wzrfLx=uet<;m3~=8I~ZRuzvMQUQdr+yTV|ATf1Uuomr__nDf=X zZ3WYJtHp_ri(}SQAPjv+Y+0=fH4krOP@S&=zZ-t1jW1o@}z;xk8 z(Nz1co&El^HK^NrhVHa-_;&88vTU>_J33=%{if;BEY*J#1n59=07jrGQ#IP>@u#3A z;!q+E1Rj3ZJ+!4bq9F8PXJ@yMgZL;>&gYA0%_Kbi8?S=XGM~dnQZQ!yBSgcZhY96H zrWnU;k)qy`rX&&xlDyA%(a1Hhi5CWkmg(`Gb%m(HKi-7Z!LKGRP_B8@`7&hdDy5n= z`OIxqxiVfX@OX1p(mQu>0Ai*v_cTMiw4qRt3~NBvr9oBy0)r>w3p~V0SCm=An6@3n)>@z!|o-$HvDK z|3D2ZMJkLE5loMKl6R^ez@Zz%S$&mbeoqH5`Bb){Ei21q&VP)hWS2tjShfFtGE+$z zzCR$P#uktu+#!w)cX!lWN1XU%K-r=s{|j?)Akf@q#3b#{6cZCuJ~gCxuMXRmI$nGtnH+-h z+GEi!*X=AP<|fG`1>MBdTb?28JYc=fGvAi2I<$B(rs$;eoJCyR6_bc~p!XR@O-+sD z=eH`-ye})I5ic1eL~TDmtfJ|8`0VJ*Yr=hNCd)G1p2MMz4C3^Mj?7;!w|Ly%JqmuW zlIEW^Ft%z?*|fpXda>Jr^1noFZEwFgVV%|*XhH@acv8rdGxeEX{M$(vG{Zw+x(ei@ zmfXb22}8-?Fi`vo-YVrTH*C?a8%M=Hv9MqVH7H^J$KsD?>!SFZ;ZsvnHr_gn=7acz z#W?0eCdVhVMWN12VV^$>WlQ?f;P^{(&pYTops|btm6aj>_Uz+hqpGwB)vWp0Cf5y< zft8-je~nn?W11plq}N)4A{l8I7$!ks_x$PXW-2XaRFswX_BnF{R#6YIwMhAgd5F9X zGmwdadS6(a^fjHtXg8=l?Rc0Sm%hk6E9!5cLVloEy4eh(=FwgP`)~I^5~pBEWo+F6 zSf2ncyMurJN91#cJTy_u8Y}@%!bq1RkGC~-bV@SXRd4F{R-*V`bS+6;W5vZ(&+I<9$;-V|eNfLa5n-6% z2(}&uGRF;p92eS*sE*oR$@pexaqr*meB)VhmIg@h{uzkk$9~qh#cHhw#>O%)b@+(| z^IQgqzuj~Sk(J;swEM-3TrJAPCq9k^^^`q{IItKBRXYe}e0Tdr=Huf7da3$l4PdpwWDop%^}n;dD#K4s#DYA8SHZ z&1!riV4W4R7R#C))JH1~axJ)RYnM$$lIR%6fIVA@zV{XVyx}C+a-Dt8Y9M)^KU0+H zR4IUb2CJ{Hg>CuaXtD50jB(_Tcx=Z$^WYu2u5kubqmwp%drJ6 z?Fo40g!Qd<-l=TQxqHEOuPX0;^z7iX?Ke^a%XT<13TA^5`4Xcw6D@Ur&VT&CUe0d} z1GjOVF1^L@>O)l@?bD~$wzgf(nxX1OGD8fEV?TdJcZc2KoUe|oP1#=$$7ee|xbY)A zDZq+cuTpc(fFdj^=!;{k03C69lMQ(|>uhRfRu%+!k&YOi-3|1QKB z z?n?eq1XP>p-IM$Z^C;2L3itnbJZAip*Zo0aw2bs8@(s^~*8T9go!%dHcAz2lM;`yp zD=7&xjFV$S&5uDaiScyD?B-i1ze`+CoRtz`Wn+Zl&#s4&}MO{@N!ufrzjG$B79)Y2d3tBk&)TxUTw@QS0TEL_?njX|@vq?Uz(nBFK5Pq7*xj#u*R&i|?7+6# z+|r_n#SW&LXhtheZdah{ZVoqwyT{D>MC3nkFF#N)xLi{p7J1jXlmVeb;cP5?e(=f# zuT7fvjSbjS781v?7{)-X3*?>tq?)Yd)~|1{BDS(pqC zC}~H#WXlkUW*H5CDOo<)#x7%RY)A;ShGhI5s*#cRDA8YgqG(HeKDx+#(ZQ?386dv! zlXCO)w91~Vw4AmOcATuV653fa9R$fyK8ul%rG z-wfS zihugoZyr38Im?Zuh6@RcF~t1anQu7>#lPpb#}4cOA!EM11`%f*07RqOVkmX{p~KJ9 z^zP;K#|)$`^Rb{rnHGH{~>1(fawV0*Z#)}M`m8-?ZJV<+e}s9wE# z)l&az?w^5{)`S(%MRzxdNqrs1n*-=jS^_jqE*5XDrA0+VE`5^*p3CuM<&dZEeCjoz zR;uu_H9ZPZV|fQq`Cyw4nscrVwi!fE6ciMmX$!_hN7uF;jjKG)d2@aC4ropY)8etW=xJvni)8eHi`H$%#zn^WJ5NLc-rqk|u&&4Z6fD_m&JfSI1Bvb?b<*n&sfl0^t z=HnmRl`XrFvMKB%9}>PaA`m-fK6a0(8=qPkWS5bb4=v?XcWi&hRY?O5HdulRi4?fN zlsJ*N-0Qw+Yic@s0(2uy%F@ib;GjXt01Fmx5XbRo6+n|pP(&nodMoap^z{~q ziEeaUT@Mxe3vJSfI6?uLND(CNr=#^W<1b}jzW58bIfyWTDle$mmS(|x-0|2UlX+9k zQ^EX7Nw}?EzVoBfT(-LT|=9N@^hcn-_p&sqG z&*oVs2JSU+N4ZD`FhCAWaS;>|wH2G*Id|?pa#@>tyxX`+4HyIArWDvVrX)2WAOQff z0qyHu&-S@i^MS-+j--!pr4fPBj~_8({~e1bfcl0wI1kaoN>mJL6KUPQm5N7lB(ui1 zE-o%kq)&djzWJ}ob<-GfDlkB;F31j-VHKvQUGQ3sp`CwyGJk_i!y^sD0fqC@$9|jO zOqN!r!8-p==F@ZVP=U$qSpY(gQ0)59P1&t@y?5rvg<}E+GB}26NYPp4f2YFQrQtot5mn3wu_qprZ=>Ig-$ zbW26Ws~IgY>}^5w`vTB(G`PTZaDiGBo5o(tp)qli|NeV( z@H_=R8V39rt5J5YB2Ky?4eJJ#b`_iBe2ot~6%7mLt5t8Vwi^Jy7|jWXqa3amOIoRb zOr}WVFP--DsS`1WpN%~)t3R!arKF^Q$e12KEqU36AWwnCBICpH4XCsfnyrHr>$I$4 z!DpKX$OKLWarN7nv@!uIA+~RNO)l$$w}p(;b>mx8pwYvu;dD_unryX_NhT8*Tj>BTrTTL&!?O+%Rv;b?B??gSzdp?6Uug9{ zd@V08Z$BdI?fpoCS$)t4mg4rT8Q_I}h`0d-vYZ^|dOB*Q^S|xqTV*vIg?@fVFSmMpaw0qtTRbx} z({Pg?#{2`sc9)M5N$*N|4;^t$+QP?#mov zGVC@I*lBVrOU-%2y!7%)fAKjpEFsgQc4{amtiHb95KQEwvf<(3T<9-Zm$xIew#P22 zc2Ix|App^>v6(3L_MCU0d3W##AB0M~3D00EWoKZqsJYT(#@w$Y_H7G22M~ApVFTRHMI_3be)Lkn#0F*V8Pq zc}`Cjy$bE;FJ6H7p=0y#R>`}-m4(0F>%@P|?7fx{=R^uFdISRnZ2W_xQhD{YuR3t< z{6yxu=4~JkeA;|(J6_nv#>Nvs&FuLA&PW^he@t(UwFFE8)|a!R{`E`K`i^ZnyE4$k z;(749Ix|oi$c3QbEJ3b~D_kQsPz~fIUKym($a_7dJ?o+40*OLl^{=&oq$<#Q(yyrp z{J-FAniyAw9tPbe&IhQ|a`DqFTVQGQ&Gq3!C2==4x{6EJwiPZ8zub-iXoUtkJiG{} zPaR&}_fn8_z~(=;5lD-aPWD3z8PZS@AaUiomF!G8I}Mf>e~0g#BelA-5#`cj;O5>N Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/account_netting/tests/__init__.py b/account_netting/tests/__init__.py new file mode 100644 index 000000000..89ab9a71c --- /dev/null +++ b/account_netting/tests/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# (c) 2015 Pedro M. Baeza +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +from . import test_account_netting diff --git a/account_netting/tests/test_account_netting.py b/account_netting/tests/test_account_netting.py new file mode 100644 index 000000000..c5a6a5ce4 --- /dev/null +++ b/account_netting/tests/test_account_netting.py @@ -0,0 +1,77 @@ +# -*- coding: utf-8 -*- +# (c) 2015 Pedro M. Baeza +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +import openerp.tests.common as common +from openerp import workflow + + +class TestAccountNetting(common.TransactionCase): + + def setUp(self): + super(TestAccountNetting, self).setUp() + self.partner = self.env['res.partner'].create( + {'supplier': True, + 'customer': True, + 'name': "Supplier/Customer" + }) + self.invoice_model = self.env['account.invoice'] + self.account_receivable = self.env.ref('account.a_recv') + self.customer_invoice = self.invoice_model.create( + {'journal_id': self.env.ref('account.sales_journal').id, + 'type': 'out_invoice', + 'partner_id': self.partner.id, + 'account_id': self.account_receivable.id, + 'invoice_line': [(0, 0, {'name': 'Test', + 'price_unit': 100.0})], + }) + workflow.trg_validate( + self.uid, 'account.invoice', self.customer_invoice.id, + 'invoice_open', self.cr) + customer_move = self.customer_invoice.move_id + self.move_line_1 = customer_move.line_id.filtered( + lambda x: x.account_id == self.account_receivable) + self.account_payable = self.env.ref('account.a_pay') + self.supplier_invoice = self.invoice_model.create( + {'journal_id': self.env.ref('account.expenses_journal').id, + 'type': 'in_invoice', + 'partner_id': self.partner.id, + 'account_id': self.account_payable.id, + 'invoice_line': [(0, 0, {'name': 'Test', + 'price_unit': 1200.0})], + }) + workflow.trg_validate( + self.uid, 'account.invoice', self.supplier_invoice.id, + 'invoice_open', self.cr) + supplier_move = self.supplier_invoice.move_id + self.move_line_2 = supplier_move.line_id.filtered( + lambda x: x.account_id == self.account_payable) + + def test_compensation(self): + obj = self.env['account.move.make.netting'].with_context( + active_ids=[self.move_line_1.id, self.move_line_2.id]) + wizard = obj.create( + {'move_lines': [(6, 0, [self.move_line_1.id, + self.move_line_2.id])], + 'journal': self.env.ref('account.miscellaneous_journal').id}) + res = wizard.button_compensate() + move = self.env['account.move'].browse(res['res_id']) + self.assertEqual( + len(move.line_id), 2, + 'AR/AP netting move has an incorrect line number') + move_line_receivable = move.line_id.filtered( + lambda x: x.account_id == self.account_receivable) + self.assertEqual( + move_line_receivable.credit, 100, + 'Incorrect credit amount for receivable move line') + self.assertTrue( + move_line_receivable.reconcile_id, + 'Receivable move line should be totally reconciled') + move_line_payable = move.line_id.filtered( + lambda x: x.account_id == self.account_payable) + self.assertEqual( + move_line_payable.debit, 100, + 'Incorrect debit amount for payable move line') + self.assertTrue( + move_line_payable.reconcile_partial_id, + 'Receivable move line should be partially reconciled') diff --git a/account_netting/wizard/__init__.py b/account_netting/wizard/__init__.py new file mode 100644 index 000000000..45a789c27 --- /dev/null +++ b/account_netting/wizard/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# (c) 2015 Pedro M. Baeza +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +from . import account_move_make_netting diff --git a/account_netting/wizard/account_move_make_netting.py b/account_netting/wizard/account_move_make_netting.py new file mode 100644 index 000000000..fbdc7dc80 --- /dev/null +++ b/account_netting/wizard/account_move_make_netting.py @@ -0,0 +1,115 @@ +# -*- coding: utf-8 -*- +# (c) 2015 Pedro M. Baeza +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +from openerp import models, fields, api, exceptions, _ + + +class AccountMoveMakeNetting(models.TransientModel): + _name = "account.move.make.netting" + + journal = fields.Many2one( + comodel_name="account.journal", required=True, + domain="[('type', '=', 'general')]") + move_lines = fields.Many2many(comodel_name="account.move.line") + balance = fields.Float(readonly=True) + balance_type = fields.Selection( + selection=[('pay', 'To pay'), ('receive', 'To receive')], + readonly=True) + + @api.model + def default_get(self, fields): + if len(self.env.context.get('active_ids', [])) < 2: + raise exceptions.ValidationError( + _("You should compensate at least 2 journal entries.")) + move_lines = self.env['account.move.line'].browse( + self.env.context['active_ids']) + if (any(x not in ('payable', 'receivable') for + x in move_lines.mapped('account_id.type'))): + raise exceptions.ValidationError( + _("All entries must have a receivable or payable account")) + if any(move_lines.mapped('reconcile_id')): + raise exceptions.ValidationError( + _("All entries mustn't been reconciled")) + partner_id = None + for move in move_lines: + if (not move.partner_id or ( + move.partner_id != partner_id and partner_id is not None)): + raise exceptions.ValidationError( + _("All entries should have a partner and the partner must " + "be the same for all.")) + partner_id = move.partner_id + res = super(AccountMoveMakeNetting, self).default_get(fields) + res['move_lines'] = [(6, 0, move_lines.ids)] + balance = (sum(move_lines.mapped('debit')) - + sum(move_lines.mapped('credit'))) + res['balance'] = abs(balance) + res['balance_type'] = 'pay' if balance < 0 else 'receive' + return res + + @api.multi + def button_compensate(self): + self.ensure_one() + # Create account move + move = self.env['account.move'].create( + { + 'ref': _('AR/AP netting'), + 'journal_id': self.journal.id, + }) + # Group amounts by account + account_groups = self.move_lines.read_group( + [('id', 'in', self.move_lines.ids)], + ['account_id', 'debit', 'credit'], ['account_id']) + debtors = [] + creditors = [] + total_debtors = 0 + total_creditors = 0 + for account_group in account_groups: + balance = account_group['debit'] - account_group['credit'] + group_vals = { + 'account_id': account_group['account_id'][0], + 'balance': abs(balance), + } + if balance > 0: + debtors.append(group_vals) + total_debtors += balance + else: + creditors.append(group_vals) + total_creditors += abs(balance) + # Create move lines + move_line_model = self.env['account.move.line'] + netting_amount = min(total_creditors, total_debtors) + field_map = {1: 'debit', 0: 'credit'} + for i, group in enumerate([debtors, creditors]): + available_amount = netting_amount + for account_group in group: + if account_group['balance'] > available_amount: + amount = available_amount + else: + amount = account_group['balance'] + move_line_vals = { + field_map[i]: amount, + 'move_id': move.id, + 'partner_id': self.move_lines[0].partner_id.id, + 'date': move.date, + 'period_id': move.period_id.id, + 'journal_id': move.journal_id.id, + 'name': move.ref, + 'account_id': account_group['account_id'], + } + move_line_model.create(move_line_vals) + available_amount -= account_group['balance'] + if available_amount <= 0: + break + # Make reconciliation + for move_line in move.line_id: + to_reconcile = move_line + self.move_lines.filtered( + lambda x: x.account_id == move_line.account_id) + to_reconcile.reconcile_partial() + # Open created move + action = self.env.ref('account.action_move_journal_line').read()[0] + action['view_mode'] = 'form' + del action['views'] + del action['view_id'] + action['res_id'] = move.id + return action diff --git a/account_netting/wizard/account_move_make_netting_view.xml b/account_netting/wizard/account_move_make_netting_view.xml new file mode 100644 index 000000000..7a90badb1 --- /dev/null +++ b/account_netting/wizard/account_move_make_netting_view.xml @@ -0,0 +1,37 @@ + + + + + + + Compensate entries + account.move.make.netting + +
+
+
+ + +
+
From b341ec7e5c1d8a5d4e50b49ae45f9bd8ef82bb83 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 17 Oct 2015 19:56:00 -0400 Subject: [PATCH 02/22] OCA Transbot updated translations from Transifex --- account_netting/i18n/am.po | 138 +++++++++++++++++++++++ account_netting/i18n/ar.po | 163 +++++++++++++++++++++++++++ account_netting/i18n/bg.po | 164 +++++++++++++++++++++++++++ account_netting/i18n/bs.po | 159 ++++++++++++++++++++++++++ account_netting/i18n/ca.po | 162 ++++++++++++++++++++++++++ account_netting/i18n/ca_ES.po | 164 +++++++++++++++++++++++++++ account_netting/i18n/cs.po | 154 +++++++++++++++++++++++++ account_netting/i18n/da.po | 148 ++++++++++++++++++++++++ account_netting/i18n/de.po | 161 ++++++++++++++++++++++++++ account_netting/i18n/el_GR.po | 163 +++++++++++++++++++++++++++ account_netting/i18n/en_AU.po | 148 ++++++++++++++++++++++++ account_netting/i18n/en_GB.po | 167 +++++++++++++++++++++++++++ account_netting/i18n/es.po | 46 ++++++-- account_netting/i18n/es_AR.po | 148 ++++++++++++++++++++++++ account_netting/i18n/es_CL.po | 148 ++++++++++++++++++++++++ account_netting/i18n/es_CO.po | 148 ++++++++++++++++++++++++ account_netting/i18n/es_CR.po | 162 ++++++++++++++++++++++++++ account_netting/i18n/es_DO.po | 148 ++++++++++++++++++++++++ account_netting/i18n/es_EC.po | 161 ++++++++++++++++++++++++++ account_netting/i18n/es_ES.po | 171 ++++++++++++++++++++++++++++ account_netting/i18n/es_MX.po | 164 +++++++++++++++++++++++++++ account_netting/i18n/es_PE.po | 148 ++++++++++++++++++++++++ account_netting/i18n/es_PY.po | 148 ++++++++++++++++++++++++ account_netting/i18n/es_VE.po | 169 +++++++++++++++++++++++++++ account_netting/i18n/et.po | 188 +++++++++++++++++++++++++++++++ account_netting/i18n/eu.po | 148 ++++++++++++++++++++++++ account_netting/i18n/fa.po | 148 ++++++++++++++++++++++++ account_netting/i18n/fi.po | 187 ++++++++++++++++++++++++++++++ account_netting/i18n/fr.po | 166 +++++++++++++++++++++++++++ account_netting/i18n/fr_CA.po | 148 ++++++++++++++++++++++++ account_netting/i18n/fr_CH.po | 148 ++++++++++++++++++++++++ account_netting/i18n/fr_FR.po | 148 ++++++++++++++++++++++++ account_netting/i18n/gl.po | 162 ++++++++++++++++++++++++++ account_netting/i18n/gl_ES.po | 138 +++++++++++++++++++++++ account_netting/i18n/he.po | 148 ++++++++++++++++++++++++ account_netting/i18n/hi.po | 148 ++++++++++++++++++++++++ account_netting/i18n/hr.po | 183 ++++++++++++++++++++++++++++++ account_netting/i18n/hr_HR.po | 148 ++++++++++++++++++++++++ account_netting/i18n/hu.po | 160 ++++++++++++++++++++++++++ account_netting/i18n/id.po | 164 +++++++++++++++++++++++++++ account_netting/i18n/it.po | 158 ++++++++++++++++++++++++++ account_netting/i18n/ja.po | 161 ++++++++++++++++++++++++++ account_netting/i18n/ko.po | 148 ++++++++++++++++++++++++ account_netting/i18n/lo.po | 148 ++++++++++++++++++++++++ account_netting/i18n/lt.po | 164 +++++++++++++++++++++++++++ account_netting/i18n/lt_LT.po | 148 ++++++++++++++++++++++++ account_netting/i18n/lv.po | 148 ++++++++++++++++++++++++ account_netting/i18n/mk.po | 165 +++++++++++++++++++++++++++ account_netting/i18n/mn.po | 186 ++++++++++++++++++++++++++++++ account_netting/i18n/nb.po | 160 ++++++++++++++++++++++++++ account_netting/i18n/nb_NO.po | 148 ++++++++++++++++++++++++ account_netting/i18n/nl.po | 155 +++++++++++++++++++++++++ account_netting/i18n/nl_BE.po | 161 ++++++++++++++++++++++++++ account_netting/i18n/nl_NL.po | 148 ++++++++++++++++++++++++ account_netting/i18n/pl.po | 160 ++++++++++++++++++++++++++ account_netting/i18n/pt.po | 158 ++++++++++++++++++++++++++ account_netting/i18n/pt_BR.po | 165 +++++++++++++++++++++++++++ account_netting/i18n/pt_PT.po | 166 +++++++++++++++++++++++++++ account_netting/i18n/ro.po | 173 ++++++++++++++++++++++++++++ account_netting/i18n/ru.po | 150 ++++++++++++++++++++++++ account_netting/i18n/sk.po | 148 ++++++++++++++++++++++++ account_netting/i18n/sl.po | 151 +++++++++++++++++++++++++ account_netting/i18n/sr.po | 148 ++++++++++++++++++++++++ account_netting/i18n/sr@latin.po | 161 ++++++++++++++++++++++++++ account_netting/i18n/sv.po | 173 ++++++++++++++++++++++++++++ account_netting/i18n/th.po | 163 +++++++++++++++++++++++++++ account_netting/i18n/tr.po | 156 +++++++++++++++++++++++++ account_netting/i18n/tr_TR.po | 148 ++++++++++++++++++++++++ account_netting/i18n/uk.po | 148 ++++++++++++++++++++++++ account_netting/i18n/vi.po | 161 ++++++++++++++++++++++++++ account_netting/i18n/vi_VN.po | 148 ++++++++++++++++++++++++ account_netting/i18n/zh_CN.po | 160 ++++++++++++++++++++++++++ account_netting/i18n/zh_TW.po | 158 ++++++++++++++++++++++++++ 73 files changed, 11366 insertions(+), 11 deletions(-) create mode 100644 account_netting/i18n/am.po create mode 100644 account_netting/i18n/ar.po create mode 100644 account_netting/i18n/bg.po create mode 100644 account_netting/i18n/bs.po create mode 100644 account_netting/i18n/ca.po create mode 100644 account_netting/i18n/ca_ES.po create mode 100644 account_netting/i18n/cs.po create mode 100644 account_netting/i18n/da.po create mode 100644 account_netting/i18n/de.po create mode 100644 account_netting/i18n/el_GR.po create mode 100644 account_netting/i18n/en_AU.po create mode 100644 account_netting/i18n/en_GB.po create mode 100644 account_netting/i18n/es_AR.po create mode 100644 account_netting/i18n/es_CL.po create mode 100644 account_netting/i18n/es_CO.po create mode 100644 account_netting/i18n/es_CR.po create mode 100644 account_netting/i18n/es_DO.po create mode 100644 account_netting/i18n/es_EC.po create mode 100644 account_netting/i18n/es_ES.po create mode 100644 account_netting/i18n/es_MX.po create mode 100644 account_netting/i18n/es_PE.po create mode 100644 account_netting/i18n/es_PY.po create mode 100644 account_netting/i18n/es_VE.po create mode 100644 account_netting/i18n/et.po create mode 100644 account_netting/i18n/eu.po create mode 100644 account_netting/i18n/fa.po create mode 100644 account_netting/i18n/fi.po create mode 100644 account_netting/i18n/fr.po create mode 100644 account_netting/i18n/fr_CA.po create mode 100644 account_netting/i18n/fr_CH.po create mode 100644 account_netting/i18n/fr_FR.po create mode 100644 account_netting/i18n/gl.po create mode 100644 account_netting/i18n/gl_ES.po create mode 100644 account_netting/i18n/he.po create mode 100644 account_netting/i18n/hi.po create mode 100644 account_netting/i18n/hr.po create mode 100644 account_netting/i18n/hr_HR.po create mode 100644 account_netting/i18n/hu.po create mode 100644 account_netting/i18n/id.po create mode 100644 account_netting/i18n/it.po create mode 100644 account_netting/i18n/ja.po create mode 100644 account_netting/i18n/ko.po create mode 100644 account_netting/i18n/lo.po create mode 100644 account_netting/i18n/lt.po create mode 100644 account_netting/i18n/lt_LT.po create mode 100644 account_netting/i18n/lv.po create mode 100644 account_netting/i18n/mk.po create mode 100644 account_netting/i18n/mn.po create mode 100644 account_netting/i18n/nb.po create mode 100644 account_netting/i18n/nb_NO.po create mode 100644 account_netting/i18n/nl.po create mode 100644 account_netting/i18n/nl_BE.po create mode 100644 account_netting/i18n/nl_NL.po create mode 100644 account_netting/i18n/pl.po create mode 100644 account_netting/i18n/pt.po create mode 100644 account_netting/i18n/pt_BR.po create mode 100644 account_netting/i18n/pt_PT.po create mode 100644 account_netting/i18n/ro.po create mode 100644 account_netting/i18n/ru.po create mode 100644 account_netting/i18n/sk.po create mode 100644 account_netting/i18n/sl.po create mode 100644 account_netting/i18n/sr.po create mode 100644 account_netting/i18n/sr@latin.po create mode 100644 account_netting/i18n/sv.po create mode 100644 account_netting/i18n/th.po create mode 100644 account_netting/i18n/tr.po create mode 100644 account_netting/i18n/tr_TR.po create mode 100644 account_netting/i18n/uk.po create mode 100644 account_netting/i18n/vi.po create mode 100644 account_netting/i18n/vi_VN.po create mode 100644 account_netting/i18n/zh_CN.po create mode 100644 account_netting/i18n/zh_TW.po diff --git a/account_netting/i18n/am.po b/account_netting/i18n/am.po new file mode 100644 index 000000000..3edeab817 --- /dev/null +++ b/account_netting/i18n/am.po @@ -0,0 +1,138 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-12-12 10:24+0000\n" +"PO-Revision-Date: 2015-10-14 18:45+0000\n" +"Last-Translator: <>\n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "o" diff --git a/account_netting/i18n/ar.po b/account_netting/i18n/ar.po new file mode 100644 index 000000000..05261292a --- /dev/null +++ b/account_netting/i18n/ar.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Carles Antoli , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012-2013 +# Guewen Baconnier , 2015 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# John Toro , 2015 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Rudolf Schnapka , 2015-2016 +# SaFi J. , 2015 +# Sofce Dimitrijeva , 2013 +# Thomas A. Jaeger, 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Arabic (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "إلغاء" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "أنشئ في" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "اسم العرض" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "المعرف" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "السجل اليومي" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "أو" diff --git a/account_netting/i18n/bg.po b/account_netting/i18n/bg.po new file mode 100644 index 000000000..bacfb8934 --- /dev/null +++ b/account_netting/i18n/bg.po @@ -0,0 +1,164 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Accounts-Payable - Alkemics, 2015 +# Ahmet Altinisik , 2015 +# Armando Vulcano Junior , 2015 +# Bruno JOLIVEAU, 2015 +# Chen-Do LU , 2015 +# Bole , 2015 +# FIRST AUTHOR , 2012-2013 +# François Breysse , 2015 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +# Thomas A. Jaeger, 2015 +# yterrettaz, 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Отмяна" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Създадено от" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Създадено на" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Име за Показване" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "или" diff --git a/account_netting/i18n/bs.po b/account_netting/i18n/bs.po new file mode 100644 index 000000000..3fa6ac10a --- /dev/null +++ b/account_netting/i18n/bs.po @@ -0,0 +1,159 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2016 +# Ahmet Altinisik , 2013 +# Antonio Trueba, 2016 +# danimaribeiro , 2016 +# Eduardo Rodríguez Crespo , 2016 +# FIRST AUTHOR , 2012-2013 +# Hotellook, 2014 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2015-2016 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-22 16:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Otkaži" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Dnevnik" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "ili" diff --git a/account_netting/i18n/ca.po b/account_netting/i18n/ca.po new file mode 100644 index 000000000..04f063163 --- /dev/null +++ b/account_netting/i18n/ca.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2016 +# Antonio Trueba, 2016 +# Carles Antoli , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2011-2014 +# Giacomo , 2015 +# Guewen Baconnier , 2015 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015 +# Maxime Chambreuil , 2015 +# Paolo Valier, 2016 +# Rudolf Schnapka , 2015 +# SaFi J. , 2015 +# Thomas A. Jaeger, 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:44+0000\n" +"PO-Revision-Date: 2017-01-13 09:22+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "AR / AP xarxa" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "Tots els assentaments han de tenir un compte per cobrar o per pagar" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "Totes les entrades no s'han reconciliat" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "Totes les entrades han de tenir una empresa i l'empresa ha de ser la mateixa per a tothom." + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "Balanç" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "Tipus de Balanç" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancel·la" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "Compensar" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "Compensar Assentaments" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Creat per" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Creat el" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Veure el nom" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Diari" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "Moviment Línies" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "Seleccioneu el diari on emmagatzemar els assentaments del diari" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "Aquesta operació generarà anotacions en compte que són la contrapartida dels comptes de cobrament / pagament seleccionats, i reconciliar entre si, deixant aquest balanç en la empresa:" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "Pagar" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "Rebre" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "Ha de compensar almenys 2 assentaments del diari." + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "o" diff --git a/account_netting/i18n/ca_ES.po b/account_netting/i18n/ca_ES.po new file mode 100644 index 000000000..ab2d10d25 --- /dev/null +++ b/account_netting/i18n/ca_ES.po @@ -0,0 +1,164 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2015 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Carles Antoli , 2015 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2011-2012,2014 +# Florian Hatat, 2015 +# Hotellook, 2014 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2015-2016 +# SaFi J. , 2015 +# Stéphane Bidoul , 2015 +# yterrettaz, 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-26 22:34+0000\n" +"PO-Revision-Date: 2017-04-25 10:41+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancel·la" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Diari" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "" diff --git a/account_netting/i18n/cs.po b/account_netting/i18n/cs.po new file mode 100644 index 000000000..688dbf955 --- /dev/null +++ b/account_netting/i18n/cs.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Bole , 2015 +# FIRST AUTHOR , 2010,2012 +# Matjaž Mozetič , 2015 +# Rudolf Schnapka , 2015 +# Thomas A. Jaeger, 2015 +# UAB "Draugiški sprendimai" , 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Zrušit" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Vytvořeno" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Deník" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "nebo" diff --git a/account_netting/i18n/da.po b/account_netting/i18n/da.po new file mode 100644 index 000000000..e4e7726c9 --- /dev/null +++ b/account_netting/i18n/da.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-26 22:34+0000\n" +"PO-Revision-Date: 2017-04-25 10:44+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Danish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Annuller" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Oprettet af" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Oprettet den" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Vist navn" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "Id" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Journal" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "eller" diff --git a/account_netting/i18n/de.po b/account_netting/i18n/de.po new file mode 100644 index 000000000..950b872d0 --- /dev/null +++ b/account_netting/i18n/de.po @@ -0,0 +1,161 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2015 +# Antonio Trueba, 2016 +# Bruno JOLIVEAU, 2015 +# FIRST AUTHOR , 2012,2014 +# Gustavo Lepri , 2015 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2016 +# Paolo Valier, 2016 +# Rudolf Schnapka , 2015-2016 +# Thomas A. Jaeger, 2015 +# Thomas A. Jaeger, 2015 +# yterrettaz, 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-24 00:47+0000\n" +"PO-Revision-Date: 2016-10-04 09:43+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: German (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "AR/AP Verrechnung" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "Alle Einträge müssen eine Verbindlichkeit oder eine Forderung sein" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "Kein Eintrag darf ausgeglichen sein" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "Alle Einträge müssen den gleichen Partner haben" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "Saldo" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "Saldotyp" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Abbrechen" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "ausgleichen" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "Einträge ausgleichen" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Erstellt von" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Erstellt am" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Anzeigename" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Journal" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Zuletzt geändert von" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Zuletzt geändert am" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "Buchungszeilen" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "Wählen Sie das Journal, wo die Einträge gespeichert werden" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "Dies generiert Gegenbuchungen zu den selektierten Forderungen oder Verbindlichkeiten um diese dann auf dem Partner auszugleichen:" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "zu zahlen" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "zu erhalten" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "Sie sollten mindestens 2 Journaleinträge ausgleichen" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "oder" diff --git a/account_netting/i18n/el_GR.po b/account_netting/i18n/el_GR.po new file mode 100644 index 000000000..7960e066c --- /dev/null +++ b/account_netting/i18n/el_GR.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2015 +# Antonio Trueba, 2016 +# Carles Antoli , 2015 +# danimaribeiro , 2016 +# Bole , 2015 +# FIRST AUTHOR , 2012-2013 +# Guewen Baconnier , 2015 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015-2016 +# Mohamed HABOU , 2016 +# Paolo Valier, 2016 +# Rudolf Schnapka , 2015-2016 +# Sofce Dimitrijeva , 2013 +# Thomas A. Jaeger, 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-22 16:30+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Άκυρο" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "Κωδικός" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "" diff --git a/account_netting/i18n/en_AU.po b/account_netting/i18n/en_AU.po new file mode 100644 index 000000000..e34feb138 --- /dev/null +++ b/account_netting/i18n/en_AU.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: English (Australia) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/en_AU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_AU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancel" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "" diff --git a/account_netting/i18n/en_GB.po b/account_netting/i18n/en_GB.po new file mode 100644 index 000000000..0bf55c2c3 --- /dev/null +++ b/account_netting/i18n/en_GB.po @@ -0,0 +1,167 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Accounts-Payable - Alkemics, 2015 +# Antonio Trueba, 2016 +# Chen-Do LU , 2015 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2016 +# Dimitrios Glentadakis , 2013-2014, 2015-2016 +# Efstathios Iosifidis , 2014 +# FIRST AUTHOR , 2012,2014 +# François Breysse , 2015 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Jim Spentzos, 2014 +# Matjaž Mozetič , 2015-2016 +# njeudy , 2015 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +# Wagner Pereira , 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancel" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Created by" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Display Name" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Journal" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "or" diff --git a/account_netting/i18n/es.po b/account_netting/i18n/es.po index 9c6e19e27..24cea4e35 100644 --- a/account_netting/i18n/es.po +++ b/account_netting/i18n/es.po @@ -1,19 +1,30 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * account_netting -# +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2015-2016 +# Alejandro Santana , 2015 +# Antonio Trueba, 2016 +# Carles Antoli , 2015-2016 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2010,2012,2014 +# Matjaž Mozetič , 2015-2016 +# Rudolf Schnapka , 2015-2016 +# SaFi J. , 2015 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: account-financial-tools (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-07 15:54+0000\n" -"PO-Revision-Date: 2015-08-07 15:54+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" +"POT-Creation-Date: 2016-09-14 00:45+0000\n" +"PO-Revision-Date: 2016-09-16 21:45+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting #: code:addons/account_netting/wizard/account_move_make_netting.py:56 @@ -36,7 +47,8 @@ msgstr "Ningún apunte debe estar conciliado" #. module: account_netting #: code:addons/account_netting/wizard/account_move_make_netting.py:39 #, python-format -msgid "All entries should have a partner and the partner must be the same for all." +msgid "" +"All entries should have a partner and the partner must be the same for all." msgstr "Todos los apuntes deben tener una empresa y la empresa debe ser la misma para todos." #. module: account_netting @@ -75,6 +87,11 @@ msgstr "Creado por" msgid "Created on" msgstr "Creado en" +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + #. module: account_netting #: field:account.move.make.netting,id:0 msgid "ID" @@ -85,6 +102,11 @@ msgstr "ID" msgid "Journal" msgstr "Diario" +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación el" + #. module: account_netting #: field:account.move.make.netting,write_uid:0 msgid "Last Updated by" @@ -107,7 +129,10 @@ msgstr "Seleccione el diario en el que se guardarán los apuntes" #. module: account_netting #: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "This operation will generate account entries that are counterpart of the receivable/payable accounts selected, and reconcile each other, letting this balance in the partner:" +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" msgstr "Esta operación generará apuntes que serán la contrapartida de las cuentas a cobrar/a pagar seleccionadas, y las reconciliará entre ellas, dejando este saldo en la empresa:" #. module: account_netting @@ -130,4 +155,3 @@ msgstr "Debe compensar al menos 2 apuntes" #: view:account.move.make.netting:account_netting.view_account_move_make_netting_form msgid "or" msgstr "o" - diff --git a/account_netting/i18n/es_AR.po b/account_netting/i18n/es_AR.po new file mode 100644 index 000000000..9d712825d --- /dev/null +++ b/account_netting/i18n/es_AR.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "o" diff --git a/account_netting/i18n/es_CL.po b/account_netting/i18n/es_CL.po new file mode 100644 index 000000000..c64dafed6 --- /dev/null +++ b/account_netting/i18n/es_CL.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "o" diff --git a/account_netting/i18n/es_CO.po b/account_netting/i18n/es_CO.po new file mode 100644 index 000000000..36165d4dd --- /dev/null +++ b/account_netting/i18n/es_CO.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:22+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Creado" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Nombre Público" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "o" diff --git a/account_netting/i18n/es_CR.po b/account_netting/i18n/es_CR.po new file mode 100644 index 000000000..afc693ddd --- /dev/null +++ b/account_netting/i18n/es_CR.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2015-2016 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Christophe CHAUVET , 2015 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2015 +# FIRST AUTHOR , 2012-2013 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Rudolf Schnapka , 2016 +# Rudolf Schnapka , 2015 +# SaFi J. , 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Diario" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "" diff --git a/account_netting/i18n/es_DO.po b/account_netting/i18n/es_DO.po new file mode 100644 index 000000000..8546b36a7 --- /dev/null +++ b/account_netting/i18n/es_DO.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "o" diff --git a/account_netting/i18n/es_EC.po b/account_netting/i18n/es_EC.po new file mode 100644 index 000000000..6bc0027cb --- /dev/null +++ b/account_netting/i18n/es_EC.po @@ -0,0 +1,161 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2016 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Carles Antoli , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012-2013 +# Kostas Goutoudis , 2015 +# Hotellook, 2014 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2015-2016 +# SaFi J. , 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Diario" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "o" diff --git a/account_netting/i18n/es_ES.po b/account_netting/i18n/es_ES.po new file mode 100644 index 000000000..39bf1118b --- /dev/null +++ b/account_netting/i18n/es_ES.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Accounts-Payable - Alkemics, 2015 +# Ahmet Altinisik , 2015-2016 +# Antonio Trueba, 2016 +# Bole , 2015 +# Carles Antoli , 2015 +# Carles Antoli , 2015 +# Chen-Do LU , 2015 +# danimaribeiro , 2016 +# Bole , 2015 +# FIRST AUTHOR , 2012-2014 +# François Breysse , 2015 +# Giacomo , 2015 +# Guewen Baconnier , 2015 +# Jarmo Kortetjärvi , 2016 +# Jesús Alan Ramos Rodríguez , 2015 +# Jesús Alan Ramos Rodríguez , 2015 +# Matjaž Mozetič , 2015-2016 +# Maxime Chambreuil , 2015 +# Maxime Chambreuil , 2015 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Rudolf Schnapka , 2015-2016 +# Thomas A. Jaeger, 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-26 22:34+0000\n" +"PO-Revision-Date: 2017-04-25 10:42+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Diario" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "o" diff --git a/account_netting/i18n/es_MX.po b/account_netting/i18n/es_MX.po new file mode 100644 index 000000000..f3f6c922f --- /dev/null +++ b/account_netting/i18n/es_MX.po @@ -0,0 +1,164 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Alexis de Lattre , 2016 +# Antonio Trueba, 2016 +# Carles Antoli , 2015 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2010,2012-2014 +# Giacomo , 2015 +# Giedrius Slavinskas , 2012 +# Guewen Baconnier , 2015 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2015-2016 +# Sofce Dimitrijeva , 2013 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Diario" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "ó" diff --git a/account_netting/i18n/es_PE.po b/account_netting/i18n/es_PE.po new file mode 100644 index 000000000..35435a704 --- /dev/null +++ b/account_netting/i18n/es_PE.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-10-11 09:50+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "o" diff --git a/account_netting/i18n/es_PY.po b/account_netting/i18n/es_PY.po new file mode 100644 index 000000000..ece6616b4 --- /dev/null +++ b/account_netting/i18n/es_PY.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:21+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "" diff --git a/account_netting/i18n/es_VE.po b/account_netting/i18n/es_VE.po new file mode 100644 index 000000000..0ec34fed1 --- /dev/null +++ b/account_netting/i18n/es_VE.po @@ -0,0 +1,169 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Accounts-Payable - Alkemics, 2015 +# Ahmet Altinisik , 2015 +# Alejandro Santana , 2015 +# Antonio Trueba, 2016 +# Chen-Do LU , 2015 +# Bole , 2015 +# Dimitrios Glentadakis , 2013-2014, 2015-2016 +# Efstathios Iosifidis , 2014 +# FIRST AUTHOR , 2012,2014 +# François Breysse , 2015 +# Guewen Baconnier , 2015 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Jim Spentzos, 2014 +# Leonardo J. Caballero G. , 2016 +# Matjaž Mozetič , 2015 +# njeudy , 2015 +# Pedro M. Baeza , 2015 +# Pierre Verkest , 2015 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Diario" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "" diff --git a/account_netting/i18n/et.po b/account_netting/i18n/et.po new file mode 100644 index 000000000..0b39cbddb --- /dev/null +++ b/account_netting/i18n/et.po @@ -0,0 +1,188 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Accounts-Payable - Alkemics, 2015 +# Ahmet Altinisik , 2016 +# Alejandro Santana , 2015 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# bossnm11 , 2014 +# Chanseok , 2014 +# Chen-Do LU , 2015 +# Christophe CHAUVET , 2015 +# Chul Park , 2015 +# danimaribeiro , 2016 +# David10000 , 2014 +# FIRST AUTHOR , 2012-2013 +# Florian Hatat, 2015 +# François Breysse , 2015 +# Gil , 2014 +# kmooc , 2015 +# Hongseob Lee , 2015 +# Hotellook, 2014 +# jeon , 2014 +# JiyeonLee , 2014 +# Jong-Dae Park , 2013 +# Kevin Min , 2015 +# KimKyudong , 2014 +# mariana1201 , 2014 +# Matjaž Mozetič , 2015 +# Miku Laitinen , 2015 +# Nicole , 2014 +# njeudy , 2015 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Pope, 2014 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +# Sarina Canelake , 2014 +# Seok Jun Yoon , 2015 +# shin2012 , 2014 +# Sujin Lee , 2014 +# Sunah Lim , 2013 +# Young C. Kim, 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Estonian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Loobu" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Loonud" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Loodud" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Päevik" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "või" diff --git a/account_netting/i18n/eu.po b/account_netting/i18n/eu.po new file mode 100644 index 000000000..f73e7e766 --- /dev/null +++ b/account_netting/i18n/eu.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Ezeztatu" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Nork sortua" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "or" diff --git a/account_netting/i18n/fa.po b/account_netting/i18n/fa.po new file mode 100644 index 000000000..dcc6547d7 --- /dev/null +++ b/account_netting/i18n/fa.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Persian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "لغو" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "شناسه" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "یا" diff --git a/account_netting/i18n/fi.po b/account_netting/i18n/fi.po new file mode 100644 index 000000000..18d8d3e36 --- /dev/null +++ b/account_netting/i18n/fi.po @@ -0,0 +1,187 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2016 +# Ahmet Altinisik , 2016 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# bossnm11 , 2014 +# Carles Antoli , 2015 +# Carles Antoli , 2015 +# Chanseok , 2014 +# Chanseok , 2014 +# Chul Park , 2015 +# danimaribeiro , 2016 +# David10000 , 2014 +# Eduardo Rodríguez Crespo , 2016 +# FIRST AUTHOR , 2012-2013 +# Gil , 2014 +# kmooc , 2015 +# Hongseob Lee , 2015 +# jeon , 2014 +# JiyeonLee , 2014 +# Jong-Dae Park , 2013 +# Kevin Min , 2015 +# KimKyudong , 2014 +# kmooc , 2015 +# mariana1201 , 2014 +# Matjaž Mozetič , 2015 +# Nicole , 2014 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Pedro M. Baeza , 2015 +# Pope, 2014 +# Rudolf Schnapka , 2016 +# Sarina Canelake , 2014 +# Seok Jun Yoon , 2015 +# shin2012 , 2014 +# Sujin Lee , 2014 +# Sunah Lim , 2013 +# UAB "Draugiški sprendimai" , 2015 +# Young C. Kim, 2015 +# Young C. Kim, 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:44+0000\n" +"PO-Revision-Date: 2017-01-13 09:29+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Peruuta" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Luonut" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Luotu" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Nimi" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Piväkirja" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "tai" diff --git a/account_netting/i18n/fr.po b/account_netting/i18n/fr.po new file mode 100644 index 000000000..b80bc1ae5 --- /dev/null +++ b/account_netting/i18n/fr.po @@ -0,0 +1,166 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2016 +# Ahmet Altinisik , 2016 +# Alejandro Santana , 2015 +# Antonio Trueba, 2016 +# Christophe CHAUVET , 2015 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012 +# Hotellook, 2014 +# Isabelle RICHARD , 2015 +# Jarmo Kortetjärvi , 2016 +# John Toro , 2015 +# Lixon Jean-Yves , 2016 +# Lixon Jean-Yves , 2016 +# Matjaž Mozetič , 2015-2016 +# Pedro Castro Silva , 2015 +# Rudolf Schnapka , 2015 +# SaFi J. , 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 17:00+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "Balance" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Annuler" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Nom à afficher" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Journal" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Dernière modification par" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Dernière modification le" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "Écritures comptables" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "ou" diff --git a/account_netting/i18n/fr_CA.po b/account_netting/i18n/fr_CA.po new file mode 100644 index 000000000..1bd2b0d99 --- /dev/null +++ b/account_netting/i18n/fr_CA.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-26 22:34+0000\n" +"PO-Revision-Date: 2017-03-13 12:52+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Annuler" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "Identifiant" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "" diff --git a/account_netting/i18n/fr_CH.po b/account_netting/i18n/fr_CH.po new file mode 100644 index 000000000..95db23d35 --- /dev/null +++ b/account_netting/i18n/fr_CH.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 21:28+0000\n" +"PO-Revision-Date: 2016-12-01 10:10+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Annuler" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Nom affiché" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "" diff --git a/account_netting/i18n/fr_FR.po b/account_netting/i18n/fr_FR.po new file mode 100644 index 000000000..9741989ab --- /dev/null +++ b/account_netting/i18n/fr_FR.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:20+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (France) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Annuler" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "" diff --git a/account_netting/i18n/gl.po b/account_netting/i18n/gl.po new file mode 100644 index 000000000..8393e1caf --- /dev/null +++ b/account_netting/i18n/gl.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2015-2016 +# Antonio Trueba, 2016 +# Carles Antoli , 2015 +# Carles Antoli , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012-2014 +# Jarmo Kortetjärvi , 2016 +# Jesús Alan Ramos Rodríguez , 2015 +# Jesús Alan Ramos Rodríguez , 2015 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Rudolf Schnapka , 2015-2016 +# Thomas A. Jaeger, 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-26 22:34+0000\n" +"PO-Revision-Date: 2017-04-25 10:39+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Galician (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Diario" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "ou" diff --git a/account_netting/i18n/gl_ES.po b/account_netting/i18n/gl_ES.po new file mode 100644 index 000000000..fcf48d38d --- /dev/null +++ b/account_netting/i18n/gl_ES.po @@ -0,0 +1,138 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-10-14 18:49+0000\n" +"PO-Revision-Date: 2015-10-14 18:45+0000\n" +"Last-Translator: <>\n" +"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/gl_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "" diff --git a/account_netting/i18n/he.po b/account_netting/i18n/he.po new file mode 100644 index 000000000..223817ae8 --- /dev/null +++ b/account_netting/i18n/he.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "בטל" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "נוצר ב-" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "השם המוצג" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "מזהה" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "או" diff --git a/account_netting/i18n/hi.po b/account_netting/i18n/hi.po new file mode 100644 index 000000000..1d0062b6b --- /dev/null +++ b/account_netting/i18n/hi.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Hindi (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "रद्द" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "" diff --git a/account_netting/i18n/hr.po b/account_netting/i18n/hr.po new file mode 100644 index 000000000..49353dff8 --- /dev/null +++ b/account_netting/i18n/hr.po @@ -0,0 +1,183 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2015-2016 +# Antonio Trueba, 2016 +# bossnm11 , 2014 +# Carles Antoli , 2015 +# Carles Antoli , 2015 +# Chanseok , 2014 +# Chul Park , 2015 +# danimaribeiro , 2016 +# David10000 , 2014 +# FIRST AUTHOR , 2012-2013 +# Gil , 2014 +# kmooc , 2015 +# Hongseob Lee , 2015 +# Hotellook, 2014 +# jeon , 2014 +# JiyeonLee , 2014 +# Jong-Dae Park , 2013 +# Kevin Min , 2015 +# KimKyudong , 2014 +# kmooc , 2015 +# Leonardo J. Caballero G. , 2016 +# Leonardo J. Caballero G. , 2016 +# mariana1201 , 2014 +# Matjaž Mozetič , 2015-2016 +# Nicole , 2014 +# Paolo Valier, 2016 +# Pope, 2014 +# Rudolf Schnapka , 2016 +# Sarina Canelake , 2014 +# Seok Jun Yoon , 2015 +# shin2012 , 2014 +# Sujin Lee , 2014 +# Sunah Lim , 2013 +# Young C. Kim, 2015 +# Young C. Kim, 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-24 00:47+0000\n" +"PO-Revision-Date: 2016-10-05 06:35+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Odustani" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Prikaži ime" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Temeljnica" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnja izmjena dana" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano dana" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "ili" diff --git a/account_netting/i18n/hr_HR.po b/account_netting/i18n/hr_HR.po new file mode 100644 index 000000000..753c7f92f --- /dev/null +++ b/account_netting/i18n/hr_HR.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-26 22:34+0000\n" +"PO-Revision-Date: 2017-04-25 10:41+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Otkaži" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Naziv" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Dnevnik" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "" diff --git a/account_netting/i18n/hu.po b/account_netting/i18n/hu.po new file mode 100644 index 000000000..506263be8 --- /dev/null +++ b/account_netting/i18n/hu.po @@ -0,0 +1,160 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2016 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Carles Antoli , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012 +# Kostas Goutoudis , 2015 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-22 16:44+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Mégsem" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Készítette" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Napló" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "vagy" diff --git a/account_netting/i18n/id.po b/account_netting/i18n/id.po new file mode 100644 index 000000000..af9c70f19 --- /dev/null +++ b/account_netting/i18n/id.po @@ -0,0 +1,164 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Alexsandro Haag , 2015 +# Christophe CHAUVET , 2015 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012,2014 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# llum.birque@gmail.com , 2015 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Rudolf Schnapka , 2015-2016 +# SaFi J. , 2015 +# Stéphane Bidoul , 2015 +# Wagner Pereira , 2015 +# yterrettaz, 2015 +# yterrettaz, 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:22+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Batalkan" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Dibuat pada" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Jurnal" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "atau" diff --git a/account_netting/i18n/it.po b/account_netting/i18n/it.po new file mode 100644 index 000000000..c163f27ba --- /dev/null +++ b/account_netting/i18n/it.po @@ -0,0 +1,158 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Alexis de Lattre , 2016 +# Carles Antoli , 2015 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012-2013 +# Guewen Baconnier , 2015 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015-2016 +# Rudolf Schnapka , 2016 +# Sofce Dimitrijeva , 2013 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-14 00:45+0000\n" +"PO-Revision-Date: 2016-09-09 12:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Annulla" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Creato da" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Creato il" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Sezionale" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "o" diff --git a/account_netting/i18n/ja.po b/account_netting/i18n/ja.po new file mode 100644 index 000000000..513a1f875 --- /dev/null +++ b/account_netting/i18n/ja.po @@ -0,0 +1,161 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2016 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# danimaribeiro , 2016 +# Eduardo Rodríguez Crespo , 2016 +# FIRST AUTHOR , 2012-2013 +# Hotellook, 2014 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2015-2016 +# UAB "Draugiški sprendimai" , 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-22 16:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "キャンセル" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "作成者" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "作成日" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "表示名" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "仕訳帳" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "または" diff --git a/account_netting/i18n/ko.po b/account_netting/i18n/ko.po new file mode 100644 index 000000000..e507f01a1 --- /dev/null +++ b/account_netting/i18n/ko.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Korean (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "취소" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "작성자" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "작성일" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "표시 이름" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "또는" diff --git a/account_netting/i18n/lo.po b/account_netting/i18n/lo.po new file mode 100644 index 000000000..47be01a64 --- /dev/null +++ b/account_netting/i18n/lo.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:22+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Lao (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/lo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lo\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "ຍົກເລີອກ" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "" diff --git a/account_netting/i18n/lt.po b/account_netting/i18n/lt.po new file mode 100644 index 000000000..0129c3930 --- /dev/null +++ b/account_netting/i18n/lt.po @@ -0,0 +1,164 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2016 +# Antonio Trueba, 2016 +# Bruno JOLIVEAU, 2015 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012-2014 +# Florian Hatat, 2015 +# Guewen Baconnier , 2015 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# John Toro , 2015 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Rudolf Schnapka , 2015 +# yterrettaz, 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-25 14:58+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Atšaukti" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Sukūrė" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Sukurta" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Žurnalas" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "arba" diff --git a/account_netting/i18n/lt_LT.po b/account_netting/i18n/lt_LT.po new file mode 100644 index 000000000..08383f8e8 --- /dev/null +++ b/account_netting/i18n/lt_LT.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-26 22:34+0000\n" +"PO-Revision-Date: 2017-04-25 10:41+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Atšaukti" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Sukūrė" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Sukurta" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Žurnalas" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "" diff --git a/account_netting/i18n/lv.po b/account_netting/i18n/lv.po new file mode 100644 index 000000000..b5fde06ca --- /dev/null +++ b/account_netting/i18n/lv.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Atcelt" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Izveidoja" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Izveidots" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "vai" diff --git a/account_netting/i18n/mk.po b/account_netting/i18n/mk.po new file mode 100644 index 000000000..4dab674f3 --- /dev/null +++ b/account_netting/i18n/mk.po @@ -0,0 +1,165 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2015 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012,2014 +# Giacomo , 2015 +# Hotellook, 2014 +# Matjaž Mozetič , 2015 +# njeudy , 2015 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +# Stéphane Bidoul , 2015 +# yterrettaz, 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Откажи" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Креирано од" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Креирано на" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Прикажи име" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Дневник" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "или" diff --git a/account_netting/i18n/mn.po b/account_netting/i18n/mn.po new file mode 100644 index 000000000..ece6983b6 --- /dev/null +++ b/account_netting/i18n/mn.po @@ -0,0 +1,186 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Accounts-Payable - Alkemics, 2015 +# Ahmet Altinisik , 2016 +# Alejandro Santana , 2015 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# bossnm11 , 2014 +# Chanseok , 2014 +# Chen-Do LU , 2015 +# Christophe CHAUVET , 2015 +# Chul Park , 2015 +# danimaribeiro , 2016 +# David10000 , 2014 +# FIRST AUTHOR , 2012-2013 +# François Breysse , 2015 +# Gil , 2014 +# kmooc , 2015 +# Hongseob Lee , 2015 +# Hotellook, 2014 +# jeon , 2014 +# JiyeonLee , 2014 +# Jong-Dae Park , 2013 +# Kevin Min , 2015 +# KimKyudong , 2014 +# mariana1201 , 2014 +# Matjaž Mozetič , 2015 +# Nicole , 2014 +# njeudy , 2015 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Pope, 2014 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +# Sarina Canelake , 2014 +# Seok Jun Yoon , 2015 +# shin2012 , 2014 +# Sujin Lee , 2014 +# Sunah Lim , 2013 +# Young C. Kim, 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-22 16:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Цуцлах" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Журнал" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "эсвэл" diff --git a/account_netting/i18n/nb.po b/account_netting/i18n/nb.po new file mode 100644 index 000000000..b909d693f --- /dev/null +++ b/account_netting/i18n/nb.po @@ -0,0 +1,160 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2015 +# Antonio Trueba, 2016 +# Carles Antoli , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2011-2012 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Leonardo J. Caballero G. , 2016 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2016 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Avbryt" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Opprettet av" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Opprettet den" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Visnings navn" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Journal" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "eller" diff --git a/account_netting/i18n/nb_NO.po b/account_netting/i18n/nb_NO.po new file mode 100644 index 000000000..10c355365 --- /dev/null +++ b/account_netting/i18n/nb_NO.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-26 22:34+0000\n" +"PO-Revision-Date: 2017-04-25 10:44+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Lukk" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Laget av" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Laget den" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Vis navn" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Journal" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "" diff --git a/account_netting/i18n/nl.po b/account_netting/i18n/nl.po new file mode 100644 index 000000000..24e832c48 --- /dev/null +++ b/account_netting/i18n/nl.po @@ -0,0 +1,155 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Alexis de Lattre , 2016 +# Christophe CHAUVET , 2015 +# Christophe CHAUVET , 2015 +# FIRST AUTHOR , 2012 +# Giedrius Slavinskas , 2012 +# Matjaž Mozetič , 2015 +# Rudolf Schnapka , 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Annuleren" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Dagboek" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "of" diff --git a/account_netting/i18n/nl_BE.po b/account_netting/i18n/nl_BE.po new file mode 100644 index 000000000..ae770b4c4 --- /dev/null +++ b/account_netting/i18n/nl_BE.po @@ -0,0 +1,161 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2016 +# Antonio Trueba, 2016 +# Carles Antoli , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2011-2013 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Rudolf Schnapka , 2015-2016 +# SaFi J. , 2015 +# Thomas A. Jaeger, 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Annuleren" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Gemaakt door" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Gemaakt op" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Schermnaam" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Journaal" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "of" diff --git a/account_netting/i18n/nl_NL.po b/account_netting/i18n/nl_NL.po new file mode 100644 index 000000000..34c7e88fa --- /dev/null +++ b/account_netting/i18n/nl_NL.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-26 22:34+0000\n" +"PO-Revision-Date: 2017-06-30 08:53+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "" diff --git a/account_netting/i18n/pl.po b/account_netting/i18n/pl.po new file mode 100644 index 000000000..e5028ac31 --- /dev/null +++ b/account_netting/i18n/pl.po @@ -0,0 +1,160 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Carles Antoli , 2015 +# FIRST AUTHOR , 2010,2012,2014 +# Gustavo Lepri , 2015 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2015-2016 +# SaFi J. , 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Polish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Anuluj" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Utworzone przez" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Utworzono" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Dziennik" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "lub" diff --git a/account_netting/i18n/pt.po b/account_netting/i18n/pt.po new file mode 100644 index 000000000..44cef1816 --- /dev/null +++ b/account_netting/i18n/pt.po @@ -0,0 +1,158 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2015 +# Antonio Trueba, 2016 +# FIRST AUTHOR , 2012,2014 +# Gustavo Lepri , 2015 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2016 +# Paolo Valier, 2016 +# Rudolf Schnapka , 2015-2016 +# Thomas A. Jaeger, 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-25 14:58+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Nome" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Diário" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Modificado a última vez por" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "ou" diff --git a/account_netting/i18n/pt_BR.po b/account_netting/i18n/pt_BR.po new file mode 100644 index 000000000..13cc1d34d --- /dev/null +++ b/account_netting/i18n/pt_BR.po @@ -0,0 +1,165 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2015 +# Ahmet Altinisik , 2015 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Christophe CHAUVET , 2015 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2015-2016 +# FIRST AUTHOR , 2012,2014 +# Hotellook, 2014 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +# Stéphane Bidoul , 2015 +# yterrettaz, 2015 +# yterrettaz, 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-24 00:47+0000\n" +"PO-Revision-Date: 2016-10-04 09:43+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "Identificação" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Diário" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "ou" diff --git a/account_netting/i18n/pt_PT.po b/account_netting/i18n/pt_PT.po new file mode 100644 index 000000000..750fde687 --- /dev/null +++ b/account_netting/i18n/pt_PT.po @@ -0,0 +1,166 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2015 +# Antonio Trueba, 2016 +# Artūras Griškonis , 2012,2015-2016 +# Artūras Griškonis , 2012 +# Carles Antoli , 2015 +# Carles Antoli , 2015 +# danimaribeiro , 2016 +# Dorin Hongu , 2015 +# FIRST AUTHOR , 2012,2014 +# Giacomo , 2015 +# Guewen Baconnier , 2015 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015 +# Maxime Chambreuil , 2015 +# Pedro Castro Silva , 2016 +# Rudolf Schnapka , 2015 +# SaFi J. , 2015 +# Zapata11 , 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-14 00:45+0000\n" +"PO-Revision-Date: 2016-09-12 22:57+0000\n" +"Last-Translator: Pedro Castro Silva \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "Compensação de Saldos" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "Todas as entradas devem ter uma conta a pagar ou a receber." + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "Todas as entradas devem estar por reconciliar" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "Todas as entradas devem ter um parceiro e este deve ser o mesmo para todas." + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "Saldo" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "Tipo de saldo" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "Compensar" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "Compensar entradas" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Nome a exibir" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Diário" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Modificado pela última vez em" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "Linhas de Movimentos" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "Selecione o diário onde guardar as entradas de diário" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "Esta operação irá gerar movimentos contabilísticos, contrapartida das contas a pagar/receber selecionadas, e reconciliar cada uma delas deixando o seu saldo visível no balancete do parceiro." + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "A pagar" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "A receber" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "Deve compensar pelo menos 2 entradas de diário." + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "ou" diff --git a/account_netting/i18n/ro.po b/account_netting/i18n/ro.po new file mode 100644 index 000000000..f0d7dce51 --- /dev/null +++ b/account_netting/i18n/ro.po @@ -0,0 +1,173 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# bossnm11 , 2014 +# Carles Antoli , 2015 +# Chanseok , 2014 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012,2014 +# Giacomo , 2015 +# jeon , 2014 +# John Toro , 2015 +# Jong-Dae Park , 2013,2015 +# Kevin Min , 2015 +# Kunwoo Kim , 2015 +# LEE SI HYEONG , 2014 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +# Sam Ryoo , 2014 +# Seo. Junmin , 2015 +# seungil , 2014 +# SEUNGWON , 2014 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Romanian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Anuleaza" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Creat de" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Creat la" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Registru" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "sau" diff --git a/account_netting/i18n/ru.po b/account_netting/i18n/ru.po new file mode 100644 index 000000000..d6521b762 --- /dev/null +++ b/account_netting/i18n/ru.po @@ -0,0 +1,150 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# FIRST AUTHOR , 2010,2012-2013 +# Matjaž Mozetič , 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:22+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Russian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Отменена" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Создано" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Создан" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Журнал" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "или" diff --git a/account_netting/i18n/sk.po b/account_netting/i18n/sk.po new file mode 100644 index 000000000..7e17f89fd --- /dev/null +++ b/account_netting/i18n/sk.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Zrušiť" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Vytvoril" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Vytvorené" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Naposledy upravil" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Naposledy upravené" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "alebo" diff --git a/account_netting/i18n/sl.po b/account_netting/i18n/sl.po new file mode 100644 index 000000000..1ec52379f --- /dev/null +++ b/account_netting/i18n/sl.po @@ -0,0 +1,151 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# FIRST AUTHOR , 2010,2012-2013 +# Matjaž Mozetič , 2015 +# Pedro M. Baeza , 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-05-14 01:07+0000\n" +"PO-Revision-Date: 2016-05-14 05:13+0000\n" +"Last-Translator: Matjaž Mozetič \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "Mreženje terjatev/obveznosti" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "Vsi vnosi morajo imeti konto terjatev ali obveznosti" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "Vnosi ne smejo biti usklajeni" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "Vsi vnosi morajo imeti partnerja, partner pa mora biti enak za vse." + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "Bilanca" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "Tip bilance" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Preklic" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "Kompenzacija" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "Kompenzacija vnosov" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Ustvaril" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Dnevnik" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnjič posodobil" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "Postavke premikov" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "Izberite dnevnik, kamor se bodo hranili dnevniški vnosi" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "Ta operacija ustvari kontne vnose, ki so proti-postavka izbranih kontov terjatev/obveznosti in jih medsebojno uskladi, da omogoči bilanco pri partnerju:" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "Za plačilo" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "Za prejem" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "Kompenzirati morate vsaj 2 dnevniška vnosa." + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "ali" diff --git a/account_netting/i18n/sr.po b/account_netting/i18n/sr.po new file mode 100644 index 000000000..a6b395d04 --- /dev/null +++ b/account_netting/i18n/sr.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Serbian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Otkaži" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "" diff --git a/account_netting/i18n/sr@latin.po b/account_netting/i18n/sr@latin.po new file mode 100644 index 000000000..26bd4f1f5 --- /dev/null +++ b/account_netting/i18n/sr@latin.po @@ -0,0 +1,161 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2015 +# Alejandro Santana , 2015 +# Antonio Trueba, 2016 +# Carles Antoli , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012,2014 +# Giacomo , 2015 +# Guewen Baconnier , 2015 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015 +# Maxime Chambreuil , 2015 +# Rudolf Schnapka , 2015 +# SaFi J. , 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-22 16:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Otkaži" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Dnevnik" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "ili" diff --git a/account_netting/i18n/sv.po b/account_netting/i18n/sv.po new file mode 100644 index 000000000..f07ad8f43 --- /dev/null +++ b/account_netting/i18n/sv.po @@ -0,0 +1,173 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Alejandro Santana , 2015 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# bossnm11 , 2014 +# Carles Antoli , 2015 +# Chanseok , 2014 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2015-2016 +# FIRST AUTHOR , 2012,2014 +# Hotellook, 2014 +# jeon , 2014 +# John Toro , 2015 +# Jong-Dae Park , 2013,2015 +# Kevin Min , 2015 +# Kunwoo Kim , 2015 +# LEE SI HYEONG , 2014 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +# Sam Ryoo , 2014 +# Seo. Junmin , 2015 +# seungil , 2014 +# SEUNGWON , 2014 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Swedish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Avbryt" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Skapad av" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Skapad den" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Visa namn" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Journal" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "eller" diff --git a/account_netting/i18n/th.po b/account_netting/i18n/th.po new file mode 100644 index 000000000..03bec6a40 --- /dev/null +++ b/account_netting/i18n/th.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2016 +# Alejandro Santana , 2015 +# Antonio Trueba, 2016 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2011-2012 +# Florian Hatat, 2015 +# Hotellook, 2014 +# Isabelle RICHARD , 2015 +# Jarmo Kortetjärvi , 2016 +# John Toro , 2015 +# Lixon Jean-Yves , 2016 +# Matjaž Mozetič , 2015-2016 +# Rudolf Schnapka , 2015 +# SaFi J. , 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "ยกเลิก" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "สร้างโดย" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "รหัส" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "หรือ" diff --git a/account_netting/i18n/tr.po b/account_netting/i18n/tr.po new file mode 100644 index 000000000..d0af3e101 --- /dev/null +++ b/account_netting/i18n/tr.po @@ -0,0 +1,156 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Alejandro Santana , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012-2013 +# Guewen Baconnier , 2015 +# Matjaž Mozetič , 2015 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +# Thomas A. Jaeger, 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-30 21:22+0000\n" +"Last-Translator: Ahmet Altinisik \n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Vazgeç" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Oluşturan" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Günlük" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "ya da" diff --git a/account_netting/i18n/tr_TR.po b/account_netting/i18n/tr_TR.po new file mode 100644 index 000000000..9241d9eef --- /dev/null +++ b/account_netting/i18n/tr_TR.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-30 23:29+0000\n" +"PO-Revision-Date: 2017-01-04 14:44+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "İptal et" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Oluşturan" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Görünen ad" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "Kimlik" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "ya da " diff --git a/account_netting/i18n/uk.po b/account_netting/i18n/uk.po new file mode 100644 index 000000000..cd235aeac --- /dev/null +++ b/account_netting/i18n/uk.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Скасувати" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Створив" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Дата створення" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "або" diff --git a/account_netting/i18n/vi.po b/account_netting/i18n/vi.po new file mode 100644 index 000000000..25d47f0cf --- /dev/null +++ b/account_netting/i18n/vi.po @@ -0,0 +1,161 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2016 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# danimaribeiro , 2016 +# Eduardo Rodríguez Crespo , 2016 +# FIRST AUTHOR , 2012-2013 +# Hotellook, 2014 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2015-2016 +# UAB "Draugiški sprendimai" , 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Hủy bỏ" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Được tạo vào" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "Sổ nhật ký" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "hoặc" diff --git a/account_netting/i18n/vi_VN.po b/account_netting/i18n/vi_VN.po new file mode 100644 index 000000000..2588f2d7f --- /dev/null +++ b/account_netting/i18n/vi_VN.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 23:20+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "Hủy" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "Tạo bởi" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "Tạo vào" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "" diff --git a/account_netting/i18n/zh_CN.po b/account_netting/i18n/zh_CN.po new file mode 100644 index 000000000..c10e7ef8b --- /dev/null +++ b/account_netting/i18n/zh_CN.po @@ -0,0 +1,160 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Ahmet Altinisik , 2016 +# Antonio Trueba, 2016 +# Carles Antoli , 2015-2016 +# Christophe CHAUVET , 2015 +# FIRST AUTHOR , 2012 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2015-2016 +# SaFi J. , 2015 +# Thomas A. Jaeger, 2015 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "取消" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "创建者" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "创建时间" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "显示名称" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "凭证簿" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "或" diff --git a/account_netting/i18n/zh_TW.po b/account_netting/i18n/zh_TW.po new file mode 100644 index 000000000..b2d117016 --- /dev/null +++ b/account_netting/i18n/zh_TW.po @@ -0,0 +1,158 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# Carles Antoli , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2010,2012-2013 +# Guewen Baconnier , 2015 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Leonardo J. Caballero G. , 2016 +# Matjaž Mozetič , 2015-2016 +# Rudolf Schnapka , 2016 +# Sofce Dimitrijeva , 2013 +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-13 03:39+0000\n" +"PO-Revision-Date: 2016-11-22 16:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance:0 +msgid "Balance" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,balance_type:0 +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "刪除" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: field:account.move.make.netting,create_uid:0 +msgid "Created by" +msgstr "建立者" + +#. module: account_netting +#: field:account.move.make.netting,create_date:0 +msgid "Created on" +msgstr "建立於" + +#. module: account_netting +#: field:account.move.make.netting,display_name:0 +msgid "Display Name" +msgstr "顯示名稱" + +#. module: account_netting +#: field:account.move.make.netting,id:0 +msgid "ID" +msgstr "編號" + +#. module: account_netting +#: field:account.move.make.netting,journal:0 +msgid "Journal" +msgstr "帳簿" + +#. module: account_netting +#: field:account.move.make.netting,__last_update:0 +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: account_netting +#: field:account.move.make.netting,write_uid:0 +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: account_netting +#: field:account.move.make.netting,write_date:0 +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: account_netting +#: field:account.move.make.netting,move_lines:0 +msgid "Move lines" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +msgid "or" +msgstr "或" From 2e6edac5e1d5d78b7f8709bfc0afd3278a3b0fec Mon Sep 17 00:00:00 2001 From: cubells Date: Fri, 13 Oct 2017 17:27:59 +0200 Subject: [PATCH 03/22] account_netting: Migration to 10.0 OCA Transbot updated translations from Transifex OCA Transbot updated translations from Transifex --- account_netting/README.rst | 17 +- account_netting/__init__.py | 4 +- account_netting/__manifest__.py | 22 +++ account_netting/__openerp__.py | 20 --- account_netting/i18n/am.po | 78 +++++---- account_netting/i18n/ar.po | 89 +++++----- account_netting/i18n/bg.po | 90 +++++----- account_netting/i18n/bs.po | 85 +++++----- account_netting/i18n/ca.po | 116 +++++++------ account_netting/i18n/ca_ES.po | 88 +++++----- account_netting/i18n/cs.po | 80 ++++----- account_netting/i18n/da.po | 74 ++++---- account_netting/i18n/de.po | 115 +++++++------ account_netting/i18n/el_GR.po | 85 +++++----- account_netting/i18n/en_AU.po | 70 ++++---- account_netting/i18n/en_GB.po | 93 +++++------ account_netting/i18n/es.po | 97 ++++++----- account_netting/i18n/es_AR.po | 72 ++++---- account_netting/i18n/es_CL.po | 72 ++++---- account_netting/i18n/es_CO.po | 72 ++++---- account_netting/i18n/es_CR.po | 86 +++++----- account_netting/i18n/es_DO.po | 72 ++++---- account_netting/i18n/es_EC.po | 87 +++++----- account_netting/i18n/es_ES.po | 101 +++++------ account_netting/i18n/es_MX.po | 90 +++++----- account_netting/i18n/es_PE.po | 72 ++++---- account_netting/i18n/es_PY.po | 70 ++++---- account_netting/i18n/es_VE.po | 93 +++++------ account_netting/i18n/et.po | 114 +++++-------- account_netting/i18n/eu.po | 72 ++++---- account_netting/i18n/fa.po | 72 ++++---- account_netting/i18n/fi.po | 113 +++++-------- account_netting/i18n/fr.po | 104 ++++++------ account_netting/i18n/fr_CA.po | 70 ++++---- account_netting/i18n/fr_CH.po | 70 ++++---- account_netting/i18n/fr_FR.po | 70 ++++---- account_netting/i18n/gl.po | 88 +++++----- account_netting/i18n/gl_ES.po | 76 +++++---- account_netting/i18n/gu.po | 158 ++++++++++++++++++ account_netting/i18n/he.po | 72 ++++---- account_netting/i18n/hi.po | 70 ++++---- account_netting/i18n/hr.po | 109 +++++------- account_netting/i18n/hr_HR.po | 72 ++++---- account_netting/i18n/hu.po | 86 +++++----- account_netting/i18n/id.po | 90 +++++----- account_netting/i18n/it.po | 84 +++++----- account_netting/i18n/ja.po | 87 +++++----- account_netting/i18n/ko.po | 72 ++++---- account_netting/i18n/lo.po | 70 ++++---- account_netting/i18n/lt.po | 90 +++++----- account_netting/i18n/lt_LT.po | 72 ++++---- account_netting/i18n/lv.po | 72 ++++---- account_netting/i18n/mk.po | 91 +++++----- account_netting/i18n/mn.po | 112 +++++-------- account_netting/i18n/nb.po | 86 +++++----- account_netting/i18n/nb_NO.po | 72 ++++---- account_netting/i18n/nl.po | 81 ++++----- account_netting/i18n/nl_BE.po | 87 +++++----- account_netting/i18n/nl_NL.po | 148 ---------------- account_netting/i18n/pl.po | 88 +++++----- account_netting/i18n/pt.po | 124 +++++++------- account_netting/i18n/pt_BR.po | 91 +++++----- account_netting/i18n/pt_PT.po | 120 +++++++------ account_netting/i18n/ro.po | 99 +++++------ account_netting/i18n/ru.po | 76 +++++---- account_netting/i18n/sk.po | 72 ++++---- account_netting/i18n/sl.po | 105 ++++++------ account_netting/i18n/sr.po | 70 ++++---- account_netting/i18n/sr@latin.po | 87 +++++----- account_netting/i18n/sv.po | 99 +++++------ account_netting/i18n/th.po | 87 +++++----- account_netting/i18n/tr.po | 82 ++++----- account_netting/i18n/tr_TR.po | 72 ++++---- account_netting/i18n/uk.po | 72 ++++---- account_netting/i18n/vi.po | 87 +++++----- account_netting/i18n/vi_VN.po | 70 ++++---- account_netting/i18n/zh_CN.po | 90 +++++----- account_netting/i18n/zh_TW.po | 84 +++++----- account_netting/tests/__init__.py | 2 +- account_netting/tests/test_account_netting.py | 147 ++++++++++------ .../wizard/account_move_make_netting_view.xml | 37 ---- .../{wizard => wizards}/__init__.py | 2 +- .../account_move_make_netting.py | 74 ++++---- .../account_move_make_netting_view.xml | 35 ++++ 84 files changed, 3469 insertions(+), 3343 deletions(-) create mode 100644 account_netting/__manifest__.py delete mode 100644 account_netting/__openerp__.py create mode 100644 account_netting/i18n/gu.po delete mode 100644 account_netting/i18n/nl_NL.po delete mode 100644 account_netting/wizard/account_move_make_netting_view.xml rename account_netting/{wizard => wizards}/__init__.py (80%) rename account_netting/{wizard => wizards}/account_move_make_netting.py (65%) create mode 100644 account_netting/wizards/account_move_make_netting_view.xml diff --git a/account_netting/README.rst b/account_netting/README.rst index 73cf5f783..50d73ee4d 100644 --- a/account_netting/README.rst +++ b/account_netting/README.rst @@ -21,7 +21,6 @@ Usage From any account journal entries view: * Accounting/Journal Entries/Journal Items -* Accounting/Periodic Processing/Reconciliation/Manual Reconciliation select all the lines that corresponds to both AR/AP operations from the same partner. Click on "More > Compensate". If the items don't correspond to the @@ -35,7 +34,7 @@ counterparts of the AR/AP operations. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/92/8.0 + :target: https://runbot.odoo-community.org/runbot/92/10.0 Known issues / Roadmap ====================== @@ -46,11 +45,10 @@ Known issues / Roadmap Bug Tracker =========== -Bugs are tracked on `GitHub Issues `_. -In case of trouble, please check there if your issue has already been reported. -If you spotted it first, help us smashing it by providing a detailed and welcomed feedback -`here `_. - +Bugs are tracked on `GitHub Issues +`_. In case of trouble, +please check there if your issue has already been reported. If you spotted it +first, help us smash it by providing detailed and welcomed feedback. Credits ======= @@ -58,7 +56,8 @@ Credits Contributors ------------ -* Pedro M. Baeza +* Pedro M. Baeza +* Vicent Cubells Maintainer ---------- @@ -73,4 +72,4 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. -To contribute to this module, please visit http://odoo-community.org. +To contribute to this module, please visit https://odoo-community.org. diff --git a/account_netting/__init__.py b/account_netting/__init__.py index 9b0f517f5..ee6156516 100644 --- a/account_netting/__init__.py +++ b/account_netting/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# (c) 2015 Pedro M. Baeza +# Copyright 2015 Pedro M. Baeza # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html -from . import wizard +from . import wizards diff --git a/account_netting/__manifest__.py b/account_netting/__manifest__.py new file mode 100644 index 000000000..e4840f923 --- /dev/null +++ b/account_netting/__manifest__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +# Copyright 2015 Pedro M. Baeza +# Copyright 2017 Vicent Cubells - Tecnativa +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +{ + 'name': 'Account netting', + 'version': '10.0.1.0.0', + 'summary': 'Compensate AR/AP accounts from the same partner', + 'category': 'Accounting & Finance', + 'author': 'Tecnativa, ' + 'Odoo Community Association (OCA)', + 'license': 'AGPL-3', + 'website': 'https://github.com/OCA/account-financial-tools/', + 'depends': [ + 'account', + ], + 'data': [ + 'wizards/account_move_make_netting_view.xml', + ], + 'installable': True, +} diff --git a/account_netting/__openerp__.py b/account_netting/__openerp__.py deleted file mode 100644 index 7f4bafe60..000000000 --- a/account_netting/__openerp__.py +++ /dev/null @@ -1,20 +0,0 @@ -# -*- coding: utf-8 -*- -# (c) 2015 Pedro M. Baeza -# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html - -{ - 'name': 'Account netting', - 'version': '8.0.1.0.0', - 'summary': "Compensate AR/AP accounts from the same partner", - 'category': 'Accounting & Finance', - 'author': 'Serv. Tecnol. Avanzados - Pedro M. Baeza, ' - 'Odoo Community Association (OCA)', - 'website': 'https://github.com/OCA/account-financial-tools', - 'depends': [ - 'account', - ], - 'data': [ - 'wizard/account_move_make_netting_view.xml', - ], - "installable": True, -} diff --git a/account_netting/i18n/am.po b/account_netting/i18n/am.po index 3edeab817..edfb0c348 100644 --- a/account_netting/i18n/am.po +++ b/account_netting/i18n/am.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-12 10:24+0000\n" -"PO-Revision-Date: 2015-10-14 18:45+0000\n" -"Last-Translator: <>\n" -"Language-Team: Amharic (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/am/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,98 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Cancelar" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Creado por" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Creado en" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Última actualización por" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -127,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "o" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/ar.po b/account_netting/i18n/ar.po index 05261292a..ae214dcb0 100644 --- a/account_netting/i18n/ar.po +++ b/account_netting/i18n/ar.po @@ -3,29 +3,15 @@ # * account_netting # # Translators: -# Antonio Trueba, 2016 -# Armando Vulcano Junior , 2015 -# Carles Antoli , 2015 -# danimaribeiro , 2016 -# FIRST AUTHOR , 2012-2013 -# Guewen Baconnier , 2015 -# Hotellook, 2014 -# Jarmo Kortetjärvi , 2016 -# John Toro , 2015 -# Matjaž Mozetič , 2015-2016 -# Paolo Valier, 2016 -# Rudolf Schnapka , 2015-2016 -# SaFi J. , 2015 -# Sofce Dimitrijeva , 2013 -# Thomas A. Jaeger, 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-25 14:57+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Arabic (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ar/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -33,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "إلغاء" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "أنشئ بواسطة" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "أنشئ في" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "اسم العرض" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "المعرف" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "السجل اليومي" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "آخر تعديل في" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "آخر تحديث بواسطة" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "آخر تحديث في" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -152,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "أو" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/bg.po b/account_netting/i18n/bg.po index bacfb8934..54352d9d6 100644 --- a/account_netting/i18n/bg.po +++ b/account_netting/i18n/bg.po @@ -3,30 +3,15 @@ # * account_netting # # Translators: -# Accounts-Payable - Alkemics, 2015 -# Ahmet Altinisik , 2015 -# Armando Vulcano Junior , 2015 -# Bruno JOLIVEAU, 2015 -# Chen-Do LU , 2015 -# Bole , 2015 -# FIRST AUTHOR , 2012-2013 -# François Breysse , 2015 -# Jarmo Kortetjärvi , 2016 -# Matjaž Mozetič , 2015-2016 -# Paolo Valier, 2016 -# Pedro M. Baeza , 2015 -# Rudolf Schnapka , 2016 -# SaFi J. , 2015 -# Thomas A. Jaeger, 2015 -# yterrettaz, 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-25 14:57+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/bg/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -34,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Отмяна" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Създадено от" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Създадено на" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" -msgstr "Име за Показване" +msgstr "Име за показване" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Последно обновено на" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Последно обновено от" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Последно обновено на" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -153,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "или" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/bs.po b/account_netting/i18n/bs.po index 3fa6ac10a..2412dfab4 100644 --- a/account_netting/i18n/bs.po +++ b/account_netting/i18n/bs.po @@ -3,25 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2016 -# Ahmet Altinisik , 2013 -# Antonio Trueba, 2016 -# danimaribeiro , 2016 -# Eduardo Rodríguez Crespo , 2016 -# FIRST AUTHOR , 2012-2013 -# Hotellook, 2014 -# Matjaž Mozetič , 2015-2016 -# Paolo Valier, 2016 -# Pedro M. Baeza , 2015 -# Rudolf Schnapka , 2015-2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-22 16:24+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/bs/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -29,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Otkaži" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Kreirao" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Kreirano" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Prikaži naziv" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Dnevnik" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Zadnje mijenjano" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Zadnji ažurirao" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Zadnje ažurirano" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -148,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "ili" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/ca.po b/account_netting/i18n/ca.po index 04f063163..9a2a0678d 100644 --- a/account_netting/i18n/ca.po +++ b/account_netting/i18n/ca.po @@ -3,28 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2016 -# Antonio Trueba, 2016 -# Carles Antoli , 2015 -# danimaribeiro , 2016 -# FIRST AUTHOR , 2011-2014 -# Giacomo , 2015 -# Guewen Baconnier , 2015 -# Jarmo Kortetjärvi , 2016 -# Matjaž Mozetič , 2015 -# Maxime Chambreuil , 2015 -# Paolo Valier, 2016 -# Rudolf Schnapka , 2015 -# SaFi J. , 2015 -# Thomas A. Jaeger, 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-01-12 03:44+0000\n" -"PO-Revision-Date: 2017-01-13 09:22+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Catalan (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ca/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -32,131 +19,140 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" -msgstr "AR / AP xarxa" +msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" -msgstr "Tots els assentaments han de tenir un compte per cobrar o per pagar" +msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" -msgstr "Totes les entrades no s'han reconciliat" +msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." -msgstr "Totes les entrades han de tenir una empresa i l'empresa ha de ser la mateixa per a tothom." +msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" -msgstr "Balanç" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" -msgstr "Tipus de Balanç" +msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Cancel·la" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" -msgstr "Compensar" +msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" -msgstr "Compensar Assentaments" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Creat per" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Creat el" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Veure el nom" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Diari" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Darrera modificació el" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Darrera Actualització per" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Darrera Actualització el" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" -msgstr "Moviment Línies" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" +msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" -msgstr "Seleccioneu el diari on emmagatzemar els assentaments del diari" +msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" " balance in the partner:" -msgstr "Aquesta operació generarà anotacions en compte que són la contrapartida dels comptes de cobrament / pagament seleccionats, i reconciliar entre si, deixant aquest balanç en la empresa:" +msgstr "" #. module: account_netting #: selection:account.move.make.netting,balance_type:0 msgid "To pay" -msgstr "Pagar" +msgstr "" #. module: account_netting #: selection:account.move.make.netting,balance_type:0 msgid "To receive" -msgstr "Rebre" +msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." -msgstr "Ha de compensar almenys 2 assentaments del diari." +msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "o" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/ca_ES.po b/account_netting/i18n/ca_ES.po index ab2d10d25..6ae4f2eee 100644 --- a/account_netting/i18n/ca_ES.po +++ b/account_netting/i18n/ca_ES.po @@ -3,30 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2015 -# Antonio Trueba, 2016 -# Armando Vulcano Junior , 2015 -# Carles Antoli , 2015 -# Christophe CHAUVET , 2015 -# danimaribeiro , 2016 -# FIRST AUTHOR , 2011-2012,2014 -# Florian Hatat, 2015 -# Hotellook, 2014 -# Matjaž Mozetič , 2015 -# Paolo Valier, 2016 -# Pedro M. Baeza , 2015 -# Rudolf Schnapka , 2015-2016 -# SaFi J. , 2015 -# Stéphane Bidoul , 2015 -# yterrettaz, 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-02-26 22:34+0000\n" -"PO-Revision-Date: 2017-04-25 10:41+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Catalan (Spain) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ca_ES/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Catalan (Spain) (https://www.transifex.com/oca/teams/23907/ca_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -34,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Cancel·la" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Diari" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -153,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" msgstr "" diff --git a/account_netting/i18n/cs.po b/account_netting/i18n/cs.po index 688dbf955..e3467515d 100644 --- a/account_netting/i18n/cs.po +++ b/account_netting/i18n/cs.po @@ -3,20 +3,15 @@ # * account_netting # # Translators: -# Bole , 2015 -# FIRST AUTHOR , 2010,2012 -# Matjaž Mozetič , 2015 -# Rudolf Schnapka , 2015 -# Thomas A. Jaeger, 2015 -# UAB "Draugiški sprendimai" , 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-25 14:55+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Czech (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/cs/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -24,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Zrušit" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Vytvořil(a)" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Vytvořeno" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Zobrazovaný název" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Deník" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Naposled upraveno" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Naposled upraveno" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Naposled upraveno" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -143,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "nebo" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/da.po b/account_netting/i18n/da.po index e4e7726c9..96d342afb 100644 --- a/account_netting/i18n/da.po +++ b/account_netting/i18n/da.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-02-26 22:34+0000\n" -"PO-Revision-Date: 2017-04-25 10:44+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Danish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/da/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Annuller" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Oprettet af" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Oprettet den" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Vist navn" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "Id" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Sidst ændret den" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Sidst opdateret af" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Sidst opdateret den" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "eller" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/de.po b/account_netting/i18n/de.po index 950b872d0..35694926a 100644 --- a/account_netting/i18n/de.po +++ b/account_netting/i18n/de.po @@ -3,27 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2015 -# Antonio Trueba, 2016 -# Bruno JOLIVEAU, 2015 -# FIRST AUTHOR , 2012,2014 -# Gustavo Lepri , 2015 -# Hotellook, 2014 -# Jarmo Kortetjärvi , 2016 -# Matjaž Mozetič , 2016 -# Paolo Valier, 2016 -# Rudolf Schnapka , 2015-2016 -# Thomas A. Jaeger, 2015 -# Thomas A. Jaeger, 2015 -# yterrettaz, 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-24 00:47+0000\n" -"PO-Revision-Date: 2016-10-04 09:43+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: German (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/de/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -31,131 +19,140 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" -msgstr "AR/AP Verrechnung" +msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" -msgstr "Alle Einträge müssen eine Verbindlichkeit oder eine Forderung sein" +msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" -msgstr "Kein Eintrag darf ausgeglichen sein" +msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." -msgstr "Alle Einträge müssen den gleichen Partner haben" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" -msgstr "Saldo" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" -msgstr "Saldotyp" +msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Abbrechen" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" -msgstr "ausgleichen" +msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" -msgstr "Einträge ausgleichen" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Erstellt von" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Erstellt am" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Anzeigename" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Zuletzt geändert am" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Zuletzt geändert von" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Zuletzt geändert am" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" -msgstr "Buchungszeilen" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" +msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" -msgstr "Wählen Sie das Journal, wo die Einträge gespeichert werden" +msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" " balance in the partner:" -msgstr "Dies generiert Gegenbuchungen zu den selektierten Forderungen oder Verbindlichkeiten um diese dann auf dem Partner auszugleichen:" +msgstr "" #. module: account_netting #: selection:account.move.make.netting,balance_type:0 msgid "To pay" -msgstr "zu zahlen" +msgstr "" #. module: account_netting #: selection:account.move.make.netting,balance_type:0 msgid "To receive" -msgstr "zu erhalten" +msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." -msgstr "Sie sollten mindestens 2 Journaleinträge ausgleichen" +msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "oder" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/el_GR.po b/account_netting/i18n/el_GR.po index 7960e066c..34de177bd 100644 --- a/account_netting/i18n/el_GR.po +++ b/account_netting/i18n/el_GR.po @@ -3,29 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2015 -# Antonio Trueba, 2016 -# Carles Antoli , 2015 -# danimaribeiro , 2016 -# Bole , 2015 -# FIRST AUTHOR , 2012-2013 -# Guewen Baconnier , 2015 -# Hotellook, 2014 -# Jarmo Kortetjärvi , 2016 -# Matjaž Mozetič , 2015-2016 -# Mohamed HABOU , 2016 -# Paolo Valier, 2016 -# Rudolf Schnapka , 2015-2016 -# Sofce Dimitrijeva , 2013 -# Thomas A. Jaeger, 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-22 16:30+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/el_GR/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -33,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Άκυρο" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Δημιουργήθηκε από " #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Δημιουργήθηκε στις" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "Κωδικός" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Τελευταία ενημέρωση από" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Τελευταία ενημέρωση στις" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -152,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" msgstr "" diff --git a/account_netting/i18n/en_AU.po b/account_netting/i18n/en_AU.po index e34feb138..2ef03ed48 100644 --- a/account_netting/i18n/en_AU.po +++ b/account_netting/i18n/en_AU.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 08:23+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (Australia) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/en_AU/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (Australia) (https://www.transifex.com/oca/teams/23907/en_AU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Cancel" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" msgstr "" diff --git a/account_netting/i18n/en_GB.po b/account_netting/i18n/en_GB.po index 0bf55c2c3..8a26116d1 100644 --- a/account_netting/i18n/en_GB.po +++ b/account_netting/i18n/en_GB.po @@ -3,33 +3,15 @@ # * account_netting # # Translators: -# Accounts-Payable - Alkemics, 2015 -# Antonio Trueba, 2016 -# Chen-Do LU , 2015 -# Christophe CHAUVET , 2015 -# danimaribeiro , 2016 -# Dimitrios Glentadakis , 2013-2014, 2015-2016 -# Efstathios Iosifidis , 2014 -# FIRST AUTHOR , 2012,2014 -# François Breysse , 2015 -# Hotellook, 2014 -# Jarmo Kortetjärvi , 2016 -# Jim Spentzos, 2014 -# Matjaž Mozetič , 2015-2016 -# njeudy , 2015 -# Paolo Valier, 2016 -# Pedro Castro Silva , 2015 -# Rudolf Schnapka , 2016 -# SaFi J. , 2015 -# Wagner Pereira , 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-22 16:25+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/en_GB/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -37,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Cancel" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Created by" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Created on" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Display Name" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Last Modified on" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Last Updated by" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Last Updated on" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -156,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "or" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/es.po b/account_netting/i18n/es.po index 24cea4e35..08eac9730 100644 --- a/account_netting/i18n/es.po +++ b/account_netting/i18n/es.po @@ -3,23 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2015-2016 -# Alejandro Santana , 2015 -# Antonio Trueba, 2016 -# Carles Antoli , 2015-2016 -# danimaribeiro , 2016 -# FIRST AUTHOR , 2010,2012,2014 -# Matjaž Mozetič , 2015-2016 -# Rudolf Schnapka , 2015-2016 -# SaFi J. , 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-14 00:45+0000\n" -"PO-Revision-Date: 2016-09-16 21:45+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Spanish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -27,113 +19,130 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "Compensación a cobrar/a pagar" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "Todos los apuntes deben tener una cuenta a pagar o a cobrar" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "Ningún apunte debe estar conciliado" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." -msgstr "Todos los apuntes deben tener una empresa y la empresa debe ser la misma para todos." +msgstr "" +"Todos los apuntes deben tener una empresa y la empresa debe ser la misma " +"para todos." #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "Saldo" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "Tipo de saldo" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Cancelar" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "Compensar" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "Compensar apuntes" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Creado por" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" -msgstr "Creado en" +msgstr "Creado el" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Nombre mostrado" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "Diario" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Última modificación el" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Última actualización por" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "Apuntes" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "Seleccione el diario en el que se guardarán los apuntes" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" +"la función 'Compensar' pretende compensar operaciones sobre diferentes cuentas del mismo cliente.\n" +"En este caso todos los apuntes seleccionados pertenencen a la misma cuenta.\n" +"Use entonces la función 'Reconciliar'." + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" " balance in the partner:" -msgstr "Esta operación generará apuntes que serán la contrapartida de las cuentas a cobrar/a pagar seleccionadas, y las reconciliará entre ellas, dejando este saldo en la empresa:" +msgstr "" +"Esta operación generará apuntes que serán la contrapartida de las cuentas a " +"cobrar/a pagar seleccionadas, y las reconciliará entre ellas, dejando este " +"saldo en la empresa:" #. module: account_netting #: selection:account.move.make.netting,balance_type:0 @@ -146,12 +155,12 @@ msgid "To receive" msgstr "A cobrar" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." -msgstr "Debe compensar al menos 2 apuntes" +msgstr "Debe compensar al menos 2 apuntes." #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "o" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/es_AR.po b/account_netting/i18n/es_AR.po index 9d712825d..3ca5393af 100644 --- a/account_netting/i18n/es_AR.po +++ b/account_netting/i18n/es_AR.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 08:23+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_AR/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Cancelar" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Creado por" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Creado en" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Mostrar Nombre" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Última modificación en" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Última actualización realizada por" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Última actualización el" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "o" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/es_CL.po b/account_netting/i18n/es_CL.po index c64dafed6..5c046c224 100644 --- a/account_netting/i18n/es_CL.po +++ b/account_netting/i18n/es_CL.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 08:24+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_CL/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Cancelar" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Creado por" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Creado en" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Nombre mostrado" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID (identificación)" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Última modificación en" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Última actualización de" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "o" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/es_CO.po b/account_netting/i18n/es_CO.po index 36165d4dd..174baf2c9 100644 --- a/account_netting/i18n/es_CO.po +++ b/account_netting/i18n/es_CO.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 08:22+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_CO/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Cancelar" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Creado por" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Creado" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Nombre Público" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Última Modificación el" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Actualizado por" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Actualizado" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "o" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/es_CR.po b/account_netting/i18n/es_CR.po index afc693ddd..745a52119 100644 --- a/account_netting/i18n/es_CR.po +++ b/account_netting/i18n/es_CR.po @@ -3,28 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2015-2016 -# Antonio Trueba, 2016 -# Armando Vulcano Junior , 2015 -# Christophe CHAUVET , 2015 -# Christophe CHAUVET , 2015 -# danimaribeiro , 2015 -# FIRST AUTHOR , 2012-2013 -# Hotellook, 2014 -# Jarmo Kortetjärvi , 2016 -# Matjaž Mozetič , 2015-2016 -# Paolo Valier, 2016 -# Rudolf Schnapka , 2016 -# Rudolf Schnapka , 2015 -# SaFi J. , 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 08:24+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_CR/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -32,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Cancelar" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Creado por" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Creado en" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Diario" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Ultima actualización por" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Ultima actualización en" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -151,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" msgstr "" diff --git a/account_netting/i18n/es_DO.po b/account_netting/i18n/es_DO.po index 8546b36a7..71f2d2c53 100644 --- a/account_netting/i18n/es_DO.po +++ b/account_netting/i18n/es_DO.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 08:25+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_DO/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Cancelar" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Creado por" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Creado en" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Nombre mostrado" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Última modificación en" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Última actualización de" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "o" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/es_EC.po b/account_netting/i18n/es_EC.po index 6bc0027cb..285e909f9 100644 --- a/account_netting/i18n/es_EC.po +++ b/account_netting/i18n/es_EC.po @@ -3,27 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2016 -# Antonio Trueba, 2016 -# Armando Vulcano Junior , 2015 -# Carles Antoli , 2015 -# danimaribeiro , 2016 -# FIRST AUTHOR , 2012-2013 -# Kostas Goutoudis , 2015 -# Hotellook, 2014 -# Matjaž Mozetič , 2015-2016 -# Paolo Valier, 2016 -# Pedro M. Baeza , 2015 -# Rudolf Schnapka , 2015-2016 -# SaFi J. , 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-25 14:56+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_EC/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -31,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Cancelar" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Creado por" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Creado en" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Nombre mostrado" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID (identificación)" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Diario" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Última modificación en" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Última actualización de" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -150,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "o" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/es_ES.po b/account_netting/i18n/es_ES.po index 39bf1118b..6bb98c0cc 100644 --- a/account_netting/i18n/es_ES.po +++ b/account_netting/i18n/es_ES.po @@ -3,37 +3,15 @@ # * account_netting # # Translators: -# Accounts-Payable - Alkemics, 2015 -# Ahmet Altinisik , 2015-2016 -# Antonio Trueba, 2016 -# Bole , 2015 -# Carles Antoli , 2015 -# Carles Antoli , 2015 -# Chen-Do LU , 2015 -# danimaribeiro , 2016 -# Bole , 2015 -# FIRST AUTHOR , 2012-2014 -# François Breysse , 2015 -# Giacomo , 2015 -# Guewen Baconnier , 2015 -# Jarmo Kortetjärvi , 2016 -# Jesús Alan Ramos Rodríguez , 2015 -# Jesús Alan Ramos Rodríguez , 2015 -# Matjaž Mozetič , 2015-2016 -# Maxime Chambreuil , 2015 -# Maxime Chambreuil , 2015 -# Paolo Valier, 2016 -# Pedro Castro Silva , 2015 -# Rudolf Schnapka , 2015-2016 -# Thomas A. Jaeger, 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-02-26 22:34+0000\n" -"PO-Revision-Date: 2017-04-25 10:42+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_ES/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -41,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Cancelar" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Creado por" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Creado en" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" -msgstr "Nombre para mostrar" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Diario" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" -msgstr "Última modificación en" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Última actualización por" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -160,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "o" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/es_MX.po b/account_netting/i18n/es_MX.po index f3f6c922f..934dbbb50 100644 --- a/account_netting/i18n/es_MX.po +++ b/account_netting/i18n/es_MX.po @@ -3,30 +3,15 @@ # * account_netting # # Translators: -# Alexis de Lattre , 2016 -# Antonio Trueba, 2016 -# Carles Antoli , 2015 -# Christophe CHAUVET , 2015 -# danimaribeiro , 2016 -# FIRST AUTHOR , 2010,2012-2014 -# Giacomo , 2015 -# Giedrius Slavinskas , 2012 -# Guewen Baconnier , 2015 -# Hotellook, 2014 -# Jarmo Kortetjärvi , 2016 -# Matjaž Mozetič , 2015-2016 -# Paolo Valier, 2016 -# Pedro M. Baeza , 2015 -# Rudolf Schnapka , 2015-2016 -# Sofce Dimitrijeva , 2013 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-25 14:57+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_MX/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -34,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Cancelar" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Creado por" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Creado en" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Nombre desplegado" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Diario" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Ultima modificacion realizada" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Ultima actualizacion por" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Ultima actualización realizada" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -153,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "ó" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/es_PE.po b/account_netting/i18n/es_PE.po index 35435a704..b9136beb2 100644 --- a/account_netting/i18n/es_PE.po +++ b/account_netting/i18n/es_PE.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-10-11 09:50+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_PE/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Creado por" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Creado en" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Nombre a Mostrar" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Ultima Modificación en" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Actualizado última vez por" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Ultima Actualización" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "o" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/es_PY.po b/account_netting/i18n/es_PY.po index ece6616b4..a44c5ef2e 100644 --- a/account_netting/i18n/es_PY.po +++ b/account_netting/i18n/es_PY.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 08:21+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_PY/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Cancelar" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Creado por" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Creado en" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Ultima actualización por" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Ultima actualización en" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" msgstr "" diff --git a/account_netting/i18n/es_VE.po b/account_netting/i18n/es_VE.po index 0ec34fed1..5a55e2210 100644 --- a/account_netting/i18n/es_VE.po +++ b/account_netting/i18n/es_VE.po @@ -3,35 +3,15 @@ # * account_netting # # Translators: -# Accounts-Payable - Alkemics, 2015 -# Ahmet Altinisik , 2015 -# Alejandro Santana , 2015 -# Antonio Trueba, 2016 -# Chen-Do LU , 2015 -# Bole , 2015 -# Dimitrios Glentadakis , 2013-2014, 2015-2016 -# Efstathios Iosifidis , 2014 -# FIRST AUTHOR , 2012,2014 -# François Breysse , 2015 -# Guewen Baconnier , 2015 -# Hotellook, 2014 -# Jarmo Kortetjärvi , 2016 -# Jim Spentzos, 2014 -# Leonardo J. Caballero G. , 2016 -# Matjaž Mozetič , 2015 -# njeudy , 2015 -# Pedro M. Baeza , 2015 -# Pierre Verkest , 2015 -# Rudolf Schnapka , 2016 -# SaFi J. , 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-25 14:55+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_VE/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -39,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Cancelar" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Creado por" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Creado en" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Mostrar nombre" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Diario" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Modificada por última vez" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Última actualización realizada por" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Ultima actualizacion en" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -158,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" msgstr "" diff --git a/account_netting/i18n/et.po b/account_netting/i18n/et.po index 0b39cbddb..f8613b559 100644 --- a/account_netting/i18n/et.po +++ b/account_netting/i18n/et.po @@ -3,54 +3,15 @@ # * account_netting # # Translators: -# Accounts-Payable - Alkemics, 2015 -# Ahmet Altinisik , 2016 -# Alejandro Santana , 2015 -# Antonio Trueba, 2016 -# Armando Vulcano Junior , 2015 -# bossnm11 , 2014 -# Chanseok , 2014 -# Chen-Do LU , 2015 -# Christophe CHAUVET , 2015 -# Chul Park , 2015 -# danimaribeiro , 2016 -# David10000 , 2014 -# FIRST AUTHOR , 2012-2013 -# Florian Hatat, 2015 -# François Breysse , 2015 -# Gil , 2014 -# kmooc , 2015 -# Hongseob Lee , 2015 -# Hotellook, 2014 -# jeon , 2014 -# JiyeonLee , 2014 -# Jong-Dae Park , 2013 -# Kevin Min , 2015 -# KimKyudong , 2014 -# mariana1201 , 2014 -# Matjaž Mozetič , 2015 -# Miku Laitinen , 2015 -# Nicole , 2014 -# njeudy , 2015 -# Paolo Valier, 2016 -# Pedro M. Baeza , 2015 -# Pope, 2014 -# Rudolf Schnapka , 2016 -# SaFi J. , 2015 -# Sarina Canelake , 2014 -# Seok Jun Yoon , 2015 -# shin2012 , 2014 -# Sujin Lee , 2014 -# Sunah Lim , 2013 -# Young C. Kim, 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-25 14:57+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Estonian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/et/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -58,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Loobu" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Loonud" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Loodud" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Näidatav nimi" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Päevik" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Viimati muudetud" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Viimati uuendatud" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Viimati uuendatud" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -177,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "või" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/eu.po b/account_netting/i18n/eu.po index f73e7e766..dff936621 100644 --- a/account_netting/i18n/eu.po +++ b/account_netting/i18n/eu.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 08:26+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Basque (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/eu/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Ezeztatu" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Nork sortua" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Created on" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Izena erakutsi" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Last Updated by" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Last Updated on" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "or" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/fa.po b/account_netting/i18n/fa.po index dcc6547d7..d1dd1734e 100644 --- a/account_netting/i18n/fa.po +++ b/account_netting/i18n/fa.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 08:25+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Persian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fa/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "لغو" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "ایجاد شده توسط" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "ایجاد شده در" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "نام نمایشی" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "شناسه" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "تاریخ آخرین به‌روزرسانی" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "آخرین به روز رسانی توسط" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "آخرین به روز رسانی در" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "یا" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/fi.po b/account_netting/i18n/fi.po index 18d8d3e36..63919b7c6 100644 --- a/account_netting/i18n/fi.po +++ b/account_netting/i18n/fi.po @@ -3,53 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2016 -# Ahmet Altinisik , 2016 -# Antonio Trueba, 2016 -# Armando Vulcano Junior , 2015 -# bossnm11 , 2014 -# Carles Antoli , 2015 -# Carles Antoli , 2015 -# Chanseok , 2014 -# Chanseok , 2014 -# Chul Park , 2015 -# danimaribeiro , 2016 -# David10000 , 2014 -# Eduardo Rodríguez Crespo , 2016 -# FIRST AUTHOR , 2012-2013 -# Gil , 2014 -# kmooc , 2015 -# Hongseob Lee , 2015 -# jeon , 2014 -# JiyeonLee , 2014 -# Jong-Dae Park , 2013 -# Kevin Min , 2015 -# KimKyudong , 2014 -# kmooc , 2015 -# mariana1201 , 2014 -# Matjaž Mozetič , 2015 -# Nicole , 2014 -# Paolo Valier, 2016 -# Pedro Castro Silva , 2015 -# Pedro M. Baeza , 2015 -# Pope, 2014 -# Rudolf Schnapka , 2016 -# Sarina Canelake , 2014 -# Seok Jun Yoon , 2015 -# shin2012 , 2014 -# Sujin Lee , 2014 -# Sunah Lim , 2013 -# UAB "Draugiški sprendimai" , 2015 -# Young C. Kim, 2015 -# Young C. Kim, 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-01-12 03:44+0000\n" -"PO-Revision-Date: 2017-01-13 09:29+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Finnish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fi/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -57,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Peruuta" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Luonut" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Luotu" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Nimi" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Piväkirja" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Viimeksi muokattu" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Viimeksi päivittänyt" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Viimeksi päivitetty" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -176,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "tai" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/fr.po b/account_netting/i18n/fr.po index b80bc1ae5..0219b47d2 100644 --- a/account_netting/i18n/fr.po +++ b/account_netting/i18n/fr.po @@ -3,32 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2016 -# Ahmet Altinisik , 2016 -# Alejandro Santana , 2015 -# Antonio Trueba, 2016 -# Christophe CHAUVET , 2015 -# Christophe CHAUVET , 2015 -# danimaribeiro , 2016 -# FIRST AUTHOR , 2012 -# Hotellook, 2014 -# Isabelle RICHARD , 2015 -# Jarmo Kortetjärvi , 2016 -# John Toro , 2015 -# Lixon Jean-Yves , 2016 -# Lixon Jean-Yves , 2016 -# Matjaž Mozetič , 2015-2016 -# Pedro Castro Silva , 2015 -# Rudolf Schnapka , 2015 -# SaFi J. , 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 17:00+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: French (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fr/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -36,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" -msgstr "Balance" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Annuler" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Créé par" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Créé le" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" -msgstr "Nom à afficher" +msgstr "Afficher le nom" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" -msgstr "Dernière modification le" +msgstr "Dernière Modification le" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" -msgstr "Dernière modification par" +msgstr "Dernière mise à jour par" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" -msgstr "Dernière modification le" +msgstr "Dernière mise à jour le" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" -msgstr "Écritures comptables" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" +msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -155,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "ou" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/fr_CA.po b/account_netting/i18n/fr_CA.po index 1bd2b0d99..5a1c5995d 100644 --- a/account_netting/i18n/fr_CA.po +++ b/account_netting/i18n/fr_CA.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-02-26 22:34+0000\n" -"PO-Revision-Date: 2017-03-13 12:52+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fr_CA/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Annuler" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Créé par" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Créé le" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Afficher le nom" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "Identifiant" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Dernière mise à jour par" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Dernière mise à jour le" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" msgstr "" diff --git a/account_netting/i18n/fr_CH.po b/account_netting/i18n/fr_CH.po index 95db23d35..c459c2e5b 100644 --- a/account_netting/i18n/fr_CH.po +++ b/account_netting/i18n/fr_CH.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-25 21:28+0000\n" -"PO-Revision-Date: 2016-12-01 10:10+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fr_CH/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Annuler" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Créé par" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Créé le" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Nom affiché" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Dernière modification le" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Modifié par" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Modifié le" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" msgstr "" diff --git a/account_netting/i18n/fr_FR.po b/account_netting/i18n/fr_FR.po index 9741989ab..451403b65 100644 --- a/account_netting/i18n/fr_FR.po +++ b/account_netting/i18n/fr_FR.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 08:20+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: French (France) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fr_FR/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/fr_FR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Annuler" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" msgstr "" diff --git a/account_netting/i18n/gl.po b/account_netting/i18n/gl.po index 8393e1caf..95c7f0d5b 100644 --- a/account_netting/i18n/gl.po +++ b/account_netting/i18n/gl.po @@ -3,28 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2015-2016 -# Antonio Trueba, 2016 -# Carles Antoli , 2015 -# Carles Antoli , 2015 -# danimaribeiro , 2016 -# FIRST AUTHOR , 2012-2014 -# Jarmo Kortetjärvi , 2016 -# Jesús Alan Ramos Rodríguez , 2015 -# Jesús Alan Ramos Rodríguez , 2015 -# Matjaž Mozetič , 2015 -# Paolo Valier, 2016 -# Pedro Castro Silva , 2015 -# Rudolf Schnapka , 2015-2016 -# Thomas A. Jaeger, 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-02-26 22:34+0000\n" -"PO-Revision-Date: 2017-04-25 10:39+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Galician (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/gl/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -32,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Cancelar" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Creado por" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Creado en" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Diario" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Última modificación" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "ültima actualización por" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -151,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "ou" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/gl_ES.po b/account_netting/i18n/gl_ES.po index fcf48d38d..b952efeb7 100644 --- a/account_netting/i18n/gl_ES.po +++ b/account_netting/i18n/gl_ES.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-14 18:49+0000\n" -"PO-Revision-Date: 2015-10-14 18:45+0000\n" -"Last-Translator: <>\n" -"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/gl_ES/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,98 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -127,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" msgstr "" diff --git a/account_netting/i18n/gu.po b/account_netting/i18n/gu.po new file mode 100644 index 000000000..f7c775282 --- /dev/null +++ b/account_netting/i18n/gu.po @@ -0,0 +1,158 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Gujarati (https://www.transifex.com/oca/teams/23907/gu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_netting +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#, python-format +msgid "" +"All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type +msgid "Balance type" +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "રદ કરો" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid +msgid "Created by" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date +msgid "Created on" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id +msgid "ID" +msgstr "ઓળખ" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "" +"This operation will generate account entries that are counterpart of the " +"receivable/payable accounts selected, and reconcile each other, letting this" +" balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/he.po b/account_netting/i18n/he.po index 223817ae8..19d55ae87 100644 --- a/account_netting/i18n/he.po +++ b/account_netting/i18n/he.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 08:25+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/he/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "בטל" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "נוצר על ידי" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "נוצר ב-" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "השם המוצג" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "מזהה" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "תאריך שינוי אחרון" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "עודכן לאחרונה על ידי" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "עודכן לאחרונה על" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "או" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/hi.po b/account_netting/i18n/hi.po index 1d0062b6b..bb32d107a 100644 --- a/account_netting/i18n/hi.po +++ b/account_netting/i18n/hi.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 08:24+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Hindi (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hi/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hindi (https://www.transifex.com/oca/teams/23907/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "रद्द" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" msgstr "" diff --git a/account_netting/i18n/hr.po b/account_netting/i18n/hr.po index 49353dff8..41cdc6070 100644 --- a/account_netting/i18n/hr.po +++ b/account_netting/i18n/hr.po @@ -3,49 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2015-2016 -# Antonio Trueba, 2016 -# bossnm11 , 2014 -# Carles Antoli , 2015 -# Carles Antoli , 2015 -# Chanseok , 2014 -# Chul Park , 2015 -# danimaribeiro , 2016 -# David10000 , 2014 -# FIRST AUTHOR , 2012-2013 -# Gil , 2014 -# kmooc , 2015 -# Hongseob Lee , 2015 -# Hotellook, 2014 -# jeon , 2014 -# JiyeonLee , 2014 -# Jong-Dae Park , 2013 -# Kevin Min , 2015 -# KimKyudong , 2014 -# kmooc , 2015 -# Leonardo J. Caballero G. , 2016 -# Leonardo J. Caballero G. , 2016 -# mariana1201 , 2014 -# Matjaž Mozetič , 2015-2016 -# Nicole , 2014 -# Paolo Valier, 2016 -# Pope, 2014 -# Rudolf Schnapka , 2016 -# Sarina Canelake , 2014 -# Seok Jun Yoon , 2015 -# shin2012 , 2014 -# Sujin Lee , 2014 -# Sunah Lim , 2013 -# Young C. Kim, 2015 -# Young C. Kim, 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-24 00:47+0000\n" -"PO-Revision-Date: 2016-10-05 06:35+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Croatian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hr/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -53,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Odustani" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Kreirao" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Kreirano" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Prikaži ime" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Temeljnica" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Zadnja izmjena dana" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Zadnji ažurirao" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Zadnje ažurirano dana" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -172,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "ili" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/hr_HR.po b/account_netting/i18n/hr_HR.po index 753c7f92f..d3e57e5ce 100644 --- a/account_netting/i18n/hr_HR.po +++ b/account_netting/i18n/hr_HR.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-02-26 22:34+0000\n" -"PO-Revision-Date: 2017-04-25 10:41+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hr_HR/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Otkaži" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Kreirao" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Kreirano" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Naziv" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Dnevnik" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Zadnje modificirano" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Zadnji ažurirao" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Zadnje ažurirano" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" msgstr "" diff --git a/account_netting/i18n/hu.po b/account_netting/i18n/hu.po index 506263be8..a57feb49a 100644 --- a/account_netting/i18n/hu.po +++ b/account_netting/i18n/hu.po @@ -3,26 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2016 -# Antonio Trueba, 2016 -# Armando Vulcano Junior , 2015 -# Carles Antoli , 2015 -# danimaribeiro , 2016 -# FIRST AUTHOR , 2012 -# Kostas Goutoudis , 2015 -# Matjaž Mozetič , 2015-2016 -# Paolo Valier, 2016 -# Pedro M. Baeza , 2015 -# Rudolf Schnapka , 2016 -# SaFi J. , 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-22 16:44+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hu/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -30,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Mégsem" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Készítette" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Létrehozás dátuma" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Név megjelenítése" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Napló" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Utolsó frissítés dátuma" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Utoljára frissítve, által" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Utoljára frissítve " #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -149,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "vagy" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/id.po b/account_netting/i18n/id.po index af9c70f19..633585e5a 100644 --- a/account_netting/i18n/id.po +++ b/account_netting/i18n/id.po @@ -3,30 +3,15 @@ # * account_netting # # Translators: -# Alexsandro Haag , 2015 -# Christophe CHAUVET , 2015 -# Christophe CHAUVET , 2015 -# danimaribeiro , 2016 -# FIRST AUTHOR , 2012,2014 -# Hotellook, 2014 -# Jarmo Kortetjärvi , 2016 -# llum.birque@gmail.com , 2015 -# Matjaž Mozetič , 2015-2016 -# Paolo Valier, 2016 -# Rudolf Schnapka , 2015-2016 -# SaFi J. , 2015 -# Stéphane Bidoul , 2015 -# Wagner Pereira , 2015 -# yterrettaz, 2015 -# yterrettaz, 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 08:22+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/id/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -34,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Batalkan" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Dibuat oleh" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Dibuat pada" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Nama Tampilan" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Jurnal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Terakhir Dimodifikasi pada" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Diperbaharui oleh" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Diperbaharui pada" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -153,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "atau" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/it.po b/account_netting/i18n/it.po index c163f27ba..04ca2e75a 100644 --- a/account_netting/i18n/it.po +++ b/account_netting/i18n/it.po @@ -3,24 +3,15 @@ # * account_netting # # Translators: -# Alexis de Lattre , 2016 -# Carles Antoli , 2015 -# Christophe CHAUVET , 2015 -# danimaribeiro , 2016 -# FIRST AUTHOR , 2012-2013 -# Guewen Baconnier , 2015 -# Jarmo Kortetjärvi , 2016 -# Matjaž Mozetič , 2015-2016 -# Rudolf Schnapka , 2016 -# Sofce Dimitrijeva , 2013 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-14 00:45+0000\n" -"PO-Revision-Date: 2016-09-09 12:25+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Italian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/it/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -28,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Annulla" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Creato da" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Creato il" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Nome da visualizzare" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Sezionale" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Ultima modifica il" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Last Updated by" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Last Updated on" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -147,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "o" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/ja.po b/account_netting/i18n/ja.po index 513a1f875..4d4f2b94e 100644 --- a/account_netting/i18n/ja.po +++ b/account_netting/i18n/ja.po @@ -3,27 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2016 -# Antonio Trueba, 2016 -# Armando Vulcano Junior , 2015 -# danimaribeiro , 2016 -# Eduardo Rodríguez Crespo , 2016 -# FIRST AUTHOR , 2012-2013 -# Hotellook, 2014 -# Matjaž Mozetič , 2015 -# Paolo Valier, 2016 -# Pedro Castro Silva , 2015 -# Pedro M. Baeza , 2015 -# Rudolf Schnapka , 2015-2016 -# UAB "Draugiški sprendimai" , 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-22 16:24+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Japanese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ja/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -31,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "キャンセル" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "作成者" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "作成日" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "表示名" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "仕訳帳" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "最終更新日" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "最終更新者" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "最終更新日" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -150,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "または" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/ko.po b/account_netting/i18n/ko.po index e507f01a1..07a38e8c3 100644 --- a/account_netting/i18n/ko.po +++ b/account_netting/i18n/ko.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 08:26+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Korean (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ko/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "취소" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "작성자" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "작성일" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "표시 이름" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "최근 수정" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "최근 갱신한 사람" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "최근 갱신 날짜" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "또는" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/lo.po b/account_netting/i18n/lo.po index 47be01a64..285c38733 100644 --- a/account_netting/i18n/lo.po +++ b/account_netting/i18n/lo.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 08:22+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Lao (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/lo/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lao (https://www.transifex.com/oca/teams/23907/lo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "ຍົກເລີອກ" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" msgstr "" diff --git a/account_netting/i18n/lt.po b/account_netting/i18n/lt.po index 0129c3930..dcfd6a7fc 100644 --- a/account_netting/i18n/lt.po +++ b/account_netting/i18n/lt.po @@ -3,30 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2016 -# Antonio Trueba, 2016 -# Bruno JOLIVEAU, 2015 -# Christophe CHAUVET , 2015 -# danimaribeiro , 2016 -# FIRST AUTHOR , 2012-2014 -# Florian Hatat, 2015 -# Guewen Baconnier , 2015 -# Hotellook, 2014 -# Jarmo Kortetjärvi , 2016 -# John Toro , 2015 -# Matjaž Mozetič , 2015 -# Paolo Valier, 2016 -# Pedro Castro Silva , 2015 -# Rudolf Schnapka , 2015 -# yterrettaz, 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-25 14:58+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/lt/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -34,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Atšaukti" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Sukūrė" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Sukurta" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Vaizduojamas pavadinimas" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Žurnalas" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Paskutinį kartą keista" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Paskutinį kartą atnaujino" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Paskutinį kartą atnaujinta" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -153,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "arba" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/lt_LT.po b/account_netting/i18n/lt_LT.po index 08383f8e8..06dd8d092 100644 --- a/account_netting/i18n/lt_LT.po +++ b/account_netting/i18n/lt_LT.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-02-26 22:34+0000\n" -"PO-Revision-Date: 2017-04-25 10:41+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/lt_LT/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Atšaukti" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Sukūrė" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Sukurta" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Žurnalas" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Paskutinį kartą atnaujino" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Paskutinį kartą atnaujinta" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" msgstr "" diff --git a/account_netting/i18n/lv.po b/account_netting/i18n/lv.po index b5fde06ca..920d24bf1 100644 --- a/account_netting/i18n/lv.po +++ b/account_netting/i18n/lv.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 08:23+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Latvian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/lv/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Atcelt" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Izveidoja" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Izveidots" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Pēdējo reizi atjaunoja" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Pēdējās izmaiņas" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "vai" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/mk.po b/account_netting/i18n/mk.po index 4dab674f3..f5ac938dd 100644 --- a/account_netting/i18n/mk.po +++ b/account_netting/i18n/mk.po @@ -3,31 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2015 -# Antonio Trueba, 2016 -# Armando Vulcano Junior , 2015 -# Christophe CHAUVET , 2015 -# danimaribeiro , 2016 -# FIRST AUTHOR , 2012,2014 -# Giacomo , 2015 -# Hotellook, 2014 -# Matjaž Mozetič , 2015 -# njeudy , 2015 -# Paolo Valier, 2016 -# Pedro Castro Silva , 2015 -# Pedro M. Baeza , 2015 -# Rudolf Schnapka , 2016 -# SaFi J. , 2015 -# Stéphane Bidoul , 2015 -# yterrettaz, 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-22 16:25+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/mk/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -35,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Откажи" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Креирано од" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Креирано на" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Прикажи име" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Дневник" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Последна промена на" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Последно ажурирање од" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Последно ажурирање на" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -154,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "или" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/mn.po b/account_netting/i18n/mn.po index ece6983b6..da4dfa210 100644 --- a/account_netting/i18n/mn.po +++ b/account_netting/i18n/mn.po @@ -3,52 +3,15 @@ # * account_netting # # Translators: -# Accounts-Payable - Alkemics, 2015 -# Ahmet Altinisik , 2016 -# Alejandro Santana , 2015 -# Antonio Trueba, 2016 -# Armando Vulcano Junior , 2015 -# bossnm11 , 2014 -# Chanseok , 2014 -# Chen-Do LU , 2015 -# Christophe CHAUVET , 2015 -# Chul Park , 2015 -# danimaribeiro , 2016 -# David10000 , 2014 -# FIRST AUTHOR , 2012-2013 -# François Breysse , 2015 -# Gil , 2014 -# kmooc , 2015 -# Hongseob Lee , 2015 -# Hotellook, 2014 -# jeon , 2014 -# JiyeonLee , 2014 -# Jong-Dae Park , 2013 -# Kevin Min , 2015 -# KimKyudong , 2014 -# mariana1201 , 2014 -# Matjaž Mozetič , 2015 -# Nicole , 2014 -# njeudy , 2015 -# Paolo Valier, 2016 -# Pedro M. Baeza , 2015 -# Pope, 2014 -# Rudolf Schnapka , 2016 -# SaFi J. , 2015 -# Sarina Canelake , 2014 -# Seok Jun Yoon , 2015 -# shin2012 , 2014 -# Sujin Lee , 2014 -# Sunah Lim , 2013 -# Young C. Kim, 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-22 16:26+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/mn/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -56,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Цуцлах" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Үүсгэгч" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Үүсгэсэн" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Дэлгэцийн Нэр" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Журнал" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Сүүлийн засвар хийсэн огноо" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Сүүлийн засвар хийсэн" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Сүүлийн засвар хийсэн огноо" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -175,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "эсвэл" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/nb.po b/account_netting/i18n/nb.po index b909d693f..8aba8e214 100644 --- a/account_netting/i18n/nb.po +++ b/account_netting/i18n/nb.po @@ -3,26 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2015 -# Antonio Trueba, 2016 -# Carles Antoli , 2015 -# danimaribeiro , 2016 -# FIRST AUTHOR , 2011-2012 -# Hotellook, 2014 -# Jarmo Kortetjärvi , 2016 -# Leonardo J. Caballero G. , 2016 -# Matjaž Mozetič , 2015-2016 -# Paolo Valier, 2016 -# Pedro M. Baeza , 2015 -# Rudolf Schnapka , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-22 16:25+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nb/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -30,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Avbryt" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Opprettet av" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Opprettet den" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Visnings navn" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Sist oppdatert " #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Sist oppdatert av" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Sist oppdatert" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -149,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "eller" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/nb_NO.po b/account_netting/i18n/nb_NO.po index 10c355365..ea44b2cfc 100644 --- a/account_netting/i18n/nb_NO.po +++ b/account_netting/i18n/nb_NO.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-02-26 22:34+0000\n" -"PO-Revision-Date: 2017-04-25 10:44+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nb_NO/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Lukk" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Laget av" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Laget den" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Vis navn" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Sist endret den" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Sist oppdatert av" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Sist oppdatert den" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" msgstr "" diff --git a/account_netting/i18n/nl.po b/account_netting/i18n/nl.po index 24e832c48..17d2c6f2b 100644 --- a/account_netting/i18n/nl.po +++ b/account_netting/i18n/nl.po @@ -3,21 +3,15 @@ # * account_netting # # Translators: -# Alexis de Lattre , 2016 -# Christophe CHAUVET , 2015 -# Christophe CHAUVET , 2015 -# FIRST AUTHOR , 2012 -# Giedrius Slavinskas , 2012 -# Matjaž Mozetič , 2015 -# Rudolf Schnapka , 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-25 14:57+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Dutch (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nl/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -25,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Annuleren" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Aangemaakt door" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Aangemaakt op" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Te tonen naam" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Dagboek" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Laatst bijgewerkt op" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Laatst bijgewerkt door" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Laatst bijgewerkt op" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -144,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "of" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/nl_BE.po b/account_netting/i18n/nl_BE.po index ae770b4c4..6adcdc150 100644 --- a/account_netting/i18n/nl_BE.po +++ b/account_netting/i18n/nl_BE.po @@ -3,27 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2016 -# Antonio Trueba, 2016 -# Carles Antoli , 2015 -# danimaribeiro , 2016 -# FIRST AUTHOR , 2011-2013 -# Hotellook, 2014 -# Jarmo Kortetjärvi , 2016 -# Matjaž Mozetič , 2015 -# Paolo Valier, 2016 -# Pedro Castro Silva , 2015 -# Rudolf Schnapka , 2015-2016 -# SaFi J. , 2015 -# Thomas A. Jaeger, 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-25 14:55+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nl_BE/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -31,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Annuleren" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Gemaakt door" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Gemaakt op" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Schermnaam" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Journaal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Laatst Aangepast op" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Laatst bijgewerkt door" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Laatst bijgewerkt op" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -150,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "of" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/nl_NL.po b/account_netting/i18n/nl_NL.po deleted file mode 100644 index 34c7e88fa..000000000 --- a/account_netting/i18n/nl_NL.po +++ /dev/null @@ -1,148 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * account_netting -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-02-26 22:34+0000\n" -"PO-Revision-Date: 2017-06-30 08:53+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nl_NL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: nl_NL\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 -#, python-format -msgid "AR/AP netting" -msgstr "" - -#. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 -#, python-format -msgid "All entries must have a receivable or payable account" -msgstr "" - -#. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 -#, python-format -msgid "All entries mustn't been reconciled" -msgstr "" - -#. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 -#, python-format -msgid "" -"All entries should have a partner and the partner must be the same for all." -msgstr "" - -#. module: account_netting -#: field:account.move.make.netting,balance:0 -msgid "Balance" -msgstr "" - -#. module: account_netting -#: field:account.move.make.netting,balance_type:0 -msgid "Balance type" -msgstr "" - -#. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "Cancel" -msgstr "" - -#. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting -msgid "Compensate" -msgstr "" - -#. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "Compensate entries" -msgstr "" - -#. module: account_netting -#: field:account.move.make.netting,create_uid:0 -msgid "Created by" -msgstr "" - -#. module: account_netting -#: field:account.move.make.netting,create_date:0 -msgid "Created on" -msgstr "" - -#. module: account_netting -#: field:account.move.make.netting,display_name:0 -msgid "Display Name" -msgstr "Weergavenaam" - -#. module: account_netting -#: field:account.move.make.netting,id:0 -msgid "ID" -msgstr "ID" - -#. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "" - -#. module: account_netting -#: field:account.move.make.netting,__last_update:0 -msgid "Last Modified on" -msgstr "Laatst gewijzigd op" - -#. module: account_netting -#: field:account.move.make.netting,write_uid:0 -msgid "Last Updated by" -msgstr "" - -#. module: account_netting -#: field:account.move.make.netting,write_date:0 -msgid "Last Updated on" -msgstr "" - -#. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" -msgstr "" - -#. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "Select the journal where storing the journal entries" -msgstr "" - -#. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "" -"This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" -msgstr "" - -#. module: account_netting -#: selection:account.move.make.netting,balance_type:0 -msgid "To pay" -msgstr "" - -#. module: account_netting -#: selection:account.move.make.netting,balance_type:0 -msgid "To receive" -msgstr "" - -#. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 -#, python-format -msgid "You should compensate at least 2 journal entries." -msgstr "" - -#. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "" diff --git a/account_netting/i18n/pl.po b/account_netting/i18n/pl.po index e5028ac31..044a0ac11 100644 --- a/account_netting/i18n/pl.po +++ b/account_netting/i18n/pl.po @@ -3,135 +3,133 @@ # * account_netting # # Translators: -# Antonio Trueba, 2016 -# Armando Vulcano Junior , 2015 -# Carles Antoli , 2015 -# FIRST AUTHOR , 2010,2012,2014 -# Gustavo Lepri , 2015 -# Hotellook, 2014 -# Jarmo Kortetjärvi , 2016 -# Matjaž Mozetič , 2015 -# Paolo Valier, 2016 -# Pedro M. Baeza , 2015 -# Rudolf Schnapka , 2015-2016 -# SaFi J. , 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-25 14:55+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Polish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pl/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Anuluj" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Utworzone przez" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Utworzono" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Wyświetlana nazwa " #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Dziennik" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Ostatnio modyfikowano" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Ostatnio modyfikowane przez" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Ostatnia zmiana" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -149,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "lub" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/pt.po b/account_netting/i18n/pt.po index 44cef1816..9e71488b9 100644 --- a/account_netting/i18n/pt.po +++ b/account_netting/i18n/pt.po @@ -3,24 +3,16 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2015 -# Antonio Trueba, 2016 -# FIRST AUTHOR , 2012,2014 -# Gustavo Lepri , 2015 -# Hotellook, 2014 -# Jarmo Kortetjärvi , 2016 -# Matjaž Mozetič , 2016 -# Paolo Valier, 2016 -# Rudolf Schnapka , 2015-2016 -# Thomas A. Jaeger, 2015 +# Pedro Castro Silva , 2017 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-25 14:58+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt/)\n" +"POT-Creation-Date: 2017-12-08 23:22+0000\n" +"PO-Revision-Date: 2017-12-08 23:22+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -28,131 +20,147 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" -msgstr "" +msgstr "Encontro de Contas" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" -msgstr "" +msgstr "Os itens de diário devem ter uma conta a receber ou a pagar" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" -msgstr "" +msgstr "Os itens de diário não podem estar reconciliados" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" +"Os itens de diário devem ter um parceiro e este deve ser o mesmo para todos." #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" -msgstr "" +msgstr "Saldo" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" -msgstr "" +msgstr "Tipo de Saldo" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Cancelar" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" -msgstr "" +msgstr "Compensar" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" -msgstr "" +msgstr "Compensar os itens de diário" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Criado por" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Criado em" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" -msgstr "Nome" +msgstr "Nome a Exibir" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Diário" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "Id do Diário" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" -msgstr "Modificado a última vez por" +msgstr "Última Modificação em" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" -msgstr "Atualizado pela última vez por" +msgstr "Última Actualização por" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" -msgstr "Atualizado pela última vez em" +msgstr "Última Actualização em" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" -msgstr "" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" +msgstr "Ids. da linha de movimento" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" -msgstr "" +msgstr "Selecione o Diário onde guardar os lançamentos" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" +"A função 'Compensar' pretende balancear operações em contas diferentes para o mesmo parceiro.\n" +"Neste caso todos os lançamentos selecionados pertencem à mesma conta.\n" +"Por favor, use a função 'Reconciliar'." + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" " balance in the partner:" msgstr "" +"Esta operação gerará itens de diário que são contrapartida das contas a " +"receber/a pagar selecionadas, e realizará a reconciliação, deixando este " +"saldo no parceiro:" #. module: account_netting #: selection:account.move.make.netting,balance_type:0 msgid "To pay" -msgstr "" +msgstr "A Pagar" #. module: account_netting #: selection:account.move.make.netting,balance_type:0 msgid "To receive" -msgstr "" +msgstr "A receber" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." -msgstr "" +msgstr "Deve compensar pelos menos 2 itens de diário." #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "ou" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "account.move.make.netting" diff --git a/account_netting/i18n/pt_BR.po b/account_netting/i18n/pt_BR.po index 13cc1d34d..8d2b67ea2 100644 --- a/account_netting/i18n/pt_BR.po +++ b/account_netting/i18n/pt_BR.po @@ -3,31 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2015 -# Ahmet Altinisik , 2015 -# Antonio Trueba, 2016 -# Armando Vulcano Junior , 2015 -# Christophe CHAUVET , 2015 -# Christophe CHAUVET , 2015 -# danimaribeiro , 2015-2016 -# FIRST AUTHOR , 2012,2014 -# Hotellook, 2014 -# Matjaž Mozetič , 2015 -# Paolo Valier, 2016 -# Pedro M. Baeza , 2015 -# Rudolf Schnapka , 2016 -# SaFi J. , 2015 -# Stéphane Bidoul , 2015 -# yterrettaz, 2015 -# yterrettaz, 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-24 00:47+0000\n" -"PO-Revision-Date: 2016-10-04 09:43+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt_BR/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -35,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Cancelar" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Criado por" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Criado em" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Nome para Mostrar" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "Identificação" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Diário" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Última atualização em" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Última atualização por" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Última atualização em" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -154,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "ou" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/pt_PT.po b/account_netting/i18n/pt_PT.po index 750fde687..502934582 100644 --- a/account_netting/i18n/pt_PT.po +++ b/account_netting/i18n/pt_PT.po @@ -3,32 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2015 -# Antonio Trueba, 2016 -# Artūras Griškonis , 2012,2015-2016 -# Artūras Griškonis , 2012 -# Carles Antoli , 2015 -# Carles Antoli , 2015 -# danimaribeiro , 2016 -# Dorin Hongu , 2015 -# FIRST AUTHOR , 2012,2014 -# Giacomo , 2015 -# Guewen Baconnier , 2015 -# Jarmo Kortetjärvi , 2016 -# Matjaž Mozetič , 2015 -# Maxime Chambreuil , 2015 -# Pedro Castro Silva , 2016 -# Rudolf Schnapka , 2015 -# SaFi J. , 2015 -# Zapata11 , 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-14 00:45+0000\n" -"PO-Revision-Date: 2016-09-12 22:57+0000\n" -"Last-Translator: Pedro Castro Silva \n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt_PT/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -36,131 +19,140 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" -msgstr "Compensação de Saldos" +msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" -msgstr "Todas as entradas devem ter uma conta a pagar ou a receber." +msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" -msgstr "Todas as entradas devem estar por reconciliar" +msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." -msgstr "Todas as entradas devem ter um parceiro e este deve ser o mesmo para todas." +msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" -msgstr "Saldo" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" -msgstr "Tipo de saldo" +msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Cancelar" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" -msgstr "Compensar" +msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" -msgstr "Compensar entradas" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Criado por" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Criado em" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Nome a exibir" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Diário" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Modificado pela última vez em" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Atualizado pela última vez por" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Atualizado pela última vez em" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" -msgstr "Linhas de Movimentos" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" +msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" -msgstr "Selecione o diário onde guardar as entradas de diário" +msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" " balance in the partner:" -msgstr "Esta operação irá gerar movimentos contabilísticos, contrapartida das contas a pagar/receber selecionadas, e reconciliar cada uma delas deixando o seu saldo visível no balancete do parceiro." +msgstr "" #. module: account_netting #: selection:account.move.make.netting,balance_type:0 msgid "To pay" -msgstr "A pagar" +msgstr "" #. module: account_netting #: selection:account.move.make.netting,balance_type:0 msgid "To receive" -msgstr "A receber" +msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." -msgstr "Deve compensar pelo menos 2 entradas de diário." +msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "ou" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/ro.po b/account_netting/i18n/ro.po index f0d7dce51..1e0a8569f 100644 --- a/account_netting/i18n/ro.po +++ b/account_netting/i18n/ro.po @@ -3,39 +3,15 @@ # * account_netting # # Translators: -# Antonio Trueba, 2016 -# Armando Vulcano Junior , 2015 -# bossnm11 , 2014 -# Carles Antoli , 2015 -# Chanseok , 2014 -# Christophe CHAUVET , 2015 -# danimaribeiro , 2016 -# FIRST AUTHOR , 2012,2014 -# Giacomo , 2015 -# jeon , 2014 -# John Toro , 2015 -# Jong-Dae Park , 2013,2015 -# Kevin Min , 2015 -# Kunwoo Kim , 2015 -# LEE SI HYEONG , 2014 -# Matjaž Mozetič , 2015-2016 -# Paolo Valier, 2016 -# Pedro Castro Silva , 2015 -# Pedro M. Baeza , 2015 -# Rudolf Schnapka , 2016 -# SaFi J. , 2015 -# Sam Ryoo , 2014 -# Seo. Junmin , 2015 -# seungil , 2014 -# SEUNGWON , 2014 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 08:24+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Romanian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ro/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -43,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Anuleaza" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Creat de" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Creat la" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Nume Afişat" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Registru" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Ultima actualizare în" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Ultima actualizare făcută de" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Ultima actualizare la" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -162,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "sau" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/ru.po b/account_netting/i18n/ru.po index d6521b762..3d4aa2cfc 100644 --- a/account_netting/i18n/ru.po +++ b/account_netting/i18n/ru.po @@ -3,16 +3,15 @@ # * account_netting # # Translators: -# FIRST AUTHOR , 2010,2012-2013 -# Matjaž Mozetič , 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 08:22+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Russian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ru/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -20,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Отменена" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Создано" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Создан" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Журнал" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Последний раз обновлено" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Последний раз обновлено" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -139,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "или" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/sk.po b/account_netting/i18n/sk.po index 7e17f89fd..76e6c0906 100644 --- a/account_netting/i18n/sk.po +++ b/account_netting/i18n/sk.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 08:26+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Slovak (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sk/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Zrušiť" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Vytvoril" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Vytvorené" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Zobraziť meno" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Posledná modifikácia" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Naposledy upravil" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Naposledy upravené" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "alebo" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/sl.po b/account_netting/i18n/sl.po index 1ec52379f..85261f9d0 100644 --- a/account_netting/i18n/sl.po +++ b/account_netting/i18n/sl.po @@ -3,17 +3,15 @@ # * account_netting # # Translators: -# FIRST AUTHOR , 2010,2012-2013 -# Matjaž Mozetič , 2015 -# Pedro M. Baeza , 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-05-14 01:07+0000\n" -"PO-Revision-Date: 2016-05-14 05:13+0000\n" -"Last-Translator: Matjaž Mozetič \n" -"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sl/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -21,131 +19,140 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" -msgstr "Mreženje terjatev/obveznosti" +msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" -msgstr "Vsi vnosi morajo imeti konto terjatev ali obveznosti" +msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" -msgstr "Vnosi ne smejo biti usklajeni" +msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." -msgstr "Vsi vnosi morajo imeti partnerja, partner pa mora biti enak za vse." +msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" -msgstr "Bilanca" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" -msgstr "Tip bilance" +msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Preklic" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" -msgstr "Kompenzacija" +msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" -msgstr "Kompenzacija vnosov" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Ustvaril" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Ustvarjeno" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Prikazni naziv" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Dnevnik" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Zadnjič spremenjeno" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Zadnjič posodobil" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Zadnjič posodobljeno" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" -msgstr "Postavke premikov" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" +msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" -msgstr "Izberite dnevnik, kamor se bodo hranili dnevniški vnosi" +msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" " balance in the partner:" -msgstr "Ta operacija ustvari kontne vnose, ki so proti-postavka izbranih kontov terjatev/obveznosti in jih medsebojno uskladi, da omogoči bilanco pri partnerju:" +msgstr "" #. module: account_netting #: selection:account.move.make.netting,balance_type:0 msgid "To pay" -msgstr "Za plačilo" +msgstr "" #. module: account_netting #: selection:account.move.make.netting,balance_type:0 msgid "To receive" -msgstr "Za prejem" +msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." -msgstr "Kompenzirati morate vsaj 2 dnevniška vnosa." +msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "ali" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/sr.po b/account_netting/i18n/sr.po index a6b395d04..88709c8d7 100644 --- a/account_netting/i18n/sr.po +++ b/account_netting/i18n/sr.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 08:25+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Serbian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sr/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Otkaži" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Kreiran" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" msgstr "" diff --git a/account_netting/i18n/sr@latin.po b/account_netting/i18n/sr@latin.po index 26bd4f1f5..8fb580639 100644 --- a/account_netting/i18n/sr@latin.po +++ b/account_netting/i18n/sr@latin.po @@ -3,27 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2015 -# Alejandro Santana , 2015 -# Antonio Trueba, 2016 -# Carles Antoli , 2015 -# danimaribeiro , 2016 -# FIRST AUTHOR , 2012,2014 -# Giacomo , 2015 -# Guewen Baconnier , 2015 -# Jarmo Kortetjärvi , 2016 -# Matjaž Mozetič , 2015 -# Maxime Chambreuil , 2015 -# Rudolf Schnapka , 2015 -# SaFi J. , 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-22 16:24+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sr@latin/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr%40latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -31,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Otkaži" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Kreirao" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Kreiran" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Ime za prikaz" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Dnevnik" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Zadnja izmjena" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Zadnja izmjena" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Zadnja izmjena" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -150,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "ili" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/sv.po b/account_netting/i18n/sv.po index f07ad8f43..7373b4845 100644 --- a/account_netting/i18n/sv.po +++ b/account_netting/i18n/sv.po @@ -3,39 +3,15 @@ # * account_netting # # Translators: -# Alejandro Santana , 2015 -# Antonio Trueba, 2016 -# Armando Vulcano Junior , 2015 -# bossnm11 , 2014 -# Carles Antoli , 2015 -# Chanseok , 2014 -# Christophe CHAUVET , 2015 -# danimaribeiro , 2015-2016 -# FIRST AUTHOR , 2012,2014 -# Hotellook, 2014 -# jeon , 2014 -# John Toro , 2015 -# Jong-Dae Park , 2013,2015 -# Kevin Min , 2015 -# Kunwoo Kim , 2015 -# LEE SI HYEONG , 2014 -# Matjaž Mozetič , 2015-2016 -# Paolo Valier, 2016 -# Pedro M. Baeza , 2015 -# Rudolf Schnapka , 2016 -# SaFi J. , 2015 -# Sam Ryoo , 2014 -# Seo. Junmin , 2015 -# seungil , 2014 -# SEUNGWON , 2014 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-22 16:25+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Swedish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sv/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -43,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Avbryt" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Skapad av" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Skapad den" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Visa namn" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Senast redigerad" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Senast uppdaterad av" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Senast uppdaterad" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -162,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "eller" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/th.po b/account_netting/i18n/th.po index 03bec6a40..bce5ef400 100644 --- a/account_netting/i18n/th.po +++ b/account_netting/i18n/th.po @@ -3,29 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2016 -# Alejandro Santana , 2015 -# Antonio Trueba, 2016 -# Christophe CHAUVET , 2015 -# danimaribeiro , 2016 -# FIRST AUTHOR , 2011-2012 -# Florian Hatat, 2015 -# Hotellook, 2014 -# Isabelle RICHARD , 2015 -# Jarmo Kortetjärvi , 2016 -# John Toro , 2015 -# Lixon Jean-Yves , 2016 -# Matjaž Mozetič , 2015-2016 -# Rudolf Schnapka , 2015 -# SaFi J. , 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-25 14:55+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Thai (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/th/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -33,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "ยกเลิก" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "สร้างโดย" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "สร้างเมื่อ" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "ชื่อที่ใช้แสดง" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "รหัส" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "แก้ไขครั้งสุดท้ายเมื่อ" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "อัพเดทครั้งสุดท้ายโดย" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "อัพเดทครั้งสุดท้ายเมื่อ" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -152,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "หรือ" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/tr.po b/account_netting/i18n/tr.po index d0af3e101..28e4f9643 100644 --- a/account_netting/i18n/tr.po +++ b/account_netting/i18n/tr.po @@ -3,22 +3,15 @@ # * account_netting # # Translators: -# Alejandro Santana , 2015 -# danimaribeiro , 2016 -# FIRST AUTHOR , 2012-2013 -# Guewen Baconnier , 2015 -# Matjaž Mozetič , 2015 -# Rudolf Schnapka , 2016 -# SaFi J. , 2015 -# Thomas A. Jaeger, 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-30 21:22+0000\n" -"Last-Translator: Ahmet Altinisik \n" -"Language-Team: Turkish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/tr/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -26,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Vazgeç" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Oluşturan" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Oluşturuldu" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Görünen İsim" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Günlük" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Son değişiklik" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Son güncelleyen" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Son güncelleme" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -145,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "ya da" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/tr_TR.po b/account_netting/i18n/tr_TR.po index 9241d9eef..843b1d449 100644 --- a/account_netting/i18n/tr_TR.po +++ b/account_netting/i18n/tr_TR.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-30 23:29+0000\n" -"PO-Revision-Date: 2017-01-04 14:44+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/tr_TR/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "İptal et" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Oluşturan" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Oluşturulma tarihi" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Görünen ad" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "Kimlik" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "En son güncelleme tarihi" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "En son güncelleyen " #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "En son güncelleme tarihi" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "ya da " +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/uk.po b/account_netting/i18n/uk.po index cd235aeac..8bdd06005 100644 --- a/account_netting/i18n/uk.po +++ b/account_netting/i18n/uk.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 08:26+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/uk/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Скасувати" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Створив" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Дата створення" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Назва для відображення" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Остання модифікація" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Востаннє оновив" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Останнє оновлення" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "або" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/vi.po b/account_netting/i18n/vi.po index 25d47f0cf..662f68d91 100644 --- a/account_netting/i18n/vi.po +++ b/account_netting/i18n/vi.po @@ -3,27 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2016 -# Antonio Trueba, 2016 -# Armando Vulcano Junior , 2015 -# danimaribeiro , 2016 -# Eduardo Rodríguez Crespo , 2016 -# FIRST AUTHOR , 2012-2013 -# Hotellook, 2014 -# Matjaž Mozetič , 2015 -# Paolo Valier, 2016 -# Pedro Castro Silva , 2015 -# Pedro M. Baeza , 2015 -# Rudolf Schnapka , 2015-2016 -# UAB "Draugiški sprendimai" , 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-25 14:55+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/vi/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -31,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Hủy bỏ" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Được tạo bởi" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Được tạo vào" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "Tên hiển thị" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "Sổ nhật ký" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "Sửa lần cuối vào" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Last Updated by" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Cập nhật lần cuối vào" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -150,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "hoặc" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/vi_VN.po b/account_netting/i18n/vi_VN.po index 2588f2d7f..db678f16a 100644 --- a/account_netting/i18n/vi_VN.po +++ b/account_netting/i18n/vi_VN.po @@ -3,14 +3,15 @@ # * account_netting # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 23:20+0000\n" -"PO-Revision-Date: 2016-12-27 08:24+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/vi_VN/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "Hủy" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "Tạo bởi" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "Tạo vào" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "Cập nhật lần cuối bởi" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "Cập nhật lần cuối vào" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -137,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" msgstr "" diff --git a/account_netting/i18n/zh_CN.po b/account_netting/i18n/zh_CN.po index c10e7ef8b..bc9740731 100644 --- a/account_netting/i18n/zh_CN.po +++ b/account_netting/i18n/zh_CN.po @@ -3,26 +3,15 @@ # * account_netting # # Translators: -# Ahmet Altinisik , 2016 -# Antonio Trueba, 2016 -# Carles Antoli , 2015-2016 -# Christophe CHAUVET , 2015 -# FIRST AUTHOR , 2012 -# Matjaž Mozetič , 2015 -# Paolo Valier, 2016 -# Pedro Castro Silva , 2015 -# Pedro M. Baeza , 2015 -# Rudolf Schnapka , 2015-2016 -# SaFi J. , 2015 -# Thomas A. Jaeger, 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-25 14:56+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/zh_CN/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -30,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "取消" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "创建者" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "创建时间" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" -msgstr "显示名称" +msgstr "Display Name" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "ID" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "凭证簿" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" -msgstr "最后修改时间" +msgstr "Last Modified on" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "最后更新者" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "上次更新日期" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -149,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "或" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/i18n/zh_TW.po b/account_netting/i18n/zh_TW.po index b2d117016..8e9285fb9 100644 --- a/account_netting/i18n/zh_TW.po +++ b/account_netting/i18n/zh_TW.po @@ -3,24 +3,15 @@ # * account_netting # # Translators: -# Carles Antoli , 2015 -# danimaribeiro , 2016 -# FIRST AUTHOR , 2010,2012-2013 -# Guewen Baconnier , 2015 -# Hotellook, 2014 -# Jarmo Kortetjärvi , 2016 -# Leonardo J. Caballero G. , 2016 -# Matjaž Mozetič , 2015-2016 -# Rudolf Schnapka , 2016 -# Sofce Dimitrijeva , 2013 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: account-financial-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-13 03:39+0000\n" -"PO-Revision-Date: 2016-11-22 16:23+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/zh_TW/)\n" +"POT-Creation-Date: 2017-12-03 03:46+0000\n" +"PO-Revision-Date: 2017-12-03 03:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -28,108 +19,117 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:72 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:30 +#: code:addons/account_netting/wizards/account_move_make_netting.py:41 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:33 +#: code:addons/account_netting/wizards/account_move_make_netting.py:44 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:39 +#: code:addons/account_netting/wizards/account_move_make_netting.py:56 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" msgstr "" #. module: account_netting -#: field:account.move.make.netting,balance_type:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance type" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Cancel" msgstr "刪除" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" msgstr "" #. module: account_netting -#: field:account.move.make.netting,create_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid msgid "Created by" msgstr "建立者" #. module: account_netting -#: field:account.move.make.netting,create_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date msgid "Created on" msgstr "建立於" #. module: account_netting -#: field:account.move.make.netting,display_name:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name msgid "Display Name" msgstr "顯示名稱" #. module: account_netting -#: field:account.move.make.netting,id:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id msgid "ID" msgstr "編號" #. module: account_netting -#: field:account.move.make.netting,journal:0 -msgid "Journal" -msgstr "帳簿" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal id" +msgstr "" #. module: account_netting -#: field:account.move.make.netting,__last_update:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update msgid "Last Modified on" msgstr "最後修改:" #. module: account_netting -#: field:account.move.make.netting,write_uid:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid msgid "Last Updated by" msgstr "最後更新:" #. module: account_netting -#: field:account.move.make.netting,write_date:0 +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date msgid "Last Updated on" msgstr "最後更新於" #. module: account_netting -#: field:account.move.make.netting,move_lines:0 -msgid "Move lines" +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move line ids" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form +#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#, python-format +msgid "" +"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " "receivable/payable accounts selected, and reconcile each other, letting this" @@ -147,12 +147,12 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizard/account_move_make_netting.py:24 +#: code:addons/account_netting/wizards/account_move_make_netting.py:35 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" #. module: account_netting -#: view:account.move.make.netting:account_netting.view_account_move_make_netting_form -msgid "or" -msgstr "或" +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" diff --git a/account_netting/tests/__init__.py b/account_netting/tests/__init__.py index 89ab9a71c..544877d64 100644 --- a/account_netting/tests/__init__.py +++ b/account_netting/tests/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# (c) 2015 Pedro M. Baeza +# Copyright 2015 Pedro M. Baeza # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html from . import test_account_netting diff --git a/account_netting/tests/test_account_netting.py b/account_netting/tests/test_account_netting.py index c5a6a5ce4..97800a638 100644 --- a/account_netting/tests/test_account_netting.py +++ b/account_netting/tests/test_account_netting.py @@ -1,77 +1,124 @@ # -*- coding: utf-8 -*- -# (c) 2015 Pedro M. Baeza +# Copyright 2015 Pedro M. Baeza +# Copyright 2017 Tecnativa - Vicent Cubells # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html import openerp.tests.common as common -from openerp import workflow -class TestAccountNetting(common.TransactionCase): - - def setUp(self): - super(TestAccountNetting, self).setUp() - self.partner = self.env['res.partner'].create( - {'supplier': True, - 'customer': True, - 'name': "Supplier/Customer" - }) - self.invoice_model = self.env['account.invoice'] - self.account_receivable = self.env.ref('account.a_recv') - self.customer_invoice = self.invoice_model.create( - {'journal_id': self.env.ref('account.sales_journal').id, - 'type': 'out_invoice', - 'partner_id': self.partner.id, - 'account_id': self.account_receivable.id, - 'invoice_line': [(0, 0, {'name': 'Test', - 'price_unit': 100.0})], - }) - workflow.trg_validate( - self.uid, 'account.invoice', self.customer_invoice.id, - 'invoice_open', self.cr) - customer_move = self.customer_invoice.move_id - self.move_line_1 = customer_move.line_id.filtered( - lambda x: x.account_id == self.account_receivable) - self.account_payable = self.env.ref('account.a_pay') - self.supplier_invoice = self.invoice_model.create( - {'journal_id': self.env.ref('account.expenses_journal').id, - 'type': 'in_invoice', - 'partner_id': self.partner.id, - 'account_id': self.account_payable.id, - 'invoice_line': [(0, 0, {'name': 'Test', - 'price_unit': 1200.0})], - }) - workflow.trg_validate( - self.uid, 'account.invoice', self.supplier_invoice.id, - 'invoice_open', self.cr) - supplier_move = self.supplier_invoice.move_id - self.move_line_2 = supplier_move.line_id.filtered( - lambda x: x.account_id == self.account_payable) +class TestAccountNetting(common.SavepointCase): + @classmethod + def setUpClass(cls): + super(TestAccountNetting, cls).setUpClass() + cls.partner = cls.env['res.partner'].create({ + 'supplier': True, + 'customer': True, + 'name': "Supplier/Customer", + }) + res_users_account_manager = cls.env.ref( + 'account.group_account_manager') + partner_manager = cls.env.ref('base.group_partner_manager') + cls.env.user.write({ + 'groups_id': [ + (6, 0, [res_users_account_manager.id, partner_manager.id]) + ], + }) + # only adviser can create an account + cls.account_receivable = cls.env['account.account'].create({ + 'code': 'cust_acc', + 'name': 'customer account', + 'user_type_id': cls.env.ref( + 'account.data_account_type_receivable').id, + 'reconcile': True, + }) + cls.account_payable = cls.env['account.account'].create({ + 'code': 'supp_acc', + 'name': 'supplier account', + 'user_type_id': cls.env.ref( + 'account.data_account_type_payable').id, + 'reconcile': True, + }) + cls.account_revenue = cls.env['account.account'].search([ + ('user_type_id', '=', cls.env.ref( + 'account.data_account_type_revenue').id) + ], limit=1) + cls.account_expense = cls.env['account.account'].search([ + ('user_type_id', '=', cls.env.ref( + 'account.data_account_type_expenses').id) + ], limit=1) + cls.journal = cls.env['account.journal'].create({ + 'name': 'Test sale journal', + 'type': 'sale', + 'code': 'TEST', + }) + cls.expenses_journal = cls.env['account.journal'].create({ + 'name': 'Test expense journal', + 'type': 'purchase', + 'code': 'EXP', + }) + cls.miscellaneous_journal = cls.env['account.journal'].create({ + 'name': 'Miscellaneus journal', + 'type': 'general', + 'code': 'OTHER', + }) + cls.customer_invoice = cls.env['account.invoice'].create({ + 'journal_id': cls.journal.id, + 'type': 'out_invoice', + 'partner_id': cls.partner.id, + 'account_id': cls.account_receivable.id, + 'invoice_line_ids': [(0, 0, { + 'name': 'Test', + 'price_unit': 100.0, + 'account_id': cls.account_revenue.id, + })], + }) + cls.customer_invoice.action_invoice_open() + customer_move = cls.customer_invoice.move_id + cls.move_line_1 = customer_move.line_ids.filtered( + lambda x: x.account_id == cls.account_receivable) + cls.supplier_invoice = cls.env['account.invoice'].create({ + 'journal_id': cls.expenses_journal.id, + 'type': 'in_invoice', + 'partner_id': cls.partner.id, + 'account_id': cls.account_payable.id, + 'invoice_line_ids': [(0, 0, { + 'name': 'Test', + 'price_unit': 1200.0, + 'account_id': cls.account_expense.id, + })], + }) + cls.supplier_invoice.action_invoice_open() + supplier_move = cls.supplier_invoice.move_id + cls.move_line_2 = supplier_move.line_ids.filtered( + lambda x: x.account_id == cls.account_payable) def test_compensation(self): obj = self.env['account.move.make.netting'].with_context( active_ids=[self.move_line_1.id, self.move_line_2.id]) wizard = obj.create( - {'move_lines': [(6, 0, [self.move_line_1.id, - self.move_line_2.id])], - 'journal': self.env.ref('account.miscellaneous_journal').id}) + {'move_line_ids': + [(6, 0, [self.move_line_1.id, self.move_line_2.id])], + 'journal_id': self.miscellaneous_journal.id}) res = wizard.button_compensate() move = self.env['account.move'].browse(res['res_id']) self.assertEqual( - len(move.line_id), 2, + len(move.line_ids), 2, 'AR/AP netting move has an incorrect line number') - move_line_receivable = move.line_id.filtered( + move_line_receivable = move.line_ids.filtered( lambda x: x.account_id == self.account_receivable) self.assertEqual( move_line_receivable.credit, 100, 'Incorrect credit amount for receivable move line') self.assertTrue( - move_line_receivable.reconcile_id, + move_line_receivable.reconciled and + move_line_receivable.full_reconcile_id, 'Receivable move line should be totally reconciled') - move_line_payable = move.line_id.filtered( + move_line_payable = move.line_ids.filtered( lambda x: x.account_id == self.account_payable) self.assertEqual( move_line_payable.debit, 100, 'Incorrect debit amount for payable move line') self.assertTrue( - move_line_payable.reconcile_partial_id, + move_line_payable.reconciled and not + move_line_payable.full_reconcile_id, 'Receivable move line should be partially reconciled') diff --git a/account_netting/wizard/account_move_make_netting_view.xml b/account_netting/wizard/account_move_make_netting_view.xml deleted file mode 100644 index 7a90badb1..000000000 --- a/account_netting/wizard/account_move_make_netting_view.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - Compensate entries - account.move.make.netting - -
-
-
- - -
-
diff --git a/account_netting/wizard/__init__.py b/account_netting/wizards/__init__.py similarity index 80% rename from account_netting/wizard/__init__.py rename to account_netting/wizards/__init__.py index 45a789c27..ca14d9be6 100644 --- a/account_netting/wizard/__init__.py +++ b/account_netting/wizards/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# (c) 2015 Pedro M. Baeza +# Copyright 2015 Pedro M. Baeza # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html from . import account_move_make_netting diff --git a/account_netting/wizard/account_move_make_netting.py b/account_netting/wizards/account_move_make_netting.py similarity index 65% rename from account_netting/wizard/account_move_make_netting.py rename to account_netting/wizards/account_move_make_netting.py index fbdc7dc80..8f9dae99f 100644 --- a/account_netting/wizard/account_move_make_netting.py +++ b/account_netting/wizards/account_move_make_netting.py @@ -1,21 +1,32 @@ # -*- coding: utf-8 -*- -# (c) 2015 Pedro M. Baeza +# Copyright 2015 Pedro M. Baeza +# Copyright 2017 Tecnativa - Vicent Cubells # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html -from openerp import models, fields, api, exceptions, _ +from odoo import _, api, exceptions, fields, models class AccountMoveMakeNetting(models.TransientModel): _name = "account.move.make.netting" - journal = fields.Many2one( - comodel_name="account.journal", required=True, - domain="[('type', '=', 'general')]") - move_lines = fields.Many2many(comodel_name="account.move.line") - balance = fields.Float(readonly=True) + journal_id = fields.Many2one( + comodel_name="account.journal", + required=True, + domain="[('type', '=', 'general')]", + ) + move_line_ids = fields.Many2many( + comodel_name="account.move.line", + ) + balance = fields.Float( + readonly=True, + ) balance_type = fields.Selection( - selection=[('pay', 'To pay'), ('receive', 'To receive')], - readonly=True) + selection=[ + ('pay', 'To pay'), + ('receive', 'To receive'), + ], + readonly=True, + ) @api.model def default_get(self, fields): @@ -25,12 +36,18 @@ class AccountMoveMakeNetting(models.TransientModel): move_lines = self.env['account.move.line'].browse( self.env.context['active_ids']) if (any(x not in ('payable', 'receivable') for - x in move_lines.mapped('account_id.type'))): + x in move_lines.mapped('account_id.user_type_id.type'))): raise exceptions.ValidationError( _("All entries must have a receivable or payable account")) - if any(move_lines.mapped('reconcile_id')): + if any(move_lines.mapped('reconciled')): raise exceptions.ValidationError( _("All entries mustn't been reconciled")) + if len(move_lines.mapped('account_id')) == 1: + raise exceptions.ValidationError( + _("The 'Compensate' function is intended to balance " + "operations on different accounts for the same partner.\n" + "In this case all selected entries belong to the same " + "account.\n Please use the 'Reconcile' function.")) partner_id = None for move in move_lines: if (not move.partner_id or ( @@ -40,7 +57,7 @@ class AccountMoveMakeNetting(models.TransientModel): "be the same for all.")) partner_id = move.partner_id res = super(AccountMoveMakeNetting, self).default_get(fields) - res['move_lines'] = [(6, 0, move_lines.ids)] + res['move_line_ids'] = [(6, 0, move_lines.ids)] balance = (sum(move_lines.mapped('debit')) - sum(move_lines.mapped('credit'))) res['balance'] = abs(balance) @@ -51,15 +68,16 @@ class AccountMoveMakeNetting(models.TransientModel): def button_compensate(self): self.ensure_one() # Create account move - move = self.env['account.move'].create( - { - 'ref': _('AR/AP netting'), - 'journal_id': self.journal.id, - }) + move = self.env['account.move'].create({ + 'ref': _('AR/AP netting'), + 'journal_id': self.journal_id.id, + }) # Group amounts by account - account_groups = self.move_lines.read_group( - [('id', 'in', self.move_lines.ids)], - ['account_id', 'debit', 'credit'], ['account_id']) + account_groups = self.move_line_ids.read_group([ + ('id', 'in', self.move_line_ids.ids)], + ['account_id', 'debit', 'credit'], + ['account_id'], + ) debtors = [] creditors = [] total_debtors = 0 @@ -77,9 +95,9 @@ class AccountMoveMakeNetting(models.TransientModel): creditors.append(group_vals) total_creditors += abs(balance) # Create move lines - move_line_model = self.env['account.move.line'] netting_amount = min(total_creditors, total_debtors) field_map = {1: 'debit', 0: 'credit'} + move_lines = [] for i, group in enumerate([debtors, creditors]): available_amount = netting_amount for account_group in group: @@ -89,23 +107,23 @@ class AccountMoveMakeNetting(models.TransientModel): amount = account_group['balance'] move_line_vals = { field_map[i]: amount, - 'move_id': move.id, - 'partner_id': self.move_lines[0].partner_id.id, + 'partner_id': self.move_line_ids[0].partner_id.id, 'date': move.date, - 'period_id': move.period_id.id, 'journal_id': move.journal_id.id, 'name': move.ref, 'account_id': account_group['account_id'], } - move_line_model.create(move_line_vals) + move_lines.append((0, 0, move_line_vals)) available_amount -= account_group['balance'] if available_amount <= 0: break + if move_lines: + move.write({'line_ids': move_lines}) # Make reconciliation - for move_line in move.line_id: - to_reconcile = move_line + self.move_lines.filtered( + for move_line in move.line_ids: + to_reconcile = move_line + self.move_line_ids.filtered( lambda x: x.account_id == move_line.account_id) - to_reconcile.reconcile_partial() + to_reconcile.reconcile() # Open created move action = self.env.ref('account.action_move_journal_line').read()[0] action['view_mode'] = 'form' diff --git a/account_netting/wizards/account_move_make_netting_view.xml b/account_netting/wizards/account_move_make_netting_view.xml new file mode 100644 index 000000000..08ff7704d --- /dev/null +++ b/account_netting/wizards/account_move_make_netting_view.xml @@ -0,0 +1,35 @@ + + + + + + + Compensate entries + account.move.make.netting + +
+
+
+ + +
From 256b3d7c8af095a0fabcaa331ec618f9c430eac8 Mon Sep 17 00:00:00 2001 From: Fekete Mihai Date: Thu, 25 Jan 2018 12:38:05 +0200 Subject: [PATCH 04/22] Migrate account_netting to 11.0. --- account_netting/README.rst | 6 +++--- account_netting/__init__.py | 1 - account_netting/__manifest__.py | 3 +-- account_netting/tests/__init__.py | 1 - account_netting/tests/test_account_netting.py | 1 - account_netting/wizards/__init__.py | 1 - account_netting/wizards/account_move_make_netting.py | 1 - 7 files changed, 4 insertions(+), 10 deletions(-) diff --git a/account_netting/README.rst b/account_netting/README.rst index 50d73ee4d..0369eaedb 100644 --- a/account_netting/README.rst +++ b/account_netting/README.rst @@ -1,5 +1,5 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png + :target: https://www.gnu.org/licenses/agpl :alt: License: AGPL-3 ============= @@ -34,7 +34,7 @@ counterparts of the AR/AP operations. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/92/10.0 + :target: https://runbot.odoo-community.org/runbot/92/11.0 Known issues / Roadmap ====================== diff --git a/account_netting/__init__.py b/account_netting/__init__.py index ee6156516..0c4290c24 100644 --- a/account_netting/__init__.py +++ b/account_netting/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2015 Pedro M. Baeza # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html diff --git a/account_netting/__manifest__.py b/account_netting/__manifest__.py index e4840f923..7e478e293 100644 --- a/account_netting/__manifest__.py +++ b/account_netting/__manifest__.py @@ -1,11 +1,10 @@ -# -*- coding: utf-8 -*- # Copyright 2015 Pedro M. Baeza # Copyright 2017 Vicent Cubells - Tecnativa # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html { 'name': 'Account netting', - 'version': '10.0.1.0.0', + 'version': '11.0.1.0.0', 'summary': 'Compensate AR/AP accounts from the same partner', 'category': 'Accounting & Finance', 'author': 'Tecnativa, ' diff --git a/account_netting/tests/__init__.py b/account_netting/tests/__init__.py index 544877d64..21baa0f88 100644 --- a/account_netting/tests/__init__.py +++ b/account_netting/tests/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2015 Pedro M. Baeza # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html diff --git a/account_netting/tests/test_account_netting.py b/account_netting/tests/test_account_netting.py index 97800a638..5e477949c 100644 --- a/account_netting/tests/test_account_netting.py +++ b/account_netting/tests/test_account_netting.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2015 Pedro M. Baeza # Copyright 2017 Tecnativa - Vicent Cubells # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html diff --git a/account_netting/wizards/__init__.py b/account_netting/wizards/__init__.py index ca14d9be6..1a610d97f 100644 --- a/account_netting/wizards/__init__.py +++ b/account_netting/wizards/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2015 Pedro M. Baeza # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html diff --git a/account_netting/wizards/account_move_make_netting.py b/account_netting/wizards/account_move_make_netting.py index 8f9dae99f..d015a2d2a 100644 --- a/account_netting/wizards/account_move_make_netting.py +++ b/account_netting/wizards/account_move_make_netting.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2015 Pedro M. Baeza # Copyright 2017 Tecnativa - Vicent Cubells # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html From 473e2556d66d0e6aec97ed5250d982a1c3673619 Mon Sep 17 00:00:00 2001 From: Fekete Mihai Date: Thu, 25 Jan 2018 15:11:48 +0200 Subject: [PATCH 05/22] Increase tests. --- account_netting/tests/test_account_netting.py | 98 ++++++++++++++++++- .../wizards/account_move_make_netting.py | 16 ++- 2 files changed, 103 insertions(+), 11 deletions(-) diff --git a/account_netting/tests/test_account_netting.py b/account_netting/tests/test_account_netting.py index 5e477949c..9b19fa421 100644 --- a/account_netting/tests/test_account_netting.py +++ b/account_netting/tests/test_account_netting.py @@ -14,6 +14,11 @@ class TestAccountNetting(common.SavepointCase): 'customer': True, 'name': "Supplier/Customer", }) + cls.partner1 = cls.env['res.partner'].create({ + 'supplier': True, + 'customer': True, + 'name': "Supplier/Customer 1", + }) res_users_account_manager = cls.env.ref( 'account.group_account_manager') partner_manager = cls.env.ref('base.group_partner_manager') @@ -90,13 +95,102 @@ class TestAccountNetting(common.SavepointCase): supplier_move = cls.supplier_invoice.move_id cls.move_line_2 = supplier_move.line_ids.filtered( lambda x: x.account_id == cls.account_payable) + cls.move_line_3 = supplier_move.line_ids.filtered( + lambda x: x.account_id == cls.account_expense) + cls.supplier_invoice = cls.env['account.invoice'].create({ + 'journal_id': cls.expenses_journal.id, + 'type': 'in_invoice', + 'partner_id': cls.partner1.id, + 'account_id': cls.account_payable.id, + 'invoice_line_ids': [(0, 0, { + 'name': 'Test', + 'price_unit': 200.0, + 'account_id': cls.account_expense.id, + })], + }) + cls.supplier_invoice.action_invoice_open() + supplier_move = cls.supplier_invoice.move_id + cls.move_line_4 = supplier_move.line_ids.filtered( + lambda x: x.account_id == cls.account_payable) + cls.supplier_invoice = cls.env['account.invoice'].create({ + 'journal_id': cls.expenses_journal.id, + 'type': 'in_refund', + 'partner_id': cls.partner1.id, + 'account_id': cls.account_payable.id, + 'invoice_line_ids': [(0, 0, { + 'name': 'Test', + 'price_unit': 200.0, + 'account_id': cls.account_expense.id, + })], + }) + cls.supplier_invoice.action_invoice_open() + supplier_move = cls.supplier_invoice.move_id + cls.move_line_5 = supplier_move.line_ids.filtered( + lambda x: x.account_id == cls.account_payable) + cls.supplier_invoice = cls.env['account.invoice'].create({ + 'journal_id': cls.expenses_journal.id, + 'type': 'in_refund', + 'partner_id': cls.partner1.id, + 'account_id': cls.account_payable.id, + 'invoice_line_ids': [(0, 0, { + 'name': 'Test', + 'price_unit': 200.0, + 'account_id': cls.account_expense.id, + })], + }) + cls.supplier_invoice.action_invoice_open() + supplier_move = cls.supplier_invoice.move_id + cls.move_line_6 = supplier_move.line_ids.filtered( + lambda x: x.account_id == cls.account_payable) def test_compensation(self): + # Test exception line 33 from account_move_make_netting + obj = self.env['account.move.make.netting'].with_context( + active_ids=[self.move_line_1.id]) + with self.assertRaises(Exception): + wizard = obj.create( + {'move_line_ids': [(6, 0, [self.move_line_1.id])], + 'journal_id': self.miscellaneous_journal.id}) + # Test exception line 39 from account_move_make_netting + obj = self.env['account.move.make.netting'].with_context( + active_ids=[self.move_line_1.id, self.move_line_3.id]) + with self.assertRaises(Exception): + wizard = obj.create( + {'move_line_ids': [(6, 0, [self.move_line_1.id, + self.move_line_3.id])], + 'journal_id': self.miscellaneous_journal.id}) + # Test exception line 45 from account_move_make_netting + obj = self.env['account.move.make.netting'].with_context( + active_ids=[self.move_line_4.id, self.move_line_5.id]) + with self.assertRaises(Exception): + wizard = obj.create( + {'move_line_ids': [(6, 0, [self.move_line_4.id, + self.move_line_5.id])], + 'journal_id': self.miscellaneous_journal.id}) + # Test exception line 42 from account_move_make_netting + moves = self.env['account.move.line'].browse([self.move_line_4.id, + self.move_line_5.id]) + moves.reconcile() + obj = self.env['account.move.make.netting'].with_context( + active_ids=[self.move_line_4.id, self.move_line_5.id]) + with self.assertRaises(Exception): + wizard = obj.create( + {'move_line_ids': [(6, 0, [self.move_line_4.id, + self.move_line_5.id])], + 'journal_id': self.miscellaneous_journal.id}) + # Test exception line 52 from account_move_make_netting + obj = self.env['account.move.make.netting'].with_context( + active_ids=[self.move_line_1.id, self.move_line_6.id]) + with self.assertRaises(Exception): + wizard = obj.create( + {'move_line_ids': [(6, 0, [self.move_line_1.id, + self.move_line_6.id])], + 'journal_id': self.miscellaneous_journal.id}) obj = self.env['account.move.make.netting'].with_context( active_ids=[self.move_line_1.id, self.move_line_2.id]) wizard = obj.create( - {'move_line_ids': - [(6, 0, [self.move_line_1.id, self.move_line_2.id])], + {'move_line_ids': [(6, 0, [self.move_line_1.id, + self.move_line_2.id])], 'journal_id': self.miscellaneous_journal.id}) res = wizard.button_compensate() move = self.env['account.move'].browse(res['res_id']) diff --git a/account_netting/wizards/account_move_make_netting.py b/account_netting/wizards/account_move_make_netting.py index d015a2d2a..617e84b1f 100644 --- a/account_netting/wizards/account_move_make_netting.py +++ b/account_netting/wizards/account_move_make_netting.py @@ -48,13 +48,11 @@ class AccountMoveMakeNetting(models.TransientModel): "In this case all selected entries belong to the same " "account.\n Please use the 'Reconcile' function.")) partner_id = None - for move in move_lines: - if (not move.partner_id or ( - move.partner_id != partner_id and partner_id is not None)): - raise exceptions.ValidationError( - _("All entries should have a partner and the partner must " - "be the same for all.")) - partner_id = move.partner_id + if len(move_lines.mapped('partner_id')) != 1: + raise exceptions.ValidationError( + _("All entries should have a partner and the partner must " + "be the same for all.")) + partner_id = move_lines[0].partner_id res = super(AccountMoveMakeNetting, self).default_get(fields) res['move_line_ids'] = [(6, 0, move_lines.ids)] balance = (sum(move_lines.mapped('debit')) - @@ -72,8 +70,8 @@ class AccountMoveMakeNetting(models.TransientModel): 'journal_id': self.journal_id.id, }) # Group amounts by account - account_groups = self.move_line_ids.read_group([ - ('id', 'in', self.move_line_ids.ids)], + account_groups = self.move_line_ids.read_group( + [('id', 'in', self.move_line_ids.ids)], ['account_id', 'debit', 'credit'], ['account_id'], ) From 385d60dca85f26e5f4ce077455baed55965b180e Mon Sep 17 00:00:00 2001 From: Fekete Mihai Date: Thu, 25 Jan 2018 15:18:07 +0200 Subject: [PATCH 06/22] Remove variable partner_id since i changed the validation of partners number. --- account_netting/wizards/account_move_make_netting.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/account_netting/wizards/account_move_make_netting.py b/account_netting/wizards/account_move_make_netting.py index 617e84b1f..fe23e1705 100644 --- a/account_netting/wizards/account_move_make_netting.py +++ b/account_netting/wizards/account_move_make_netting.py @@ -47,12 +47,10 @@ class AccountMoveMakeNetting(models.TransientModel): "operations on different accounts for the same partner.\n" "In this case all selected entries belong to the same " "account.\n Please use the 'Reconcile' function.")) - partner_id = None if len(move_lines.mapped('partner_id')) != 1: raise exceptions.ValidationError( _("All entries should have a partner and the partner must " "be the same for all.")) - partner_id = move_lines[0].partner_id res = super(AccountMoveMakeNetting, self).default_get(fields) res['move_line_ids'] = [(6, 0, move_lines.ids)] balance = (sum(move_lines.mapped('debit')) - From fcd13d1c7f217556e6869cf7e0438238673b4bbc Mon Sep 17 00:00:00 2001 From: oca-travis Date: Tue, 28 Aug 2018 22:05:48 +0000 Subject: [PATCH 07/22] Update account_netting.pot --- account_netting/i18n/account_netting.pot | 149 +++++++++++++++++++++++ account_netting/i18n/am.po | 29 ++--- account_netting/i18n/ar.po | 32 ++--- account_netting/i18n/bg.po | 29 ++--- account_netting/i18n/bs.po | 32 ++--- account_netting/i18n/ca.po | 29 ++--- account_netting/i18n/ca_ES.po | 32 ++--- account_netting/i18n/cs.po | 29 ++--- account_netting/i18n/da.po | 29 ++--- account_netting/i18n/de.po | 29 ++--- account_netting/i18n/el_GR.po | 32 ++--- account_netting/i18n/en_AU.po | 32 ++--- account_netting/i18n/en_GB.po | 32 ++--- account_netting/i18n/es.po | 35 +++--- account_netting/i18n/es_AR.po | 32 ++--- account_netting/i18n/es_CL.po | 32 ++--- account_netting/i18n/es_CO.po | 32 ++--- account_netting/i18n/es_CR.po | 32 ++--- account_netting/i18n/es_DO.po | 32 ++--- account_netting/i18n/es_EC.po | 32 ++--- account_netting/i18n/es_ES.po | 32 ++--- account_netting/i18n/es_MX.po | 32 ++--- account_netting/i18n/es_PE.po | 32 ++--- account_netting/i18n/es_PY.po | 32 ++--- account_netting/i18n/es_VE.po | 32 ++--- account_netting/i18n/et.po | 29 ++--- account_netting/i18n/eu.po | 29 ++--- account_netting/i18n/fa.po | 29 ++--- account_netting/i18n/fi.po | 29 ++--- account_netting/i18n/fr.po | 29 ++--- account_netting/i18n/fr_CA.po | 32 ++--- account_netting/i18n/fr_CH.po | 32 ++--- account_netting/i18n/fr_FR.po | 32 ++--- account_netting/i18n/gl.po | 29 ++--- account_netting/i18n/gl_ES.po | 32 ++--- account_netting/i18n/gu.po | 29 ++--- account_netting/i18n/he.po | 29 ++--- account_netting/i18n/hi.po | 29 ++--- account_netting/i18n/hr.po | 32 ++--- account_netting/i18n/hr_HR.po | 35 +++--- account_netting/i18n/hu.po | 29 ++--- account_netting/i18n/id.po | 29 ++--- account_netting/i18n/it.po | 29 ++--- account_netting/i18n/ja.po | 29 ++--- account_netting/i18n/ko.po | 29 ++--- account_netting/i18n/lo.po | 29 ++--- account_netting/i18n/lt.po | 32 ++--- account_netting/i18n/lt_LT.po | 35 +++--- account_netting/i18n/lv.po | 32 ++--- account_netting/i18n/mk.po | 29 ++--- account_netting/i18n/mn.po | 29 ++--- account_netting/i18n/nb.po | 32 ++--- account_netting/i18n/nb_NO.po | 32 ++--- account_netting/i18n/nl.po | 29 ++--- account_netting/i18n/nl_BE.po | 32 ++--- account_netting/i18n/pl.po | 33 ++--- account_netting/i18n/pt.po | 35 +++--- account_netting/i18n/pt_BR.po | 32 ++--- account_netting/i18n/pt_PT.po | 32 ++--- account_netting/i18n/ro.po | 32 ++--- account_netting/i18n/ru.po | 33 ++--- account_netting/i18n/sk.po | 29 ++--- account_netting/i18n/sl.po | 32 ++--- account_netting/i18n/sr.po | 32 ++--- account_netting/i18n/sr@latin.po | 35 +++--- account_netting/i18n/sv.po | 29 ++--- account_netting/i18n/th.po | 29 ++--- account_netting/i18n/tr.po | 29 ++--- account_netting/i18n/tr_TR.po | 32 ++--- account_netting/i18n/uk.po | 32 ++--- account_netting/i18n/vi.po | 29 ++--- account_netting/i18n/vi_VN.po | 32 ++--- account_netting/i18n/zh_CN.po | 32 ++--- account_netting/i18n/zh_TW.po | 32 ++--- 74 files changed, 1346 insertions(+), 1069 deletions(-) create mode 100644 account_netting/i18n/account_netting.pot diff --git a/account_netting/i18n/account_netting.pot b/account_netting/i18n/account_netting.pot new file mode 100644 index 000000000..809217df9 --- /dev/null +++ b/account_netting/i18n/account_netting.pot @@ -0,0 +1,149 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_netting +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: account_netting +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 +#, python-format +msgid "AR/AP netting" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 +#, python-format +msgid "All entries must have a receivable or payable account" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 +#, python-format +msgid "All entries mustn't been reconciled" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 +#, python-format +msgid "All entries should have a partner and the partner must be the same for all." +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance +msgid "Balance" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type +msgid "Balance Type" +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Cancel" +msgstr "" + +#. module: account_netting +#: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate" +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Compensate entries" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid +msgid "Created by" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_date +msgid "Created on" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_display_name +msgid "Display Name" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_id +msgid "ID" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id +msgid "Journal" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_netting +#: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids +msgid "Move Line" +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "Select the journal where storing the journal entries" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 +#, python-format +msgid "The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"In this case all selected entries belong to the same account.\n" +" Please use the 'Reconcile' function." +msgstr "" + +#. module: account_netting +#: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form +msgid "This operation will generate account entries that are counterpart of the receivable/payable accounts selected, and reconcile each other, letting this balance in the partner:" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To pay" +msgstr "" + +#. module: account_netting +#: selection:account.move.make.netting,balance_type:0 +msgid "To receive" +msgstr "" + +#. module: account_netting +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 +#, python-format +msgid "You should compensate at least 2 journal entries." +msgstr "" + +#. module: account_netting +#: model:ir.model,name:account_netting.model_account_move_make_netting +msgid "account.move.make.netting" +msgstr "" + diff --git a/account_netting/i18n/am.po b/account_netting/i18n/am.po index edfb0c348..c6147bca8 100644 --- a/account_netting/i18n/am.po +++ b/account_netting/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: am\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "Última actualización en" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/ar.po b/account_netting/i18n/ar.po index ae214dcb0..50efaf121 100644 --- a/account_netting/i18n/ar.po +++ b/account_netting/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,33 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "المعرف" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "آخر تحديث في" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/bg.po b/account_netting/i18n/bg.po index 54352d9d6..bfb68a303 100644 --- a/account_netting/i18n/bg.po +++ b/account_netting/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "Последно обновено на" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/bs.po b/account_netting/i18n/bs.po index 2412dfab4..c236a495e 100644 --- a/account_netting/i18n/bs.po +++ b/account_netting/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,33 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: bs\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Zadnje ažurirano" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/ca.po b/account_netting/i18n/ca.po index 9a2a0678d..719c0e3db 100644 --- a/account_netting/i18n/ca.po +++ b/account_netting/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "Darrera Actualització el" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/ca_ES.po b/account_netting/i18n/ca_ES.po index 6ae4f2eee..e7a7ef795 100644 --- a/account_netting/i18n/ca_ES.po +++ b/account_netting/i18n/ca_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/oca/teams/23907/ca_ES/)\n" +"Language-Team: Catalan (Spain) (https://www.transifex.com/oca/teams/23907/" +"ca_ES/)\n" +"Language: ca_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ca_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/cs.po b/account_netting/i18n/cs.po index e3467515d..02289feba 100644 --- a/account_netting/i18n/cs.po +++ b/account_netting/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "Naposled upraveno" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/da.po b/account_netting/i18n/da.po index 96d342afb..789b26391 100644 --- a/account_netting/i18n/da.po +++ b/account_netting/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "Id" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "Sidst opdateret den" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/de.po b/account_netting/i18n/de.po index 35694926a..37bfafd5c 100644 --- a/account_netting/i18n/de.po +++ b/account_netting/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "Zuletzt geändert am" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/el_GR.po b/account_netting/i18n/el_GR.po index 34de177bd..f6e88f494 100644 --- a/account_netting/i18n/el_GR.po +++ b/account_netting/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "Κωδικός" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Τελευταία ενημέρωση στις" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/en_AU.po b/account_netting/i18n/en_AU.po index 2ef03ed48..c0e23c2e6 100644 --- a/account_netting/i18n/en_AU.po +++ b/account_netting/i18n/en_AU.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: English (Australia) (https://www.transifex.com/oca/teams/23907/en_AU/)\n" +"Language-Team: English (Australia) (https://www.transifex.com/oca/" +"teams/23907/en_AU/)\n" +"Language: en_AU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en_AU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/en_GB.po b/account_netting/i18n/en_GB.po index 8a26116d1..03ac68ace 100644 --- a/account_netting/i18n/en_GB.po +++ b/account_netting/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Last Updated on" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/es.po b/account_netting/i18n/es.po index 08eac9730..f1eb1649b 100644 --- a/account_netting/i18n/es.po +++ b/account_netting/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "Compensación a cobrar/a pagar" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "Todos los apuntes deben tener una cuenta a pagar o a cobrar" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "Ningún apunte debe estar conciliado" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -52,7 +52,8 @@ msgstr "Saldo" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +#, fuzzy +msgid "Balance Type" msgstr "Tipo de saldo" #. module: account_netting @@ -93,7 +94,8 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +#, fuzzy +msgid "Journal" msgstr "Diario" #. module: account_netting @@ -113,7 +115,8 @@ msgstr "Última actualización en" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +#, fuzzy +msgid "Move Line" msgstr "Apuntes" #. module: account_netting @@ -122,14 +125,16 @@ msgid "Select the journal where storing the journal entries" msgstr "Seleccione el diario en el que se guardarán los apuntes" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" -"la función 'Compensar' pretende compensar operaciones sobre diferentes cuentas del mismo cliente.\n" +"la función 'Compensar' pretende compensar operaciones sobre diferentes " +"cuentas del mismo cliente.\n" "En este caso todos los apuntes seleccionados pertenencen a la misma cuenta.\n" "Use entonces la función 'Reconciliar'." @@ -137,8 +142,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" "Esta operación generará apuntes que serán la contrapartida de las cuentas a " "cobrar/a pagar seleccionadas, y las reconciliará entre ellas, dejando este " @@ -155,7 +160,7 @@ msgid "To receive" msgstr "A cobrar" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "Debe compensar al menos 2 apuntes." diff --git a/account_netting/i18n/es_AR.po b/account_netting/i18n/es_AR.po index 3ca5393af..76ab7219b 100644 --- a/account_netting/i18n/es_AR.po +++ b/account_netting/i18n/es_AR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" +"teams/23907/es_AR/)\n" +"Language: es_AR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Última actualización el" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/es_CL.po b/account_netting/i18n/es_CL.po index 5c046c224..fb5fb3563 100644 --- a/account_netting/i18n/es_CL.po +++ b/account_netting/i18n/es_CL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID (identificación)" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Última actualización en" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/es_CO.po b/account_netting/i18n/es_CO.po index 174baf2c9..3e346e9eb 100644 --- a/account_netting/i18n/es_CO.po +++ b/account_netting/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Actualizado" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/es_CR.po b/account_netting/i18n/es_CR.po index 745a52119..229d22f5f 100644 --- a/account_netting/i18n/es_CR.po +++ b/account_netting/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Ultima actualización en" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/es_DO.po b/account_netting/i18n/es_DO.po index 71f2d2c53..77fca0c61 100644 --- a/account_netting/i18n/es_DO.po +++ b/account_netting/i18n/es_DO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_DO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Última actualización en" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/es_EC.po b/account_netting/i18n/es_EC.po index 285e909f9..a66fca74d 100644 --- a/account_netting/i18n/es_EC.po +++ b/account_netting/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID (identificación)" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Última actualización en" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/es_ES.po b/account_netting/i18n/es_ES.po index 6bb98c0cc..67f90a307 100644 --- a/account_netting/i18n/es_ES.po +++ b/account_netting/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Última actualización en" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/es_MX.po b/account_netting/i18n/es_MX.po index 934dbbb50..e232c3da4 100644 --- a/account_netting/i18n/es_MX.po +++ b/account_netting/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Ultima actualización realizada" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/es_PE.po b/account_netting/i18n/es_PE.po index b9136beb2..c6129bb6d 100644 --- a/account_netting/i18n/es_PE.po +++ b/account_netting/i18n/es_PE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Ultima Actualización" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/es_PY.po b/account_netting/i18n/es_PY.po index a44c5ef2e..db91b017d 100644 --- a/account_netting/i18n/es_PY.po +++ b/account_netting/i18n/es_PY.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" +"es_PY/)\n" +"Language: es_PY\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PY\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Ultima actualización en" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/es_VE.po b/account_netting/i18n/es_VE.po index 5a55e2210..b2167e71b 100644 --- a/account_netting/i18n/es_VE.po +++ b/account_netting/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_VE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Ultima actualizacion en" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/et.po b/account_netting/i18n/et.po index f8613b559..84ec3a4f9 100644 --- a/account_netting/i18n/et.po +++ b/account_netting/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "Viimati uuendatud" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/eu.po b/account_netting/i18n/eu.po index dff936621..c780b7117 100644 --- a/account_netting/i18n/eu.po +++ b/account_netting/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "Last Updated on" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/fa.po b/account_netting/i18n/fa.po index d1dd1734e..b73c5495d 100644 --- a/account_netting/i18n/fa.po +++ b/account_netting/i18n/fa.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "شناسه" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "آخرین به روز رسانی در" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/fi.po b/account_netting/i18n/fi.po index 63919b7c6..819498c26 100644 --- a/account_netting/i18n/fi.po +++ b/account_netting/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "Viimeksi päivitetty" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/fr.po b/account_netting/i18n/fr.po index 0219b47d2..32130857d 100644 --- a/account_netting/i18n/fr.po +++ b/account_netting/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "Dernière mise à jour le" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/fr_CA.po b/account_netting/i18n/fr_CA.po index 5a1c5995d..21fba1852 100644 --- a/account_netting/i18n/fr_CA.po +++ b/account_netting/i18n/fr_CA.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "Identifiant" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Dernière mise à jour le" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/fr_CH.po b/account_netting/i18n/fr_CH.po index c459c2e5b..7eac959a7 100644 --- a/account_netting/i18n/fr_CH.po +++ b/account_netting/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Modifié le" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/fr_FR.po b/account_netting/i18n/fr_FR.po index 451403b65..2cb60f45d 100644 --- a/account_netting/i18n/fr_FR.po +++ b/account_netting/i18n/fr_FR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/fr_FR/)\n" +"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/" +"fr_FR/)\n" +"Language: fr_FR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_FR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/gl.po b/account_netting/i18n/gl.po index 95c7f0d5b..e1447ceca 100644 --- a/account_netting/i18n/gl.po +++ b/account_netting/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "Última actualización en" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/gl_ES.po b/account_netting/i18n/gl_ES.po index b952efeb7..afaaf1b0d 100644 --- a/account_netting/i18n/gl_ES.po +++ b/account_netting/i18n/gl_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" +"gl_ES/)\n" +"Language: gl_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/gu.po b/account_netting/i18n/gu.po index f7c775282..05c8f3132 100644 --- a/account_netting/i18n/gu.po +++ b/account_netting/i18n/gu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Gujarati (https://www.transifex.com/oca/teams/23907/gu/)\n" +"Language: gu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ઓળખ" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/he.po b/account_netting/i18n/he.po index 19d55ae87..a70a21473 100644 --- a/account_netting/i18n/he.po +++ b/account_netting/i18n/he.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "מזהה" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "עודכן לאחרונה על" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/hi.po b/account_netting/i18n/hi.po index bb32d107a..31be79251 100644 --- a/account_netting/i18n/hi.po +++ b/account_netting/i18n/hi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Hindi (https://www.transifex.com/oca/teams/23907/hi/)\n" +"Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/hr.po b/account_netting/i18n/hr.po index 41cdc6070..b572788ba 100644 --- a/account_netting/i18n/hr.po +++ b/account_netting/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,33 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Zadnje ažurirano dana" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/hr_HR.po b/account_netting/i18n/hr_HR.po index d3e57e5ce..0b01408cb 100644 --- a/account_netting/i18n/hr_HR.po +++ b/account_netting/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,35 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr_HR\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +52,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +93,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +113,7 @@ msgstr "Zadnje ažurirano" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +122,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +135,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +150,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/hu.po b/account_netting/i18n/hu.po index a57feb49a..a8670039a 100644 --- a/account_netting/i18n/hu.po +++ b/account_netting/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "Utoljára frissítve " #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/id.po b/account_netting/i18n/id.po index 633585e5a..f8f215028 100644 --- a/account_netting/i18n/id.po +++ b/account_netting/i18n/id.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "Diperbaharui pada" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/it.po b/account_netting/i18n/it.po index 04ca2e75a..8b176bb8d 100644 --- a/account_netting/i18n/it.po +++ b/account_netting/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "Last Updated on" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/ja.po b/account_netting/i18n/ja.po index 4d4f2b94e..e221c8d4f 100644 --- a/account_netting/i18n/ja.po +++ b/account_netting/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "最終更新日" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/ko.po b/account_netting/i18n/ko.po index 07a38e8c3..29911f2ce 100644 --- a/account_netting/i18n/ko.po +++ b/account_netting/i18n/ko.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "최근 갱신 날짜" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/lo.po b/account_netting/i18n/lo.po index 285c38733..bc1e902a4 100644 --- a/account_netting/i18n/lo.po +++ b/account_netting/i18n/lo.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Lao (https://www.transifex.com/oca/teams/23907/lo/)\n" +"Language: lo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lo\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/lt.po b/account_netting/i18n/lt.po index dcfd6a7fc..ae49400c9 100644 --- a/account_netting/i18n/lt.po +++ b/account_netting/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,33 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Paskutinį kartą atnaujinta" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/lt_LT.po b/account_netting/i18n/lt_LT.po index 06dd8d092..93fd3de78 100644 --- a/account_netting/i18n/lt_LT.po +++ b/account_netting/i18n/lt_LT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,35 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" +"teams/23907/lt_LT/)\n" +"Language: lt_LT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +52,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +93,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +113,7 @@ msgstr "Paskutinį kartą atnaujinta" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +122,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +135,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +150,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/lv.po b/account_netting/i18n/lv.po index 920d24bf1..29ca961f2 100644 --- a/account_netting/i18n/lv.po +++ b/account_netting/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,33 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Pēdējās izmaiņas" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/mk.po b/account_netting/i18n/mk.po index f5ac938dd..e78f25091 100644 --- a/account_netting/i18n/mk.po +++ b/account_netting/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "Последно ажурирање на" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/mn.po b/account_netting/i18n/mn.po index da4dfa210..d7c8a4351 100644 --- a/account_netting/i18n/mn.po +++ b/account_netting/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "Сүүлийн засвар хийсэн огноо" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/nb.po b/account_netting/i18n/nb.po index 8aba8e214..3378938ef 100644 --- a/account_netting/i18n/nb.po +++ b/account_netting/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Sist oppdatert" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/nb_NO.po b/account_netting/i18n/nb_NO.po index ea44b2cfc..78faab1de 100644 --- a/account_netting/i18n/nb_NO.po +++ b/account_netting/i18n/nb_NO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Sist oppdatert den" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/nl.po b/account_netting/i18n/nl.po index 17d2c6f2b..c7ae0cc68 100644 --- a/account_netting/i18n/nl.po +++ b/account_netting/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "Laatst bijgewerkt op" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/nl_BE.po b/account_netting/i18n/nl_BE.po index 6adcdc150..8500f96a8 100644 --- a/account_netting/i18n/nl_BE.po +++ b/account_netting/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Laatst bijgewerkt op" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/pl.po b/account_netting/i18n/pl.po index 044a0ac11..42fa578e4 100644 --- a/account_netting/i18n/pl.po +++ b/account_netting/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,34 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +52,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +93,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +113,7 @@ msgstr "Ostatnia zmiana" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +122,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +135,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +150,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/pt.po b/account_netting/i18n/pt.po index 9e71488b9..611c8679c 100644 --- a/account_netting/i18n/pt.po +++ b/account_netting/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # Pedro Castro Silva , 2017 # OCA Transbot , 2017 @@ -13,32 +13,32 @@ msgstr "" "PO-Revision-Date: 2017-12-08 23:22+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "Encontro de Contas" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "Os itens de diário devem ter uma conta a receber ou a pagar" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "Os itens de diário não podem estar reconciliados" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -52,7 +52,8 @@ msgstr "Saldo" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +#, fuzzy +msgid "Balance Type" msgstr "Tipo de Saldo" #. module: account_netting @@ -93,7 +94,8 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +#, fuzzy +msgid "Journal" msgstr "Id do Diário" #. module: account_netting @@ -113,7 +115,8 @@ msgstr "Última Actualização em" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +#, fuzzy +msgid "Move Line" msgstr "Ids. da linha de movimento" #. module: account_netting @@ -122,14 +125,16 @@ msgid "Select the journal where storing the journal entries" msgstr "Selecione o Diário onde guardar os lançamentos" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" -"A função 'Compensar' pretende balancear operações em contas diferentes para o mesmo parceiro.\n" +"A função 'Compensar' pretende balancear operações em contas diferentes para " +"o mesmo parceiro.\n" "Neste caso todos os lançamentos selecionados pertencem à mesma conta.\n" "Por favor, use a função 'Reconciliar'." @@ -137,8 +142,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" "Esta operação gerará itens de diário que são contrapartida das contas a " "receber/a pagar selecionadas, e realizará a reconciliação, deixando este " @@ -155,7 +160,7 @@ msgid "To receive" msgstr "A receber" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "Deve compensar pelos menos 2 itens de diário." diff --git a/account_netting/i18n/pt_BR.po b/account_netting/i18n/pt_BR.po index 8d2b67ea2..7de34921a 100644 --- a/account_netting/i18n/pt_BR.po +++ b/account_netting/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "Identificação" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Última atualização em" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/pt_PT.po b/account_netting/i18n/pt_PT.po index 502934582..1b14fbb82 100644 --- a/account_netting/i18n/pt_PT.po +++ b/account_netting/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Atualizado pela última vez em" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/ro.po b/account_netting/i18n/ro.po index 1e0a8569f..b0a6b84ed 100644 --- a/account_netting/i18n/ro.po +++ b/account_netting/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,33 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Ultima actualizare la" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/ru.po b/account_netting/i18n/ru.po index 3d4aa2cfc..fe10a45c7 100644 --- a/account_netting/i18n/ru.po +++ b/account_netting/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,34 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +52,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +93,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +113,7 @@ msgstr "Последний раз обновлено" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +122,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +135,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +150,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/sk.po b/account_netting/i18n/sk.po index 76e6c0906..1a028b7c3 100644 --- a/account_netting/i18n/sk.po +++ b/account_netting/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "Naposledy upravené" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/sl.po b/account_netting/i18n/sl.po index 85261f9d0..411dcdf7d 100644 --- a/account_netting/i18n/sl.po +++ b/account_netting/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,33 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Zadnjič posodobljeno" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/sr.po b/account_netting/i18n/sr.po index 88709c8d7..75719d698 100644 --- a/account_netting/i18n/sr.po +++ b/account_netting/i18n/sr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,33 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/sr@latin.po b/account_netting/i18n/sr@latin.po index 8fb580639..76188bc9d 100644 --- a/account_netting/i18n/sr@latin.po +++ b/account_netting/i18n/sr@latin.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,35 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr%40latin/)\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr" +"%40latin/)\n" +"Language: sr@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +52,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +93,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +113,7 @@ msgstr "Zadnja izmjena" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +122,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +135,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +150,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/sv.po b/account_netting/i18n/sv.po index 7373b4845..c9e6e0fdb 100644 --- a/account_netting/i18n/sv.po +++ b/account_netting/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "Senast uppdaterad" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/th.po b/account_netting/i18n/th.po index bce5ef400..ee91f83f6 100644 --- a/account_netting/i18n/th.po +++ b/account_netting/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "รหัส" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "อัพเดทครั้งสุดท้ายเมื่อ" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/tr.po b/account_netting/i18n/tr.po index 28e4f9643..14fca1bc9 100644 --- a/account_netting/i18n/tr.po +++ b/account_netting/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "Son güncelleme" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/tr_TR.po b/account_netting/i18n/tr_TR.po index 843b1d449..a3527dd64 100644 --- a/account_netting/i18n/tr_TR.po +++ b/account_netting/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "Kimlik" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "En son güncelleme tarihi" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/uk.po b/account_netting/i18n/uk.po index 8bdd06005..846b22bd1 100644 --- a/account_netting/i18n/uk.po +++ b/account_netting/i18n/uk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,33 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Останнє оновлення" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/vi.po b/account_netting/i18n/vi.po index 662f68d91..94adcc627 100644 --- a/account_netting/i18n/vi.po +++ b/account_netting/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,32 +12,32 @@ msgstr "" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +50,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +91,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +111,7 @@ msgstr "Cập nhật lần cuối vào" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +120,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +133,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +148,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/vi_VN.po b/account_netting/i18n/vi_VN.po index db678f16a..be9111636 100644 --- a/account_netting/i18n/vi_VN.po +++ b/account_netting/i18n/vi_VN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "Cập nhật lần cuối vào" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/zh_CN.po b/account_netting/i18n/zh_CN.po index bc9740731..52afbf415 100644 --- a/account_netting/i18n/zh_CN.po +++ b/account_netting/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "上次更新日期" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" diff --git a/account_netting/i18n/zh_TW.po b/account_netting/i18n/zh_TW.po index 8e9285fb9..196b8a86a 100644 --- a/account_netting/i18n/zh_TW.po +++ b/account_netting/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_netting -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,33 +11,34 @@ msgstr "" "POT-Creation-Date: 2017-12-03 03:46+0000\n" "PO-Revision-Date: 2017-12-03 03:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:72 +#: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:41 +#: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:44 +#: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:56 +#: code:addons/account_netting/wizards/account_move_make_netting.py:52 #, python-format msgid "" "All entries should have a partner and the partner must be the same for all." @@ -50,7 +51,7 @@ msgstr "" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -msgid "Balance type" +msgid "Balance Type" msgstr "" #. module: account_netting @@ -91,7 +92,7 @@ msgstr "編號" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -msgid "Journal id" +msgid "Journal" msgstr "" #. module: account_netting @@ -111,7 +112,7 @@ msgstr "最後更新於" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -msgid "Move line ids" +msgid "Move Line" msgstr "" #. module: account_netting @@ -120,10 +121,11 @@ msgid "Select the journal where storing the journal entries" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:47 +#: code:addons/account_netting/wizards/account_move_make_netting.py:46 #, python-format msgid "" -"The 'Compensate' function is intended to balance operations on different accounts for the same partner.\n" +"The 'Compensate' function is intended to balance operations on different " +"accounts for the same partner.\n" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" @@ -132,8 +134,8 @@ msgstr "" #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "" "This operation will generate account entries that are counterpart of the " -"receivable/payable accounts selected, and reconcile each other, letting this" -" balance in the partner:" +"receivable/payable accounts selected, and reconcile each other, letting this " +"balance in the partner:" msgstr "" #. module: account_netting @@ -147,7 +149,7 @@ msgid "To receive" msgstr "" #. module: account_netting -#: code:addons/account_netting/wizards/account_move_make_netting.py:35 +#: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." msgstr "" From 7648088f29bd6bfeb806692d7406768399b71f97 Mon Sep 17 00:00:00 2001 From: Jimmy Ramos Date: Tue, 25 Sep 2018 16:43:45 +0000 Subject: [PATCH 08/22] Translated using Weblate (Spanish) Currently translated at 100.0% (25 of 25 strings) Translation: account-financial-tools-11.0/account-financial-tools-11.0-account_netting Translate-URL: https://translation.odoo-community.org/projects/account-financial-tools-11-0/account-financial-tools-11-0-account_netting/es/ --- account_netting/i18n/es.po | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/account_netting/i18n/es.po b/account_netting/i18n/es.po index f1eb1649b..c4055a73e 100644 --- a/account_netting/i18n/es.po +++ b/account_netting/i18n/es.po @@ -9,14 +9,15 @@ msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-12-03 03:46+0000\n" -"PO-Revision-Date: 2017-12-03 03:46+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"PO-Revision-Date: 2018-09-25 16:44+0000\n" +"Last-Translator: Jimmy Ramos \n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.1.1\n" #. module: account_netting #: code:addons/account_netting/wizards/account_move_make_netting.py:67 @@ -52,7 +53,6 @@ msgstr "Saldo" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type -#, fuzzy msgid "Balance Type" msgstr "Tipo de saldo" @@ -94,7 +94,6 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id -#, fuzzy msgid "Journal" msgstr "Diario" @@ -115,7 +114,6 @@ msgstr "Última actualización en" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids -#, fuzzy msgid "Move Line" msgstr "Apuntes" @@ -168,4 +166,4 @@ msgstr "Debe compensar al menos 2 apuntes." #. module: account_netting #: model:ir.model,name:account_netting.model_account_move_make_netting msgid "account.move.make.netting" -msgstr "" +msgstr "cuenta.asiento.hacer.neteo" From 5974cb59200887c2125be318e1b0198f80bb635a Mon Sep 17 00:00:00 2001 From: Rudolf Schnapka Date: Wed, 10 Oct 2018 13:07:09 +0000 Subject: [PATCH 09/22] Translated using Weblate (German) Currently translated at 100,0% (25 of 25 strings) Translation: account-financial-tools-11.0/account-financial-tools-11.0-account_netting Translate-URL: https://translation.odoo-community.org/projects/account-financial-tools-11-0/account-financial-tools-11-0-account_netting/de/ --- account_netting/i18n/de.po | 43 +++++++++++++++++++++++--------------- 1 file changed, 26 insertions(+), 17 deletions(-) diff --git a/account_netting/i18n/de.po b/account_netting/i18n/de.po index 37bfafd5c..e5b93e75a 100644 --- a/account_netting/i18n/de.po +++ b/account_netting/i18n/de.po @@ -9,32 +9,33 @@ msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-12-03 03:46+0000\n" -"PO-Revision-Date: 2017-12-03 03:46+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"PO-Revision-Date: 2018-10-10 13:26+0000\n" +"Last-Translator: Rudolf Schnapka \n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.1.1\n" #. module: account_netting #: code:addons/account_netting/wizards/account_move_make_netting.py:67 #, python-format msgid "AR/AP netting" -msgstr "" +msgstr "Kred/Deb-Verrechnung" #. module: account_netting #: code:addons/account_netting/wizards/account_move_make_netting.py:40 #, python-format msgid "All entries must have a receivable or payable account" -msgstr "" +msgstr "Alle Posten müssen ein Kreditoren- oder Debitorenkonto aufweisen" #. module: account_netting #: code:addons/account_netting/wizards/account_move_make_netting.py:43 #, python-format msgid "All entries mustn't been reconciled" -msgstr "" +msgstr "Kein Posten darf ausgeglichen sein" #. module: account_netting #: code:addons/account_netting/wizards/account_move_make_netting.py:52 @@ -42,16 +43,17 @@ msgstr "" msgid "" "All entries should have a partner and the partner must be the same for all." msgstr "" +"Alle Posten müssen einen Partner haben und dieser muss für alle gleich sein." #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance msgid "Balance" -msgstr "" +msgstr "Saldo" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_balance_type msgid "Balance Type" -msgstr "" +msgstr "Saldo-Art" #. module: account_netting #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form @@ -62,12 +64,12 @@ msgstr "Abbrechen" #: model:ir.actions.act_window,name:account_netting.act_account_move_make_netting #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate" -msgstr "" +msgstr "Kompensieren" #. module: account_netting #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Compensate entries" -msgstr "" +msgstr "Posten kompensieren" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_create_uid @@ -92,7 +94,7 @@ msgstr "ID" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_journal_id msgid "Journal" -msgstr "" +msgstr "Journal" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting___last_update @@ -112,12 +114,12 @@ msgstr "Zuletzt geändert am" #. module: account_netting #: model:ir.model.fields,field_description:account_netting.field_account_move_make_netting_move_line_ids msgid "Move Line" -msgstr "" +msgstr "Buchung" #. module: account_netting #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form msgid "Select the journal where storing the journal entries" -msgstr "" +msgstr "Wählen Sie das Journal zur Aufnahme der Posten" #. module: account_netting #: code:addons/account_netting/wizards/account_move_make_netting.py:46 @@ -128,6 +130,10 @@ msgid "" "In this case all selected entries belong to the same account.\n" " Please use the 'Reconcile' function." msgstr "" +"Die Funktion 'Kompensieren' soll Vorgänge auf unterschiedlichen Konten des " +"gleichen Partners saldieren.\n" +"In diesem Fall gehören alle ausgewählten Posten zum gleichen Konto.\n" +"Verwenden Sie bitte die Funktion 'Ausgleichen'." #. module: account_netting #: model:ir.ui.view,arch_db:account_netting.view_account_move_make_netting_form @@ -136,24 +142,27 @@ msgid "" "receivable/payable accounts selected, and reconcile each other, letting this " "balance in the partner:" msgstr "" +"Dieser Vorgang wird Gegenbuchungen zu den ausgewählten kreditorische/" +"debitorischen Konten erzeugen, die sich dann gegenseitig saldieren. Beim " +"Partner ergibt sich folgender Saldo:" #. module: account_netting #: selection:account.move.make.netting,balance_type:0 msgid "To pay" -msgstr "" +msgstr "Zu zahlen" #. module: account_netting #: selection:account.move.make.netting,balance_type:0 msgid "To receive" -msgstr "" +msgstr "Zu erhalten" #. module: account_netting #: code:addons/account_netting/wizards/account_move_make_netting.py:34 #, python-format msgid "You should compensate at least 2 journal entries." -msgstr "" +msgstr "Sie müssen mindestens 2 Journalposten kompensieren." #. module: account_netting #: model:ir.model,name:account_netting.model_account_move_make_netting msgid "account.move.make.netting" -msgstr "" +msgstr "account.move.make.netting" From c1e5179b88c3c50a93d4a05d3ede188db3a85e73 Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Tue, 19 Mar 2019 23:12:50 +0100 Subject: [PATCH 10/22] [MIG] account_netting from v11 to v12 --- account_netting/__manifest__.py | 2 +- account_netting/readme/CONTRIBUTORS.rst | 2 ++ account_netting/readme/DESCRIPTION.rst | 8 ++++++++ account_netting/readme/USAGE.rst | 12 ++++++++++++ account_netting/tests/test_account_netting.py | 2 +- account_netting/wizards/account_move_make_netting.py | 8 +++----- .../wizards/account_move_make_netting_view.xml | 4 +--- 7 files changed, 28 insertions(+), 10 deletions(-) create mode 100644 account_netting/readme/CONTRIBUTORS.rst create mode 100644 account_netting/readme/DESCRIPTION.rst create mode 100644 account_netting/readme/USAGE.rst diff --git a/account_netting/__manifest__.py b/account_netting/__manifest__.py index 7e478e293..b28c2ebbb 100644 --- a/account_netting/__manifest__.py +++ b/account_netting/__manifest__.py @@ -4,7 +4,7 @@ { 'name': 'Account netting', - 'version': '11.0.1.0.0', + 'version': '12.0.1.0.0', 'summary': 'Compensate AR/AP accounts from the same partner', 'category': 'Accounting & Finance', 'author': 'Tecnativa, ' diff --git a/account_netting/readme/CONTRIBUTORS.rst b/account_netting/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..662eb8923 --- /dev/null +++ b/account_netting/readme/CONTRIBUTORS.rst @@ -0,0 +1,2 @@ +* Pedro M. Baeza +* Vicent Cubells diff --git a/account_netting/readme/DESCRIPTION.rst b/account_netting/readme/DESCRIPTION.rst new file mode 100644 index 000000000..0e82c4bd4 --- /dev/null +++ b/account_netting/readme/DESCRIPTION.rst @@ -0,0 +1,8 @@ +This module allows to compensate the balance of a receivable account with the +balance of a payable account for the same partner, creating a journal item +that reflects this operation. + +**WARNING**: This operation can be forbidden in your country by the accounting +regulations, so you should check current laws before using it. For example, in +Spain, this is not allowed at first instance, unless you document well the +operation from both parties. diff --git a/account_netting/readme/USAGE.rst b/account_netting/readme/USAGE.rst new file mode 100644 index 000000000..ed5889b4c --- /dev/null +++ b/account_netting/readme/USAGE.rst @@ -0,0 +1,12 @@ +From any account journal entries view: + +* Accounting/Journal Entries/Journal Items + +select all the lines that corresponds to both AR/AP operations from the same +partner. Click on *Action > Compensate*. If the items don't correspond to the +same partner or they aren't AR/AP accounts, you will get an error. + +On contrary, a dialog box will be presented with the result of the operation +and a selection of the journal to register the operation. When you click on the +*Compensate* button, a journal entry is created with the corresponding +counterparts of the AR/AP operations. diff --git a/account_netting/tests/test_account_netting.py b/account_netting/tests/test_account_netting.py index 9b19fa421..f0094b46b 100644 --- a/account_netting/tests/test_account_netting.py +++ b/account_netting/tests/test_account_netting.py @@ -2,7 +2,7 @@ # Copyright 2017 Tecnativa - Vicent Cubells # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html -import openerp.tests.common as common +import odoo.tests.common as common class TestAccountNetting(common.SavepointCase): diff --git a/account_netting/wizards/account_move_make_netting.py b/account_netting/wizards/account_move_make_netting.py index fe23e1705..5ed6d613d 100644 --- a/account_netting/wizards/account_move_make_netting.py +++ b/account_netting/wizards/account_move_make_netting.py @@ -7,6 +7,7 @@ from odoo import _, api, exceptions, fields, models class AccountMoveMakeNetting(models.TransientModel): _name = "account.move.make.netting" + _description = 'Wizard to generate account moves for netting' journal_id = fields.Many2one( comodel_name="account.journal", @@ -28,7 +29,7 @@ class AccountMoveMakeNetting(models.TransientModel): ) @api.model - def default_get(self, fields): + def default_get(self, fields_list): if len(self.env.context.get('active_ids', [])) < 2: raise exceptions.ValidationError( _("You should compensate at least 2 journal entries.")) @@ -51,7 +52,7 @@ class AccountMoveMakeNetting(models.TransientModel): raise exceptions.ValidationError( _("All entries should have a partner and the partner must " "be the same for all.")) - res = super(AccountMoveMakeNetting, self).default_get(fields) + res = super(AccountMoveMakeNetting, self).default_get(fields_list) res['move_line_ids'] = [(6, 0, move_lines.ids)] balance = (sum(move_lines.mapped('debit')) - sum(move_lines.mapped('credit'))) @@ -59,7 +60,6 @@ class AccountMoveMakeNetting(models.TransientModel): res['balance_type'] = 'pay' if balance < 0 else 'receive' return res - @api.multi def button_compensate(self): self.ensure_one() # Create account move @@ -103,8 +103,6 @@ class AccountMoveMakeNetting(models.TransientModel): move_line_vals = { field_map[i]: amount, 'partner_id': self.move_line_ids[0].partner_id.id, - 'date': move.date, - 'journal_id': move.journal_id.id, 'name': move.ref, 'account_id': account_group['account_id'], } diff --git a/account_netting/wizards/account_move_make_netting_view.xml b/account_netting/wizards/account_move_make_netting_view.xml index 08ff7704d..b02660689 100644 --- a/account_netting/wizards/account_move_make_netting_view.xml +++ b/account_netting/wizards/account_move_make_netting_view.xml @@ -15,12 +15,10 @@ account.move.make.netting
-