From c57bca2af02f8de4e7457448e4b2c1ff6b17ec55 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 9 Jun 2016 10:17:12 +0200 Subject: [PATCH 01/13] [ADD] crm_deduplicate_by_ref ================================= Deduplicate Contacts by reference ================================= This module extends the criteria to match duplicated contacts using the field reference. Usage ===== To use this module, you need to: * Go to *Sales > Tools > Deduplicate Contacts*. * Mark "Reference" in the section "Search duplicates based on duplicated data in". * This criteria will be used for deduplicating. --- partner_deduplicate_by_ref/README.rst | 60 ++++++++++ partner_deduplicate_by_ref/__init__.py | 4 + partner_deduplicate_by_ref/__openerp__.py | 21 ++++ partner_deduplicate_by_ref/i18n/es.po | 27 +++++ .../static/description/icon.png | Bin 0 -> 10680 bytes .../static/description/icon.svg | 107 ++++++++++++++++++ partner_deduplicate_by_ref/tests/__init__.py | 4 + .../tests/test_crm_deduplicate_by_ref.py | 50 ++++++++ .../wizards/__init__.py | 5 + .../wizards/partner_merge.py | 29 +++++ .../wizards/partner_merge_view.xml | 20 ++++ 11 files changed, 327 insertions(+) create mode 100644 partner_deduplicate_by_ref/README.rst create mode 100644 partner_deduplicate_by_ref/__init__.py create mode 100644 partner_deduplicate_by_ref/__openerp__.py create mode 100644 partner_deduplicate_by_ref/i18n/es.po create mode 100644 partner_deduplicate_by_ref/static/description/icon.png create mode 100644 partner_deduplicate_by_ref/static/description/icon.svg create mode 100644 partner_deduplicate_by_ref/tests/__init__.py create mode 100644 partner_deduplicate_by_ref/tests/test_crm_deduplicate_by_ref.py create mode 100644 partner_deduplicate_by_ref/wizards/__init__.py create mode 100644 partner_deduplicate_by_ref/wizards/partner_merge.py create mode 100644 partner_deduplicate_by_ref/wizards/partner_merge_view.xml diff --git a/partner_deduplicate_by_ref/README.rst b/partner_deduplicate_by_ref/README.rst new file mode 100644 index 000000000..48cda88b1 --- /dev/null +++ b/partner_deduplicate_by_ref/README.rst @@ -0,0 +1,60 @@ +.. 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 + +================================= +Deduplicate Contacts by reference +================================= + +This module extends the criteria to match duplicated contacts using the field +reference. + +Usage +===== + +To use this module, you need to: + +#. Go to *Sales > Tools > Deduplicate Contacts*. +#. Mark "Reference" in the section "Search duplicates based on duplicated data + in". +#. This criteria will be used for deduplicating. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/111/9.0 + +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. + +Credits +======= + +Images +------ + +* `Arrow `_. + +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 https://odoo-community.org. diff --git a/partner_deduplicate_by_ref/__init__.py b/partner_deduplicate_by_ref/__init__.py new file mode 100644 index 000000000..f8944f05c --- /dev/null +++ b/partner_deduplicate_by_ref/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import wizards diff --git a/partner_deduplicate_by_ref/__openerp__.py b/partner_deduplicate_by_ref/__openerp__.py new file mode 100644 index 000000000..4c5915ed8 --- /dev/null +++ b/partner_deduplicate_by_ref/__openerp__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 Pedro M. Baeza +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +{ + "name": "Deduplicate Contacts by reference", + "version": "9.0.1.0.0", + "category": "Tools", + "website": "https://www.tecnativa.com", + "author": "Tecnativa, " + "Odoo Community Association (OCA)", + "license": "AGPL-3", + "installable": True, + "depends": [ + "crm", + "crm_deduplicate_acl", + ], + "data": [ + 'wizards/partner_merge_view.xml', + ], +} diff --git a/partner_deduplicate_by_ref/i18n/es.po b/partner_deduplicate_by_ref/i18n/es.po new file mode 100644 index 000000000..0defc8aab --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/es.po @@ -0,0 +1,27 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-01 21:29+0000\n" +"PO-Revision-Date: 2017-03-01 21:29+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: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referencia" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "base.partner.merge.automatic.wizard" + diff --git a/partner_deduplicate_by_ref/static/description/icon.png b/partner_deduplicate_by_ref/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..82778ec46536d4507e895aa003cb462a00b06598 GIT binary patch literal 10680 zcmW++1ytNz6AkWKWN}z1UbGZNib%3!7h@xN$a?&J6gJVnz&d1o}Qj;)(*C=W+qM+Y>qBg8D~PI z06-1MONncEWuE$bf7k3wzpXrCz0F?sZ_Tij?W&5b#$uB+i=>NwrIc{ZZGD>k8(o!WAD=&I z?yn#twm3Gf8o&Bg`13E9`y6XKwx8=e&ccOrgwkM|ph|*zaKkTtA&?!wpZw%Q>{^Ha z0{<5^=y=--Kt(B4mAo@|LJIvNA= zIC**+_(8zavSCFh6{l`TQ^fH%;H9wAAE!0`8#bOXZtgcgBzgFSZ-zE*>DhrQ`?->E z!eMFb9w82RY$aN8Da4{%SX>c{K}U08V%PnztU`0b0&6aEBC zpSi

|_E*+zj@Ix8d3>9XSHVMW8=?f6*?8g6bb0bpa9HAPbUY*aZOKJ?JEwaXahw zZ5BZy6rk*(?i)`Me++45IkS%7LXD63!Ji3i$N|Ja6LA+daPBwiirpmk_a$--w=2ZP zE!e>7(&N_q*eu(%3oqBG9RQm;wq44U4o=sbg)@-F^cgGQMo$nZcI$vk>-lO|LZ=gV z#(m~3%P_(=zLx7x2K1mMDfoK*M!aZy>F}Y70Rx|rHbj6l$&Z(D>xVy1ffs;hj#okDk$k8fGaZPjGHuT&Z#C{cCii=-&@D2>|_M+-x=v*=Ll^@{vsnW^NsQS2l7`A zazCD%-S>Z~PflyAtC$lUb+^lK?We;l)R0P*2oVFmKPUobm=HJ#IdsXzwRHBjoyT1& zVFbe!E`4`K z#+5@QAsXIoyvhm_9PYcw+uM_DytN>COa>IW((!1gX^Ai$<&1W`qx5ja6{1Pg-8SM- zORuOC5DPUz|GJ}CVL~{WlZUAq+&!MZc$K@Vh}wP?LBZ2~SNVE4QXo6C{-ffCUO&^7 z$-SWLI%QshG#w3MVkx7dwoyVOPSkqp1e6%<=J%6Lg{|EtW=j_S}J?6&>NXa@5 z-{PY&h1ob9Rn(7m7HaGOs8hJowrDhHm_ZiKh~f#3_7l%;`ok@kqmtN6W}*Pz<@|h` zr-Fh1m~gDS`x_;S)}fGJYYv0dg@=FwvJ9n!tzwKmK)bk>=*Z-j%$CVhcBtb2X-*^x z0T&NLXMmqJVs=8YMS129Q>NbYwIoSlw+w~a5?TEg5ATT@5mYH(^ljb#3%j9`l$KF) zV`rj4tB0Sx{n3NT;SyRQSs<}45Q)^)MS{R9>BpO0V*6E<8WmB+d&rD6{`KFi_B#10 zvBl{d__k+gzYKfg(|qXhj3Re<^%-IK{XxD1mfjAI-1F#yOvtJ$a)0wI8OK3hrquO7%q=s73M{1C4qW%q{1f06)~ z>V4Jz2t(Rw-*~gTJ5NOaslKj!g{Ttmd-X8~KDYv=(Q9Ub@NiuG4~^KnD;?BHLwvKT z&7zzS+!3*g-e=Nr_WYd9?$X^|U1s;xL}G4e>1InZQxk7LqB5ZZLNWTpmfD@X%}ZBW zAA>~OpnCq>RsWbO?3??4XdfB94gljRCMc2%(a3Xd3+{&6wPGZ4_>f?a!1V=FP9SCtsPApA8HQ* z0VN6+yR2wMw8HmAaq%GUghKR|gKI?Od~3O)QU!xDErhBNqZiwO>ekBQNi4>pyC*;n ze(5~^#((8evv(x=QY}WDJI5K>!C94iliO7)NFW#BH~^Y(qZ&z?ez0m|eD3C>*+bcKhr ztfkBZQPx%>C6#Kn1pVDSw0zsB(s%q3!iHQ^w64JT>E+Uk3ysH!!;ktf`z#8#$@?oqb-<8>&iKg$H;(Nc?P8Y=uk zED{1s^%kGuWx6iQ3*5{mw~AJo58*Fg<8Sjdg0Hk>p0+M3&p?DwVQI{g8C+GmL{64u zdZ|Kw5JD|QS-=qf(M^I5A)G)XF}+JhJQzOI+PI*D*|(#DTApwh9PQgwYF%_x_7uh^ zP+W)d)!vy!d@i)(BKQ&C;IK|nYWm$cH6B?_H785GY{4#pv`C6fq+~CFt+Ib?REFv( za}gY0gqfh3OsrnUiG6b!S223uRj7=7!RU92GW(nJGc5-pA-8#4f?s?GzOf!0m(D~a zUjegGwy^FQGKVJdjeV>#;8aXc|CNE+v6G-S;L5 z0)>nP%5bKCF3~Ll@X68E@GB()$GIr-$o(x${OYzPam&Ill`8I50bxM$W(i_1sP?LF z$|~c>59AbN>P>y|FZ0~Rd;B2va+N}hZk?GhGeHgqKXJ7(tY;zGcsYy%ouF(6PCZG) z&BD*xc|^X3G&j`;H@IR_n15CVhj~hEiD!%Z-KLT#zHLRtd6ndzNg^?ed=vBOnpUR2 zeRkq=GIWetV+UzzAEPqy)um8A{!<`Qi!6zd<>K0xD>cDA@K7?oRjb#0~gxKmKH9+;&!f=AOfTP<1EMNt>#gH(X{4ufE7A0#9a>dTjcfYy0;aPZG>Qce{W$r>} zra8B3DOaAE6D>azjfKj{e;#@1;iilz}bjA z4BBkl<@cqK;Ki>m1x*{0(o#p8%AQm>xho-PURDOndzyMo3vxWrRpH6UDEa=m#y#7@MU=7q6h2q(V~gwl@+_x210C7+;2r)Nfw? zuk9b;_16N|hj*is+N45$L5R?37|{(u$QVpCh0c!u_(`bZe;YjKC=*_eNYKx`HM(-Uf%Y$ejcDnWpKtZ4`_)QE}WB#Pp$EPz%h8zF&()pB4 z=9e1gH-HH#lujim_UPU5BZ4^YjMKOmDEfQ70FSd%7ncL zl5T4YiYAQ4oY_H32S-V?V%m9h5#DheG8rbkcwO~bW;&P$8{gTed^Vg&ln zM^y@O$!Zd)!K!iu=r7oq-}+I4T=+3VaX-maqN5&iW*|iR{D#ptZE=GE<~nKsH%5+X zQ3B{f<(jEUz|Tu&L@}w>Ak8`d*z9YMphU)BZ?`zd(x(;`n!xO<>8_0`KTL^Rys1&9 zDE_HL-JlW?&!S5qivnZyk>$GssnJAiV?3#5r*&0HAOI2(${KSg6pUpJjr=OEK*a5ZJ`vJJ_`Sla4v7Qd6 z$!Wb${)<%vFT^FHj4u(*xL`tRD0krd&lJy;kc~!KGL!`UNi4_}`jGcVwtaQE<`$)` zFk_5Z@l+hQzoMLu$NZ4dSjrNADHV^REDeObe1reP* z9w!Up^1^bm=7Fn3!w7{Bx$+Ohcf1 zGY$>MqZM)Bxivj?8wjB-q{F23i$y2-iCtekF%bty&D)wGTqa~V|RIA&8EBFmh zJ?W8cSORK~%P$SqcM`Yd#wg_6^eSgIwiCi?%qg_&T>n=|} z#-D$nCAIG3qqCD3RvQU%lSM!c01=TL*`{*!`%vJOM+2_=Eno!Y`*HEqOIfnsx7-%kk5I2%8dfFz`|3$?d9#qAJ=hc z>R2VX$KQZSP}>K4zqp%`lS<@%!=1dCG|&&1piX0PAQdUzOt%^S?5^h}`}0+65oewC zF&OReFr2W|w5Ltxr!Rr3f(bS)={&QXsVNXb2Ty~GOoQGxML*!2Z3)2|_PieDKPpiM zvz`qTOHOyuq0!Y*(3xj$710LwV;opsC!mFu9mf(=(=mA?!iSm4^EKRD_?Bs%mK2X_ zzA;|&W^h=WTx%{oK{02h4g1Tjn*xU&-Cxg`CQa%nb`+^2-5`V~#Yh7Whf9vh0?(vqh-(2n_3R+R&M=eEwjzjypR`R&8#A_>#38xg#%b>Ar`;L?uU;Z28<7V9F zyo;TcX4kSKOwBhzob)!fYB-IaZuJl1C0L{fx!5t7xqPH@pL(R;6Ry}NhBnYbI?Iq| zQ`ixy??-Oe11Y4gR8F_^FOmZ%q#N)Qx4w1`|U%x{qUlVc3aT^GJ%z8@sxx1a-4HLoFA|fpcgrq7@FP4nu}$g(S%8X6tYnBg_!Ze2ZK++jNqDCxK zJ?i`ntu7GOF0CxPKY!D~M_ZegbB6ceSGgf6!Yv|b-LoL-u(ZSso9?G8|Dw5@&&{Yv z680-$CXpPfcz?v=9|LfWW%Y?)YMjZ&1X>P<7P;e}nhXR{g!>^RNuqW~R+OkkcI#E% zWLHJ_e!|(Z*Y|mwlxs_jy{gr`!orSr{ z`_2lp2r7H)z6Od@#?)cP6!^Oi8{>7H_i%Ji9Ab=!Pt;=78vRg;tcA5XG`!(&rx&xr zi*H@4?5VE%$s944J1k`9oHK6)1+N$CiU^zi;EKM**HHD`rm%)k&%7~!7cW8GdW2gN zyuSN#j4h2V`dQHAPvmE#v}&UddJA>_vd2{q@85nVgMERtl@%P8yLF+Od{bPJ>u&u6 z&MciuwT6tXJ__qN=Wh|Lbb7bFD_^o(m5`-PR}1>2dtczzvUYJf@{72u>$R92+ahB9 zyXVgOy1L9yY-v=+qee1xib)J{;<9Y_~Inb+oo?loH}vEQcdQuZ&foCs5h4uCbI|P;*{&$_cj)Y?3T4&IPiw` z$N(|P79uQnrY1BL3Duf}TTxjlKTo}`n%{vtnd@jlW10NdVbrL~ZsY?r`7A)@^3;^e z+GslWtvmZ>X*Yl8pPJvVRje^aZj;gsaD2h84sSM-^(F!wbtFl7e$m;eQR*$b9xTnF z$GA3CV2!hKAkSVS?4EfKA!3sX!)NbzHQ39EM-ZczTbHC6LrEUKcoSA5VRW%Io5wU- z$e#Tjuh_Z`QGNO-DbV*!E!Lqblcytv8_q~Dg6c=eV3pb1z^C>L5kKy$RF8CQTF~|a zW2)am!{b`XB$jsE@3Q-Cm7}AjN|Z=Wnat}E@`2{lD28k&83-uY`+BeY*8j8Ts{7rE zl_&-nAHq2VdR&8$a0g8Bx>q#Vx9d z7i08@`MZNqvLVa02~Ko^X%4hqWsd>jBv2IT($TiEdLiszAiKdj92gh6j0rSg-Ro@i zx-|8Ko-6{u`mOVJEbmssvP19Nw9g^e6Qb*Pix&M0>J9c2f>(n_y~VBF<`dW1St9-q zp#zk@to)XcrLL0|*9n*nGdQ&0X!(e}Wwtlbeqzj*<u_)3KP!)is<8j6~>wFl%aeROacsce9j_1se3O~wb98+j~Rw5DwO->ycCuy>N< zh}=<=lFl4sH17tr+EDzQ(d~lNeo-VZRv(C(5gD??Lo3sH&XqInu6egW#4G+jk)1&F zggLo3ZYUJfMqk!MruKRE&)5yhZu$QGenz?(7rb|dI6SYy7fwNz0Q2B zBO#{?fS7?npG$|vaB8p9WR=ud4{hA{8h@3Fe-3D3QYWjPqNE+P^Dl%Wme;oGhUy=g z)6F5jHew+KK5BC9bxc35HHXM0j)c#*`FM@j2yt(nYHjH?**Fr9yg_V?X{qgJfZ>fCydvQb|F>EcUuNOG4K{4zd3*^`!Gvd+joMw|9B35HRcpUW6ayrk6 zJzp>8Z`ZgVF9)aw)V*kx6T2NRO8I)l{%ZREV;4x!6Bfi(&JGR1 zTa}&9FEf9M(?oCn&<6S*kBNey2L+N9LKk_=4PMuXq_sc>N9I8_PUJ8PgSa{7KOR53VJWovgFQEjcyN- zfYhJ0`|H$+9YMiL7du-ANy(OAI8;fzpYDo0SuFpMk&16+$Vk4EH=s)nlr()Q&lNHL zCJqk2_QDC45Q$f0zZc-66}lef27Rzw5W(>C)M<2}Q0Ci29L?l^qix_$*u*z{8>NgFU$C*UxP9iEF3ln|TD) zte$e~puX}!5jB~d6Sf%iQ!zxRf_GyHrGnr_FS`9NEMUg?9%nm_{=X^g9w{T6wb@xs z9lxx%mMwKQg3$9iE}@V6L@h2VA3hXzinLW%1P8lGFa#fZ`_=Eo6SUfmDCx^mE$>xP zU}SPz%pUpMkuO6uVKwXg>jn{rWy}xS6Z??OLk23zk!Wq_HSc}t_F__{bS@Zg;gqvLu zeZ8NkhLvnt^&40P*uH{U6-VSodYxGpK13AprhK3p;Jo@O^3!~mkG#URZ{XkBXv0_? z9@EW}M5J4+_A=jZsH4J;=*!+Rm7o8!j{-cPUuPNX`#t4Bc4UipZkA5gX+#24x+vIX ze)Wg!J?Q%?+t`OgO67{>gM%%+dQ+{pUAb_QWC%IKHdOLU!K^}l^=l|RNde$kOUmAih)KJ%TTY0xs! zs^a?o`~-=?w}8_Gy%%fiNzo>^GG0|LRKkZq{l_j{njx*{PmU{>>!Q7)&(nS@UfZ#- zzJPDp<5In?^GWr<))3=13TzPp(|>CL1lRAeJFZeH0kNpafc2FXzd74Ve^ng8Hcv0J z)ii#D4Bxe8P~cy2ohBy}-YF=uR4Bjep7EbZyrzevGB}`NJHNsNQK`Z>Sp+4CzV+G} z9%X(}vech%U3aZ`HTkluiG*_WX1Miem{{>%!bya>lws-Z9>#e>yuR0sBRb%@6vKrWLrXmu% z{u+Q5$G3&r_H;F($s?t%{)WCxr8Gue1Q3oixRcKA#6t0e<}pRM9k)_o7yrSG~3s z&BdG1EEOfC$D%KH+uub4MfzjOBFZW|^pu3|j5pu5OS|{Vyx>XIxvoN1>dBWpN#s$r*vne^^4yTgL6nQsD#`sWy89Z}d}4fJU=8a};KbbZr#;@} zA#=v0A;dQf%1<|VvgDsId#mOrP7e-pG1%J@j*gBFe%MyzrKYC3!1AKgXhIg`(_;sy ztWK2Fmgv->n>UQ>wLAP)WN%OY&s7hbbGf}f-=aiGNwmE@9JdFo!A7J|sQfr!c}r5Z z*H)Cvhm6(4G0O>(FD4XK8<|FDEfuf-rd4iByJ7x9E_;6x0Y^y8=&pzO;A({ZeAd-( z{U=Nm;opYn3}8gcr7xN=;6sMN9c+*nyAC3P)s#z$pXqzn{NAh|Q{m@yo&9nH<$9<8 zqlds*)ApCEouU7KPr6dEaMIAzjTpx6bojNwJXR{J?$kE&(`;pcG;k13=5TP?ZaZI5 zB%ee-35)zH>>YQeoJm7%EiSvm&Is=yDsTDruWfB?hHdA5AAX{3XlR%svC0&0{#+q@ zEBts;tD&ted%ZVSusf25lCHGZFC9a4N?h3}Y`ocW77x>#_DZ#xY&>c0&%0B{Kt64hOY8Pu!TFxX@H?sHJo%YhLQVWxxr|u?19$CG!WnsE18#U(&gGrws!Qha_ zZD7!xtNB#)^;+~X6Ru3Vvbd#1K(ER;c+|4C8Fo|Y+A?qGOE1%q`PA!((aV%oY|g~K z^-`U++hrfII(^b*?czxqa?3Z#1q7i9--DCd3AP(TxV?!S6*f_Fw8Z7^fl!*P2K zukwVrlmC1gW~tOzy<^d?D3k(=;|Tv#g|%vpa>b!*Jv4rpwK+Ant>&6fGD-Ywdt!Zi4N=Gl48ojxjzV35}#mBWrh6}qs~ zayEUt>SBJUX z>6!=zi5>kv#Swt6Y5fMf>iG(TVjCcJ{o%J+eY_9@kSu(o#MFRwlL!nSgo{j%9!KTr+>ZOEP+p_Awus$xDUU%Wk!0_T-utush5# z#bU+QfoC=9@WbEt69@{i&^?7!jfH)BLeYeW=U`;#jZ7RlT0aPHk`rdk2&%p`3QVyA zOfKV!Qg!9c&G+p72JtWb!BRn-Fk}YeM@jLchO9i@Uo(8n5qZAO-VduduHiK6zleIn z0F^_6y_hgc3ZCqPom14oIgAM7;&Jvza$4dgk_&pU&a=d5!7aFN=ZnW7L;?1x7O^#~ zwhtC*2K@>}_yPg~B?Se&@Q$>o^Zii~bL9MN}XKmNYHVzJK!1s9+ zcaTI1Xw!QwoTZ`(d~h>5A(C5PpHloWLuNnI72AS~q_e2VV!aWQM51%Mw&Hltq4OCU zAdkwLHuBzTocv*nxKnN|@Dt4V0NW&iCS7Tb+hRDmlqg#0W=1_(iT=<^ z^ielq$ovIn=0_+khLQ`OeA)Z&_@N7CibZM@Z$i1#F=uCH{$la2P{XXefsjQ@33Pyt zmA5bFn|%xQ-p|rL8?wo}Ii8X>O%Eb@~?dY|R+eVBbW?!@4 z)_!>S&vjYDf;TUwTX4kRfhyMHBB#cA;2Y9lUS^xk5 literal 0 HcmV?d00001 diff --git a/partner_deduplicate_by_ref/static/description/icon.svg b/partner_deduplicate_by_ref/static/description/icon.svg new file mode 100644 index 000000000..fc243fd98 --- /dev/null +++ b/partner_deduplicate_by_ref/static/description/icon.svg @@ -0,0 +1,107 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/partner_deduplicate_by_ref/tests/__init__.py b/partner_deduplicate_by_ref/tests/__init__.py new file mode 100644 index 000000000..0e3f4a7d8 --- /dev/null +++ b/partner_deduplicate_by_ref/tests/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import test_crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/tests/test_crm_deduplicate_by_ref.py b/partner_deduplicate_by_ref/tests/test_crm_deduplicate_by_ref.py new file mode 100644 index 000000000..717fb0eeb --- /dev/null +++ b/partner_deduplicate_by_ref/tests/test_crm_deduplicate_by_ref.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 Pedro M. Baeza +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from openerp.tests import common +from openerp.tools.safe_eval import safe_eval + + +class TestDeduplicateByRef(common.TransactionCase): + def setUp(self): + super(TestDeduplicateByRef, self).setUp() + self.partner_1 = self.env['res.partner'].create({ + 'name': 'Partner 1', + 'ref': '123456', + 'email': 'test@deduplicate.com', + }) + self.partner_2 = self.env['res.partner'].create({ + 'name': 'Partner 2', + 'ref': '123456', + 'email': 'test@deduplicate.com', + }) + + def test_deduplicate_by_ref(self): + wizard = self.env['base.partner.merge.automatic.wizard'].create({ + 'group_by_ref': True, + }) + wizard.start_process_cb() + found_match = False + for line in wizard.line_ids: + match_ids = safe_eval(line.aggr_ids) + if (self.partner_1.id in match_ids and + self.partner_2.id in match_ids): + found_match = True + break + self.assertTrue(found_match) + + def test_deduplicate_by_ref_and_is_company(self): + wizard = self.env['base.partner.merge.automatic.wizard'].create({ + 'group_by_ref': True, + 'group_by_email': True, + }) + wizard.start_process_cb() + found_match = False + for line in wizard.line_ids: + match_ids = safe_eval(line.aggr_ids) + if (self.partner_1.id in match_ids and + self.partner_2.id in match_ids): + found_match = True + break + self.assertTrue(found_match) diff --git a/partner_deduplicate_by_ref/wizards/__init__.py b/partner_deduplicate_by_ref/wizards/__init__.py new file mode 100644 index 000000000..c93eadfed --- /dev/null +++ b/partner_deduplicate_by_ref/wizards/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# © 2016 Antiun Ingeniería S.L. - Jairo Llopis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import partner_merge diff --git a/partner_deduplicate_by_ref/wizards/partner_merge.py b/partner_deduplicate_by_ref/wizards/partner_merge.py new file mode 100644 index 000000000..e39a9da50 --- /dev/null +++ b/partner_deduplicate_by_ref/wizards/partner_merge.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +# Copyright 2016 Pedro M. Baeza +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from openerp import fields, models + + +class BasePartnerMergeAutomaticWizard(models.TransientModel): + _inherit = "base.partner.merge.automatic.wizard" + + group_by_ref = fields.Boolean('Reference') + + def _generate_query(self, fields, maximum_group=100): + """Inject the additional criteria 'ref IS NOT NULL' when needed. + There's no better way to do it, as there are no hooks for adding + this criteria regularly. + """ + query = super(BasePartnerMergeAutomaticWizard, self)._generate_query( + fields, maximum_group=maximum_group) + if 'ref' in fields: + if 'WHERE' in query: + index = query.find('WHERE') + query = (query[:index + 6] + "ref IS NOT NULL AND " + + query[index + 6:]) + else: + index = query.find(' GROUP BY') + query = (query[:index] + " WHERE ref IS NOT NULL" + + query[index:]) + return query diff --git a/partner_deduplicate_by_ref/wizards/partner_merge_view.xml b/partner_deduplicate_by_ref/wizards/partner_merge_view.xml new file mode 100644 index 000000000..73f1a1487 --- /dev/null +++ b/partner_deduplicate_by_ref/wizards/partner_merge_view.xml @@ -0,0 +1,20 @@ + + + + + + + base.partner.merge.automatic.wizard + + + + + + + + + + + + From 6931b43fc4014453016bba0e17efae9a77ef8eda Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Fri, 17 Mar 2017 21:24:33 -0400 Subject: [PATCH 02/13] OCA Transbot updated translations from Transifex --- partner_deduplicate_by_ref/i18n/ar.po | 30 ++++++++++++++++++ partner_deduplicate_by_ref/i18n/bs.po | 30 ++++++++++++++++++ .../i18n/crm_deduplicate_by_ref.pot | 25 +++++++++++++++ partner_deduplicate_by_ref/i18n/cs.po | 29 +++++++++++++++++ partner_deduplicate_by_ref/i18n/de.po | 30 ++++++++++++++++++ partner_deduplicate_by_ref/i18n/en_GB.po | 30 ++++++++++++++++++ partner_deduplicate_by_ref/i18n/es.po | 4 +-- partner_deduplicate_by_ref/i18n/es_CR.po | 30 ++++++++++++++++++ partner_deduplicate_by_ref/i18n/es_EC.po | 30 ++++++++++++++++++ partner_deduplicate_by_ref/i18n/es_MX.po | 30 ++++++++++++++++++ partner_deduplicate_by_ref/i18n/et.po | 29 +++++++++++++++++ partner_deduplicate_by_ref/i18n/fr.po | 29 +++++++++++++++++ partner_deduplicate_by_ref/i18n/gl.po | 29 +++++++++++++++++ partner_deduplicate_by_ref/i18n/hr.po | 30 ++++++++++++++++++ partner_deduplicate_by_ref/i18n/hu.po | 29 +++++++++++++++++ partner_deduplicate_by_ref/i18n/it.po | 29 +++++++++++++++++ partner_deduplicate_by_ref/i18n/ja.po | 29 +++++++++++++++++ partner_deduplicate_by_ref/i18n/lt.po | 30 ++++++++++++++++++ partner_deduplicate_by_ref/i18n/lv.po | 30 ++++++++++++++++++ partner_deduplicate_by_ref/i18n/mk.po | 29 +++++++++++++++++ partner_deduplicate_by_ref/i18n/mn.po | 29 +++++++++++++++++ partner_deduplicate_by_ref/i18n/nb.po | 30 ++++++++++++++++++ partner_deduplicate_by_ref/i18n/nl.po | 29 +++++++++++++++++ partner_deduplicate_by_ref/i18n/nl_BE.po | 30 ++++++++++++++++++ partner_deduplicate_by_ref/i18n/nl_NL.po | 30 ++++++++++++++++++ partner_deduplicate_by_ref/i18n/pt.po | 29 +++++++++++++++++ partner_deduplicate_by_ref/i18n/pt_BR.po | 30 ++++++++++++++++++ partner_deduplicate_by_ref/i18n/pt_PT.po | 30 ++++++++++++++++++ partner_deduplicate_by_ref/i18n/ro.po | 30 ++++++++++++++++++ partner_deduplicate_by_ref/i18n/ru.po | 31 +++++++++++++++++++ partner_deduplicate_by_ref/i18n/sk.po | 29 +++++++++++++++++ partner_deduplicate_by_ref/i18n/sl.po | 30 ++++++++++++++++++ partner_deduplicate_by_ref/i18n/sv.po | 29 +++++++++++++++++ partner_deduplicate_by_ref/i18n/th.po | 29 +++++++++++++++++ partner_deduplicate_by_ref/i18n/tr.po | 30 ++++++++++++++++++ partner_deduplicate_by_ref/i18n/zh_CN.po | 30 ++++++++++++++++++ partner_deduplicate_by_ref/i18n/zh_TW.po | 30 ++++++++++++++++++ 37 files changed, 1064 insertions(+), 2 deletions(-) create mode 100644 partner_deduplicate_by_ref/i18n/ar.po create mode 100644 partner_deduplicate_by_ref/i18n/bs.po create mode 100644 partner_deduplicate_by_ref/i18n/crm_deduplicate_by_ref.pot create mode 100644 partner_deduplicate_by_ref/i18n/cs.po create mode 100644 partner_deduplicate_by_ref/i18n/de.po create mode 100644 partner_deduplicate_by_ref/i18n/en_GB.po create mode 100644 partner_deduplicate_by_ref/i18n/es_CR.po create mode 100644 partner_deduplicate_by_ref/i18n/es_EC.po create mode 100644 partner_deduplicate_by_ref/i18n/es_MX.po create mode 100644 partner_deduplicate_by_ref/i18n/et.po create mode 100644 partner_deduplicate_by_ref/i18n/fr.po create mode 100644 partner_deduplicate_by_ref/i18n/gl.po create mode 100644 partner_deduplicate_by_ref/i18n/hr.po create mode 100644 partner_deduplicate_by_ref/i18n/hu.po create mode 100644 partner_deduplicate_by_ref/i18n/it.po create mode 100644 partner_deduplicate_by_ref/i18n/ja.po create mode 100644 partner_deduplicate_by_ref/i18n/lt.po create mode 100644 partner_deduplicate_by_ref/i18n/lv.po create mode 100644 partner_deduplicate_by_ref/i18n/mk.po create mode 100644 partner_deduplicate_by_ref/i18n/mn.po create mode 100644 partner_deduplicate_by_ref/i18n/nb.po create mode 100644 partner_deduplicate_by_ref/i18n/nl.po create mode 100644 partner_deduplicate_by_ref/i18n/nl_BE.po create mode 100644 partner_deduplicate_by_ref/i18n/nl_NL.po create mode 100644 partner_deduplicate_by_ref/i18n/pt.po create mode 100644 partner_deduplicate_by_ref/i18n/pt_BR.po create mode 100644 partner_deduplicate_by_ref/i18n/pt_PT.po create mode 100644 partner_deduplicate_by_ref/i18n/ro.po create mode 100644 partner_deduplicate_by_ref/i18n/ru.po create mode 100644 partner_deduplicate_by_ref/i18n/sk.po create mode 100644 partner_deduplicate_by_ref/i18n/sl.po create mode 100644 partner_deduplicate_by_ref/i18n/sv.po create mode 100644 partner_deduplicate_by_ref/i18n/th.po create mode 100644 partner_deduplicate_by_ref/i18n/tr.po create mode 100644 partner_deduplicate_by_ref/i18n/zh_CN.po create mode 100644 partner_deduplicate_by_ref/i18n/zh_TW.po diff --git a/partner_deduplicate_by_ref/i18n/ar.po b/partner_deduplicate_by_ref/i18n/ar.po new file mode 100644 index 000000000..c39ed8aa4 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/ar.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+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" +"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: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "مرجع" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/bs.po b/partner_deduplicate_by_ref/i18n/bs.po new file mode 100644 index 000000000..ff11583f8 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/bs.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+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" +"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: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referenca" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/crm_deduplicate_by_ref.pot b/partner_deduplicate_by_ref/i18n/crm_deduplicate_by_ref.pot new file mode 100644 index 000000000..1f51a51a3 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/crm_deduplicate_by_ref.pot @@ -0,0 +1,25 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\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: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" + diff --git a/partner_deduplicate_by_ref/i18n/cs.po b/partner_deduplicate_by_ref/i18n/cs.po new file mode 100644 index 000000000..38da492d9 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/cs.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+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" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Odkaz" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/de.po b/partner_deduplicate_by_ref/i18n/de.po new file mode 100644 index 000000000..916f964a1 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/de.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +# Rudolf Schnapka , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: Rudolf Schnapka , 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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Bezug" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "base.partner.merge.automatic.wizard" diff --git a/partner_deduplicate_by_ref/i18n/en_GB.po b/partner_deduplicate_by_ref/i18n/en_GB.po new file mode 100644 index 000000000..da304afe9 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/en_GB.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Reference" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/es.po b/partner_deduplicate_by_ref/i18n/es.po index 0defc8aab..15a053e65 100644 --- a/partner_deduplicate_by_ref/i18n/es.po +++ b/partner_deduplicate_by_ref/i18n/es.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * crm_deduplicate_by_ref # msgid "" msgstr "" @@ -10,6 +10,7 @@ msgstr "" "PO-Revision-Date: 2017-03-01 21:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -24,4 +25,3 @@ msgstr "Referencia" #: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "base.partner.merge.automatic.wizard" - diff --git a/partner_deduplicate_by_ref/i18n/es_CR.po b/partner_deduplicate_by_ref/i18n/es_CR.po new file mode 100644 index 000000000..e58d5842a --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/es_CR.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referencia" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/es_EC.po b/partner_deduplicate_by_ref/i18n/es_EC.po new file mode 100644 index 000000000..a5b494c58 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/es_EC.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Ref." + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/es_MX.po b/partner_deduplicate_by_ref/i18n/es_MX.po new file mode 100644 index 000000000..f92ff29bf --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/es_MX.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referencia" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/et.po b/partner_deduplicate_by_ref/i18n/et.po new file mode 100644 index 000000000..ac63057d1 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/et.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Viide" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/fr.po b/partner_deduplicate_by_ref/i18n/fr.po new file mode 100644 index 000000000..edfe229e9 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/fr.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+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" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Référence" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/gl.po b/partner_deduplicate_by_ref/i18n/gl.po new file mode 100644 index 000000000..41051ad91 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/gl.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# César Castro Cruz , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: César Castro Cruz , 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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referencia" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/hr.po b/partner_deduplicate_by_ref/i18n/hr.po new file mode 100644 index 000000000..18e787a33 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/hr.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+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" +"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: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Veza" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/hu.po b/partner_deduplicate_by_ref/i18n/hu.po new file mode 100644 index 000000000..b04c5b83a --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/hu.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Hivatkozás" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/it.po b/partner_deduplicate_by_ref/i18n/it.po new file mode 100644 index 000000000..0e9854b8c --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/it.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Riferimento" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/ja.po b/partner_deduplicate_by_ref/i18n/ja.po new file mode 100644 index 000000000..d2264f379 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/ja.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+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" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "参照" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/lt.po b/partner_deduplicate_by_ref/i18n/lt.po new file mode 100644 index 000000000..af9bdd550 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/lt.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+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" +"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: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Numeris" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/lv.po b/partner_deduplicate_by_ref/i18n/lv.po new file mode 100644 index 000000000..9216e293b --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/lv.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+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" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Atsauce" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/mk.po b/partner_deduplicate_by_ref/i18n/mk.po new file mode 100644 index 000000000..3e5cb8881 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/mk.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+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" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Референца" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/mn.po b/partner_deduplicate_by_ref/i18n/mn.po new file mode 100644 index 000000000..d3e2542fd --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/mn.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Код" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/nb.po b/partner_deduplicate_by_ref/i18n/nb.po new file mode 100644 index 000000000..9290f514b --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/nb.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referanse" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/nl.po b/partner_deduplicate_by_ref/i18n/nl.po new file mode 100644 index 000000000..22551d927 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/nl.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# Erwin van der Ploeg , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: Erwin van der Ploeg , 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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referentie" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/nl_BE.po b/partner_deduplicate_by_ref/i18n/nl_BE.po new file mode 100644 index 000000000..8be7992a6 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/nl_BE.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referentie" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/nl_NL.po b/partner_deduplicate_by_ref/i18n/nl_NL.po new file mode 100644 index 000000000..86ff756f6 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/nl_NL.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-19 01:49+0000\n" +"PO-Revision-Date: 2017-08-19 01:49+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\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" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referentie" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/pt.po b/partner_deduplicate_by_ref/i18n/pt.po new file mode 100644 index 000000000..9a0cecacf --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/pt.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referência" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/pt_BR.po b/partner_deduplicate_by_ref/i18n/pt_BR.po new file mode 100644 index 000000000..3fd1f199a --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/pt_BR.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\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" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referência" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/pt_PT.po b/partner_deduplicate_by_ref/i18n/pt_PT.po new file mode 100644 index 000000000..a14d28aaa --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/pt_PT.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referência" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/ro.po b/partner_deduplicate_by_ref/i18n/ro.po new file mode 100644 index 000000000..7d39edbdc --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/ro.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# Dorin Hongu , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: Dorin Hongu , 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" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referință" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/ru.po b/partner_deduplicate_by_ref/i18n/ru.po new file mode 100644 index 000000000..62dfea943 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/ru.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+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" +"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: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Ссылка" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/sk.po b/partner_deduplicate_by_ref/i18n/sk.po new file mode 100644 index 000000000..423ac3d45 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/sk.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# gebri , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: gebri , 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" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "base.partner.merge.automatic.wizard" diff --git a/partner_deduplicate_by_ref/i18n/sl.po b/partner_deduplicate_by_ref/i18n/sl.po new file mode 100644 index 000000000..bb1af9c9b --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/sl.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Sklic" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/sv.po b/partner_deduplicate_by_ref/i18n/sv.po new file mode 100644 index 000000000..188f4d796 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/sv.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referens" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/th.po b/partner_deduplicate_by_ref/i18n/th.po new file mode 100644 index 000000000..beaedcbd7 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/th.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+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" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "อ้างถึง" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/tr.po b/partner_deduplicate_by_ref/i18n/tr.po new file mode 100644 index 000000000..7318ff0db --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/tr.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +# Ahmet Altinisik , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: Ahmet Altinisik , 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" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referans" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "base.partner.merge.automatic.wizard" diff --git a/partner_deduplicate_by_ref/i18n/zh_CN.po b/partner_deduplicate_by_ref/i18n/zh_CN.po new file mode 100644 index 000000000..b13490cd1 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/zh_CN.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\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" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "引用" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/zh_TW.po b/partner_deduplicate_by_ref/i18n/zh_TW.po new file mode 100644 index 000000000..daa0d83de --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/zh_TW.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\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" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "參考" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" From 0b9a9ec4056b2be8f969826a3cb089771cfc3bda Mon Sep 17 00:00:00 2001 From: David Date: Wed, 26 Sep 2018 13:20:56 +0200 Subject: [PATCH 03/13] [MIG] crm_deduplicate_by_ref: Migration to 11.0 --- partner_deduplicate_by_ref/README.rst | 71 ++- partner_deduplicate_by_ref/__init__.py | 1 - .../{__openerp__.py => __manifest__.py} | 7 +- .../i18n/crm_deduplicate_by_ref.pot | 2 +- .../readme/CONTRIBUTORS.rst | 4 + .../readme/DESCRIPTION.rst | 2 + partner_deduplicate_by_ref/readme/USAGE.rst | 6 + .../static/description/index.html | 435 ++++++++++++++++++ partner_deduplicate_by_ref/tests/__init__.py | 1 - .../tests/test_crm_deduplicate_by_ref.py | 9 +- .../wizards/__init__.py | 2 - .../wizards/partner_merge.py | 1 - 12 files changed, 503 insertions(+), 38 deletions(-) rename partner_deduplicate_by_ref/{__openerp__.py => __manifest__.py} (80%) create mode 100644 partner_deduplicate_by_ref/readme/CONTRIBUTORS.rst create mode 100644 partner_deduplicate_by_ref/readme/DESCRIPTION.rst create mode 100644 partner_deduplicate_by_ref/readme/USAGE.rst create mode 100644 partner_deduplicate_by_ref/static/description/index.html diff --git a/partner_deduplicate_by_ref/README.rst b/partner_deduplicate_by_ref/README.rst index 48cda88b1..7023b170a 100644 --- a/partner_deduplicate_by_ref/README.rst +++ b/partner_deduplicate_by_ref/README.rst @@ -1,14 +1,38 @@ -.. 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 - ================================= Deduplicate Contacts by reference ================================= +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fcrm-lightgray.png?logo=github + :target: https://github.com/OCA/crm/tree/11.0/crm_deduplicate_by_ref + :alt: OCA/crm +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/crm-11-0/crm-11-0-crm_deduplicate_by_ref + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/111/11.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + This module extends the criteria to match duplicated contacts using the field reference. +**Table of contents** + +.. contents:: + :local: + Usage ===== @@ -19,42 +43,45 @@ To use this module, you need to: in". #. This criteria will be used for deduplicating. -.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas - :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/111/9.0 - 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. +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 `_. + +Do not contact contributors directly about support or help with technical issues. Credits ======= -Images ------- +Authors +~~~~~~~ -* `Arrow `_. +* Tecnativa Contributors ------------- +~~~~~~~~~~~~ -* Pedro M. Baeza +* `Tecnativa `_: -Maintainer ----------- + * Pedro Baeza + * David Vidal + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. .. 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 https://odoo-community.org. +This module is part of the `OCA/crm `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/partner_deduplicate_by_ref/__init__.py b/partner_deduplicate_by_ref/__init__.py index f8944f05c..2d2a05ce9 100644 --- a/partner_deduplicate_by_ref/__init__.py +++ b/partner_deduplicate_by_ref/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import wizards diff --git a/partner_deduplicate_by_ref/__openerp__.py b/partner_deduplicate_by_ref/__manifest__.py similarity index 80% rename from partner_deduplicate_by_ref/__openerp__.py rename to partner_deduplicate_by_ref/__manifest__.py index 4c5915ed8..23cbd8d26 100644 --- a/partner_deduplicate_by_ref/__openerp__.py +++ b/partner_deduplicate_by_ref/__manifest__.py @@ -1,18 +1,15 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). - { "name": "Deduplicate Contacts by reference", - "version": "9.0.1.0.0", + "version": "11.0.1.0.0", "category": "Tools", - "website": "https://www.tecnativa.com", + "website": "https://www.github.com/OCA/crm", "author": "Tecnativa, " "Odoo Community Association (OCA)", "license": "AGPL-3", "installable": True, "depends": [ - "crm", "crm_deduplicate_acl", ], "data": [ diff --git a/partner_deduplicate_by_ref/i18n/crm_deduplicate_by_ref.pot b/partner_deduplicate_by_ref/i18n/crm_deduplicate_by_ref.pot index 1f51a51a3..01b8414d1 100644 --- a/partner_deduplicate_by_ref/i18n/crm_deduplicate_by_ref.pot +++ b/partner_deduplicate_by_ref/i18n/crm_deduplicate_by_ref.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: <>\n" "Language-Team: \n" diff --git a/partner_deduplicate_by_ref/readme/CONTRIBUTORS.rst b/partner_deduplicate_by_ref/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..758e01f87 --- /dev/null +++ b/partner_deduplicate_by_ref/readme/CONTRIBUTORS.rst @@ -0,0 +1,4 @@ +* `Tecnativa `_: + + * Pedro Baeza + * David Vidal diff --git a/partner_deduplicate_by_ref/readme/DESCRIPTION.rst b/partner_deduplicate_by_ref/readme/DESCRIPTION.rst new file mode 100644 index 000000000..e85a58959 --- /dev/null +++ b/partner_deduplicate_by_ref/readme/DESCRIPTION.rst @@ -0,0 +1,2 @@ +This module extends the criteria to match duplicated contacts using the field +reference. diff --git a/partner_deduplicate_by_ref/readme/USAGE.rst b/partner_deduplicate_by_ref/readme/USAGE.rst new file mode 100644 index 000000000..803988f0e --- /dev/null +++ b/partner_deduplicate_by_ref/readme/USAGE.rst @@ -0,0 +1,6 @@ +To use this module, you need to: + +#. Go to *Sales > Tools > Deduplicate Contacts*. +#. Mark "Reference" in the section "Search duplicates based on duplicated data + in". +#. This criteria will be used for deduplicating. diff --git a/partner_deduplicate_by_ref/static/description/index.html b/partner_deduplicate_by_ref/static/description/index.html new file mode 100644 index 000000000..d0892925f --- /dev/null +++ b/partner_deduplicate_by_ref/static/description/index.html @@ -0,0 +1,435 @@ + + + + + + +Deduplicate Contacts by reference + + + +

+

Deduplicate Contacts by reference

+ + +

Beta License: AGPL-3 OCA/crm Translate me on Weblate Try me on Runbot

+

This module extends the criteria to match duplicated contacts using the field +reference.

+

Table of contents

+ +
+

Usage

+

To use this module, you need to:

+
    +
  1. Go to Sales > Tools > Deduplicate Contacts.
  2. +
  3. Mark “Reference” in the section “Search duplicates based on duplicated data +in”.
  4. +
  5. This criteria will be used for deduplicating.
  6. +
+
+
+

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.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Tecnativa
  • +
+
+ +
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

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.

+

This module is part of the OCA/crm project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/partner_deduplicate_by_ref/tests/__init__.py b/partner_deduplicate_by_ref/tests/__init__.py index 0e3f4a7d8..9709e8513 100644 --- a/partner_deduplicate_by_ref/tests/__init__.py +++ b/partner_deduplicate_by_ref/tests/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import test_crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/tests/test_crm_deduplicate_by_ref.py b/partner_deduplicate_by_ref/tests/test_crm_deduplicate_by_ref.py index 717fb0eeb..769b5c2dc 100644 --- a/partner_deduplicate_by_ref/tests/test_crm_deduplicate_by_ref.py +++ b/partner_deduplicate_by_ref/tests/test_crm_deduplicate_by_ref.py @@ -1,9 +1,8 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp.tests import common -from openerp.tools.safe_eval import safe_eval +from odoo.tests import common +from odoo.tools.safe_eval import safe_eval class TestDeduplicateByRef(common.TransactionCase): @@ -24,7 +23,7 @@ class TestDeduplicateByRef(common.TransactionCase): wizard = self.env['base.partner.merge.automatic.wizard'].create({ 'group_by_ref': True, }) - wizard.start_process_cb() + wizard.action_start_manual_process() found_match = False for line in wizard.line_ids: match_ids = safe_eval(line.aggr_ids) @@ -39,7 +38,7 @@ class TestDeduplicateByRef(common.TransactionCase): 'group_by_ref': True, 'group_by_email': True, }) - wizard.start_process_cb() + wizard.action_start_manual_process() found_match = False for line in wizard.line_ids: match_ids = safe_eval(line.aggr_ids) diff --git a/partner_deduplicate_by_ref/wizards/__init__.py b/partner_deduplicate_by_ref/wizards/__init__.py index c93eadfed..fa92260c9 100644 --- a/partner_deduplicate_by_ref/wizards/__init__.py +++ b/partner_deduplicate_by_ref/wizards/__init__.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# © 2016 Antiun Ingeniería S.L. - Jairo Llopis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import partner_merge diff --git a/partner_deduplicate_by_ref/wizards/partner_merge.py b/partner_deduplicate_by_ref/wizards/partner_merge.py index e39a9da50..c930600a0 100644 --- a/partner_deduplicate_by_ref/wizards/partner_merge.py +++ b/partner_deduplicate_by_ref/wizards/partner_merge.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). From 198401f023b39d66ebf6a9c0f3e65c90d457f6a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marta=20V=C3=A1zquez=20Rodr=C3=ADguez?= Date: Mon, 4 Feb 2019 08:49:29 +0000 Subject: [PATCH 04/13] Translated using Weblate (Galician) Currently translated at 100.0% (2 of 2 strings) Translation: crm-11.0/crm-11.0-crm_deduplicate_by_ref Translate-URL: https://translation.odoo-community.org/projects/crm-11-0/crm-11-0-crm_deduplicate_by_ref/gl/ --- partner_deduplicate_by_ref/i18n/gl.po | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/partner_deduplicate_by_ref/i18n/gl.po b/partner_deduplicate_by_ref/i18n/gl.po index 41051ad91..1824118c7 100644 --- a/partner_deduplicate_by_ref/i18n/gl.po +++ b/partner_deduplicate_by_ref/i18n/gl.po @@ -9,14 +9,15 @@ msgstr "" "Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-03-16 03:45+0000\n" -"PO-Revision-Date: 2017-03-16 03:45+0000\n" -"Last-Translator: César Castro Cruz , 2017\n" +"PO-Revision-Date: 2019-02-04 10:50+0000\n" +"Last-Translator: Marta Vázquez Rodríguez \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" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.4\n" #. module: crm_deduplicate_by_ref #: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref @@ -26,4 +27,4 @@ msgstr "Referencia" #. module: crm_deduplicate_by_ref #: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" -msgstr "" +msgstr "'base.partner.merge.automatic.wizard'" From cc5ed02f3582a4720dc98e61b31eb193964d6ea0 Mon Sep 17 00:00:00 2001 From: david Date: Thu, 28 Nov 2019 16:36:55 +0100 Subject: [PATCH 05/13] [MOV] crm_deduplicate_by_ref -> partner_deduplicate_by_ref --- partner_deduplicate_by_ref/README.rst | 16 ++++++++-------- partner_deduplicate_by_ref/__manifest__.py | 4 ++-- partner_deduplicate_by_ref/i18n/ar.po | 10 +++++----- partner_deduplicate_by_ref/i18n/bs.po | 10 +++++----- partner_deduplicate_by_ref/i18n/cs.po | 10 +++++----- partner_deduplicate_by_ref/i18n/de.po | 10 +++++----- partner_deduplicate_by_ref/i18n/en_GB.po | 10 +++++----- partner_deduplicate_by_ref/i18n/es.po | 10 +++++----- partner_deduplicate_by_ref/i18n/es_CR.po | 10 +++++----- partner_deduplicate_by_ref/i18n/es_EC.po | 10 +++++----- partner_deduplicate_by_ref/i18n/es_MX.po | 10 +++++----- partner_deduplicate_by_ref/i18n/et.po | 10 +++++----- partner_deduplicate_by_ref/i18n/fr.po | 10 +++++----- partner_deduplicate_by_ref/i18n/gl.po | 10 +++++----- partner_deduplicate_by_ref/i18n/hr.po | 10 +++++----- partner_deduplicate_by_ref/i18n/hu.po | 10 +++++----- partner_deduplicate_by_ref/i18n/it.po | 10 +++++----- partner_deduplicate_by_ref/i18n/ja.po | 10 +++++----- partner_deduplicate_by_ref/i18n/lt.po | 10 +++++----- partner_deduplicate_by_ref/i18n/lv.po | 10 +++++----- partner_deduplicate_by_ref/i18n/mk.po | 10 +++++----- partner_deduplicate_by_ref/i18n/mn.po | 10 +++++----- partner_deduplicate_by_ref/i18n/nb.po | 10 +++++----- partner_deduplicate_by_ref/i18n/nl.po | 10 +++++----- partner_deduplicate_by_ref/i18n/nl_BE.po | 10 +++++----- partner_deduplicate_by_ref/i18n/nl_NL.po | 10 +++++----- ...by_ref.pot => partner_deduplicate_by_ref.pot} | 10 +++++----- partner_deduplicate_by_ref/i18n/pt.po | 10 +++++----- partner_deduplicate_by_ref/i18n/pt_BR.po | 10 +++++----- partner_deduplicate_by_ref/i18n/pt_PT.po | 10 +++++----- partner_deduplicate_by_ref/i18n/ro.po | 10 +++++----- partner_deduplicate_by_ref/i18n/ru.po | 10 +++++----- partner_deduplicate_by_ref/i18n/sk.po | 10 +++++----- partner_deduplicate_by_ref/i18n/sl.po | 10 +++++----- partner_deduplicate_by_ref/i18n/sv.po | 10 +++++----- partner_deduplicate_by_ref/i18n/th.po | 10 +++++----- partner_deduplicate_by_ref/i18n/tr.po | 10 +++++----- partner_deduplicate_by_ref/i18n/zh_CN.po | 10 +++++----- partner_deduplicate_by_ref/i18n/zh_TW.po | 10 +++++----- .../static/description/index.html | 8 ++++---- partner_deduplicate_by_ref/tests/__init__.py | 2 +- 41 files changed, 200 insertions(+), 200 deletions(-) rename partner_deduplicate_by_ref/i18n/{crm_deduplicate_by_ref.pot => partner_deduplicate_by_ref.pot} (55%) diff --git a/partner_deduplicate_by_ref/README.rst b/partner_deduplicate_by_ref/README.rst index 7023b170a..bffd5b4b4 100644 --- a/partner_deduplicate_by_ref/README.rst +++ b/partner_deduplicate_by_ref/README.rst @@ -13,14 +13,14 @@ Deduplicate Contacts by reference .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 -.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fcrm-lightgray.png?logo=github - :target: https://github.com/OCA/crm/tree/11.0/crm_deduplicate_by_ref - :alt: OCA/crm +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fpartner--contact-lightgray.png?logo=github + :target: https://github.com/OCA/partner-contact/tree/12.0/partner_deduplicate_by_ref + :alt: OCA/partner-contact .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/crm-11-0/crm-11-0-crm_deduplicate_by_ref + :target: https://translation.odoo-community.org/projects/partner-contact-12-0/partner-contact-12-0-partner_deduplicate_by_ref :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/111/11.0 + :target: https://runbot.odoo-community.org/runbot/134/12.0 :alt: Try me on Runbot |badge1| |badge2| |badge3| |badge4| |badge5| @@ -46,10 +46,10 @@ To use this module, you need to: Bug Tracker =========== -Bugs are tracked on `GitHub Issues `_. +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 `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -82,6 +82,6 @@ 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. -This module is part of the `OCA/crm `_ project on GitHub. +This module is part of the `OCA/partner-contact `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/partner_deduplicate_by_ref/__manifest__.py b/partner_deduplicate_by_ref/__manifest__.py index 23cbd8d26..f2f5b104f 100644 --- a/partner_deduplicate_by_ref/__manifest__.py +++ b/partner_deduplicate_by_ref/__manifest__.py @@ -4,13 +4,13 @@ "name": "Deduplicate Contacts by reference", "version": "11.0.1.0.0", "category": "Tools", - "website": "https://www.github.com/OCA/crm", + "website": "https://www.github.com/OCA/partner-contact", "author": "Tecnativa, " "Odoo Community Association (OCA)", "license": "AGPL-3", "installable": True, "depends": [ - "crm_deduplicate_acl", + "partner_deduplicate_acl", ], "data": [ 'wizards/partner_merge_view.xml', diff --git a/partner_deduplicate_by_ref/i18n/ar.po b/partner_deduplicate_by_ref/i18n/ar.po index c39ed8aa4..a63486767 100644 --- a/partner_deduplicate_by_ref/i18n/ar.po +++ b/partner_deduplicate_by_ref/i18n/ar.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -19,12 +19,12 @@ 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: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "مرجع" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/bs.po b/partner_deduplicate_by_ref/i18n/bs.po index ff11583f8..56f6b84d2 100644 --- a/partner_deduplicate_by_ref/i18n/bs.po +++ b/partner_deduplicate_by_ref/i18n/bs.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -19,12 +19,12 @@ 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: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Referenca" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/cs.po b/partner_deduplicate_by_ref/i18n/cs.po index 38da492d9..e27635b9d 100644 --- a/partner_deduplicate_by_ref/i18n/cs.po +++ b/partner_deduplicate_by_ref/i18n/cs.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Odkaz" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/de.po b/partner_deduplicate_by_ref/i18n/de.po index 916f964a1..b3af23c4b 100644 --- a/partner_deduplicate_by_ref/i18n/de.po +++ b/partner_deduplicate_by_ref/i18n/de.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Bezug" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "base.partner.merge.automatic.wizard" diff --git a/partner_deduplicate_by_ref/i18n/en_GB.po b/partner_deduplicate_by_ref/i18n/en_GB.po index da304afe9..8287b31a9 100644 --- a/partner_deduplicate_by_ref/i18n/en_GB.po +++ b/partner_deduplicate_by_ref/i18n/en_GB.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Reference" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/es.po b/partner_deduplicate_by_ref/i18n/es.po index 15a053e65..a403c3d70 100644 --- a/partner_deduplicate_by_ref/i18n/es.po +++ b/partner_deduplicate_by_ref/i18n/es.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # msgid "" msgstr "" @@ -16,12 +16,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Referencia" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "base.partner.merge.automatic.wizard" diff --git a/partner_deduplicate_by_ref/i18n/es_CR.po b/partner_deduplicate_by_ref/i18n/es_CR.po index e58d5842a..9336a471e 100644 --- a/partner_deduplicate_by_ref/i18n/es_CR.po +++ b/partner_deduplicate_by_ref/i18n/es_CR.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Referencia" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/es_EC.po b/partner_deduplicate_by_ref/i18n/es_EC.po index a5b494c58..d7147ee87 100644 --- a/partner_deduplicate_by_ref/i18n/es_EC.po +++ b/partner_deduplicate_by_ref/i18n/es_EC.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Ref." -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/es_MX.po b/partner_deduplicate_by_ref/i18n/es_MX.po index f92ff29bf..2d2bbb16b 100644 --- a/partner_deduplicate_by_ref/i18n/es_MX.po +++ b/partner_deduplicate_by_ref/i18n/es_MX.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Referencia" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/et.po b/partner_deduplicate_by_ref/i18n/et.po index ac63057d1..ce850da28 100644 --- a/partner_deduplicate_by_ref/i18n/et.po +++ b/partner_deduplicate_by_ref/i18n/et.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Viide" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/fr.po b/partner_deduplicate_by_ref/i18n/fr.po index edfe229e9..ad5b5dec1 100644 --- a/partner_deduplicate_by_ref/i18n/fr.po +++ b/partner_deduplicate_by_ref/i18n/fr.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Référence" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/gl.po b/partner_deduplicate_by_ref/i18n/gl.po index 1824118c7..f1274086f 100644 --- a/partner_deduplicate_by_ref/i18n/gl.po +++ b/partner_deduplicate_by_ref/i18n/gl.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # César Castro Cruz , 2017 @@ -19,12 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.4\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Referencia" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "'base.partner.merge.automatic.wizard'" diff --git a/partner_deduplicate_by_ref/i18n/hr.po b/partner_deduplicate_by_ref/i18n/hr.po index 18e787a33..9427a9686 100644 --- a/partner_deduplicate_by_ref/i18n/hr.po +++ b/partner_deduplicate_by_ref/i18n/hr.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -19,12 +19,12 @@ 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: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Veza" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/hu.po b/partner_deduplicate_by_ref/i18n/hu.po index b04c5b83a..f260e7e71 100644 --- a/partner_deduplicate_by_ref/i18n/hu.po +++ b/partner_deduplicate_by_ref/i18n/hu.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Hivatkozás" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/it.po b/partner_deduplicate_by_ref/i18n/it.po index 0e9854b8c..6c031c175 100644 --- a/partner_deduplicate_by_ref/i18n/it.po +++ b/partner_deduplicate_by_ref/i18n/it.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Riferimento" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/ja.po b/partner_deduplicate_by_ref/i18n/ja.po index d2264f379..fcbfa4e71 100644 --- a/partner_deduplicate_by_ref/i18n/ja.po +++ b/partner_deduplicate_by_ref/i18n/ja.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "参照" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/lt.po b/partner_deduplicate_by_ref/i18n/lt.po index af9bdd550..cfecff8b1 100644 --- a/partner_deduplicate_by_ref/i18n/lt.po +++ b/partner_deduplicate_by_ref/i18n/lt.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -19,12 +19,12 @@ 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: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Numeris" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/lv.po b/partner_deduplicate_by_ref/i18n/lv.po index 9216e293b..b1ad7d078 100644 --- a/partner_deduplicate_by_ref/i18n/lv.po +++ b/partner_deduplicate_by_ref/i18n/lv.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -19,12 +19,12 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Atsauce" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/mk.po b/partner_deduplicate_by_ref/i18n/mk.po index 3e5cb8881..9340ce4a8 100644 --- a/partner_deduplicate_by_ref/i18n/mk.po +++ b/partner_deduplicate_by_ref/i18n/mk.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Референца" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/mn.po b/partner_deduplicate_by_ref/i18n/mn.po index d3e2542fd..38f0fb850 100644 --- a/partner_deduplicate_by_ref/i18n/mn.po +++ b/partner_deduplicate_by_ref/i18n/mn.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Код" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/nb.po b/partner_deduplicate_by_ref/i18n/nb.po index 9290f514b..78eb3da36 100644 --- a/partner_deduplicate_by_ref/i18n/nb.po +++ b/partner_deduplicate_by_ref/i18n/nb.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Referanse" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/nl.po b/partner_deduplicate_by_ref/i18n/nl.po index 22551d927..0467a6320 100644 --- a/partner_deduplicate_by_ref/i18n/nl.po +++ b/partner_deduplicate_by_ref/i18n/nl.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # Erwin van der Ploeg , 2017 @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Referentie" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/nl_BE.po b/partner_deduplicate_by_ref/i18n/nl_BE.po index 8be7992a6..bc1e336cb 100644 --- a/partner_deduplicate_by_ref/i18n/nl_BE.po +++ b/partner_deduplicate_by_ref/i18n/nl_BE.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Referentie" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/nl_NL.po b/partner_deduplicate_by_ref/i18n/nl_NL.po index 86ff756f6..90fb2bdfa 100644 --- a/partner_deduplicate_by_ref/i18n/nl_NL.po +++ b/partner_deduplicate_by_ref/i18n/nl_NL.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # Peter Hageman , 2017 @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Referentie" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/crm_deduplicate_by_ref.pot b/partner_deduplicate_by_ref/i18n/partner_deduplicate_by_ref.pot similarity index 55% rename from partner_deduplicate_by_ref/i18n/crm_deduplicate_by_ref.pot rename to partner_deduplicate_by_ref/i18n/partner_deduplicate_by_ref.pot index 01b8414d1..e452aa10a 100644 --- a/partner_deduplicate_by_ref/i18n/crm_deduplicate_by_ref.pot +++ b/partner_deduplicate_by_ref/i18n/partner_deduplicate_by_ref.pot @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # msgid "" msgstr "" @@ -13,13 +13,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref_ref +#: model:ir.model,name:partner_deduplicate_by_ref_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/pt.po b/partner_deduplicate_by_ref/i18n/pt.po index 9a0cecacf..b4a97da51 100644 --- a/partner_deduplicate_by_ref/i18n/pt.po +++ b/partner_deduplicate_by_ref/i18n/pt.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Referência" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/pt_BR.po b/partner_deduplicate_by_ref/i18n/pt_BR.po index 3fd1f199a..a4269823c 100644 --- a/partner_deduplicate_by_ref/i18n/pt_BR.po +++ b/partner_deduplicate_by_ref/i18n/pt_BR.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Referência" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/pt_PT.po b/partner_deduplicate_by_ref/i18n/pt_PT.po index a14d28aaa..e576ceb01 100644 --- a/partner_deduplicate_by_ref/i18n/pt_PT.po +++ b/partner_deduplicate_by_ref/i18n/pt_PT.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Referência" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/ro.po b/partner_deduplicate_by_ref/i18n/ro.po index 7d39edbdc..dbd8b03dd 100644 --- a/partner_deduplicate_by_ref/i18n/ro.po +++ b/partner_deduplicate_by_ref/i18n/ro.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # Dorin Hongu , 2017 @@ -19,12 +19,12 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" "2:1));\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Referință" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/ru.po b/partner_deduplicate_by_ref/i18n/ru.po index 62dfea943..3f4ba2823 100644 --- a/partner_deduplicate_by_ref/i18n/ru.po +++ b/partner_deduplicate_by_ref/i18n/ru.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -20,12 +20,12 @@ msgstr "" "%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: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Ссылка" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/sk.po b/partner_deduplicate_by_ref/i18n/sk.po index 423ac3d45..89c710fad 100644 --- a/partner_deduplicate_by_ref/i18n/sk.po +++ b/partner_deduplicate_by_ref/i18n/sk.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # gebri , 2017 @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "base.partner.merge.automatic.wizard" diff --git a/partner_deduplicate_by_ref/i18n/sl.po b/partner_deduplicate_by_ref/i18n/sl.po index bb1af9c9b..769051638 100644 --- a/partner_deduplicate_by_ref/i18n/sl.po +++ b/partner_deduplicate_by_ref/i18n/sl.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -19,12 +19,12 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" "%100==4 ? 2 : 3);\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Sklic" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/sv.po b/partner_deduplicate_by_ref/i18n/sv.po index 188f4d796..a44019e6f 100644 --- a/partner_deduplicate_by_ref/i18n/sv.po +++ b/partner_deduplicate_by_ref/i18n/sv.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Referens" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/th.po b/partner_deduplicate_by_ref/i18n/th.po index beaedcbd7..5fbdd276b 100644 --- a/partner_deduplicate_by_ref/i18n/th.po +++ b/partner_deduplicate_by_ref/i18n/th.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "อ้างถึง" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/tr.po b/partner_deduplicate_by_ref/i18n/tr.po index 7318ff0db..891561090 100644 --- a/partner_deduplicate_by_ref/i18n/tr.po +++ b/partner_deduplicate_by_ref/i18n/tr.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "Referans" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "base.partner.merge.automatic.wizard" diff --git a/partner_deduplicate_by_ref/i18n/zh_CN.po b/partner_deduplicate_by_ref/i18n/zh_CN.po index b13490cd1..aada648ae 100644 --- a/partner_deduplicate_by_ref/i18n/zh_CN.po +++ b/partner_deduplicate_by_ref/i18n/zh_CN.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "引用" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/zh_TW.po b/partner_deduplicate_by_ref/i18n/zh_TW.po index daa0d83de..d4ec804d4 100644 --- a/partner_deduplicate_by_ref/i18n/zh_TW.po +++ b/partner_deduplicate_by_ref/i18n/zh_TW.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * partner_deduplicate_by_ref # # Translators: # OCA Transbot , 2017 @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" -#. module: crm_deduplicate_by_ref -#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref msgid "Reference" msgstr "參考" -#. module: crm_deduplicate_by_ref -#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "" diff --git a/partner_deduplicate_by_ref/static/description/index.html b/partner_deduplicate_by_ref/static/description/index.html index d0892925f..20cffd962 100644 --- a/partner_deduplicate_by_ref/static/description/index.html +++ b/partner_deduplicate_by_ref/static/description/index.html @@ -367,7 +367,7 @@ ul.auto-toc { !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

Beta License: AGPL-3 OCA/crm Translate me on Weblate Try me on Runbot

+

Beta License: AGPL-3 OCA/partner-contact Translate me on Weblate Try me on Runbot

This module extends the criteria to match duplicated contacts using the field reference.

Table of contents

@@ -395,10 +395,10 @@ in”.

Bug Tracker

-

Bugs are tracked on GitHub Issues. +

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.

+feedback.

Do not contact contributors directly about support or help with technical issues.

@@ -426,7 +426,7 @@ If you spotted it first, help us smashing it by providing a detailed and welcome

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.

-

This module is part of the OCA/crm project on GitHub.

+

This module is part of the OCA/partner-contact project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

diff --git a/partner_deduplicate_by_ref/tests/__init__.py b/partner_deduplicate_by_ref/tests/__init__.py index 9709e8513..3e4ce73a2 100644 --- a/partner_deduplicate_by_ref/tests/__init__.py +++ b/partner_deduplicate_by_ref/tests/__init__.py @@ -1,3 +1,3 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from . import test_crm_deduplicate_by_ref +from . import test_partner_deduplicate_by_ref From 9055193eaaea0c8ada0e21cb058407066c2c3a19 Mon Sep 17 00:00:00 2001 From: david Date: Thu, 28 Nov 2019 16:41:07 +0100 Subject: [PATCH 06/13] [MIG] crm_deduplicate_by_ref: Migration to 12.0 --- partner_deduplicate_by_ref/__init__.py | 1 - partner_deduplicate_by_ref/__manifest__.py | 2 +- partner_deduplicate_by_ref/i18n/ar.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/bs.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/cs.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/de.po | 13 ++++++++----- partner_deduplicate_by_ref/i18n/en_GB.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/es.po | 13 ++++++++----- partner_deduplicate_by_ref/i18n/es_CR.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/es_EC.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/es_MX.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/et.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/fr.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/gl.po | 13 ++++++++----- partner_deduplicate_by_ref/i18n/hr.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/hu.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/it.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/ja.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/lt.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/lv.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/mk.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/mn.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/nb.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/nl.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/nl_BE.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/nl_NL.po | 12 ++++++------ .../i18n/partner_deduplicate_by_ref.pot | 14 +++++++------- partner_deduplicate_by_ref/i18n/pt.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/pt_BR.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/pt_PT.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/ro.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/ru.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/sk.po | 13 ++++++++----- partner_deduplicate_by_ref/i18n/sl.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/sv.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/th.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/tr.po | 13 ++++++++----- partner_deduplicate_by_ref/i18n/zh_CN.po | 12 ++++++------ partner_deduplicate_by_ref/i18n/zh_TW.po | 12 ++++++------ ...y_ref.py => test_partner_deduplicate_by_ref.py} | 2 +- .../wizards/partner_merge.py | 2 +- .../wizards/partner_merge_view.xml | 2 +- 42 files changed, 237 insertions(+), 223 deletions(-) rename partner_deduplicate_by_ref/tests/{test_crm_deduplicate_by_ref.py => test_partner_deduplicate_by_ref.py} (97%) diff --git a/partner_deduplicate_by_ref/__init__.py b/partner_deduplicate_by_ref/__init__.py index 2d2a05ce9..531b848e7 100644 --- a/partner_deduplicate_by_ref/__init__.py +++ b/partner_deduplicate_by_ref/__init__.py @@ -1,3 +1,2 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). - from . import wizards diff --git a/partner_deduplicate_by_ref/__manifest__.py b/partner_deduplicate_by_ref/__manifest__.py index f2f5b104f..1c5831c9f 100644 --- a/partner_deduplicate_by_ref/__manifest__.py +++ b/partner_deduplicate_by_ref/__manifest__.py @@ -2,7 +2,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "Deduplicate Contacts by reference", - "version": "11.0.1.0.0", + "version": "12.0.1.0.0", "category": "Tools", "website": "https://www.github.com/OCA/partner-contact", "author": "Tecnativa, " diff --git a/partner_deduplicate_by_ref/i18n/ar.po b/partner_deduplicate_by_ref/i18n/ar.po index a63486767..9dd62174c 100644 --- a/partner_deduplicate_by_ref/i18n/ar.po +++ b/partner_deduplicate_by_ref/i18n/ar.po @@ -19,12 +19,12 @@ 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: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "مرجع" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "مرجع" diff --git a/partner_deduplicate_by_ref/i18n/bs.po b/partner_deduplicate_by_ref/i18n/bs.po index 56f6b84d2..6f0fe20d4 100644 --- a/partner_deduplicate_by_ref/i18n/bs.po +++ b/partner_deduplicate_by_ref/i18n/bs.po @@ -19,12 +19,12 @@ 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: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Referenca" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Referenca" diff --git a/partner_deduplicate_by_ref/i18n/cs.po b/partner_deduplicate_by_ref/i18n/cs.po index e27635b9d..06f92c3c2 100644 --- a/partner_deduplicate_by_ref/i18n/cs.po +++ b/partner_deduplicate_by_ref/i18n/cs.po @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Odkaz" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Odkaz" diff --git a/partner_deduplicate_by_ref/i18n/de.po b/partner_deduplicate_by_ref/i18n/de.po index b3af23c4b..87c741ec8 100644 --- a/partner_deduplicate_by_ref/i18n/de.po +++ b/partner_deduplicate_by_ref/i18n/de.po @@ -20,11 +20,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "Merge Partner Wizard" +msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref msgid "Reference" msgstr "Bezug" -#. module: partner_deduplicate_by_ref -#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" -msgstr "base.partner.merge.automatic.wizard" +#~ msgid "base.partner.merge.automatic.wizard" +#~ msgstr "base.partner.merge.automatic.wizard" diff --git a/partner_deduplicate_by_ref/i18n/en_GB.po b/partner_deduplicate_by_ref/i18n/en_GB.po index 8287b31a9..5980e860e 100644 --- a/partner_deduplicate_by_ref/i18n/en_GB.po +++ b/partner_deduplicate_by_ref/i18n/en_GB.po @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Reference" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Reference" diff --git a/partner_deduplicate_by_ref/i18n/es.po b/partner_deduplicate_by_ref/i18n/es.po index a403c3d70..1b3d2acc7 100644 --- a/partner_deduplicate_by_ref/i18n/es.po +++ b/partner_deduplicate_by_ref/i18n/es.po @@ -17,11 +17,14 @@ msgstr "" "Plural-Forms: \n" #. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "Merge Partner Wizard" +msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref msgid "Reference" msgstr "Referencia" -#. module: partner_deduplicate_by_ref -#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" -msgstr "base.partner.merge.automatic.wizard" +#~ msgid "base.partner.merge.automatic.wizard" +#~ msgstr "base.partner.merge.automatic.wizard" diff --git a/partner_deduplicate_by_ref/i18n/es_CR.po b/partner_deduplicate_by_ref/i18n/es_CR.po index 9336a471e..e6c088d41 100644 --- a/partner_deduplicate_by_ref/i18n/es_CR.po +++ b/partner_deduplicate_by_ref/i18n/es_CR.po @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Referencia" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Referencia" diff --git a/partner_deduplicate_by_ref/i18n/es_EC.po b/partner_deduplicate_by_ref/i18n/es_EC.po index d7147ee87..245c70e57 100644 --- a/partner_deduplicate_by_ref/i18n/es_EC.po +++ b/partner_deduplicate_by_ref/i18n/es_EC.po @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Ref." - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Ref." diff --git a/partner_deduplicate_by_ref/i18n/es_MX.po b/partner_deduplicate_by_ref/i18n/es_MX.po index 2d2bbb16b..ac4d4c7be 100644 --- a/partner_deduplicate_by_ref/i18n/es_MX.po +++ b/partner_deduplicate_by_ref/i18n/es_MX.po @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Referencia" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Referencia" diff --git a/partner_deduplicate_by_ref/i18n/et.po b/partner_deduplicate_by_ref/i18n/et.po index ce850da28..9b15d364e 100644 --- a/partner_deduplicate_by_ref/i18n/et.po +++ b/partner_deduplicate_by_ref/i18n/et.po @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Viide" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Viide" diff --git a/partner_deduplicate_by_ref/i18n/fr.po b/partner_deduplicate_by_ref/i18n/fr.po index ad5b5dec1..195e48500 100644 --- a/partner_deduplicate_by_ref/i18n/fr.po +++ b/partner_deduplicate_by_ref/i18n/fr.po @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Référence" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Référence" diff --git a/partner_deduplicate_by_ref/i18n/gl.po b/partner_deduplicate_by_ref/i18n/gl.po index f1274086f..08bd01bd5 100644 --- a/partner_deduplicate_by_ref/i18n/gl.po +++ b/partner_deduplicate_by_ref/i18n/gl.po @@ -20,11 +20,14 @@ msgstr "" "X-Generator: Weblate 3.4\n" #. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "Merge Partner Wizard" +msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref msgid "Reference" msgstr "Referencia" -#. module: partner_deduplicate_by_ref -#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" -msgstr "'base.partner.merge.automatic.wizard'" +#~ msgid "base.partner.merge.automatic.wizard" +#~ msgstr "'base.partner.merge.automatic.wizard'" diff --git a/partner_deduplicate_by_ref/i18n/hr.po b/partner_deduplicate_by_ref/i18n/hr.po index 9427a9686..69a9f0cec 100644 --- a/partner_deduplicate_by_ref/i18n/hr.po +++ b/partner_deduplicate_by_ref/i18n/hr.po @@ -19,12 +19,12 @@ 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: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Veza" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Veza" diff --git a/partner_deduplicate_by_ref/i18n/hu.po b/partner_deduplicate_by_ref/i18n/hu.po index f260e7e71..026f3ebe8 100644 --- a/partner_deduplicate_by_ref/i18n/hu.po +++ b/partner_deduplicate_by_ref/i18n/hu.po @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Hivatkozás" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Hivatkozás" diff --git a/partner_deduplicate_by_ref/i18n/it.po b/partner_deduplicate_by_ref/i18n/it.po index 6c031c175..b3ae1971b 100644 --- a/partner_deduplicate_by_ref/i18n/it.po +++ b/partner_deduplicate_by_ref/i18n/it.po @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Riferimento" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Riferimento" diff --git a/partner_deduplicate_by_ref/i18n/ja.po b/partner_deduplicate_by_ref/i18n/ja.po index fcbfa4e71..6115ce3f6 100644 --- a/partner_deduplicate_by_ref/i18n/ja.po +++ b/partner_deduplicate_by_ref/i18n/ja.po @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "参照" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "参照" diff --git a/partner_deduplicate_by_ref/i18n/lt.po b/partner_deduplicate_by_ref/i18n/lt.po index cfecff8b1..571a0d4ba 100644 --- a/partner_deduplicate_by_ref/i18n/lt.po +++ b/partner_deduplicate_by_ref/i18n/lt.po @@ -19,12 +19,12 @@ 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: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Numeris" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Numeris" diff --git a/partner_deduplicate_by_ref/i18n/lv.po b/partner_deduplicate_by_ref/i18n/lv.po index b1ad7d078..ccdb1a002 100644 --- a/partner_deduplicate_by_ref/i18n/lv.po +++ b/partner_deduplicate_by_ref/i18n/lv.po @@ -19,12 +19,12 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Atsauce" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Atsauce" diff --git a/partner_deduplicate_by_ref/i18n/mk.po b/partner_deduplicate_by_ref/i18n/mk.po index 9340ce4a8..44aaed23b 100644 --- a/partner_deduplicate_by_ref/i18n/mk.po +++ b/partner_deduplicate_by_ref/i18n/mk.po @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Референца" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Референца" diff --git a/partner_deduplicate_by_ref/i18n/mn.po b/partner_deduplicate_by_ref/i18n/mn.po index 38f0fb850..8d608f4e4 100644 --- a/partner_deduplicate_by_ref/i18n/mn.po +++ b/partner_deduplicate_by_ref/i18n/mn.po @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Код" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Код" diff --git a/partner_deduplicate_by_ref/i18n/nb.po b/partner_deduplicate_by_ref/i18n/nb.po index 78eb3da36..62455d8c5 100644 --- a/partner_deduplicate_by_ref/i18n/nb.po +++ b/partner_deduplicate_by_ref/i18n/nb.po @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Referanse" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Referanse" diff --git a/partner_deduplicate_by_ref/i18n/nl.po b/partner_deduplicate_by_ref/i18n/nl.po index 0467a6320..05449fb3f 100644 --- a/partner_deduplicate_by_ref/i18n/nl.po +++ b/partner_deduplicate_by_ref/i18n/nl.po @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Referentie" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Referentie" diff --git a/partner_deduplicate_by_ref/i18n/nl_BE.po b/partner_deduplicate_by_ref/i18n/nl_BE.po index bc1e336cb..17dd07797 100644 --- a/partner_deduplicate_by_ref/i18n/nl_BE.po +++ b/partner_deduplicate_by_ref/i18n/nl_BE.po @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Referentie" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Referentie" diff --git a/partner_deduplicate_by_ref/i18n/nl_NL.po b/partner_deduplicate_by_ref/i18n/nl_NL.po index 90fb2bdfa..1082a1edf 100644 --- a/partner_deduplicate_by_ref/i18n/nl_NL.po +++ b/partner_deduplicate_by_ref/i18n/nl_NL.po @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Referentie" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Referentie" diff --git a/partner_deduplicate_by_ref/i18n/partner_deduplicate_by_ref.pot b/partner_deduplicate_by_ref/i18n/partner_deduplicate_by_ref.pot index e452aa10a..af3bde3ea 100644 --- a/partner_deduplicate_by_ref/i18n/partner_deduplicate_by_ref.pot +++ b/partner_deduplicate_by_ref/i18n/partner_deduplicate_by_ref.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 11.0\n" +"Project-Id-Version: Odoo Server 12.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: <>\n" "Language-Team: \n" @@ -13,13 +13,13 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: partner_deduplicate_by_ref_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" +#. module: partner_deduplicate_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "Merge Partner Wizard" msgstr "" -#. module: partner_deduplicate_by_ref_ref -#: model:ir.model,name:partner_deduplicate_by_ref_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/pt.po b/partner_deduplicate_by_ref/i18n/pt.po index b4a97da51..434a50377 100644 --- a/partner_deduplicate_by_ref/i18n/pt.po +++ b/partner_deduplicate_by_ref/i18n/pt.po @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Referência" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Referência" diff --git a/partner_deduplicate_by_ref/i18n/pt_BR.po b/partner_deduplicate_by_ref/i18n/pt_BR.po index a4269823c..d8c02804d 100644 --- a/partner_deduplicate_by_ref/i18n/pt_BR.po +++ b/partner_deduplicate_by_ref/i18n/pt_BR.po @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Referência" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Referência" diff --git a/partner_deduplicate_by_ref/i18n/pt_PT.po b/partner_deduplicate_by_ref/i18n/pt_PT.po index e576ceb01..77d83b177 100644 --- a/partner_deduplicate_by_ref/i18n/pt_PT.po +++ b/partner_deduplicate_by_ref/i18n/pt_PT.po @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Referência" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Referência" diff --git a/partner_deduplicate_by_ref/i18n/ro.po b/partner_deduplicate_by_ref/i18n/ro.po index dbd8b03dd..9b813b8a9 100644 --- a/partner_deduplicate_by_ref/i18n/ro.po +++ b/partner_deduplicate_by_ref/i18n/ro.po @@ -19,12 +19,12 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" "2:1));\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Referință" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Referință" diff --git a/partner_deduplicate_by_ref/i18n/ru.po b/partner_deduplicate_by_ref/i18n/ru.po index 3f4ba2823..256614a69 100644 --- a/partner_deduplicate_by_ref/i18n/ru.po +++ b/partner_deduplicate_by_ref/i18n/ru.po @@ -20,12 +20,12 @@ msgstr "" "%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: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Ссылка" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Ссылка" diff --git a/partner_deduplicate_by_ref/i18n/sk.po b/partner_deduplicate_by_ref/i18n/sk.po index 89c710fad..1cd1e5f69 100644 --- a/partner_deduplicate_by_ref/i18n/sk.po +++ b/partner_deduplicate_by_ref/i18n/sk.po @@ -19,11 +19,14 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "Merge Partner Wizard" msgstr "" #. module: partner_deduplicate_by_ref -#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" -msgstr "base.partner.merge.automatic.wizard" +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "" + +#~ msgid "base.partner.merge.automatic.wizard" +#~ msgstr "base.partner.merge.automatic.wizard" diff --git a/partner_deduplicate_by_ref/i18n/sl.po b/partner_deduplicate_by_ref/i18n/sl.po index 769051638..99ba1c363 100644 --- a/partner_deduplicate_by_ref/i18n/sl.po +++ b/partner_deduplicate_by_ref/i18n/sl.po @@ -19,12 +19,12 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" "%100==4 ? 2 : 3);\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Sklic" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Sklic" diff --git a/partner_deduplicate_by_ref/i18n/sv.po b/partner_deduplicate_by_ref/i18n/sv.po index a44019e6f..0b40bbd9c 100644 --- a/partner_deduplicate_by_ref/i18n/sv.po +++ b/partner_deduplicate_by_ref/i18n/sv.po @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "Referens" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "Referens" diff --git a/partner_deduplicate_by_ref/i18n/th.po b/partner_deduplicate_by_ref/i18n/th.po index 5fbdd276b..cea273a7d 100644 --- a/partner_deduplicate_by_ref/i18n/th.po +++ b/partner_deduplicate_by_ref/i18n/th.po @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "อ้างถึง" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "อ้างถึง" diff --git a/partner_deduplicate_by_ref/i18n/tr.po b/partner_deduplicate_by_ref/i18n/tr.po index 891561090..6ea4ea6c6 100644 --- a/partner_deduplicate_by_ref/i18n/tr.po +++ b/partner_deduplicate_by_ref/i18n/tr.po @@ -20,11 +20,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "Merge Partner Wizard" +msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref msgid "Reference" msgstr "Referans" -#. module: partner_deduplicate_by_ref -#: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" -msgstr "base.partner.merge.automatic.wizard" +#~ msgid "base.partner.merge.automatic.wizard" +#~ msgstr "base.partner.merge.automatic.wizard" diff --git a/partner_deduplicate_by_ref/i18n/zh_CN.po b/partner_deduplicate_by_ref/i18n/zh_CN.po index aada648ae..1b16db153 100644 --- a/partner_deduplicate_by_ref/i18n/zh_CN.po +++ b/partner_deduplicate_by_ref/i18n/zh_CN.po @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "引用" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "引用" diff --git a/partner_deduplicate_by_ref/i18n/zh_TW.po b/partner_deduplicate_by_ref/i18n/zh_TW.po index d4ec804d4..dd2ad76d6 100644 --- a/partner_deduplicate_by_ref/i18n/zh_TW.po +++ b/partner_deduplicate_by_ref/i18n/zh_TW.po @@ -19,12 +19,12 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" -#. module: partner_deduplicate_by_ref -#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref -msgid "Reference" -msgstr "參考" - #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard -msgid "base.partner.merge.automatic.wizard" +msgid "Merge Partner Wizard" msgstr "" + +#. module: partner_deduplicate_by_ref +#: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref +msgid "Reference" +msgstr "參考" diff --git a/partner_deduplicate_by_ref/tests/test_crm_deduplicate_by_ref.py b/partner_deduplicate_by_ref/tests/test_partner_deduplicate_by_ref.py similarity index 97% rename from partner_deduplicate_by_ref/tests/test_crm_deduplicate_by_ref.py rename to partner_deduplicate_by_ref/tests/test_partner_deduplicate_by_ref.py index 769b5c2dc..dd069533c 100644 --- a/partner_deduplicate_by_ref/tests/test_crm_deduplicate_by_ref.py +++ b/partner_deduplicate_by_ref/tests/test_partner_deduplicate_by_ref.py @@ -7,7 +7,7 @@ from odoo.tools.safe_eval import safe_eval class TestDeduplicateByRef(common.TransactionCase): def setUp(self): - super(TestDeduplicateByRef, self).setUp() + super().setUp() self.partner_1 = self.env['res.partner'].create({ 'name': 'Partner 1', 'ref': '123456', diff --git a/partner_deduplicate_by_ref/wizards/partner_merge.py b/partner_deduplicate_by_ref/wizards/partner_merge.py index c930600a0..bfd12002a 100644 --- a/partner_deduplicate_by_ref/wizards/partner_merge.py +++ b/partner_deduplicate_by_ref/wizards/partner_merge.py @@ -14,7 +14,7 @@ class BasePartnerMergeAutomaticWizard(models.TransientModel): There's no better way to do it, as there are no hooks for adding this criteria regularly. """ - query = super(BasePartnerMergeAutomaticWizard, self)._generate_query( + query = super()._generate_query( fields, maximum_group=maximum_group) if 'ref' in fields: if 'WHERE' in query: diff --git a/partner_deduplicate_by_ref/wizards/partner_merge_view.xml b/partner_deduplicate_by_ref/wizards/partner_merge_view.xml index 73f1a1487..016c266cc 100644 --- a/partner_deduplicate_by_ref/wizards/partner_merge_view.xml +++ b/partner_deduplicate_by_ref/wizards/partner_merge_view.xml @@ -6,7 +6,7 @@ base.partner.merge.automatic.wizard - + From 30c5c72646b4d9db06f7d67c4d34e74e7ec24f84 Mon Sep 17 00:00:00 2001 From: Manuel Calero Date: Thu, 26 Mar 2020 13:40:19 +0100 Subject: [PATCH 07/13] [IMP] partner_deduplicate_by_ref: black, isort --- partner_deduplicate_by_ref/__manifest__.py | 11 ++---- .../tests/test_partner_deduplicate_by_ref.py | 35 ++++++++----------- .../wizards/partner_merge.py | 19 +++++----- .../wizards/partner_merge_view.xml | 16 ++++----- 4 files changed, 33 insertions(+), 48 deletions(-) diff --git a/partner_deduplicate_by_ref/__manifest__.py b/partner_deduplicate_by_ref/__manifest__.py index 1c5831c9f..8cca0bc8e 100644 --- a/partner_deduplicate_by_ref/__manifest__.py +++ b/partner_deduplicate_by_ref/__manifest__.py @@ -5,14 +5,9 @@ "version": "12.0.1.0.0", "category": "Tools", "website": "https://www.github.com/OCA/partner-contact", - "author": "Tecnativa, " - "Odoo Community Association (OCA)", + "author": "Tecnativa, " "Odoo Community Association (OCA)", "license": "AGPL-3", "installable": True, - "depends": [ - "partner_deduplicate_acl", - ], - "data": [ - 'wizards/partner_merge_view.xml', - ], + "depends": ["partner_deduplicate_acl",], + "data": ["wizards/partner_merge_view.xml",], } diff --git a/partner_deduplicate_by_ref/tests/test_partner_deduplicate_by_ref.py b/partner_deduplicate_by_ref/tests/test_partner_deduplicate_by_ref.py index dd069533c..961808765 100644 --- a/partner_deduplicate_by_ref/tests/test_partner_deduplicate_by_ref.py +++ b/partner_deduplicate_by_ref/tests/test_partner_deduplicate_by_ref.py @@ -8,42 +8,35 @@ from odoo.tools.safe_eval import safe_eval class TestDeduplicateByRef(common.TransactionCase): def setUp(self): super().setUp() - self.partner_1 = self.env['res.partner'].create({ - 'name': 'Partner 1', - 'ref': '123456', - 'email': 'test@deduplicate.com', - }) - self.partner_2 = self.env['res.partner'].create({ - 'name': 'Partner 2', - 'ref': '123456', - 'email': 'test@deduplicate.com', - }) + self.partner_1 = self.env["res.partner"].create( + {"name": "Partner 1", "ref": "123456", "email": "test@deduplicate.com",} + ) + self.partner_2 = self.env["res.partner"].create( + {"name": "Partner 2", "ref": "123456", "email": "test@deduplicate.com",} + ) def test_deduplicate_by_ref(self): - wizard = self.env['base.partner.merge.automatic.wizard'].create({ - 'group_by_ref': True, - }) + wizard = self.env["base.partner.merge.automatic.wizard"].create( + {"group_by_ref": True,} + ) wizard.action_start_manual_process() found_match = False for line in wizard.line_ids: match_ids = safe_eval(line.aggr_ids) - if (self.partner_1.id in match_ids and - self.partner_2.id in match_ids): + if self.partner_1.id in match_ids and self.partner_2.id in match_ids: found_match = True break self.assertTrue(found_match) def test_deduplicate_by_ref_and_is_company(self): - wizard = self.env['base.partner.merge.automatic.wizard'].create({ - 'group_by_ref': True, - 'group_by_email': True, - }) + wizard = self.env["base.partner.merge.automatic.wizard"].create( + {"group_by_ref": True, "group_by_email": True,} + ) wizard.action_start_manual_process() found_match = False for line in wizard.line_ids: match_ids = safe_eval(line.aggr_ids) - if (self.partner_1.id in match_ids and - self.partner_2.id in match_ids): + if self.partner_1.id in match_ids and self.partner_2.id in match_ids: found_match = True break self.assertTrue(found_match) diff --git a/partner_deduplicate_by_ref/wizards/partner_merge.py b/partner_deduplicate_by_ref/wizards/partner_merge.py index bfd12002a..500c58a81 100644 --- a/partner_deduplicate_by_ref/wizards/partner_merge.py +++ b/partner_deduplicate_by_ref/wizards/partner_merge.py @@ -7,22 +7,19 @@ from openerp import fields, models class BasePartnerMergeAutomaticWizard(models.TransientModel): _inherit = "base.partner.merge.automatic.wizard" - group_by_ref = fields.Boolean('Reference') + group_by_ref = fields.Boolean("Reference") def _generate_query(self, fields, maximum_group=100): """Inject the additional criteria 'ref IS NOT NULL' when needed. There's no better way to do it, as there are no hooks for adding this criteria regularly. """ - query = super()._generate_query( - fields, maximum_group=maximum_group) - if 'ref' in fields: - if 'WHERE' in query: - index = query.find('WHERE') - query = (query[:index + 6] + "ref IS NOT NULL AND " + - query[index + 6:]) + query = super()._generate_query(fields, maximum_group=maximum_group) + if "ref" in fields: + if "WHERE" in query: + index = query.find("WHERE") + query = query[: index + 6] + "ref IS NOT NULL AND " + query[index + 6 :] else: - index = query.find(' GROUP BY') - query = (query[:index] + " WHERE ref IS NOT NULL" + - query[index:]) + index = query.find(" GROUP BY") + query = query[:index] + " WHERE ref IS NOT NULL" + query[index:] return query diff --git a/partner_deduplicate_by_ref/wizards/partner_merge_view.xml b/partner_deduplicate_by_ref/wizards/partner_merge_view.xml index 016c266cc..6a3d06780 100644 --- a/partner_deduplicate_by_ref/wizards/partner_merge_view.xml +++ b/partner_deduplicate_by_ref/wizards/partner_merge_view.xml @@ -1,20 +1,20 @@ - + - - base.partner.merge.automatic.wizard - + - + - - + + - From 3a8d104b2f12a3ea67e6708a7c12c9ec14bbea1e Mon Sep 17 00:00:00 2001 From: Manuel Calero Date: Thu, 26 Mar 2020 13:42:58 +0100 Subject: [PATCH 08/13] [MIG] partner_deduplicate_by_ref: Migration to 13.0 --- partner_deduplicate_by_ref/README.rst | 15 ++++++++------- partner_deduplicate_by_ref/__manifest__.py | 9 +++++---- partner_deduplicate_by_ref/i18n/es.po | 4 ++-- .../readme/CONTRIBUTORS.rst | 5 +++-- partner_deduplicate_by_ref/readme/USAGE.rst | 2 +- .../static/description/index.html | 11 ++++++----- .../tests/test_partner_deduplicate_by_ref.py | 9 +++++---- .../wizards/partner_merge.py | 2 +- 8 files changed, 31 insertions(+), 26 deletions(-) diff --git a/partner_deduplicate_by_ref/README.rst b/partner_deduplicate_by_ref/README.rst index bffd5b4b4..3c77b95fd 100644 --- a/partner_deduplicate_by_ref/README.rst +++ b/partner_deduplicate_by_ref/README.rst @@ -14,13 +14,13 @@ Deduplicate Contacts by reference :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fpartner--contact-lightgray.png?logo=github - :target: https://github.com/OCA/partner-contact/tree/12.0/partner_deduplicate_by_ref + :target: https://github.com/OCA/partner-contact/tree/13.0/partner_deduplicate_by_ref :alt: OCA/partner-contact .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/partner-contact-12-0/partner-contact-12-0-partner_deduplicate_by_ref + :target: https://translation.odoo-community.org/projects/partner-contact-13-0/partner-contact-13-0-partner_deduplicate_by_ref :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/134/12.0 + :target: https://runbot.odoo-community.org/runbot/134/13.0 :alt: Try me on Runbot |badge1| |badge2| |badge3| |badge4| |badge5| @@ -49,7 +49,7 @@ 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 `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -66,8 +66,9 @@ Contributors * `Tecnativa `_: - * Pedro Baeza - * David Vidal + * Pedro M. Baeza + * David Vidal + * Manuel Calero Maintainers ~~~~~~~~~~~ @@ -82,6 +83,6 @@ 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. -This module is part of the `OCA/partner-contact `_ project on GitHub. +This module is part of the `OCA/partner-contact `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/partner_deduplicate_by_ref/__manifest__.py b/partner_deduplicate_by_ref/__manifest__.py index 8cca0bc8e..d1701fef3 100644 --- a/partner_deduplicate_by_ref/__manifest__.py +++ b/partner_deduplicate_by_ref/__manifest__.py @@ -1,13 +1,14 @@ # Copyright 2017 Pedro M. Baeza +# Copyright 2020 Manuel Calero - Tecnativa # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "Deduplicate Contacts by reference", - "version": "12.0.1.0.0", + "version": "13.0.1.0.0", "category": "Tools", "website": "https://www.github.com/OCA/partner-contact", - "author": "Tecnativa, " "Odoo Community Association (OCA)", + "author": "Tecnativa, Odoo Community Association (OCA)", "license": "AGPL-3", "installable": True, - "depends": ["partner_deduplicate_acl",], - "data": ["wizards/partner_merge_view.xml",], + "depends": ["partner_deduplicate_acl"], + "data": ["wizards/partner_merge_view.xml"], } diff --git a/partner_deduplicate_by_ref/i18n/es.po b/partner_deduplicate_by_ref/i18n/es.po index 1b3d2acc7..43a68f29a 100644 --- a/partner_deduplicate_by_ref/i18n/es.po +++ b/partner_deduplicate_by_ref/i18n/es.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: Odoo Server 13.0c\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-03-01 21:29+0000\n" "PO-Revision-Date: 2017-03-01 21:29+0000\n" @@ -19,7 +19,7 @@ msgstr "" #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "Merge Partner Wizard" -msgstr "" +msgstr "Asistente para fusionar contactos" #. module: partner_deduplicate_by_ref #: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref diff --git a/partner_deduplicate_by_ref/readme/CONTRIBUTORS.rst b/partner_deduplicate_by_ref/readme/CONTRIBUTORS.rst index 758e01f87..6e4792475 100644 --- a/partner_deduplicate_by_ref/readme/CONTRIBUTORS.rst +++ b/partner_deduplicate_by_ref/readme/CONTRIBUTORS.rst @@ -1,4 +1,5 @@ * `Tecnativa `_: - * Pedro Baeza - * David Vidal + * Pedro M. Baeza + * David Vidal + * Manuel Calero diff --git a/partner_deduplicate_by_ref/readme/USAGE.rst b/partner_deduplicate_by_ref/readme/USAGE.rst index 803988f0e..08514ecf7 100644 --- a/partner_deduplicate_by_ref/readme/USAGE.rst +++ b/partner_deduplicate_by_ref/readme/USAGE.rst @@ -1,6 +1,6 @@ To use this module, you need to: -#. Go to *Sales > Tools > Deduplicate Contacts*. +#. Go to *Contacts > Tools > Deduplicate Contacts*. #. Mark "Reference" in the section "Search duplicates based on duplicated data in". #. This criteria will be used for deduplicating. diff --git a/partner_deduplicate_by_ref/static/description/index.html b/partner_deduplicate_by_ref/static/description/index.html index 20cffd962..c46e05fbd 100644 --- a/partner_deduplicate_by_ref/static/description/index.html +++ b/partner_deduplicate_by_ref/static/description/index.html @@ -367,7 +367,7 @@ ul.auto-toc { !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

Beta License: AGPL-3 OCA/partner-contact Translate me on Weblate Try me on Runbot

+

Beta License: AGPL-3 OCA/partner-contact Translate me on Weblate Try me on Runbot

This module extends the criteria to match duplicated contacts using the field reference.

Table of contents

@@ -398,7 +398,7 @@ in”.

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.

+feedback.

Do not contact contributors directly about support or help with technical issues.

@@ -413,8 +413,9 @@ If you spotted it first, help us smashing it by providing a detailed and welcome

Contributors

@@ -426,7 +427,7 @@ If you spotted it first, help us smashing it by providing a detailed and welcome

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.

-

This module is part of the OCA/partner-contact project on GitHub.

+

This module is part of the OCA/partner-contact project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

diff --git a/partner_deduplicate_by_ref/tests/test_partner_deduplicate_by_ref.py b/partner_deduplicate_by_ref/tests/test_partner_deduplicate_by_ref.py index 961808765..7257ac6ad 100644 --- a/partner_deduplicate_by_ref/tests/test_partner_deduplicate_by_ref.py +++ b/partner_deduplicate_by_ref/tests/test_partner_deduplicate_by_ref.py @@ -1,4 +1,5 @@ # Copyright 2017 Pedro M. Baeza +# Copyright 2020 Manuel Calero - Tecnativa # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from odoo.tests import common @@ -9,15 +10,15 @@ class TestDeduplicateByRef(common.TransactionCase): def setUp(self): super().setUp() self.partner_1 = self.env["res.partner"].create( - {"name": "Partner 1", "ref": "123456", "email": "test@deduplicate.com",} + {"name": "Partner 1", "ref": "123456", "email": "test@deduplicate.com"} ) self.partner_2 = self.env["res.partner"].create( - {"name": "Partner 2", "ref": "123456", "email": "test@deduplicate.com",} + {"name": "Partner 2", "ref": "123456", "email": "test@deduplicate.com"} ) def test_deduplicate_by_ref(self): wizard = self.env["base.partner.merge.automatic.wizard"].create( - {"group_by_ref": True,} + {"group_by_ref": True} ) wizard.action_start_manual_process() found_match = False @@ -30,7 +31,7 @@ class TestDeduplicateByRef(common.TransactionCase): def test_deduplicate_by_ref_and_is_company(self): wizard = self.env["base.partner.merge.automatic.wizard"].create( - {"group_by_ref": True, "group_by_email": True,} + {"group_by_ref": True, "group_by_email": True} ) wizard.action_start_manual_process() found_match = False diff --git a/partner_deduplicate_by_ref/wizards/partner_merge.py b/partner_deduplicate_by_ref/wizards/partner_merge.py index 500c58a81..fc7d9c961 100644 --- a/partner_deduplicate_by_ref/wizards/partner_merge.py +++ b/partner_deduplicate_by_ref/wizards/partner_merge.py @@ -1,7 +1,7 @@ # Copyright 2016 Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import fields, models +from odoo import fields, models class BasePartnerMergeAutomaticWizard(models.TransientModel): From 9669ead69ee0503febd18adbace141e8fad147ae Mon Sep 17 00:00:00 2001 From: oca-travis Date: Tue, 21 Apr 2020 07:57:49 +0000 Subject: [PATCH 09/13] [UPD] Update partner_deduplicate_by_ref.pot --- .../i18n/partner_deduplicate_by_ref.pot | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/partner_deduplicate_by_ref/i18n/partner_deduplicate_by_ref.pot b/partner_deduplicate_by_ref/i18n/partner_deduplicate_by_ref.pot index af3bde3ea..bbd5c4d36 100644 --- a/partner_deduplicate_by_ref/i18n/partner_deduplicate_by_ref.pot +++ b/partner_deduplicate_by_ref/i18n/partner_deduplicate_by_ref.pot @@ -1,12 +1,12 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * partner_deduplicate_by_ref +# * partner_deduplicate_by_ref # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 12.0\n" +"Project-Id-Version: Odoo Server 13.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: <>\n" +"Last-Translator: \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,4 +22,3 @@ msgstr "" #: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref msgid "Reference" msgstr "" - From de8c51b9b159af67042279641db88da3654679d5 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Tue, 21 Apr 2020 08:14:39 +0000 Subject: [PATCH 10/13] [UPD] README.rst --- partner_deduplicate_by_ref/README.rst | 2 +- partner_deduplicate_by_ref/static/description/index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/partner_deduplicate_by_ref/README.rst b/partner_deduplicate_by_ref/README.rst index 3c77b95fd..0cef6f09a 100644 --- a/partner_deduplicate_by_ref/README.rst +++ b/partner_deduplicate_by_ref/README.rst @@ -38,7 +38,7 @@ Usage To use this module, you need to: -#. Go to *Sales > Tools > Deduplicate Contacts*. +#. Go to *Contacts > Tools > Deduplicate Contacts*. #. Mark "Reference" in the section "Search duplicates based on duplicated data in". #. This criteria will be used for deduplicating. diff --git a/partner_deduplicate_by_ref/static/description/index.html b/partner_deduplicate_by_ref/static/description/index.html index c46e05fbd..98a0d69a4 100644 --- a/partner_deduplicate_by_ref/static/description/index.html +++ b/partner_deduplicate_by_ref/static/description/index.html @@ -387,7 +387,7 @@ reference.

Usage

To use this module, you need to:

    -
  1. Go to Sales > Tools > Deduplicate Contacts.
  2. +
  3. Go to Contacts > Tools > Deduplicate Contacts.
  4. Mark “Reference” in the section “Search duplicates based on duplicated data in”.
  5. This criteria will be used for deduplicating.
  6. From f7d9fd5da2fcb6ff8ad57ee35e39cee19af8037b Mon Sep 17 00:00:00 2001 From: Rodrigo Macedo Date: Wed, 12 Aug 2020 16:39:18 +0000 Subject: [PATCH 11/13] Translated using Weblate (Portuguese (Brazil)) Currently translated at 100.0% (2 of 2 strings) Translation: partner-contact-13.0/partner-contact-13.0-partner_deduplicate_by_ref Translate-URL: https://translation.odoo-community.org/projects/partner-contact-13-0/partner-contact-13-0-partner_deduplicate_by_ref/pt_BR/ --- partner_deduplicate_by_ref/i18n/pt_BR.po | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/partner_deduplicate_by_ref/i18n/pt_BR.po b/partner_deduplicate_by_ref/i18n/pt_BR.po index d8c02804d..c7cfcab9d 100644 --- a/partner_deduplicate_by_ref/i18n/pt_BR.po +++ b/partner_deduplicate_by_ref/i18n/pt_BR.po @@ -9,20 +9,21 @@ msgstr "" "Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-03-16 03:45+0000\n" -"PO-Revision-Date: 2017-03-16 03:45+0000\n" -"Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" -"teams/23907/pt_BR/)\n" +"PO-Revision-Date: 2020-08-12 18:59+0000\n" +"Last-Translator: Rodrigo Macedo \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" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.10\n" #. module: partner_deduplicate_by_ref #: model:ir.model,name:partner_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "Merge Partner Wizard" -msgstr "" +msgstr "Assistente de fusão de parceiro" #. module: partner_deduplicate_by_ref #: model:ir.model.fields,field_description:partner_deduplicate_by_ref.field_base_partner_merge_automatic_wizard__group_by_ref From fdf1b3a6ca47216d5a1a9a5b8adee35c8e55af03 Mon Sep 17 00:00:00 2001 From: mariadforgeflow Date: Wed, 22 Dec 2021 10:32:38 +0100 Subject: [PATCH 12/13] [IMP] partner_deduplicate_by_ref: black, isort, prettier --- partner_deduplicate_by_ref/__manifest__.py | 2 +- .../odoo/addons/partner_deduplicate_by_ref | 1 + setup/partner_deduplicate_by_ref/setup.py | 6 ++++++ 3 files changed, 8 insertions(+), 1 deletion(-) create mode 120000 setup/partner_deduplicate_by_ref/odoo/addons/partner_deduplicate_by_ref create mode 100644 setup/partner_deduplicate_by_ref/setup.py diff --git a/partner_deduplicate_by_ref/__manifest__.py b/partner_deduplicate_by_ref/__manifest__.py index d1701fef3..001aa8622 100644 --- a/partner_deduplicate_by_ref/__manifest__.py +++ b/partner_deduplicate_by_ref/__manifest__.py @@ -5,7 +5,7 @@ "name": "Deduplicate Contacts by reference", "version": "13.0.1.0.0", "category": "Tools", - "website": "https://www.github.com/OCA/partner-contact", + "website": "https://github.com/OCA/partner-contact", "author": "Tecnativa, Odoo Community Association (OCA)", "license": "AGPL-3", "installable": True, diff --git a/setup/partner_deduplicate_by_ref/odoo/addons/partner_deduplicate_by_ref b/setup/partner_deduplicate_by_ref/odoo/addons/partner_deduplicate_by_ref new file mode 120000 index 000000000..297774567 --- /dev/null +++ b/setup/partner_deduplicate_by_ref/odoo/addons/partner_deduplicate_by_ref @@ -0,0 +1 @@ +../../../../partner_deduplicate_by_ref \ No newline at end of file diff --git a/setup/partner_deduplicate_by_ref/setup.py b/setup/partner_deduplicate_by_ref/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/partner_deduplicate_by_ref/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) From a7a27e996f87c860d257291a5b97f210ae5fd6d5 Mon Sep 17 00:00:00 2001 From: mariadforgeflow Date: Wed, 22 Dec 2021 10:52:47 +0100 Subject: [PATCH 13/13] [MIG] partner_deduplicate_by_ref: Migration to 14.0 --- partner_deduplicate_by_ref/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/partner_deduplicate_by_ref/__manifest__.py b/partner_deduplicate_by_ref/__manifest__.py index 001aa8622..fa286abfe 100644 --- a/partner_deduplicate_by_ref/__manifest__.py +++ b/partner_deduplicate_by_ref/__manifest__.py @@ -3,7 +3,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "Deduplicate Contacts by reference", - "version": "13.0.1.0.0", + "version": "14.0.1.0.0", "category": "Tools", "website": "https://github.com/OCA/partner-contact", "author": "Tecnativa, Odoo Community Association (OCA)",