From 05221788298c9d6f19712f49eb25de917db06f80 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Wed, 25 Nov 2015 10:56:03 +0100 Subject: [PATCH 1/6] [ADD] mail_follower_custom_notification --- mail_follower_custom_notification/README.rst | 66 +++++++++++ mail_follower_custom_notification/__init__.py | 5 + .../__openerp__.py | 27 +++++ .../mail_follower_custom_notification.png | Bin 0 -> 8816 bytes .../models/__init__.py | 8 ++ .../models/mail_followers.py | 42 +++++++ .../models/mail_message.py | 25 ++++ .../models/mail_message_subtype.py | 22 ++++ .../models/mail_notification.py | 33 ++++++ .../models/mail_thread.py | 108 ++++++++++++++++++ .../static/description/icon.png | Bin 0 -> 9455 bytes .../css/mail_follower_custom_notification.css | 5 + .../js/mail_follower_custom_notification.js | 79 +++++++++++++ .../xml/mail_follower_custom_notification.xml | 38 ++++++ .../tests/__init__.py | 4 + .../test_mail_follower_custom_notification.py | 75 ++++++++++++ .../views/mail_message_subtype.xml | 18 +++ .../views/templates.xml | 11 ++ .../wizards/__init__.py | 4 + ...ail_subtype_assign_custom_notifications.py | 46 ++++++++ ...il_subtype_assign_custom_notifications.xml | 30 +++++ 21 files changed, 646 insertions(+) create mode 100644 mail_follower_custom_notification/README.rst create mode 100644 mail_follower_custom_notification/__init__.py create mode 100644 mail_follower_custom_notification/__openerp__.py create mode 100644 mail_follower_custom_notification/images/mail_follower_custom_notification.png create mode 100644 mail_follower_custom_notification/models/__init__.py create mode 100644 mail_follower_custom_notification/models/mail_followers.py create mode 100644 mail_follower_custom_notification/models/mail_message.py create mode 100644 mail_follower_custom_notification/models/mail_message_subtype.py create mode 100644 mail_follower_custom_notification/models/mail_notification.py create mode 100644 mail_follower_custom_notification/models/mail_thread.py create mode 100644 mail_follower_custom_notification/static/description/icon.png create mode 100644 mail_follower_custom_notification/static/src/css/mail_follower_custom_notification.css create mode 100644 mail_follower_custom_notification/static/src/js/mail_follower_custom_notification.js create mode 100644 mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml create mode 100644 mail_follower_custom_notification/tests/__init__.py create mode 100644 mail_follower_custom_notification/tests/test_mail_follower_custom_notification.py create mode 100644 mail_follower_custom_notification/views/mail_message_subtype.xml create mode 100644 mail_follower_custom_notification/views/templates.xml create mode 100644 mail_follower_custom_notification/wizards/__init__.py create mode 100644 mail_follower_custom_notification/wizards/mail_subtype_assign_custom_notifications.py create mode 100644 mail_follower_custom_notification/wizards/mail_subtype_assign_custom_notifications.xml diff --git a/mail_follower_custom_notification/README.rst b/mail_follower_custom_notification/README.rst new file mode 100644 index 00000000..406f160d --- /dev/null +++ b/mail_follower_custom_notification/README.rst @@ -0,0 +1,66 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License: AGPL-3 + +========================================== +Custom notification settings for followers +========================================== + +In standard Odoo, receiving mail notifications is an all or nothing affair. +This module allows you users to decide per followed record if they want to +receive emails or not. Further, they can choose to receive notification about +their own messages. + +You can also set defaults for this settings on the subtype in question. + +Configuration +============= + +When followers open their subscriptions, they will be offered the choice to +override mail settings and to force being notified about their own messages. + +You can add defaults per message sub type for this settings in Settings / +Technical / Email / Subtypes. Here, you also have the opportunity to apply +those defaults to existing subscriptions. Note that this overrides all +customizations your users already have done. + +Usage +===== + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/205/8.0 + +For further information, please visit: + +* https://www.odoo.com/forum/help-1 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed feedback +`here `_. + +Credits +======= + +Contributors +------------ + +* Holger Brunn + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit http://odoo-community.org. diff --git a/mail_follower_custom_notification/__init__.py b/mail_follower_custom_notification/__init__.py new file mode 100644 index 00000000..968fe660 --- /dev/null +++ b/mail_follower_custom_notification/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# © 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import models +from . import wizards diff --git a/mail_follower_custom_notification/__openerp__.py b/mail_follower_custom_notification/__openerp__.py new file mode 100644 index 00000000..e15b28ba --- /dev/null +++ b/mail_follower_custom_notification/__openerp__.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +# © 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + "name": "Custom notification settings for followers", + "version": "8.0.1.0.0", + "author": "Therp BV,Odoo Community Association (OCA)", + "license": "AGPL-3", + "category": "Social Network", + "summary": "Let followers choose if they want to receive email " + "notifications for a given subscription", + "depends": [ + 'mail', + ], + "data": [ + "wizards/mail_subtype_assign_custom_notifications.xml", + "views/mail_message_subtype.xml", + 'views/templates.xml', + ], + "qweb": [ + 'static/src/xml/mail_follower_custom_notification.xml', + ], + "images": [ + 'images/mail_follower_custom_notification.png', + ], + "installable": True, +} diff --git a/mail_follower_custom_notification/images/mail_follower_custom_notification.png b/mail_follower_custom_notification/images/mail_follower_custom_notification.png new file mode 100644 index 0000000000000000000000000000000000000000..3c63b9a769ec4810e34457cfedd1540e88c9c258 GIT binary patch literal 8816 zcmb_?WmJ?=*zF4j2uOzvQqm1FN;60|NQi)hFw!B?EhP=o4I&NFNQZ#L&>oVWc^*xn!q~GYjYI0T3M6$(a?Ot`jwUDmn@E~*GNr#xNo;flt?$M zBF5vEKiNb)NY3W>)}`ykQJsLm>CEZe=L!3rrn*4JIC(T$fBbty(n63wKJ1h`=7~SP zW}+N{co1t}HYTkkiHVv&{#Pts7IDm%0ZGKP{`qZ+A^74NZyBX9X$$|CU(Z2Ipx3x+Xp~MZi5Nt(_xw%U0RNPOWU+uLc9+vPvjiT{~e|^VDg85S_;CozLKPBbk zOjRqSq;sMT$s_*W)>iqN{p-wBgn`?w7n}CZ=5nMBHzw_|d5oNpAU_MLPDDgl`#~UG ze(m%dyPEUmgw=D=+ti&l_r|)c2MC3n#fGlz0exYYAB@vPk14J>l<8pg?FrHqo^^!3t-!gQb23%t3|)?h{E$28a# zclaNpl+$GK#bKG|f|uR>DaT|3^XL#+0;<#+>vNo`Nh}G;7~03s&7}!_?2ohq%?~*n zdo5U53oXspNwGSlr9YjhbC9wp3K)0N2V6WwN)-^>%;j^jc>b{2jgxQf=|S!YV|d?^ zySWiTV$6^EA9%4x1alilI__}GcSTHg3MEph-r-Zu}R~tW+p{`DI z`5j(E!{x(=4`*h!;yF&apMLEfFD$m^V$L`B_}#JiVBNvf{WACkcADvchNCcst<-gU z(M5Ou&3ghj6SEnn;@W9NQV)+?OXA&CL{?$p7z!nwwJZ1H#kPv}az(;p+?Eaf&FjK( ztyivt83?_Oka=%|zWPyS_sOX#`}KKe3(F}!YuxPNA3ww*V-H=v_JvhMM`Kj`5eD1{auHX|c8U@z}i*8}(oFpDzNn zI--Uz+NI29hR-Abhy#;;&VRc}^0I+xwsj{j=M zW+%Og>-=(%hGF8vjvT$(d9-d$3ro1txU4s#<*&`*KpNN9ophq!)+NX1CxYDS>$FNWqOm~IIMm%iFy|(Wffc{~4&|{kzE4pZ+gA58sr0W@Wo2R*&iH=CCf-j^4v0|QmAp3u-l#+R>41;_-4`=vQAxrtHLQh98*Ox%c;m6^H}B_%zL=f%TR1^iE^ zJZmw-WniXiLJdr_G4Zz>=~ds4sg%wbgc`o)NR>}NAyw!W_ihne;2FJSN%p_zJy$P$Unw68D0FHVWr`Bq1NYR^dl(M8~{;ulO z$`Wb?+b@mJ_QA}FG$u<_+F1-!lrYuTo(flqcDjnaY1>HRIT%m!eY$CE4n?;QaivX7 zWYERMS%%laqG{k$<;N}ZJ??I`$c6LOG#s2Gos6*2I2bG8ES3H<#2f$4XW_gB4Gola z(YorR@k!cq6TM_u9Rgaraq&0zAwX#HoM}oHI@7|Ub|)EI4cFJcD=Rx0-X>8I!F`d4 zSPy&ntGpgPUkM?^WWKm)ILm4Uxr{=zH66*z6=|VvD!}72+|miBPc?kFBKIz z6;H7tUq3yY*^A=RNIXc5Wys7B;rK+Z)pU@w+m?a;w^X(8yO56dz%=M{d@=@vfmeKT zl=|xBut&n!ubCOorEUgoC6!WhD*IfEdKuyZ^1eS!Lq@vI&B`^s)S@20wY4YJ&b1j? z;5FPjjla{_-TRV~ott2g+HDjD^y(Gk4YmpC(ggHl*x%s9>nK_kGW@mFhu?d|%FN#vsw6D($# z_EJ*n2Gr0;S-4o%Z* z<7u7gR8%o?&UQ(S$aSkplFW|KS*fo+4c{2cT?{+Js1{gwu< z2wc$&#FP)sU7Y*vQ&Uspbq@toCAh7%M!{^hd`ynqd1KP^|HSUmY=Fhh3THB^bB(wG5(fa7- zc(HD!$-_A7hht|h6T`!AZEYjXiNgsL8As>lnzOPb0? zNJ+g8`}tT{STZ~gf^m&U;=;mk(rUC-RlihShmvv0(??gD4ysM=sD?*6dx%nxGQ-pp z6?1I{pP8r1f#E`ibB(SJf+GC?+Ut{eF&bGpxjL_F!HhvXEG#$B^+Oz-pGNzInnmpF z>|e98BB>EJW@cwQ4ZCixu4qt7e?(}gapmOZM5$Ii$7H>b)7HPw%-}j!R#sYCTJrK( zF{s$@qrZPACMLet)MSW~otc?&+WO7&u7?<+@f0Lsk(07|62;8IvfdNNrd9w4;}8@~ zR?h2ne)R5I<~(AlsI-~YKzT||LE-Xv!l3R=NlJ>YqGDKDTH46RKnst2LyfzU_^`LI z$Q|$&n&IwT6XI%5LP;rHgEg)xE;>3oDXH#VZ#=mE*4EbH>foJ^&CR0Fdw$?d&jy5c z%OncYS~V{=KuaW84)XM<1=%;DoA)`TSY+)hnm9 zq0H;c(}ehVMtb`EIxbct1r?RSzP_-KkdTOoW{>j`YcNv9J^XNC*g!19xZ*e&q?)4(jghy#slB zdy9xP`TP5)rlvY>jz@j}X;j|Qf=E-w_}JMgt>$uhVh!yb9>&P$%zIsKtLhSmc6fPt zA!i2$2LAjp3~*|`I#8&fA;v=cQdlStR1r4)-Esn=p`rOGoy9;;zqGPqGh45jWfGj4 z`WV8*!GS+}*7SbC*9ol%Q`&qFGm{|Kj`4d{mB;P%X@}81m^YVxV`4(WX+PimV<9IT zAQBf4&C{pRzpQL+6AXqypxJS7a6aF|4ZH(MOG_V6>gFIfS*`QFePie0DK97pjt%NC zQgXI_o%(ZpcDC3&mB=O&gCx&CKIJjOOb`B02%&vQXTA6?P;NR1kyO&d1 zx(i~lwgxWE)SLMH`Ew2qj@5xQI=$??r#w9C>+1{qE>EIl8@Pi&PZg6}bTSbDMA z^7AqA@NWP3;c46z)>xFdcW7m4Z9QA|)(^P&ddJP~U~C_;Kg-LGM{6(1$jG3zt*x1Q z$D+{C-VhSDp59)R&i3|pY12t^QPJk7hZJt^?#mQg>+9OJ?=!_{KF963H2(SXCq11i z$MX7URE3t77Jxz_fs=!s{c+~3bUi*9S>E5}_e1OaJF#Cmtg@S?tFxB+*bRHg_!W6gb)Oit$9cg=?*8jm+8T8>5(m{iggm6dU^u|tD`XqMTuN`6gD%s08$ByU^&E?Zbm zFu3VL+z^nF@!8G^6aH33!y7wOZ55urxtM4fNE525t^GYXxVyK|4vFQB0s@eHLhE{1 zIVfuH=m=2Yc{=NiYQ6jM4hC**eSLgvY+ss?mXl~QHy@ut1rk+fzlvl469Dsm#>b~s zKYnw48A&DLcDgfL12X1Ms~=s}v@DspgoGT^eMnqfT-E^TB1bS10JuJLuHN-9H-seb zmQTAbGE&9ey+MQZUFBqRb8|&cwkm7fKn5bC--NAdWqFxFmyMfSbzwFTkD61vLK0vx zXXNI_%fMhhH#awPTn7w=%)nzG%pz}F5EfdZ-z2X#GghP(_e%BJw1DO6J2T8velW(# z*;!Xd2mQy-V4{ZldgSu>_&72%FRu##>@5dw;Ns?{LOe!BX@;Ob)kJJ$egoS&sbnG`>K|)Hkt633PB|8TP==)o7 zF?f`fXE1}qv=jO5o}~0MwzPdNudW6tq1wQG2L%NOPd2(%g46?u7)%w&GAcG7&7~Ce zc+DD@j_~%HDA6MxT*->!L(h|Ww^!h17KVj|B`+tp@S!d^IM~O>$B(UXuMN8^l6rT0 zyT7mRO}zsP3(kWF050@a#b?)RaI%&Ue=ETCIo2-w_oWS8XCI2 zT1Burp@qxTi>S!Qh;Em-`2PY1VRdOK`=~fNn$XsEmmoqWps%k_Jx@8xfHw=lK6|76 z*H!HZ;|Xb~0;p>L{_Vblk3T}vm%WDfv%kN;r^jM2T?7pcEsGM{E!PluhKN=}kd)A{@qbso#;4Y?@2Zh@`PYA93|-EsRrNbwi0l3 zbmXU_f?>ax7KZDCa(m+hcqN{DGN=EC`#LTN7MPQGW?5BLRb{39p1SDq(GjC^>e}{p z@rp+kX1G$K+;ABi3rps(+0D(3{Ct!5t(Tk}%J&|&G(W4qgY4q4=j;Dy`ugct3S&h` zB(i&>djjEkaRi78ta+9>j^ASDjja7SO_Ys@+mYEyUy@outfG|6je(Zd>97p-*w|Qq z^0T6>EaNI;$sj_G!59-HGT%Vk3q2K>mdScDF8!s$a})|S)$v7_Utw?$P`Y@gDh+=3 z&HUKd@tBqY=z&tuA-}wwz&kRsQ^;ESRFSa~#J;)trfxMohKnp%Qcg}ztK?0Td`@d? z>+tZfgP>kBAM55R${8~7Jl3S9&Pd_2O&4?wxq`a``2fw_-27m507gMUL_}0nSV&J8 z4Du?1QfMhpyuo2zO-BcoRO@lDgp#-?(e{z)mJkQ`)7=8Myrbh|KAV}fjSUzXS=ZwJ zbF1GpQL+Q60>(BrUQ69kzP`S^rUR0al3>jwWn`!kUNb{Od$Z2-#|H<|wy)SpOLe~Y zw6z&^MNrOro>GQOhlYo5Z)||%dHXb};sV`=hJj)E;&{_T6v52A2DBE=&7EITqAV}} zq|&ptwifh>eHT4|5CbDHGvc+buC9lNa7zDNt(~!(o13@yEpQw8rKP1S)sG)PhF|*; z1WTg(h&BK7QWln$cRmgcsq*sjM#*NIr(lM&OdZL&3eN#a;nZ);R|Pbmo|HsRLPA1G z>3M#z4E&?-n_W#>2~+}?P8B8;5*mv3vEPL6`SbgC?=rvfm6ercW@8g_SQ`S&3etdx zkZ@`K85|xK5do4@Sx)XHL7(a;EH!f>B1XkTUQ=Axk>%M2=XHnrx;lZ-4)l+Og{*vh zdz5%0FK!=ZMWNh5f&=5%}#26*(v^~XOfM8%?;N`XN zjpqP@G&wnmYzu1-#H)P$t+eIl0x)`9TwI=V8tl#2zd;O4Onh*-)qHar3VCvR+Uxt$ zUY8X&%i;|upMXG8?{aQlo|dL2+K)!p!?yPJ?>6|Ecz#BFR!l8evJ&v}yiDEMq3F>`Yk=<^KgZZB6$u%n-o6Ngt*NOAfEO$`QmXv**6uFC`^Ez@v$E2d zs(sCVa(GDRC@3TZl$c~A=5QEfCGtc6Ka+-!6##vXilW8G92p&5TwKIR$mcg&!smEh zCbsY-GI@GrhxU_OpFCZ}hYb?i}o*qIXqLk$1?hc0X*X*|? zTdrH#F;WbV?#WNnF3h%g-=1twW0P^h;qa^Vyo{aM1`OyR%LTZIiZ6eC6Td}_TzGnV zLipt5a{ARZHFw0UthR!Qm@59Gg@uPZ@5~6)($mu;^XWPl-a|jSyJcw!pVg2M5`LW| zxJ#3gBIsx#A#ta!7BEj0V4PMS8o08#H`y;xHXv@V>=|QN+)3+ma^C6cQY7>;80Z0~ zcdYBa5I|N@SqWg-+uNJKp(~v=Ow9UN#4Wbpgj(Rk&*5Ra?Wylry8sz6il!zexq^>? z+4k{41IETpS0$&4QbtBbU40Y`vcA5)X3i~CIS=G=V{L6B3OSJcOyRo8iR1sF{G z)d5t-=HBtYW^H3L(BCftbfrK&Z)9YISRVL_Pl85_jEo{8A{BJG>(y1g*$_Sn$vp_b z2`Y2ke8n+P^8{{UeoMgw0tUu=&cXmZ3EG#kvd{xF7lATz`*cuB{w(0 zz;<%sDh%j@Yl3oK%m4w@ZCjt8pI=snzf|upanIP+77wbinPp{W{;WbSaj&3?5*EI) zuwZw*p~)DtzO=Lissj@fr{x|JJiN#UL=NYb<=`EtyTAWk`RgLBQbxbcv$M0HAWY5# zg-;8eot=IP8js5-D@|iW)N1u!^jn*klL4+l(z3F$f@*@D-3nBa@@ya|FE6G_-_)ty z{NpbJxAmMDCKW~ir+@${Ny+ZQ_03ICqUlPh!(kk7cvW-r9H40shxY;b`OLh$m7bR; zXg`391Ud^$q{vevKqX7>`GKK`h=>5>{fe>=ddLPA17!b*yYe^6!4`80tRU8AGw z^n@t2Jg`Kv^wDYbV{t)2L3?|9z#g5QxquoiG4T-;6c&~$>UlBO1@cX>3(BO@;0lt7W({Xs(`woNlPIT;25V;zAjZhT+qZ4h4w zFk65B{sqH1>0v7kb7J?#yuQAscy0yCdszjAtT`P$y|kE^n2{PCUEST8y3w&QQ2!Fo zfwZkGE89Cd`dKG8RQsIKi-R>v_AYvBM<|(+k`h4a^Qi^lMbY!67?5;;$rImP?Vp@b z?QrPm=v@-COoMDS!+8m7+P!B(;{r$M}@R?LP1$-pDhL|K}s2|Gt?5BO3G-A8b51aeAH- zUdfYH{;|~%)Xj>?aJm27CTVI)YhUO~+7J%2071}fZdbJ|4N>jxJ0{hrQmp(DOY9@meSt|59!3c?+4gQOIKGYIVtwf;raLP z-+@&H`9>f91WqiPp)$f8$aZyFdU|_Fa>cNgYPy6cj*8Cy9oop1f338;N7n%2qRf|Ngy$13bwkqTi&eqoaIs z3sf?_HH`R}YHDgF1}y`thkm}ka~_9EckbLd#{#|t_zo}}wSr$A9Snkku)Lhdc{kUV zaij1ex%er?B0lsfp-ZmiSEcU5##MJ-EJi+`*y%7TZ)gw#3J8&gF0ZUGBFZH}LV@Z@ zLqo&C;b^%x0k}tn9snQ;7|h7Xh&VSHY|fzi`erKLDJUu`Iys%3AFh%-cRt&DOB#9% zHb--Gs^lkQ9NL0##xKSf6eJ2USkMfkj5n+zLzCJ)c<)cS{EmRZj zPN%+GLiqUje|C5AAW+$6UjZJ6{;aN&;p5X7Ah@{jpsVX^l<*G$0RgNOI-*gqUxj(s z_vpyssXI4p_wg1x_{*JE!8tl?^k7j)yP(4-5uX}9@KUq2wWW%52K+iVr%z2yeO?39 z4DAQlAV49}#hjh_SXSTjLxzCPkw|)jmeNu@=m{Mi>Tb86X=-G6I9N?!pf7q2ZYs=2 z8KVn^dB0@VHQX#@akU6m+eQ|WH@=G-vvQjJD`sIwo6W<)TL6?2Fe4ywAgaLFUFjls zJ^=Dk%ZrO6VPW!fql%PK%L7XD5K0wt=A`@A77cDM656UgJUvy?1RekW44%+;FK%g} zmN^|HgoOjKU|d@dmV7ceIY=3D+smGZf>hP*5gyBg3FJ;}TI_}OT4*X4*?1e9uL8N8 z)68!V6he3BTQDFz>gST*v;{T=rpXdG*}2$e%RLX9dKz$@NCE$2O>b;1=y4XtH8sA` zn4WB>sMC`ggl~Hr@5B0s|Ct;OmQiegTXv z^f@J^*QoqeslJHI9u-(y0)p1%52(HQ-!5C}W)d*ktjp86+4D(*$VZPJ9UY(O=xEOu zxIj?G*6p4OS3p9gMZ1Bv`=8NBWYN~`+Mumui(|vro8sT6qI0LB(AIRN`!KeGt=6wy zH`~Exk%ma7Ty!xB`x=0bwiTNh%llBYBI;J|fm^(bt)Rd!@Ai7V?cKi9{rx&ni(Z`{ zlJrcJ8VoMHS56mx0D(y$`*5Lu&dd)3Pj*7hz`%f=G_=FW)AJgri)cnha&ph&zOaah zF@QKMEG$ge^sCiy=JfQ+6U7X0C-yz0;A8N( zMpOuPblj_J(P!vY%q4(km^p>*SmRJ|H@l7=GOceK<#o$myi23ZEW_)#nZsJqq{VRa z_-rY>O((l}lWYoB6LU@$7C^A~KW5uADBLlL7RM064p3w@c-m#{=Cx0$u3iaL>Rz+` z>r*ef-2uB4{r7(FjEq=yEvrK%7L?)(3X(>g?yILsd!tH&bry>UZoZZ)(k8KPBs~v; zAoR!o?gdcFsz4~D{a{M`Qf{^*oN;uU(7C!lkj*%la(hWmpRr1oDtyBc*`;(lU)3Fy zfcD3=Q@70@(x{?Rpmj~Vvj~N&; zUxeiCzRVUdtS;%q z;g8jg-P}!Y&1878PX@fyjW5h(d^#DnV!lRI3Y(2DZ;maW>PQRWFL$dSOABGaIY9^Q z5yIHft%iw7+~ZCBrd91P)=o`VHn1XghRZ6;%gt?UI^|M_9=$N3rd7EbA^}~!m05Ag zFD~vthIFE*65xev#V{(3Y=d)1WALN@`5h1{+%LfSLYd0{;VlsV3 literal 0 HcmV?d00001 diff --git a/mail_follower_custom_notification/models/__init__.py b/mail_follower_custom_notification/models/__init__.py new file mode 100644 index 00000000..b0a8e2ce --- /dev/null +++ b/mail_follower_custom_notification/models/__init__.py @@ -0,0 +1,8 @@ +# -*- coding: utf-8 -*- +# © 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import mail_followers +from . import mail_thread +from . import mail_message +from . import mail_notification +from . import mail_message_subtype diff --git a/mail_follower_custom_notification/models/mail_followers.py b/mail_follower_custom_notification/models/mail_followers.py new file mode 100644 index 00000000..82719402 --- /dev/null +++ b/mail_follower_custom_notification/models/mail_followers.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +# © 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from openerp import api, fields, models + + +class MailFollowers(models.Model): + _inherit = 'mail.followers' + + force_mail_subtype_ids = fields.Many2many( + 'mail.message.subtype', 'mail_followers_force_mail_rel', + 'mail_followers_id', 'mail_message_subtype_id', + string='Force mails from subtype') + + force_nomail_subtype_ids = fields.Many2many( + 'mail.message.subtype', 'mail_followers_force_nomail_rel', + 'mail_followers_id', 'mail_message_subtype_id', + string='Force no mails from subtype') + + force_own_subtype_ids = fields.Many2many( + 'mail.message.subtype', 'mail_followers_force_own_rel', + 'mail_followers_id', 'mail_message_subtype_id', + string='Force own mails from subtype') + + @api.model + @api.returns('self', lambda x: x.id) + def create(self, values): + this = super(MailFollowers, self).create(values) + for subtype in this.subtype_ids: + if not subtype.res_model and\ + subtype.custom_notification_model_ids and\ + this.res_model not in\ + subtype.custom_notification_model_ids\ + .mapped('model'): + continue + if subtype.custom_notification_mail == 'force_yes': + this.force_mail_subtype_ids += subtype + if subtype.custom_notification_mail == 'force_no': + this.force_nomail_subtype_ids += subtype + if subtype.custom_notification_own: + this.force_own_subtype_ids += subtype + return this diff --git a/mail_follower_custom_notification/models/mail_message.py b/mail_follower_custom_notification/models/mail_message.py new file mode 100644 index 00000000..6ec41b24 --- /dev/null +++ b/mail_follower_custom_notification/models/mail_message.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# © 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from openerp import api, models + + +class MailMessage(models.Model): + _inherit = 'mail.message' + + @api.multi + def _notify(self, force_send=False, user_signature=True): + """notify author if she's a follower and turned on force_own""" + self.ensure_one() + if self.subtype_id and self.model and self.res_id: + author_follower = self.env['mail.followers'].search([ + ('res_model', '=', self.model), + ('res_id', '=', self.res_id), + ('partner_id', '=', self.author_id.id), + ('force_own_subtype_ids', '=', self.subtype_id.id), + ]) + self.env['mail.notification']._notify( + self.id, partners_to_notify=author_follower.partner_id.ids, + force_send=force_send, user_signature=user_signature) + return super(MailMessage, self)._notify( + self.id, force_send=force_send, user_signature=user_signature) diff --git a/mail_follower_custom_notification/models/mail_message_subtype.py b/mail_follower_custom_notification/models/mail_message_subtype.py new file mode 100644 index 00000000..f58e199d --- /dev/null +++ b/mail_follower_custom_notification/models/mail_message_subtype.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +# © 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from openerp import fields, models + + +class MailMessageSubtype(models.Model): + _inherit = 'mail.message.subtype' + + custom_notification_mail = fields.Selection( + [('force_yes', 'Force yes'), ('force_no', 'Force no')], + string='Send mail notification', help='Leave empty to use the ' + 'on the partner\'s form, set to "Force yes" to always send messages ' + 'of this type via email, and "Force no" to never send messages of ' + 'type via email') + custom_notification_own = fields.Boolean( + 'Notify about own messages', help='Check this to have notifications ' + 'generated and sent via email about own messages') + custom_notification_model_ids = fields.Many2many( + 'ir.model', string='Models', help='Choose for which models the ' + 'custom configuration applies. This is only necessary if your subtype ' + 'doesn\'t set a model itself', domain=[('osv_memory', '=', False)]) diff --git a/mail_follower_custom_notification/models/mail_notification.py b/mail_follower_custom_notification/models/mail_notification.py new file mode 100644 index 00000000..c70e0f50 --- /dev/null +++ b/mail_follower_custom_notification/models/mail_notification.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +# © 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from openerp import api, models + + +class MailNotification(models.Model): + _inherit = 'mail.notification' + + @api.multi + def get_partners_to_email(self, message): + partner_ids = super(MailNotification, self)\ + .get_partners_to_email(message) + for this in self: + follower = self.env['mail.followers'].search([ + ('res_model', '=', message.model), + ('res_id', '=', message.res_id), + ('partner_id', '=', this.partner_id.id), + '|', '|', + ('force_nomail_subtype_ids', '=', message.subtype_id.id), + ('force_mail_subtype_ids', '=', message.subtype_id.id), + ('force_own_subtype_ids', '=', message.subtype_id.id), + ]) + if not follower: + continue + if (message.subtype_id in follower.force_mail_subtype_ids or + message.subtype_id in follower.force_own_subtype_ids) and\ + this.partner_id.id not in partner_ids: + partner_ids.append(this.partner_id.id) + if message.subtype_id in follower.force_nomail_subtype_ids and\ + this.partner_id.id in partner_ids: + partner_ids.remove(this.partner_id.id) + return partner_ids diff --git a/mail_follower_custom_notification/models/mail_thread.py b/mail_follower_custom_notification/models/mail_thread.py new file mode 100644 index 00000000..910eb222 --- /dev/null +++ b/mail_follower_custom_notification/models/mail_thread.py @@ -0,0 +1,108 @@ +# -*- coding: utf-8 -*- +# © 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from openerp import SUPERUSER_ID, api, models +from openerp.addons.mail.mail_thread import mail_thread + + +class MailThread(models.Model): + _inherit = 'mail.thread' + + @api.multi + def _get_subscription_data(self, name, args, user_pid=None): + result = super(MailThread, self)._get_subscription_data( + name, args, user_pid=user_pid) + subtypes = self.env['mail.message.subtype'].search([ + ('hidden', '=', False), + '|', + ('res_model', '=', self._name), + ('res_model', '=', False), + ]) + for follower in self.env['mail.followers'].search([ + ('res_model', '=', self._name), + ('res_id', 'in', result.keys()), + ('partner_id', '=', user_pid or self.env.user.partner_id.id), + ]): + # values are ordered dicts, so we get the correct matches + for subtype, data in zip( + subtypes, + result[follower.res_id]['message_subtype_data'].values()): + data['force_mail'] = 'default' + if subtype in follower.force_mail_subtype_ids: + data['force_mail'] = 'force_yes' + elif subtype in follower.force_nomail_subtype_ids: + data['force_mail'] = 'force_no' + data['force_own'] =\ + subtype in follower.force_own_subtype_ids + return result + + @api.multi + def message_custom_notification_update_user(self, custom_notifications): + """change custom_notifications from user ids to partner ids""" + user2partner = dict( + self.env['res.users'].browse(map(int, custom_notifications.keys())) + .mapped(lambda user: (str(user.id), str(user.partner_id.id))) + ) + return self.message_custom_notification_update({ + user2partner[user_id]: data + for user_id, data in custom_notifications.iteritems() + }) + + @api.multi + def message_custom_notification_update(self, custom_notifications): + """custom_notifications is a dictionary with partner ids as keys + and dictionaries mapping message subtype ids to custom notification + values""" + def ids_with_value(data, key, value): + return map(lambda x: int(x[0]), + filter(lambda x: x[1][key] == value, + data.iteritems())) + + custom_notifications = { + int(key): value + for key, value in custom_notifications.iteritems() + if key != 'False' + } + + for follower in self.env['mail.followers'].search([ + ('res_model', '=', self._name), + ('res_id', 'in', self.ids), + ('partner_id', 'in', custom_notifications.keys()), + ]): + data = custom_notifications[follower.partner_id.id] + follower.write({ + 'force_mail_subtype_ids': [(6, 0, ids_with_value( + data, 'force_mail', 'force_yes'))], + 'force_nomail_subtype_ids': [(6, 0, ids_with_value( + data, 'force_mail', 'force_no'))], + 'force_own_subtype_ids': [(6, 0, ids_with_value( + data, 'force_own', '1'))] + }), + + def _register_hook(self, cr): + model_ids = self.pool['ir.model'].search(cr, SUPERUSER_ID, []) + rebuilt = [] + for model in self.pool['ir.model'].browse(cr, SUPERUSER_ID, model_ids): + if model.model not in self.pool: + continue + model_object = self.pool[model.model] + if not isinstance(model_object, mail_thread): + continue + if isinstance(model_object, MailThread): + continue + bases = list(model_object.__class__.__bases__) + if MailThread not in bases: + bases.insert(1, MailThread) + class_dict = dict(model_object.__dict__) + class_dict['_inherit'] = model_object._name + new_model_class = type(model_object._name, tuple(bases), + class_dict) + new_model = new_model_class._build_model(self.pool, cr) + self.pool.models[model.model] = new_model + new_model._prepare_setup(cr, SUPERUSER_ID) + new_model._setup_base(cr, SUPERUSER_ID, False) + new_model._setup_fields(cr, SUPERUSER_ID) + rebuilt.append(new_model) + for model in rebuilt: + model._setup_complete(cr, SUPERUSER_ID) + return super(MailThread, self)._register_hook(cr) diff --git a/mail_follower_custom_notification/static/description/icon.png b/mail_follower_custom_notification/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 zcmW++2RxMjAAjx~&dlBk9S+%}OXg)AGE&Cb*&}d0jUxM@u(PQx^-s)697TX`ehR4?GS^qbkof1cslKgkU)h65qZ9Oc=ml_0temigYLJfnz{IDzUf>bGs4N!v3=Z3jMq&A#7%rM5eQ#dc?k~! zVpnB`o+K7|Al`Q_U;eD$B zfJtP*jH`siUq~{KE)`jP2|#TUEFGRryE2`i0**z#*^6~AI|YzIWy$Cu#CSLW3q=GA z6`?GZymC;dCPk~rBS%eCb`5OLr;RUZ;D`}um=H)BfVIq%7VhiMr)_#G0N#zrNH|__ zc+blN2UAB0=617@>_u;MPHN;P;N#YoE=)R#i$k_`UAA>WWCcEVMh~L_ zj--gtp&|K1#58Yz*AHCTMziU1Jzt_jG0I@qAOHsk$2}yTmVkBp_eHuY$A9)>P6o~I z%aQ?!(GqeQ-Y+b0I(m9pwgi(IIZZzsbMv+9w{PFtd_<_(LA~0H(xz{=FhLB@(1&qHA5EJw1>>=%q2f&^X>IQ{!GJ4e9U z&KlB)z(84HmNgm2hg2C0>WM{E(DdPr+EeU_N@57;PC2&DmGFW_9kP&%?X4}+xWi)( z;)z%wI5>D4a*5XwD)P--sPkoY(a~WBw;E~AW`Yue4kFa^LM3X`8x|}ZUeMnqr}>kH zG%WWW>3ml$Yez?i%)2pbKPI7?5o?hydokgQyZsNEr{a|mLdt;X2TX(#B1j35xPnPW z*bMSSOauW>o;*=kO8ojw91VX!qoOQb)zHJ!odWB}d+*K?#sY_jqPdg{Sm2HdYzdEx zOGVPhVRTGPtv0o}RfVP;Nd(|CB)I;*t&QO8h zFfekr30S!-LHmV_Su-W+rEwYXJ^;6&3|L$mMC8*bQptyOo9;>Qb9Q9`ySe3%V$A*9 zeKEe+b0{#KWGp$F+tga)0RtI)nhMa-K@JS}2krK~n8vJ=Ngm?R!9G<~RyuU0d?nz# z-5EK$o(!F?hmX*2Yt6+coY`6jGbb7tF#6nHA zuKk=GGJ;ZwON1iAfG$E#Y7MnZVmrY|j0eVI(DN_MNFJmyZ|;w4tf@=CCDZ#5N_0K= z$;R~bbk?}TpfDjfB&aiQ$VA}s?P}xPERJG{kxk5~R`iRS(SK5d+Xs9swCozZISbnS zk!)I0>t=A<-^z(cmSFz3=jZ23u13X><0b)P)^1T_))Kr`e!-pb#q&J*Q`p+B6la%C zuVl&0duN<;uOsB3%T9Fp8t{ED108<+W(nOZd?gDnfNBC3>M8WE61$So|P zVvqH0SNtDTcsUdzaMDpT=Ty0pDHHNL@Z0w$Y`XO z2M-_r1S+GaH%pz#Uy0*w$Vdl=X=rQXEzO}d6J^R6zjM1u&c9vYLvLp?W7w(?np9x1 zE_0JSAJCPB%i7p*Wvg)pn5T`8k3-uR?*NT|J`eS#_#54p>!p(mLDvmc-3o0mX*mp_ zN*AeS<>#^-{S%W<*mz^!X$w_2dHWpcJ6^j64qFBft-o}o_Vx80o0>}Du;>kLts;$8 zC`7q$QI(dKYG`Wa8#wl@V4jVWBRGQ@1dr-hstpQL)Tl+aqVpGpbSfN>5i&QMXfiZ> zaA?T1VGe?rpQ@;+pkrVdd{klI&jVS@I5_iz!=UMpTsa~mBga?1r}aRBm1WS;TT*s0f0lY=JBl66Upy)-k4J}lh=P^8(SXk~0xW=T9v*B|gzIhN z>qsO7dFd~mgxAy4V?&)=5ieYq?zi?ZEoj)&2o)RLy=@hbCRcfT5jigwtQGE{L*8<@Yd{zg;CsL5mvzfDY}P-wos_6PfprFVaeqNE%h zKZhLtcQld;ZD+>=nqN~>GvROfueSzJD&BE*}XfU|H&(FssBqY=hPCt`d zH?@s2>I(|;fcW&YM6#V#!kUIP8$Nkdh0A(bEVj``-AAyYgwY~jB zT|I7Bf@%;7aL7Wf4dZ%VqF$eiaC38OV6oy3Z#TER2G+fOCd9Iaoy6aLYbPTN{XRPz z;U!V|vBf%H!}52L2gH_+j;`bTcQRXB+y9onc^wLm5wi3-Be}U>k_u>2Eg$=k!(l@I zcCg+flakT2Nej3i0yn+g+}%NYb?ta;R?(g5SnwsQ49U8Wng8d|{B+lyRcEDvR3+`O{zfmrmvFrL6acVP%yG98X zo&+VBg@px@i)%o?dG(`T;n*$S5*rnyiR#=wW}}GsAcfyQpE|>a{=$Hjg=-*_K;UtD z#z-)AXwSRY?OPefw^iI+ z)AXz#PfEjlwTes|_{sB?4(O@fg0AJ^g8gP}ex9Ucf*@_^J(s_5jJV}c)s$`Myn|Kd z$6>}#q^n{4vN@+Os$m7KV+`}c%4)4pv@06af4-x5#wj!KKb%caK{A&Y#Rfs z-po?Dcb1({W=6FKIUirH&(yg=*6aLCekcKwyfK^JN5{wcA3nhO(o}SK#!CINhI`-I z1)6&n7O&ZmyFMuNwvEic#IiOAwNkR=u5it{B9n2sAJV5pNhar=j5`*N!Na;c7g!l$ z3aYBqUkqqTJ=Re-;)s!EOeij=7SQZ3Hq}ZRds%IM*PtM$wV z@;rlc*NRK7i3y5BETSKuumEN`Xu_8GP1Ri=OKQ$@I^ko8>H6)4rjiG5{VBM>B|%`&&s^)jS|-_95&yc=GqjNo{zFkw%%HHhS~e=s zD#sfS+-?*t|J!+ozP6KvtOl!R)@@-z24}`9{QaVLD^9VCSR2b`b!KC#o;Ki<+wXB6 zx3&O0LOWcg4&rv4QG0)4yb}7BFSEg~=IR5#ZRj8kg}dS7_V&^%#Do==#`u zpy6{ox?jWuR(;pg+f@mT>#HGWHAJRRDDDv~@(IDw&R>9643kK#HN`!1vBJHnC+RM&yIh8{gG2q zA%e*U3|N0XSRa~oX-3EAneep)@{h2vvd3Xvy$7og(sayr@95+e6~Xvi1tUqnIxoIH zVWo*OwYElb#uyW{Imam6f2rGbjR!Y3`#gPqkv57dB6K^wRGxc9B(t|aYDGS=m$&S!NmCtrMMaUg(c zc2qC=2Z`EEFMW-me5B)24AqF*bV5Dr-M5ig(l-WPS%CgaPzs6p_gnCIvTJ=Y<6!gT zVt@AfYCzjjsMEGi=rDQHo0yc;HqoRNnNFeWZgcm?f;cp(6CNylj36DoL(?TS7eU#+ z7&mfr#y))+CJOXQKUMZ7QIdS9@#-}7y2K1{8)cCt0~-X0O!O?Qx#E4Og+;A2SjalQ zs7r?qn0H044=sDN$SRG$arw~n=+T_DNdSrarmu)V6@|?1-ZB#hRn`uilTGPJ@fqEy zGt(f0B+^JDP&f=r{#Y_wi#AVDf-y!RIXU^0jXsFpf>=Ji*TeqSY!H~AMbJdCGLhC) zn7Rx+sXw6uYj;WRYrLd^5IZq@6JI1C^YkgnedZEYy<&4(z%Q$5yv#Boo{AH8n$a zhb4Y3PWdr269&?V%uI$xMcUrMzl=;w<_nm*qr=c3Rl@i5wWB;e-`t7D&c-mcQl7x! zZWB`UGcw=Y2=}~wzrfLx=uet<;m3~=8I~ZRuzvMQUQdr+yTV|ATf1Uuomr__nDf=X zZ3WYJtHp_ri(}SQAPjv+Y+0=fH4krOP@S&=zZ-t1jW1o@}z;xk8 z(Nz1co&El^HK^NrhVHa-_;&88vTU>_J33=%{if;BEY*J#1n59=07jrGQ#IP>@u#3A z;!q+E1Rj3ZJ+!4bq9F8PXJ@yMgZL;>&gYA0%_Kbi8?S=XGM~dnQZQ!yBSgcZhY96H zrWnU;k)qy`rX&&xlDyA%(a1Hhi5CWkmg(`Gb%m(HKi-7Z!LKGRP_B8@`7&hdDy5n= z`OIxqxiVfX@OX1p(mQu>0Ai*v_cTMiw4qRt3~NBvr9oBy0)r>w3p~V0SCm=An6@3n)>@z!|o-$HvDK z|3D2ZMJkLE5loMKl6R^ez@Zz%S$&mbeoqH5`Bb){Ei21q&VP)hWS2tjShfFtGE+$z zzCR$P#uktu+#!w)cX!lWN1XU%K-r=s{|j?)Akf@q#3b#{6cZCuJ~gCxuMXRmI$nGtnH+-h z+GEi!*X=AP<|fG`1>MBdTb?28JYc=fGvAi2I<$B(rs$;eoJCyR6_bc~p!XR@O-+sD z=eH`-ye})I5ic1eL~TDmtfJ|8`0VJ*Yr=hNCd)G1p2MMz4C3^Mj?7;!w|Ly%JqmuW zlIEW^Ft%z?*|fpXda>Jr^1noFZEwFgVV%|*XhH@acv8rdGxeEX{M$(vG{Zw+x(ei@ zmfXb22}8-?Fi`vo-YVrTH*C?a8%M=Hv9MqVH7H^J$KsD?>!SFZ;ZsvnHr_gn=7acz z#W?0eCdVhVMWN12VV^$>WlQ?f;P^{(&pYTops|btm6aj>_Uz+hqpGwB)vWp0Cf5y< zft8-je~nn?W11plq}N)4A{l8I7$!ks_x$PXW-2XaRFswX_BnF{R#6YIwMhAgd5F9X zGmwdadS6(a^fjHtXg8=l?Rc0Sm%hk6E9!5cLVloEy4eh(=FwgP`)~I^5~pBEWo+F6 zSf2ncyMurJN91#cJTy_u8Y}@%!bq1RkGC~-bV@SXRd4F{R-*V`bS+6;W5vZ(&+I<9$;-V|eNfLa5n-6% z2(}&uGRF;p92eS*sE*oR$@pexaqr*meB)VhmIg@h{uzkk$9~qh#cHhw#>O%)b@+(| z^IQgqzuj~Sk(J;swEM-3TrJAPCq9k^^^`q{IItKBRXYe}e0Tdr=Huf7da3$l4PdpwWDop%^}n;dD#K4s#DYA8SHZ z&1!riV4W4R7R#C))JH1~axJ)RYnM$$lIR%6fIVA@zV{XVyx}C+a-Dt8Y9M)^KU0+H zR4IUb2CJ{Hg>CuaXtD50jB(_Tcx=Z$^WYu2u5kubqmwp%drJ6 z?Fo40g!Qd<-l=TQxqHEOuPX0;^z7iX?Ke^a%XT<13TA^5`4Xcw6D@Ur&VT&CUe0d} z1GjOVF1^L@>O)l@?bD~$wzgf(nxX1OGD8fEV?TdJcZc2KoUe|oP1#=$$7ee|xbY)A zDZq+cuTpc(fFdj^=!;{k03C69lMQ(|>uhRfRu%+!k&YOi-3|1QKB z z?n?eq1XP>p-IM$Z^C;2L3itnbJZAip*Zo0aw2bs8@(s^~*8T9go!%dHcAz2lM;`yp zD=7&xjFV$S&5uDaiScyD?B-i1ze`+CoRtz`Wn+Zl&#s4&}MO{@N!ufrzjG$B79)Y2d3tBk&)TxUTw@QS0TEL_?njX|@vq?Uz(nBFK5Pq7*xj#u*R&i|?7+6# z+|r_n#SW&LXhtheZdah{ZVoqwyT{D>MC3nkFF#N)xLi{p7J1jXlmVeb;cP5?e(=f# zuT7fvjSbjS781v?7{)-X3*?>tq?)Yd)~|1{BDS(pqC zC}~H#WXlkUW*H5CDOo<)#x7%RY)A;ShGhI5s*#cRDA8YgqG(HeKDx+#(ZQ?386dv! zlXCO)w91~Vw4AmOcATuV653fa9R$fyK8ul%rG z-wfS zihugoZyr38Im?Zuh6@RcF~t1anQu7>#lPpb#}4cOA!EM11`%f*07RqOVkmX{p~KJ9 z^zP;K#|)$`^Rb{rnHGH{~>1(fawV0*Z#)}M`m8-?ZJV<+e}s9wE# z)l&az?w^5{)`S(%MRzxdNqrs1n*-=jS^_jqE*5XDrA0+VE`5^*p3CuM<&dZEeCjoz zR;uu_H9ZPZV|fQq`Cyw4nscrVwi!fE6ciMmX$!_hN7uF;jjKG)d2@aC4ropY)8etW=xJvni)8eHi`H$%#zn^WJ5NLc-rqk|u&&4Z6fD_m&JfSI1Bvb?b<*n&sfl0^t z=HnmRl`XrFvMKB%9}>PaA`m-fK6a0(8=qPkWS5bb4=v?XcWi&hRY?O5HdulRi4?fN zlsJ*N-0Qw+Yic@s0(2uy%F@ib;GjXt01Fmx5XbRo6+n|pP(&nodMoap^z{~q ziEeaUT@Mxe3vJSfI6?uLND(CNr=#^W<1b}jzW58bIfyWTDle$mmS(|x-0|2UlX+9k zQ^EX7Nw}?EzVoBfT(-LT|=9N@^hcn-_p&sqG z&*oVs2JSU+N4ZD`FhCAWaS;>|wH2G*Id|?pa#@>tyxX`+4HyIArWDvVrX)2WAOQff z0qyHu&-S@i^MS-+j--!pr4fPBj~_8({~e1bfcl0wI1kaoN>mJL6KUPQm5N7lB(ui1 zE-o%kq)&djzWJ}ob<-GfDlkB;F31j-VHKvQUGQ3sp`CwyGJk_i!y^sD0fqC@$9|jO zOqN!r!8-p==F@ZVP=U$qSpY(gQ0)59P1&t@y?5rvg<}E+GB}26NYPp4f2YFQrQtot5mn3wu_qprZ=>Ig-$ zbW26Ws~IgY>}^5w`vTB(G`PTZaDiGBo5o(tp)qli|NeV( z@H_=R8V39rt5J5YB2Ky?4eJJ#b`_iBe2ot~6%7mLt5t8Vwi^Jy7|jWXqa3amOIoRb zOr}WVFP--DsS`1WpN%~)t3R!arKF^Q$e12KEqU36AWwnCBICpH4XCsfnyrHr>$I$4 z!DpKX$OKLWarN7nv@!uIA+~RNO)l$$w}p(;b>mx8pwYvu;dD_unryX_NhT8*Tj>BTrTTL&!?O+%Rv;b?B??gSzdp?6Uug9{ zd@V08Z$BdI?fpoCS$)t4mg4rT8Q_I}h`0d-vYZ^|dOB*Q^S|xqTV*vIg?@fVFSmMpaw0qtTRbx} z({Pg?#{2`sc9)M5N$*N|4;^t$+QP?#mov zGVC@I*lBVrOU-%2y!7%)fAKjpEFsgQc4{amtiHb95KQEwvf<(3T<9-Zm$xIew#P22 zc2Ix|App^>v6(3L_MCU0d3W##AB0M~3D00EWoKZqsJYT(#@w$Y_H7G22M~ApVFTRHMI_3be)Lkn#0F*V8Pq zc}`Cjy$bE;FJ6H7p=0y#R>`}-m4(0F>%@P|?7fx{=R^uFdISRnZ2W_xQhD{YuR3t< z{6yxu=4~JkeA;|(J6_nv#>Nvs&FuLA&PW^he@t(UwFFE8)|a!R{`E`K`i^ZnyE4$k z;(749Ix|oi$c3QbEJ3b~D_kQsPz~fIUKym($a_7dJ?o+40*OLl^{=&oq$<#Q(yyrp z{J-FAniyAw9tPbe&IhQ|a`DqFTVQGQ&Gq3!C2==4x{6EJwiPZ8zub-iXoUtkJiG{} zPaR&}_fn8_z~(=;5lD-aPWD3z8PZS@AaUiomF!G8I}Mf>e~0g#BelA-5#`cj;O5>N Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/mail_follower_custom_notification/static/src/css/mail_follower_custom_notification.css b/mail_follower_custom_notification/static/src/css/mail_follower_custom_notification.css new file mode 100644 index 00000000..92b9ecb9 --- /dev/null +++ b/mail_follower_custom_notification/static/src/css/mail_follower_custom_notification.css @@ -0,0 +1,5 @@ +.oe_custom_notification legend +{ + font-size: inherit; + margin-bottom: 0px; +} diff --git a/mail_follower_custom_notification/static/src/js/mail_follower_custom_notification.js b/mail_follower_custom_notification/static/src/js/mail_follower_custom_notification.js new file mode 100644 index 00000000..104342b1 --- /dev/null +++ b/mail_follower_custom_notification/static/src/js/mail_follower_custom_notification.js @@ -0,0 +1,79 @@ +//-*- coding: utf-8 -*- +//© 2015 Therp BV +//License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +openerp.mail_follower_custom_notification = function(instance) +{ + instance.mail_followers.Followers.include({ + display_subtypes: function(data, id, dialog) + { + var $list = this.$('.oe_subtype_list ul'); + if (dialog) + { + $list = this.$dialog.$el; + } + $list.empty(); + this._super(data, id, dialog); + $list.find('input[type=checkbox]').change(function() + { + $list.find(_.str.sprintf( + '#custom_notification_%s%s', + jQuery(this).data('id'), + dialog ? '_dialog' : '' + )) + .toggle(jQuery(this).prop('checked')); + }); + if(!dialog) + { + $list.find('.oe_custom_notification input[type=radio]') + .change(this.proxy('do_update_subscription')); + }; + }, + do_update_subscription: function(event, user_pid) + { + /* + if(jQuery(event.currentTarget).parents('.oe_custom_notification') + .length) + { + // mail reacts on all inputs, suppress for our inputs + return jQuery.when(); + } + */ + var self = this, + update_func = 'message_custom_notification_update_user', + follower_ids = [this.session.uid], + custom_notifications = {}, + oe_action = this.$('.oe_actions'); + if(user_pid) + { + update_func = 'message_custom_notification_update'; + follower_ids = [user_pid]; + oe_action = jQuery('.oe_edit_actions'); + } + _(follower_ids).each(function(follower) + { + + var follower_settings = custom_notifications[follower] = {}; + oe_action.find('.oe_custom_notification') + .each(function() + { + var id = parseInt(jQuery(this).data('id')), + settings = follower_settings[id] = {}; + settings['force_mail'] = jQuery(this) + .find('.oe_custom_notification_mail input:checked') + .val(); + settings['force_own'] = jQuery(this) + .find('.oe_custom_notification_own input:checked') + .val(); + }); + }); + return jQuery.when(this._super.apply(this, arguments)) + .then(function() + { + return self.ds_model.call( + update_func, + [[self.view.datarecord.id], custom_notifications]) + }) + }, + }); +} diff --git a/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml b/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml new file mode 100644 index 00000000..25fee159 --- /dev/null +++ b/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml @@ -0,0 +1,38 @@ + + diff --git a/mail_follower_custom_notification/tests/__init__.py b/mail_follower_custom_notification/tests/__init__.py new file mode 100644 index 00000000..ef042795 --- /dev/null +++ b/mail_follower_custom_notification/tests/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# © 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import test_mail_follower_custom_notification diff --git a/mail_follower_custom_notification/tests/test_mail_follower_custom_notification.py b/mail_follower_custom_notification/tests/test_mail_follower_custom_notification.py new file mode 100644 index 00000000..11bed947 --- /dev/null +++ b/mail_follower_custom_notification/tests/test_mail_follower_custom_notification.py @@ -0,0 +1,75 @@ +# -*- coding: utf-8 -*- +# © 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from openerp.tests.common import TransactionCase + + +class TestMailFollowerCustomNotification(TransactionCase): + def test_mail_follower_custom_notification(self): + self.env['mail.thread']._register_hook() + followed_partner = self.env['res.partner'].create({ + 'name': 'I\'m followed', + }) + demo_user = self.env.ref('base.user_demo') + followed_partner_demo = followed_partner.sudo(demo_user.id) + followed_partner_demo.message_subscribe_users() + + # see if default subscriptions return default custom settings + subscription_data = followed_partner_demo._get_subscription_data( + None, None) + self.assertEqual( + subscription_data[followed_partner.id]['message_subtype_data'] + ['Discussions']['force_mail'], + 'default') + self.assertEqual( + subscription_data[followed_partner.id]['message_subtype_data'] + ['Discussions']['force_own'], + False) + + # set custom settings + mt_comment = self.env.ref('mail.mt_comment') + followed_partner_demo.message_custom_notification_update_user({ + str(demo_user.id): { + str(mt_comment.id): { + 'force_mail': 'force_yes', + 'force_own': '1', + }, + }, + }) + # see if we can read them back + subscription_data = followed_partner_demo._get_subscription_data( + None, None) + self.assertEqual( + subscription_data[followed_partner.id]['message_subtype_data'] + ['Discussions']['force_mail'], + 'force_yes') + self.assertEqual( + subscription_data[followed_partner.id]['message_subtype_data'] + ['Discussions']['force_own'], + True) + + # post a message and see if we successfully forced a notification to + # ourselves + followed_partner_demo.message_post('hello world', subtype='mt_comment') + self.assertEqual( + followed_partner_demo.message_ids[:-1].notification_ids.partner_id, + demo_user.partner_id) + + # assign default values on message subtype and apply them to all + # followers + mt_comment.custom_notification_model_ids = self.env['ir.model']\ + .search([('model', '=', 'res.partner')]) + wizard = self.env['mail.subtype.assign.custom.notifications']\ + .with_context(active_ids=mt_comment.ids)\ + .create({}) + wizard.button_apply() + subscription_data = followed_partner_demo._get_subscription_data( + None, None) + self.assertEqual( + subscription_data[followed_partner.id]['message_subtype_data'] + ['Discussions']['force_mail'], + 'default') + self.assertEqual( + subscription_data[followed_partner.id]['message_subtype_data'] + ['Discussions']['force_own'], + False) diff --git a/mail_follower_custom_notification/views/mail_message_subtype.xml b/mail_follower_custom_notification/views/mail_message_subtype.xml new file mode 100644 index 00000000..0d60986c --- /dev/null +++ b/mail_follower_custom_notification/views/mail_message_subtype.xml @@ -0,0 +1,18 @@ + + + + + mail.message.subtype + + + + + + + + + + + + + diff --git a/mail_follower_custom_notification/views/templates.xml b/mail_follower_custom_notification/views/templates.xml new file mode 100644 index 00000000..fbfbec8b --- /dev/null +++ b/mail_follower_custom_notification/views/templates.xml @@ -0,0 +1,11 @@ + + + + + + diff --git a/mail_follower_custom_notification/wizards/__init__.py b/mail_follower_custom_notification/wizards/__init__.py new file mode 100644 index 00000000..e968c053 --- /dev/null +++ b/mail_follower_custom_notification/wizards/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# © 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import mail_subtype_assign_custom_notifications diff --git a/mail_follower_custom_notification/wizards/mail_subtype_assign_custom_notifications.py b/mail_follower_custom_notification/wizards/mail_subtype_assign_custom_notifications.py new file mode 100644 index 00000000..c0413e7e --- /dev/null +++ b/mail_follower_custom_notification/wizards/mail_subtype_assign_custom_notifications.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +# © 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from openerp import api, fields, models + + +class MailSubtypeAssignCustomNotifications(models.TransientModel): + _name = 'mail.subtype.assign.custom.notifications' + _description = 'Assign custom notification settings to existing followers' + + subtype_ids = fields.Many2many( + 'mail.message.subtype', 'mail_subtype_assign_custom_notifications_rel', + string='Subtypes', required=True, + default=lambda self: [(6, 0, self.env.context.get('active_ids', []))]) + + @api.multi + def button_apply(self): + self.ensure_one() + for subtype in self.subtype_ids: + domain = [('subtype_ids', '=', subtype.id)] + if subtype.custom_notification_model_ids: + domain.append( + ('res_model', 'in', + subtype.custom_notification_model_ids.mapped('model'))) + self.env['mail.followers'].with_context(active_test=False)\ + .search(domain)\ + .write({ + 'force_mail_subtype_ids': [ + (4, subtype.id) + if subtype.custom_notification_mail == 'force_yes' + else + (3, subtype.id) + ], + 'force_nomail_subtype_ids': [ + (4, subtype.id) + if subtype.custom_notification_mail == 'force_no' + else + (3, subtype.id) + ], + 'force_own_subtype_ids': [ + (4, subtype.id) + if subtype.custom_notification_own + else + (3, subtype.id) + ], + }) diff --git a/mail_follower_custom_notification/wizards/mail_subtype_assign_custom_notifications.xml b/mail_follower_custom_notification/wizards/mail_subtype_assign_custom_notifications.xml new file mode 100644 index 00000000..adbab627 --- /dev/null +++ b/mail_follower_custom_notification/wizards/mail_subtype_assign_custom_notifications.xml @@ -0,0 +1,30 @@ + + + + + mail.subtype.assign.custom.notifications + +
+ + + +
+
+
+
+
+ +
+
From c925bbf78377bca3319c5362a634bc78f11efb4c Mon Sep 17 00:00:00 2001 From: Rafael Blasco Date: Wed, 16 Dec 2015 01:32:59 +0100 Subject: [PATCH 2/6] Add some Usage steps It would be nice to add an image of a screen-shoot but I don't know where to store it. Next time --- mail_follower_custom_notification/README.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/mail_follower_custom_notification/README.rst b/mail_follower_custom_notification/README.rst index 406f160d..7f14c572 100644 --- a/mail_follower_custom_notification/README.rst +++ b/mail_follower_custom_notification/README.rst @@ -26,6 +26,13 @@ customizations your users already have done. Usage ===== +To use this module, for example you need to: + +- Go to Sales -> Sales -> Customers +- Go Inside any customer and in the right-botton corner press "Follow" button +- Unfold Following menu and check new functionality with "mail notificacions" + + .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot :target: https://runbot.odoo-community.org/runbot/205/8.0 From 83e0ef2b8258afcd448faee23f33e6b399196cfe Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Thu, 28 Jan 2016 16:42:24 +0100 Subject: [PATCH 3/6] [IMP] use base_patch_models_mixin --- .../models/__init__.py | 1 + .../models/base_patch_models_mixin.py | 92 +++++++++++++++++++ .../models/mail_thread.py | 36 +------- 3 files changed, 97 insertions(+), 32 deletions(-) create mode 100644 mail_follower_custom_notification/models/base_patch_models_mixin.py diff --git a/mail_follower_custom_notification/models/__init__.py b/mail_follower_custom_notification/models/__init__.py index b0a8e2ce..507fec24 100644 --- a/mail_follower_custom_notification/models/__init__.py +++ b/mail_follower_custom_notification/models/__init__.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- # © 2015 Therp BV # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import base_patch_models_mixin from . import mail_followers from . import mail_thread from . import mail_message diff --git a/mail_follower_custom_notification/models/base_patch_models_mixin.py b/mail_follower_custom_notification/models/base_patch_models_mixin.py new file mode 100644 index 00000000..0107f4fc --- /dev/null +++ b/mail_follower_custom_notification/models/base_patch_models_mixin.py @@ -0,0 +1,92 @@ +# -*- coding: utf-8 -*- +# © 2016 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +import logging +from openerp import SUPERUSER_ID, models + + +_logger = logging.getLogger(__file__) + + +# TODO: this should be a helper module to cetralize the point of failure +# in case this introduces tacit bugs +class BasePatchModelsMixin(models.AbstractModel): + """ + This is a mixin class meant to simplify working with patches + on BaseModel or on abstract models like mail.thread. + If you just change them, models created earlier will lack the + attributes you add. Just inherit from this mixin, it will check + which existing models need your changes and apply them. + + In your module, do something like + + class MailThread(models.AbstractModel): + _name = 'mail.thread' + _inherit = ['base.patch.models.mixin', 'mail.thread'] + + in case you need to patch BaseModel, say + + class BaseModel(models.BaseModel): + _name = 'my.unique.model.name' + _inherit = 'base.patch.models.mixin' + + Your code will behave as if it was an inherited class of the class you pass + in the second parameter to _base_patch_models. + """ + _name = 'base.patch.models.mixin' + + def _base_patch_models(self, cr, our_class=None, parent_class=None): + """iterate through existing models to apply our changes there if + necessary""" + if self._name == BasePatchModelsMixin._name: + return + my_bases = self.__class__.__bases__ + for i in range(max(len(my_bases) - 1, 0)): + if my_bases[i]._name == BasePatchModelsMixin._name: + our_class = my_bases[i - 1] + parent_class = my_bases[i + 1] + inherit = [self._inherit]\ + if isinstance(self._inherit, basestring) else self._inherit + for i in range(len(my_bases) - 1, 0, -1): + # this can be different from the above if our mixin is used + # multiple times on the same model + if my_bases[i]._name in inherit: + parent_class = my_bases[i] + break + if self.__class__.__bases__[-1] == BasePatchModelsMixin\ + and not our_class or not parent_class: + our_class = self.__class__.__bases__[-2] + parent_class = models.BaseModel + if not our_class or not parent_class: + _logger.info( + 'Failed to autodetect own class or parent class for %s, ' + 'ignoring', self._name) + return + + for model_name, model_object in self.pool.models.iteritems(): + if not isinstance(model_object, parent_class): + continue + if isinstance(model_object, our_class): + continue + if not isinstance(model_object, models.Model): + continue + bases = list(model_object.__class__.__bases__) + position = 1 + if parent_class == models.BaseModel: + position = len(bases) + else: + for i in range(len(bases) - 1, position, -1): + if bases[i]._name in inherit: + position = i + break + bases.insert(position, our_class) + model_object.__class__.__bases__ = tuple(bases) + + def _register_hook(self, cr): + self._base_patch_models(cr) + for base in self.__class__.__bases__: + if not hasattr(super(base, self), '_register_hook'): + return + if super(base, self)._register_hook != self._register_hook: + return super(base, self)._register_hook.__func__( + super(base, self), cr) diff --git a/mail_follower_custom_notification/models/mail_thread.py b/mail_follower_custom_notification/models/mail_thread.py index 910eb222..11c23eb8 100644 --- a/mail_follower_custom_notification/models/mail_thread.py +++ b/mail_follower_custom_notification/models/mail_thread.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- # © 2015 Therp BV # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import SUPERUSER_ID, api, models -from openerp.addons.mail.mail_thread import mail_thread +from openerp import api, models -class MailThread(models.Model): - _inherit = 'mail.thread' +class MailThread(models.AbstractModel): + _inherit = ['base.patch.models.mixin', 'mail.thread'] + _name = 'mail.thread' @api.multi def _get_subscription_data(self, name, args, user_pid=None): @@ -78,31 +78,3 @@ class MailThread(models.Model): 'force_own_subtype_ids': [(6, 0, ids_with_value( data, 'force_own', '1'))] }), - - def _register_hook(self, cr): - model_ids = self.pool['ir.model'].search(cr, SUPERUSER_ID, []) - rebuilt = [] - for model in self.pool['ir.model'].browse(cr, SUPERUSER_ID, model_ids): - if model.model not in self.pool: - continue - model_object = self.pool[model.model] - if not isinstance(model_object, mail_thread): - continue - if isinstance(model_object, MailThread): - continue - bases = list(model_object.__class__.__bases__) - if MailThread not in bases: - bases.insert(1, MailThread) - class_dict = dict(model_object.__dict__) - class_dict['_inherit'] = model_object._name - new_model_class = type(model_object._name, tuple(bases), - class_dict) - new_model = new_model_class._build_model(self.pool, cr) - self.pool.models[model.model] = new_model - new_model._prepare_setup(cr, SUPERUSER_ID) - new_model._setup_base(cr, SUPERUSER_ID, False) - new_model._setup_fields(cr, SUPERUSER_ID) - rebuilt.append(new_model) - for model in rebuilt: - model._setup_complete(cr, SUPERUSER_ID) - return super(MailThread, self)._register_hook(cr) From b51ee32c0948a38d300dfaa8c1ac4e02f037e6d8 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Wed, 10 Feb 2016 10:03:24 +0100 Subject: [PATCH 4/6] [FIX] flake8 --- .../models/base_patch_models_mixin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mail_follower_custom_notification/models/base_patch_models_mixin.py b/mail_follower_custom_notification/models/base_patch_models_mixin.py index 0107f4fc..21ea5e68 100644 --- a/mail_follower_custom_notification/models/base_patch_models_mixin.py +++ b/mail_follower_custom_notification/models/base_patch_models_mixin.py @@ -2,7 +2,7 @@ # © 2016 Therp BV # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). import logging -from openerp import SUPERUSER_ID, models +from openerp import models _logger = logging.getLogger(__file__) From 84c512ff9aa9230f0b8e16f5fcbfb6988bd3197c Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sun, 28 Feb 2016 00:50:53 -0500 Subject: [PATCH 5/6] OCA Transbot updated translations from Transifex --- mail_follower_custom_notification/i18n/am.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/ar.po | 229 +++++++++++++++ mail_follower_custom_notification/i18n/bg.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/bs.po | 229 +++++++++++++++ mail_follower_custom_notification/i18n/ca.po | 252 +++++++++++++++++ .../i18n/ca_ES.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/cs.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/da.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/de.po | 245 ++++++++++++++++ .../i18n/el_GR.po | 229 +++++++++++++++ .../i18n/en_AU.po | 228 +++++++++++++++ .../i18n/en_GB.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/es.po | 235 ++++++++++++++++ .../i18n/es_AR.po | 228 +++++++++++++++ .../i18n/es_CL.po | 228 +++++++++++++++ .../i18n/es_CO.po | 263 ++++++++++++++++++ .../i18n/es_CR.po | 228 +++++++++++++++ .../i18n/es_DO.po | 228 +++++++++++++++ .../i18n/es_EC.po | 228 +++++++++++++++ .../i18n/es_ES.po | 228 +++++++++++++++ .../i18n/es_MX.po | 228 +++++++++++++++ .../i18n/es_PE.po | 228 +++++++++++++++ .../i18n/es_PY.po | 228 +++++++++++++++ .../i18n/es_VE.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/et.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/fa.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/fi.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/fr.po | 237 ++++++++++++++++ .../i18n/fr_CA.po | 228 +++++++++++++++ .../i18n/fr_CH.po | 228 +++++++++++++++ .../i18n/fr_FR.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/gl.po | 228 +++++++++++++++ .../i18n/gl_ES.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/he.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/hi.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/hr.po | 229 +++++++++++++++ .../i18n/hr_HR.po | 229 +++++++++++++++ mail_follower_custom_notification/i18n/hu.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/id.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/it.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/ja.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/ko.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/lo.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/lt.po | 229 +++++++++++++++ .../i18n/lt_LT.po | 229 +++++++++++++++ mail_follower_custom_notification/i18n/lv.po | 229 +++++++++++++++ .../mail_follower_custom_notification.pot | 217 +++++++++++++++ mail_follower_custom_notification/i18n/mk.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/mn.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/nb.po | 228 +++++++++++++++ .../i18n/nb_NO.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/nl.po | 228 +++++++++++++++ .../i18n/nl_BE.po | 228 +++++++++++++++ .../i18n/nl_NL.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/pl.po | 229 +++++++++++++++ mail_follower_custom_notification/i18n/pt.po | 228 +++++++++++++++ .../i18n/pt_BR.po | 243 ++++++++++++++++ .../i18n/pt_PT.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/ro.po | 229 +++++++++++++++ mail_follower_custom_notification/i18n/ru.po | 230 +++++++++++++++ mail_follower_custom_notification/i18n/sk.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/sl.po | 244 ++++++++++++++++ mail_follower_custom_notification/i18n/sr.po | 229 +++++++++++++++ .../i18n/sr@latin.po | 229 +++++++++++++++ mail_follower_custom_notification/i18n/sv.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/th.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/tr.po | 228 +++++++++++++++ .../i18n/tr_TR.po | 228 +++++++++++++++ mail_follower_custom_notification/i18n/uk.po | 229 +++++++++++++++ mail_follower_custom_notification/i18n/vi.po | 228 +++++++++++++++ .../i18n/vi_VN.po | 228 +++++++++++++++ .../i18n/zh_CN.po | 228 +++++++++++++++ .../i18n/zh_TW.po | 228 +++++++++++++++ 73 files changed, 16771 insertions(+) create mode 100644 mail_follower_custom_notification/i18n/am.po create mode 100644 mail_follower_custom_notification/i18n/ar.po create mode 100644 mail_follower_custom_notification/i18n/bg.po create mode 100644 mail_follower_custom_notification/i18n/bs.po create mode 100644 mail_follower_custom_notification/i18n/ca.po create mode 100644 mail_follower_custom_notification/i18n/ca_ES.po create mode 100644 mail_follower_custom_notification/i18n/cs.po create mode 100644 mail_follower_custom_notification/i18n/da.po create mode 100644 mail_follower_custom_notification/i18n/de.po create mode 100644 mail_follower_custom_notification/i18n/el_GR.po create mode 100644 mail_follower_custom_notification/i18n/en_AU.po create mode 100644 mail_follower_custom_notification/i18n/en_GB.po create mode 100644 mail_follower_custom_notification/i18n/es.po create mode 100644 mail_follower_custom_notification/i18n/es_AR.po create mode 100644 mail_follower_custom_notification/i18n/es_CL.po create mode 100644 mail_follower_custom_notification/i18n/es_CO.po create mode 100644 mail_follower_custom_notification/i18n/es_CR.po create mode 100644 mail_follower_custom_notification/i18n/es_DO.po create mode 100644 mail_follower_custom_notification/i18n/es_EC.po create mode 100644 mail_follower_custom_notification/i18n/es_ES.po create mode 100644 mail_follower_custom_notification/i18n/es_MX.po create mode 100644 mail_follower_custom_notification/i18n/es_PE.po create mode 100644 mail_follower_custom_notification/i18n/es_PY.po create mode 100644 mail_follower_custom_notification/i18n/es_VE.po create mode 100644 mail_follower_custom_notification/i18n/et.po create mode 100644 mail_follower_custom_notification/i18n/fa.po create mode 100644 mail_follower_custom_notification/i18n/fi.po create mode 100644 mail_follower_custom_notification/i18n/fr.po create mode 100644 mail_follower_custom_notification/i18n/fr_CA.po create mode 100644 mail_follower_custom_notification/i18n/fr_CH.po create mode 100644 mail_follower_custom_notification/i18n/fr_FR.po create mode 100644 mail_follower_custom_notification/i18n/gl.po create mode 100644 mail_follower_custom_notification/i18n/gl_ES.po create mode 100644 mail_follower_custom_notification/i18n/he.po create mode 100644 mail_follower_custom_notification/i18n/hi.po create mode 100644 mail_follower_custom_notification/i18n/hr.po create mode 100644 mail_follower_custom_notification/i18n/hr_HR.po create mode 100644 mail_follower_custom_notification/i18n/hu.po create mode 100644 mail_follower_custom_notification/i18n/id.po create mode 100644 mail_follower_custom_notification/i18n/it.po create mode 100644 mail_follower_custom_notification/i18n/ja.po create mode 100644 mail_follower_custom_notification/i18n/ko.po create mode 100644 mail_follower_custom_notification/i18n/lo.po create mode 100644 mail_follower_custom_notification/i18n/lt.po create mode 100644 mail_follower_custom_notification/i18n/lt_LT.po create mode 100644 mail_follower_custom_notification/i18n/lv.po create mode 100644 mail_follower_custom_notification/i18n/mail_follower_custom_notification.pot create mode 100644 mail_follower_custom_notification/i18n/mk.po create mode 100644 mail_follower_custom_notification/i18n/mn.po create mode 100644 mail_follower_custom_notification/i18n/nb.po create mode 100644 mail_follower_custom_notification/i18n/nb_NO.po create mode 100644 mail_follower_custom_notification/i18n/nl.po create mode 100644 mail_follower_custom_notification/i18n/nl_BE.po create mode 100644 mail_follower_custom_notification/i18n/nl_NL.po create mode 100644 mail_follower_custom_notification/i18n/pl.po create mode 100644 mail_follower_custom_notification/i18n/pt.po create mode 100644 mail_follower_custom_notification/i18n/pt_BR.po create mode 100644 mail_follower_custom_notification/i18n/pt_PT.po create mode 100644 mail_follower_custom_notification/i18n/ro.po create mode 100644 mail_follower_custom_notification/i18n/ru.po create mode 100644 mail_follower_custom_notification/i18n/sk.po create mode 100644 mail_follower_custom_notification/i18n/sl.po create mode 100644 mail_follower_custom_notification/i18n/sr.po create mode 100644 mail_follower_custom_notification/i18n/sr@latin.po create mode 100644 mail_follower_custom_notification/i18n/sv.po create mode 100644 mail_follower_custom_notification/i18n/th.po create mode 100644 mail_follower_custom_notification/i18n/tr.po create mode 100644 mail_follower_custom_notification/i18n/tr_TR.po create mode 100644 mail_follower_custom_notification/i18n/uk.po create mode 100644 mail_follower_custom_notification/i18n/vi.po create mode 100644 mail_follower_custom_notification/i18n/vi_VN.po create mode 100644 mail_follower_custom_notification/i18n/zh_CN.po create mode 100644 mail_follower_custom_notification/i18n/zh_TW.po diff --git a/mail_follower_custom_notification/i18n/am.po b/mail_follower_custom_notification/i18n/am.po new file mode 100644 index 00000000..d12aaf10 --- /dev/null +++ b/mail_follower_custom_notification/i18n/am.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-social-8-0/language/" +"am/)\n" +"Language: am\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "o" diff --git a/mail_follower_custom_notification/i18n/ar.po b/mail_follower_custom_notification/i18n/ar.po new file mode 100644 index 00000000..bc29bdaf --- /dev/null +++ b/mail_follower_custom_notification/i18n/ar.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Arabic (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "إلغاء" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "أنشئ في" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "اسم العرض" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "المعرف" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "أو" diff --git a/mail_follower_custom_notification/i18n/bg.po b/mail_follower_custom_notification/i18n/bg.po new file mode 100644 index 00000000..f0d8a2f7 --- /dev/null +++ b/mail_follower_custom_notification/i18n/bg.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-social-8-0/" +"language/bg/)\n" +"Language: bg\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "Приложи" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Откажи" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Създадено от" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Създадено на" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Име за Показване" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "или" diff --git a/mail_follower_custom_notification/i18n/bs.po b/mail_follower_custom_notification/i18n/bs.po new file mode 100644 index 00000000..6e25b873 --- /dev/null +++ b/mail_follower_custom_notification/i18n/bs.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-22 16:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Otkaži" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ili" diff --git a/mail_follower_custom_notification/i18n/ca.po b/mail_follower_custom_notification/i18n/ca.po new file mode 100644 index 00000000..46fffd0e --- /dev/null +++ b/mail_follower_custom_notification/i18n/ca.po @@ -0,0 +1,252 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# bossnm11 , 2014 +# Carles Antoli , 2015 +# Carles Antoli , 2015 +# Chanseok , 2014 +# Christophe CHAUVET , 2015 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012,2014 +# jeon , 2014 +# John Toro , 2015 +# Jong-Dae Park , 2013,2015 +# Gu Hong Min , 2015 +# Kunwoo Kim , 2015 +# LEE SI HYEONG , 2014 +# Matjaž Mozetič , 2015-2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +# Sam Ryoo , 2014 +# Seo. Junmin , 2015 +# seungil , 2014 +# SEUNGWON , 2014 +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-30 10:21+0000\n" +"PO-Revision-Date: 2017-03-24 09:00+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-social-8-0/language/" +"ca/)\n" +"Language: ca\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancel·la" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creat per" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creat el" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Veure el nom" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "Tema del Correu electrònic " + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "Missatge" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Models " + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "o" diff --git a/mail_follower_custom_notification/i18n/ca_ES.po b/mail_follower_custom_notification/i18n/ca_ES.po new file mode 100644 index 00000000..5dc318b6 --- /dev/null +++ b/mail_follower_custom_notification/i18n/ca_ES.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-02 13:22+0000\n" +"PO-Revision-Date: 2018-02-02 14:11+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/ca_ES/)\n" +"Language: ca_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancel·la" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creat per" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creat a" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nom visible" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Darrera modificació en" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Darrera actualització per" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Darrera actualització el" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/cs.po b/mail_follower_custom_notification/i18n/cs.po new file mode 100644 index 00000000..4ea17634 --- /dev/null +++ b/mail_follower_custom_notification/i18n/cs.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Zrušit" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Vytvořeno" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "nebo" diff --git a/mail_follower_custom_notification/i18n/da.po b/mail_follower_custom_notification/i18n/da.po new file mode 100644 index 00000000..3e9d82f8 --- /dev/null +++ b/mail_follower_custom_notification/i18n/da.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-22 14:08+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Danish (http://www.transifex.com/oca/OCA-social-8-0/language/" +"da/)\n" +"Language: da\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Annuller" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Oprettet af" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Oprettet den" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Vist navn" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "Id" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "eller" diff --git a/mail_follower_custom_notification/i18n/de.po b/mail_follower_custom_notification/i18n/de.po new file mode 100644 index 00000000..3ea05f7a --- /dev/null +++ b/mail_follower_custom_notification/i18n/de.po @@ -0,0 +1,245 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +# Alejandro Santana , 2015 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Carles Antoli , 2015 +# Carles Antoli , 2015 +# danimaribeiro , 2015 +# FIRST AUTHOR , 2012 +# Rudolf Schnapka , 2015-2017 +# SaFi J. , 2015 +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-30 10:21+0000\n" +"PO-Revision-Date: 2017-04-19 11:44+0000\n" +"Last-Translator: Rudolf Schnapka \n" +"Language-Team: German (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "Anwenden" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "Individuelle Mitteilungseinstellungen bestehenden Followern zuordnen" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Abbrechen" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" +"Anwählen, um Mitteilungen über eigene Meldungen zu erzeugen und per Email zu " +"verschicken" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" +"Wählen Sie die Modelle, auf die die Individuelle Konfiguration zutrifft. " +"Dies ist nur erforderlich, wenn Ihre Unterart das Modell nicht selbst " +"festlegt" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Angelegt durch" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Angelegt am" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "Individuelle Mitteilungen" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Anzeigename" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "Dokument-Follower" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "Email-Thread" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "Erzwinge Mails der Unterart" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "Erzwinge nicht" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "Erzwinge keine Mails von Unterart" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "Unterbinde Mailversand" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "Erzwinge Unterart eigener Mails " + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "Erzwinge Mailversand" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "Erzwinge ja" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert durch" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" +"Leer lassen, um die Einstellung der Partnersicht zu verwenden, setze " +"\"Erzinge ja', um immer und 'Erzwinge nie', um niemals Nachrichten dieser " +"Art zu versenden." + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "Nachrichtenhinweis" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "Nachricht" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "Meldungsunterarten" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Datenmodelle" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "Keine Benachrichtigung" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "Mitteilungen" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "Hinweisen auf eigene Emails" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "Benachrichtige mich" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "Eigene Mitteilungen" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "Versende Benachrichtigungsmail" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "Unterarten" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "Aktualisiere bestehende Abonnements" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "Verwende Vorgabe-Maileinstellungen" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "oder" diff --git a/mail_follower_custom_notification/i18n/el_GR.po b/mail_follower_custom_notification/i18n/el_GR.po new file mode 100644 index 00000000..da55469d --- /dev/null +++ b/mail_follower_custom_notification/i18n/el_GR.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +# Kostas Goutoudis , 2016 +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-22 16:30+0000\n" +"Last-Translator: Kostas Goutoudis \n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/el_GR/)\n" +"Language: el_GR\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "Εφαρμογή" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Άκυρο" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "Κωδικός" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "Μήνυμα" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "Ειδοποιήσεις " + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/en_AU.po b/mail_follower_custom_notification/i18n/en_AU.po new file mode 100644 index 00000000..a760f1cb --- /dev/null +++ b/mail_follower_custom_notification/i18n/en_AU.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: English (Australia) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/en_AU/)\n" +"Language: en_AU\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancel" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/en_GB.po b/mail_follower_custom_notification/i18n/en_GB.po new file mode 100644 index 00000000..ed747f3b --- /dev/null +++ b/mail_follower_custom_notification/i18n/en_GB.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancel" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Created by" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Display Name" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "or" diff --git a/mail_follower_custom_notification/i18n/es.po b/mail_follower_custom_notification/i18n/es.po new file mode 100644 index 00000000..f59c1c98 --- /dev/null +++ b/mail_follower_custom_notification/i18n/es.po @@ -0,0 +1,235 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +# Ahmet Altinisik , 2016 +# Antonio Trueba, 2016 +# Carles Antoli , 2016 +# FIRST AUTHOR , 2012 +# Matjaž Mozetič , 2015-2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2016 +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-social-8-0/language/" +"es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "Aplicar" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado el" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "Hilo de mensajes" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "Mensaje" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Modelos" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "Notificaciones" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "o" diff --git a/mail_follower_custom_notification/i18n/es_AR.po b/mail_follower_custom_notification/i18n/es_AR.po new file mode 100644 index 00000000..9b1ed0f0 --- /dev/null +++ b/mail_follower_custom_notification/i18n/es_AR.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/es_AR/)\n" +"Language: es_AR\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "o" diff --git a/mail_follower_custom_notification/i18n/es_CL.po b/mail_follower_custom_notification/i18n/es_CL.po new file mode 100644 index 00000000..b2a67121 --- /dev/null +++ b/mail_follower_custom_notification/i18n/es_CL.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/es_CL/)\n" +"Language: es_CL\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "o" diff --git a/mail_follower_custom_notification/i18n/es_CO.po b/mail_follower_custom_notification/i18n/es_CO.po new file mode 100644 index 00000000..b9d9c5f6 --- /dev/null +++ b/mail_follower_custom_notification/i18n/es_CO.po @@ -0,0 +1,263 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +# Ahmet Altinisik , 2016 +# Ahmet Altinisik , 2016 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# bossnm11 , 2014 +# Chanseok , 2014 +# Chanseok , 2014 +# Christophe CHAUVET , 2015 +# Christophe CHAUVET , 2015 +# Chul Park , 2015 +# David10000 , 2014 +# FIRST AUTHOR , 2012-2013 +# Gil , 2014 +# kmooc , 2015 +# Hongseob Lee , 2015 +# jeon , 2014 +# JiyeonLee , 2014 +# Jong-Dae Park , 2013 +# Kevin Min , 2015 +# KimKyudong , 2014 +# kmooc , 2015 +# mariana1201 , 2014 +# Matjaž Mozetič , 2015 +# Nicole , 2014 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Pope, 2014 +# SaFi J. , 2015 +# Sarina Canelake , 2014 +# Seok Jun Yoon , 2015 +# shin2012 , 2014 +# Sujin Lee , 2014 +# Sunah Lim , 2013 +# Young C. Kim, 2015 +# Young C. Kim, 2015 +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:22+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/es_CO/)\n" +"Language: es_CO\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nombre Público" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "Mensaje" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "o" diff --git a/mail_follower_custom_notification/i18n/es_CR.po b/mail_follower_custom_notification/i18n/es_CR.po new file mode 100644 index 00000000..ef0a474e --- /dev/null +++ b/mail_follower_custom_notification/i18n/es_CR.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/es_DO.po b/mail_follower_custom_notification/i18n/es_DO.po new file mode 100644 index 00000000..f4c1e5cf --- /dev/null +++ b/mail_follower_custom_notification/i18n/es_DO.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/" +"OCA-social-8-0/language/es_DO/)\n" +"Language: es_DO\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "o" diff --git a/mail_follower_custom_notification/i18n/es_EC.po b/mail_follower_custom_notification/i18n/es_EC.po new file mode 100644 index 00000000..025382ab --- /dev/null +++ b/mail_follower_custom_notification/i18n/es_EC.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "o" diff --git a/mail_follower_custom_notification/i18n/es_ES.po b/mail_follower_custom_notification/i18n/es_ES.po new file mode 100644 index 00000000..4992b6f9 --- /dev/null +++ b/mail_follower_custom_notification/i18n/es_ES.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-10 11:32+0000\n" +"PO-Revision-Date: 2017-02-16 15:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/es_ES/)\n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Modelos" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "o" diff --git a/mail_follower_custom_notification/i18n/es_MX.po b/mail_follower_custom_notification/i18n/es_MX.po new file mode 100644 index 00000000..1862552d --- /dev/null +++ b/mail_follower_custom_notification/i18n/es_MX.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ó" diff --git a/mail_follower_custom_notification/i18n/es_PE.po b/mail_follower_custom_notification/i18n/es_PE.po new file mode 100644 index 00000000..9c7ee0c8 --- /dev/null +++ b/mail_follower_custom_notification/i18n/es_PE.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-10-11 09:50+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/es_PE/)\n" +"Language: es_PE\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "o" diff --git a/mail_follower_custom_notification/i18n/es_PY.po b/mail_follower_custom_notification/i18n/es_PY.po new file mode 100644 index 00000000..d015a4a2 --- /dev/null +++ b/mail_follower_custom_notification/i18n/es_PY.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:21+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/es_PY/)\n" +"Language: es_PY\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/es_VE.po b/mail_follower_custom_notification/i18n/es_VE.po new file mode 100644 index 00000000..d5fd5247 --- /dev/null +++ b/mail_follower_custom_notification/i18n/es_VE.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/es_VE/)\n" +"Language: es_VE\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/et.po b/mail_follower_custom_notification/i18n/et.po new file mode 100644 index 00000000..686422a8 --- /dev/null +++ b/mail_follower_custom_notification/i18n/et.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Estonian (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Loobu" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Loonud" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Loodud" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "või" diff --git a/mail_follower_custom_notification/i18n/fa.po b/mail_follower_custom_notification/i18n/fa.po new file mode 100644 index 00000000..26491ad0 --- /dev/null +++ b/mail_follower_custom_notification/i18n/fa.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Persian (http://www.transifex.com/oca/OCA-social-8-0/language/" +"fa/)\n" +"Language: fa\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "لغو" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "شناسه" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "یا" diff --git a/mail_follower_custom_notification/i18n/fi.po b/mail_follower_custom_notification/i18n/fi.po new file mode 100644 index 00000000..4e13e3a1 --- /dev/null +++ b/mail_follower_custom_notification/i18n/fi.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-13 03:01+0000\n" +"PO-Revision-Date: 2017-05-11 14:14+0000\n" +"Last-Translator: Jarmo Kortetjärvi \n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-social-8-0/language/" +"fi/)\n" +"Language: fi\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Peruuta" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Luonut" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Luotu" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nimi" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "Viesti" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Mallit" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "Ilmoitukset" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "tai" diff --git a/mail_follower_custom_notification/i18n/fr.po b/mail_follower_custom_notification/i18n/fr.po new file mode 100644 index 00000000..e7d7b22a --- /dev/null +++ b/mail_follower_custom_notification/i18n/fr.po @@ -0,0 +1,237 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +# Christophe CHAUVET , 2016 +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-30 01:07+0000\n" +"PO-Revision-Date: 2016-06-18 13:19+0000\n" +"Last-Translator: Christophe CHAUVET \n" +"Language-Team: French (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "Appliquer" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" +"Affecter les paramètres de notification personnalisé aux abonnés existants" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Annuler" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" +"Cochez cette case pour avoir les notifications générées et envoyées par " +"courriel à propos de ses propres messages" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" +"Choisissez pour quels modèles appliquer de la configuration. Ceci est " +"nécessaire uniquement si votre sous-type ne spécifie pas de modèle lui-même" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "créé par" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "Notification personnalisée" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nom affiché" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "Abonnées du document" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "Courriel de cette discussion" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "Forcer le courriel pour le sous-type" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "Forcer non" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "Ne pas forcer de courriel pour le sous-type" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "Forcer pour ne pas envoyer de courriels" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "Forcer vos propres courriels de sous-type" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "Forcer l'envoi des courriels" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "Forcer oui" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" +"Laisser vide pour l'utiliser sur le formulaire du partenaire, régler sur " +"\"Forcer oui\" à toujours envoyer des messages de ce type par courriel, et " +"\"Forcer non\" de ne jamais envoyer des messages de type par courriel" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "Courriel de notifications" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "Méssage" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "Message de sous types" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Modèles" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "Pas de notification" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "Notifications" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "Notifier à propos de nos messages" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "Me notifier" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "Mes messages" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "Envoyer un courriel de notification" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "Sous types" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "Mettre à jour les abonnements existants" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "utiliser les préférences de courriel par défaut" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ou" diff --git a/mail_follower_custom_notification/i18n/fr_CA.po b/mail_follower_custom_notification/i18n/fr_CA.po new file mode 100644 index 00000000..203a07f2 --- /dev/null +++ b/mail_follower_custom_notification/i18n/fr_CA.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-12 12:59+0000\n" +"PO-Revision-Date: 2017-03-13 12:52+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/fr_CA/)\n" +"Language: fr_CA\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Annuler" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "Identifiant" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/fr_CH.po b/mail_follower_custom_notification/i18n/fr_CH.po new file mode 100644 index 00000000..b3f88972 --- /dev/null +++ b/mail_follower_custom_notification/i18n/fr_CH.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 17:50+0000\n" +"PO-Revision-Date: 2016-12-01 10:10+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/fr_CH/)\n" +"Language: fr_CH\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Annuler" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nom affiché" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/fr_FR.po b/mail_follower_custom_notification/i18n/fr_FR.po new file mode 100644 index 00000000..0f8aef96 --- /dev/null +++ b/mail_follower_custom_notification/i18n/fr_FR.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:20+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (France) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/fr_FR/)\n" +"Language: fr_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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Annuler" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/gl.po b/mail_follower_custom_notification/i18n/gl.po new file mode 100644 index 00000000..1f5f2163 --- /dev/null +++ b/mail_follower_custom_notification/i18n/gl.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:58+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Galician (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ou" diff --git a/mail_follower_custom_notification/i18n/gl_ES.po b/mail_follower_custom_notification/i18n/gl_ES.po new file mode 100644 index 00000000..7f29f587 --- /dev/null +++ b/mail_follower_custom_notification/i18n/gl_ES.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/gl_ES/)\n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/he.po b/mail_follower_custom_notification/i18n/he.po new file mode 100644 index 00000000..b04bceaa --- /dev/null +++ b/mail_follower_custom_notification/i18n/he.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-social-8-0/language/" +"he/)\n" +"Language: he\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "בטל" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "נוצר ב-" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "השם המוצג" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "מזהה" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "או" diff --git a/mail_follower_custom_notification/i18n/hi.po b/mail_follower_custom_notification/i18n/hi.po new file mode 100644 index 00000000..c258ce05 --- /dev/null +++ b/mail_follower_custom_notification/i18n/hi.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Hindi (http://www.transifex.com/oca/OCA-social-8-0/language/" +"hi/)\n" +"Language: hi\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "रद्द" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/hr.po b/mail_follower_custom_notification/i18n/hr.po new file mode 100644 index 00000000..01925f01 --- /dev/null +++ b/mail_follower_custom_notification/i18n/hr.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-29 09:32+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "Primjeni" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Odustani" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Naziv " + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažuriranje" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Modeli" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ili" diff --git a/mail_follower_custom_notification/i18n/hr_HR.po b/mail_follower_custom_notification/i18n/hr_HR.po new file mode 100644 index 00000000..2c02c6a0 --- /dev/null +++ b/mail_follower_custom_notification/i18n/hr_HR.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/hr_HR/)\n" +"Language: hr_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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Otkaži" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Naziv" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Modeli" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/hu.po b/mail_follower_custom_notification/i18n/hu.po new file mode 100644 index 00000000..86dec3b6 --- /dev/null +++ b/mail_follower_custom_notification/i18n/hu.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-22 16:44+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Mégsem" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Készítette" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "vagy" diff --git a/mail_follower_custom_notification/i18n/id.po b/mail_follower_custom_notification/i18n/id.po new file mode 100644 index 00000000..df21aae8 --- /dev/null +++ b/mail_follower_custom_notification/i18n/id.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:22+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-social-8-0/" +"language/id/)\n" +"Language: id\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Batalkan" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Dibuat pada" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "atau" diff --git a/mail_follower_custom_notification/i18n/it.po b/mail_follower_custom_notification/i18n/it.po new file mode 100644 index 00000000..f8c5498c --- /dev/null +++ b/mail_follower_custom_notification/i18n/it.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 07:31+0000\n" +"PO-Revision-Date: 2017-01-13 09:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Annulla" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creato da" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creato il" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "Discussione Email" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Modelli" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "Notifiche" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "o" diff --git a/mail_follower_custom_notification/i18n/ja.po b/mail_follower_custom_notification/i18n/ja.po new file mode 100644 index 00000000..02bdb7ac --- /dev/null +++ b/mail_follower_custom_notification/i18n/ja.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-22 16:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "キャンセル" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "作成者" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "作成日" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "表示名" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "または" diff --git a/mail_follower_custom_notification/i18n/ko.po b/mail_follower_custom_notification/i18n/ko.po new file mode 100644 index 00000000..cf4a09fc --- /dev/null +++ b/mail_follower_custom_notification/i18n/ko.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Korean (http://www.transifex.com/oca/OCA-social-8-0/language/" +"ko/)\n" +"Language: ko\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "취소" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "작성자" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "작성일" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "표시 이름" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "또는" diff --git a/mail_follower_custom_notification/i18n/lo.po b/mail_follower_custom_notification/i18n/lo.po new file mode 100644 index 00000000..22406c09 --- /dev/null +++ b/mail_follower_custom_notification/i18n/lo.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:22+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Lao (http://www.transifex.com/oca/OCA-social-8-0/language/" +"lo/)\n" +"Language: lo\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "ຍົກເລີອກ" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/lt.po b/mail_follower_custom_notification/i18n/lt.po new file mode 100644 index 00000000..c24a85e5 --- /dev/null +++ b/mail_follower_custom_notification/i18n/lt.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:58+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Atšaukti" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Sukūrė" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Sukurta" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "arba" diff --git a/mail_follower_custom_notification/i18n/lt_LT.po b/mail_follower_custom_notification/i18n/lt_LT.po new file mode 100644 index 00000000..ee4f69ba --- /dev/null +++ b/mail_follower_custom_notification/i18n/lt_LT.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 07:31+0000\n" +"PO-Revision-Date: 2017-01-11 15:35+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/lt_LT/)\n" +"Language: lt_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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Atšaukti" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Sukūrė" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Sukurta" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/lv.po b/mail_follower_custom_notification/i18n/lv.po new file mode 100644 index 00000000..a3ef1b3b --- /dev/null +++ b/mail_follower_custom_notification/i18n/lv.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Atcelt" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Izveidoja" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Izveidots" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "vai" diff --git a/mail_follower_custom_notification/i18n/mail_follower_custom_notification.pot b/mail_follower_custom_notification/i18n/mail_follower_custom_notification.pot new file mode 100644 index 00000000..5d241255 --- /dev/null +++ b/mail_follower_custom_notification/i18n/mail_follower_custom_notification.pot @@ -0,0 +1,217 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "Check this to have notifications generated and sent via email about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "Choose for which models the custom configuration applies. This is only necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "Leave empty to use the on the partner's form, set to \"Force yes\" to always send messages of this type via email, and \"Force no\" to never send messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" + diff --git a/mail_follower_custom_notification/i18n/mk.po b/mail_follower_custom_notification/i18n/mk.po new file mode 100644 index 00000000..055e899e --- /dev/null +++ b/mail_follower_custom_notification/i18n/mk.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Откажи" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Креирано од" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Креирано на" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Прикажи име" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "или" diff --git a/mail_follower_custom_notification/i18n/mn.po b/mail_follower_custom_notification/i18n/mn.po new file mode 100644 index 00000000..5f97aa4b --- /dev/null +++ b/mail_follower_custom_notification/i18n/mn.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-22 16:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Цуцлах" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "эсвэл" diff --git a/mail_follower_custom_notification/i18n/nb.po b/mail_follower_custom_notification/i18n/nb.po new file mode 100644 index 00000000..1f07647d --- /dev/null +++ b/mail_follower_custom_notification/i18n/nb.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 17:50+0000\n" +"PO-Revision-Date: 2016-12-02 13:53+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Avbryt" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Opprettet av" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Opprettet den" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Visnings navn" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "Melding" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "eller" diff --git a/mail_follower_custom_notification/i18n/nb_NO.po b/mail_follower_custom_notification/i18n/nb_NO.po new file mode 100644 index 00000000..b6caed31 --- /dev/null +++ b/mail_follower_custom_notification/i18n/nb_NO.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/nb_NO/)\n" +"Language: nb_NO\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Lukk" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Laget av" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Laget den" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Vis navn" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/nl.po b/mail_follower_custom_notification/i18n/nl.po new file mode 100644 index 00000000..ed7821e3 --- /dev/null +++ b/mail_follower_custom_notification/i18n/nl.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-30 10:21+0000\n" +"PO-Revision-Date: 2017-04-25 10:42+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Annuleren" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Modellen" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "of" diff --git a/mail_follower_custom_notification/i18n/nl_BE.po b/mail_follower_custom_notification/i18n/nl_BE.po new file mode 100644 index 00000000..fc7e237a --- /dev/null +++ b/mail_follower_custom_notification/i18n/nl_BE.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Annuleren" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Gemaakt door" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Gemaakt op" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Schermnaam" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "of" diff --git a/mail_follower_custom_notification/i18n/nl_NL.po b/mail_follower_custom_notification/i18n/nl_NL.po new file mode 100644 index 00000000..0f3ee842 --- /dev/null +++ b/mail_follower_custom_notification/i18n/nl_NL.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-19 10:09+0000\n" +"PO-Revision-Date: 2017-08-29 08:01+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Verwijderen" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/pl.po b/mail_follower_custom_notification/i18n/pl.po new file mode 100644 index 00000000..91598898 --- /dev/null +++ b/mail_follower_custom_notification/i18n/pl.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Polish (http://www.transifex.com/oca/OCA-social-8-0/language/" +"pl/)\n" +"Language: pl\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%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Anuluj" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Utworzone przez" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Utworzono" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "lub" diff --git a/mail_follower_custom_notification/i18n/pt.po b/mail_follower_custom_notification/i18n/pt.po new file mode 100644 index 00000000..8daeefeb --- /dev/null +++ b/mail_follower_custom_notification/i18n/pt.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:58+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nome" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Modificado a última vez por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ou" diff --git a/mail_follower_custom_notification/i18n/pt_BR.po b/mail_follower_custom_notification/i18n/pt_BR.po new file mode 100644 index 00000000..079021d2 --- /dev/null +++ b/mail_follower_custom_notification/i18n/pt_BR.po @@ -0,0 +1,243 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +# Ahmet Altinisik , 2016 +# Ahmet Altinisik , 2016 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Christophe CHAUVET , 2015 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2015 +# FIRST AUTHOR , 2013 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Rudolf Schnapka , 2016 +# Rudolf Schnapka , 2015 +# SaFi J. , 2015 +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-10 06:24+0000\n" +"PO-Revision-Date: 2016-12-14 08:55+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "Processo Email" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "Identificação" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "Mensagem" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Modelos" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ou" diff --git a/mail_follower_custom_notification/i18n/pt_PT.po b/mail_follower_custom_notification/i18n/pt_PT.po new file mode 100644 index 00000000..0a324e14 --- /dev/null +++ b/mail_follower_custom_notification/i18n/pt_PT.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "Tópico de Email" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ou" diff --git a/mail_follower_custom_notification/i18n/ro.po b/mail_follower_custom_notification/i18n/ro.po new file mode 100644 index 00000000..7f387253 --- /dev/null +++ b/mail_follower_custom_notification/i18n/ro.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Romanian (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Anuleaza" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creat de" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creat la" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "sau" diff --git a/mail_follower_custom_notification/i18n/ru.po b/mail_follower_custom_notification/i18n/ru.po new file mode 100644 index 00000000..95deb0d6 --- /dev/null +++ b/mail_follower_custom_notification/i18n/ru.po @@ -0,0 +1,230 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:22+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Russian (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Отменена" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Создано" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Создан" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "или" diff --git a/mail_follower_custom_notification/i18n/sk.po b/mail_follower_custom_notification/i18n/sk.po new file mode 100644 index 00000000..d0c7be3f --- /dev/null +++ b/mail_follower_custom_notification/i18n/sk.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Zrušiť" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Vytvoril" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Vytvorené" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "alebo" diff --git a/mail_follower_custom_notification/i18n/sl.po b/mail_follower_custom_notification/i18n/sl.po new file mode 100644 index 00000000..36a6caff --- /dev/null +++ b/mail_follower_custom_notification/i18n/sl.po @@ -0,0 +1,244 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +# Antonio Trueba, 2016 +# FIRST AUTHOR , 2012,2014 +# Gustavo Lepri , 2015 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2016 +# Paolo Valier, 2016 +# Rudolf Schnapka , 2015-2016 +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-04-30 02:47+0000\n" +"PO-Revision-Date: 2016-04-30 06:12+0000\n" +"Last-Translator: Matjaž Mozetič \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "Uveljavi" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "Obstoječim sledilcem dodeli nastavitve obvestil po meri" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Preklic" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" +"Označite, če želite, da se obvestila o lastnih sporočilih ustvarjajo in " +"pošiljajo po e-pošti" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" +"Izberite na katere modele se nastavitve po meri nanašajo. To je potrebno le, " +"če podtip sam ne nastavi modela" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Ustvaril" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "Obvestila po meri" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "Sledilci dokumenta" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "E-poštni niz" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "Vsili e-pošto iz podtipa" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "Vsili ne" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "Vsili ne pošte iz podtipa" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "Vsili ne pošiljanje pošte" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "Vsili lastno pošto iz podtipa" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "Vsili pošiljanje pošte" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "Vsili da" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" +"Pustite prazno za uporabo na obrazcu partnerja, nastavite \"Vsili da\", da " +"bi vedno preko e-pošte pošiljali sporočila tega tipa in \"Vsili ne\", da ne " +"bi nikoli pošiljali sporočil tega tipa preko e-pošte" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "Poštna obvestila" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "Sporočilo" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "Sporočilni podtipi" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Modeli" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "Brez obvestil" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "Obvestila" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "Obveščanje o lastnih sporočilih" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "Obvesti me" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "Lastna sporočila" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "Pošlji poštno obvestilo" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "Podtipi" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "Posodobi obstoječe naročnine" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "Uporabi privzete poštne nastavitve" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ali" diff --git a/mail_follower_custom_notification/i18n/sr.po b/mail_follower_custom_notification/i18n/sr.po new file mode 100644 index 00000000..f6676e94 --- /dev/null +++ b/mail_follower_custom_notification/i18n/sr.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Serbian (http://www.transifex.com/oca/OCA-social-8-0/language/" +"sr/)\n" +"Language: sr\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Otkaži" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/sr@latin.po b/mail_follower_custom_notification/i18n/sr@latin.po new file mode 100644 index 00000000..395fadf4 --- /dev/null +++ b/mail_follower_custom_notification/i18n/sr@latin.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-22 16:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/sr@latin/)\n" +"Language: sr@latin\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Otkaži" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ili" diff --git a/mail_follower_custom_notification/i18n/sv.po b/mail_follower_custom_notification/i18n/sv.po new file mode 100644 index 00000000..78b8bf4d --- /dev/null +++ b/mail_follower_custom_notification/i18n/sv.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Swedish (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Avbryt" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Skapad av" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Skapad den" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Visa namn" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "eller" diff --git a/mail_follower_custom_notification/i18n/th.po b/mail_follower_custom_notification/i18n/th.po new file mode 100644 index 00000000..3c66347f --- /dev/null +++ b/mail_follower_custom_notification/i18n/th.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "ยกเลิก" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "สร้างโดย" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "รหัส" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "หรือ" diff --git a/mail_follower_custom_notification/i18n/tr.po b/mail_follower_custom_notification/i18n/tr.po new file mode 100644 index 00000000..3da61164 --- /dev/null +++ b/mail_follower_custom_notification/i18n/tr.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 07:31+0000\n" +"PO-Revision-Date: 2017-01-13 09:22+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Vazgeç" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Oluşturan" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "Eposta konuşması" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Modeller" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ya da" diff --git a/mail_follower_custom_notification/i18n/tr_TR.po b/mail_follower_custom_notification/i18n/tr_TR.po new file mode 100644 index 00000000..8c47651b --- /dev/null +++ b/mail_follower_custom_notification/i18n/tr_TR.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-31 08:49+0000\n" +"PO-Revision-Date: 2017-01-04 14:44+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/tr_TR/)\n" +"Language: tr_TR\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "İptal et" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Oluşturan" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Görünen ad" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "Kimlik" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Tipler" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ya da " diff --git a/mail_follower_custom_notification/i18n/uk.po b/mail_follower_custom_notification/i18n/uk.po new file mode 100644 index 00000000..4ccae7d0 --- /dev/null +++ b/mail_follower_custom_notification/i18n/uk.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-social-8-0/" +"language/uk/)\n" +"Language: uk\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Скасувати" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Створив" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Дата створення" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "або" diff --git a/mail_follower_custom_notification/i18n/vi.po b/mail_follower_custom_notification/i18n/vi.po new file mode 100644 index 00000000..2b99cd18 --- /dev/null +++ b/mail_follower_custom_notification/i18n/vi.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-social-8-0/" +"language/vi/)\n" +"Language: vi\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Hủy bỏ" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Được tạo vào" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "hoặc" diff --git a/mail_follower_custom_notification/i18n/vi_VN.po b/mail_follower_custom_notification/i18n/vi_VN.po new file mode 100644 index 00000000..aabad69a --- /dev/null +++ b/mail_follower_custom_notification/i18n/vi_VN.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-16 01:44+0000\n" +"PO-Revision-Date: 2017-11-23 23:27+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/vi_VN/)\n" +"Language: vi_VN\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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Hủy" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Tạo bởi" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Tạo vào" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "hoặc" diff --git a/mail_follower_custom_notification/i18n/zh_CN.po b/mail_follower_custom_notification/i18n/zh_CN.po new file mode 100644 index 00000000..8c67b639 --- /dev/null +++ b/mail_follower_custom_notification/i18n/zh_CN.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "取消" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "创建者" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "创建时间" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "显示名称" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "或" diff --git a/mail_follower_custom_notification/i18n/zh_TW.po b/mail_follower_custom_notification/i18n/zh_TW.po new file mode 100644 index 00000000..9190b9ae --- /dev/null +++ b/mail_follower_custom_notification/i18n/zh_TW.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-22 16:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "刪除" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "建立者" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "建立於" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "顯示名稱" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "編號" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "或" From 31c1eff584b4184591890d62a6ed1a0f46053fec Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Thu, 28 Mar 2019 17:52:12 +0100 Subject: [PATCH 6/6] [MIG] mail_follower_custom_notification to v10 --- mail_follower_custom_notification/README.rst | 88 ++-- mail_follower_custom_notification/__init__.py | 3 +- .../{__openerp__.py => __manifest__.py} | 4 +- .../controllers/__init__.py | 4 + .../controllers/mail_controller.py | 29 ++ .../models/__init__.py | 5 +- .../models/base_patch_models_mixin.py | 92 ---- .../models/mail_followers.py | 5 +- .../models/mail_message.py | 23 +- .../models/mail_message_subtype.py | 16 +- .../models/mail_notification.py | 33 -- .../models/mail_thread.py | 42 +- .../models/res_partner.py | 30 ++ .../readme/CONFIGURE.rst | 10 + .../readme/CONTRIBUTORS.rst | 1 + .../readme/CREDITS.rst | 1 + .../readme/DESCRIPTION.rst | 6 + .../static/description/index.html | 442 ++++++++++++++++++ .../css/mail_follower_custom_notification.css | 15 +- .../js/mail_follower_custom_notification.js | 98 ++-- .../xml/mail_follower_custom_notification.xml | 63 ++- .../test_mail_follower_custom_notification.py | 86 ++-- .../views/mail_message_subtype.xml | 30 +- .../views/templates.xml | 18 +- .../wizards/__init__.py | 2 +- ...ail_subtype_assign_custom_notifications.py | 5 +- ...il_subtype_assign_custom_notifications.xml | 55 ++- 27 files changed, 802 insertions(+), 404 deletions(-) rename mail_follower_custom_notification/{__openerp__.py => __manifest__.py} (91%) create mode 100644 mail_follower_custom_notification/controllers/__init__.py create mode 100644 mail_follower_custom_notification/controllers/mail_controller.py delete mode 100644 mail_follower_custom_notification/models/base_patch_models_mixin.py delete mode 100644 mail_follower_custom_notification/models/mail_notification.py create mode 100644 mail_follower_custom_notification/models/res_partner.py create mode 100644 mail_follower_custom_notification/readme/CONFIGURE.rst create mode 100644 mail_follower_custom_notification/readme/CONTRIBUTORS.rst create mode 100644 mail_follower_custom_notification/readme/CREDITS.rst create mode 100644 mail_follower_custom_notification/readme/DESCRIPTION.rst create mode 100644 mail_follower_custom_notification/static/description/index.html diff --git a/mail_follower_custom_notification/README.rst b/mail_follower_custom_notification/README.rst index 7f14c572..b03244ad 100644 --- a/mail_follower_custom_notification/README.rst +++ b/mail_follower_custom_notification/README.rst @@ -1,73 +1,97 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :alt: License: AGPL-3 - ========================================== Custom notification settings for followers ========================================== +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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%2Fsocial-lightgray.png?logo=github + :target: https://github.com/OCA/social/tree/10.0/mail_follower_custom_notification + :alt: OCA/social +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/social-10-0/social-10-0-mail_follower_custom_notification + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/205/10.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + In standard Odoo, receiving mail notifications is an all or nothing affair. -This module allows you users to decide per followed record if they want to -receive emails or not. Further, they can choose to receive notification about +This module allows users to decide per followed record if they want to +receive emails or not. Further, they can choose to receive notifications about their own messages. You can also set defaults for this settings on the subtype in question. +**Table of contents** + +.. contents:: + :local: + Configuration ============= When followers open their subscriptions, they will be offered the choice to override mail settings and to force being notified about their own messages. -You can add defaults per message sub type for this settings in Settings / +Note subscriptions are only editable for users of the `Technical settings` +group. + +You can add defaults per message subtype for this settings in Settings / Technical / Email / Subtypes. Here, you also have the opportunity to apply those defaults to existing subscriptions. Note that this overrides all customizations your users already have done. -Usage -===== - -To use this module, for example you need to: - -- Go to Sales -> Sales -> Customers -- Go Inside any customer and in the right-botton corner press "Follow" button -- Unfold Following menu and check new functionality with "mail notificacions" - - -.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas - :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/205/8.0 - -For further information, please visit: - -* https://www.odoo.com/forum/help-1 - Bug Tracker =========== Bugs are tracked on `GitHub Issues `_. In case of trouble, please check there if your issue has already been reported. -If you spotted it first, help us smashing it by providing a detailed and welcomed feedback -`here `_. +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 +~~~~~~~ + +* Therp BV + Contributors ------------- +~~~~~~~~~~~~ * Holger Brunn -Maintainer ----------- +Other credits +~~~~~~~~~~~~~ + +* Odoo Community Association: `Icon `_. + +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 http://odoo-community.org. +This module is part of the `OCA/social `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/mail_follower_custom_notification/__init__.py b/mail_follower_custom_notification/__init__.py index 968fe660..b12f44cb 100644 --- a/mail_follower_custom_notification/__init__.py +++ b/mail_follower_custom_notification/__init__.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- -# © 2015 Therp BV +# Copyright 2015 Therp BV # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import models from . import wizards +from . import controllers diff --git a/mail_follower_custom_notification/__openerp__.py b/mail_follower_custom_notification/__manifest__.py similarity index 91% rename from mail_follower_custom_notification/__openerp__.py rename to mail_follower_custom_notification/__manifest__.py index e15b28ba..1318c648 100644 --- a/mail_follower_custom_notification/__openerp__.py +++ b/mail_follower_custom_notification/__manifest__.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -# © 2015 Therp BV +# Copyright 2015 Therp BV # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "Custom notification settings for followers", - "version": "8.0.1.0.0", + "version": "10.0.1.0.0", "author": "Therp BV,Odoo Community Association (OCA)", "license": "AGPL-3", "category": "Social Network", diff --git a/mail_follower_custom_notification/controllers/__init__.py b/mail_follower_custom_notification/controllers/__init__.py new file mode 100644 index 00000000..20777a6f --- /dev/null +++ b/mail_follower_custom_notification/controllers/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Copyright 2019 Therp BV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +from . import mail_controller diff --git a/mail_follower_custom_notification/controllers/mail_controller.py b/mail_follower_custom_notification/controllers/mail_controller.py new file mode 100644 index 00000000..359c4926 --- /dev/null +++ b/mail_follower_custom_notification/controllers/mail_controller.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +# Copyright 2019 Therp BV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +from odoo import http +from odoo.http import request +from odoo.addons.mail.controllers.main import MailController as _MailController + + +class MailController(_MailController): + @http.route() + def read_subscription_data(self, res_model, follower_id): + """Add custom notification data to subscriptions""" + subtypes_list = super(MailController, self).read_subscription_data( + res_model, follower_id, + ) + follower = request.env['mail.followers'].browse(follower_id) + for subtype_dict in subtypes_list: + subtype = request.env['mail.message.subtype'].browse( + subtype_dict['id'] + ) + subtype_dict['force_mail'] = 'default' + if subtype in follower.force_mail_subtype_ids: + subtype_dict['force_mail'] = 'force_yes' + elif subtype in follower.force_nomail_subtype_ids: + subtype_dict['force_mail'] = 'force_no' + subtype_dict['force_own'] = ( + subtype in follower.force_own_subtype_ids + ) + return subtypes_list diff --git a/mail_follower_custom_notification/models/__init__.py b/mail_follower_custom_notification/models/__init__.py index 507fec24..4702885e 100644 --- a/mail_follower_custom_notification/models/__init__.py +++ b/mail_follower_custom_notification/models/__init__.py @@ -1,9 +1,8 @@ # -*- coding: utf-8 -*- -# © 2015 Therp BV +# Copyright 2015 Therp BV # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from . import base_patch_models_mixin from . import mail_followers from . import mail_thread from . import mail_message -from . import mail_notification from . import mail_message_subtype +from . import res_partner diff --git a/mail_follower_custom_notification/models/base_patch_models_mixin.py b/mail_follower_custom_notification/models/base_patch_models_mixin.py deleted file mode 100644 index 21ea5e68..00000000 --- a/mail_follower_custom_notification/models/base_patch_models_mixin.py +++ /dev/null @@ -1,92 +0,0 @@ -# -*- coding: utf-8 -*- -# © 2016 Therp BV -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -import logging -from openerp import models - - -_logger = logging.getLogger(__file__) - - -# TODO: this should be a helper module to cetralize the point of failure -# in case this introduces tacit bugs -class BasePatchModelsMixin(models.AbstractModel): - """ - This is a mixin class meant to simplify working with patches - on BaseModel or on abstract models like mail.thread. - If you just change them, models created earlier will lack the - attributes you add. Just inherit from this mixin, it will check - which existing models need your changes and apply them. - - In your module, do something like - - class MailThread(models.AbstractModel): - _name = 'mail.thread' - _inherit = ['base.patch.models.mixin', 'mail.thread'] - - in case you need to patch BaseModel, say - - class BaseModel(models.BaseModel): - _name = 'my.unique.model.name' - _inherit = 'base.patch.models.mixin' - - Your code will behave as if it was an inherited class of the class you pass - in the second parameter to _base_patch_models. - """ - _name = 'base.patch.models.mixin' - - def _base_patch_models(self, cr, our_class=None, parent_class=None): - """iterate through existing models to apply our changes there if - necessary""" - if self._name == BasePatchModelsMixin._name: - return - my_bases = self.__class__.__bases__ - for i in range(max(len(my_bases) - 1, 0)): - if my_bases[i]._name == BasePatchModelsMixin._name: - our_class = my_bases[i - 1] - parent_class = my_bases[i + 1] - inherit = [self._inherit]\ - if isinstance(self._inherit, basestring) else self._inherit - for i in range(len(my_bases) - 1, 0, -1): - # this can be different from the above if our mixin is used - # multiple times on the same model - if my_bases[i]._name in inherit: - parent_class = my_bases[i] - break - if self.__class__.__bases__[-1] == BasePatchModelsMixin\ - and not our_class or not parent_class: - our_class = self.__class__.__bases__[-2] - parent_class = models.BaseModel - if not our_class or not parent_class: - _logger.info( - 'Failed to autodetect own class or parent class for %s, ' - 'ignoring', self._name) - return - - for model_name, model_object in self.pool.models.iteritems(): - if not isinstance(model_object, parent_class): - continue - if isinstance(model_object, our_class): - continue - if not isinstance(model_object, models.Model): - continue - bases = list(model_object.__class__.__bases__) - position = 1 - if parent_class == models.BaseModel: - position = len(bases) - else: - for i in range(len(bases) - 1, position, -1): - if bases[i]._name in inherit: - position = i - break - bases.insert(position, our_class) - model_object.__class__.__bases__ = tuple(bases) - - def _register_hook(self, cr): - self._base_patch_models(cr) - for base in self.__class__.__bases__: - if not hasattr(super(base, self), '_register_hook'): - return - if super(base, self)._register_hook != self._register_hook: - return super(base, self)._register_hook.__func__( - super(base, self), cr) diff --git a/mail_follower_custom_notification/models/mail_followers.py b/mail_follower_custom_notification/models/mail_followers.py index 82719402..ef096f46 100644 --- a/mail_follower_custom_notification/models/mail_followers.py +++ b/mail_follower_custom_notification/models/mail_followers.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# © 2015 Therp BV +# Copyright 2015 Therp BV # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import api, fields, models +from odoo import api, fields, models class MailFollowers(models.Model): @@ -23,7 +23,6 @@ class MailFollowers(models.Model): string='Force own mails from subtype') @api.model - @api.returns('self', lambda x: x.id) def create(self, values): this = super(MailFollowers, self).create(values) for subtype in this.subtype_ids: diff --git a/mail_follower_custom_notification/models/mail_message.py b/mail_follower_custom_notification/models/mail_message.py index 6ec41b24..9132c252 100644 --- a/mail_follower_custom_notification/models/mail_message.py +++ b/mail_follower_custom_notification/models/mail_message.py @@ -1,25 +1,28 @@ # -*- coding: utf-8 -*- -# © 2015 Therp BV +# Copyright 2015 Therp BV # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import api, models +from odoo import api, models class MailMessage(models.Model): _inherit = 'mail.message' @api.multi - def _notify(self, force_send=False, user_signature=True): + def _notify( + self, force_send=False, send_after_commit=True, user_signature=True, + ): """notify author if she's a follower and turned on force_own""" self.ensure_one() - if self.subtype_id and self.model and self.res_id: - author_follower = self.env['mail.followers'].search([ + if self.subtype_id and self.model and self.res_id and self.env[ + 'mail.followers' + ].search([ ('res_model', '=', self.model), ('res_id', '=', self.res_id), ('partner_id', '=', self.author_id.id), ('force_own_subtype_ids', '=', self.subtype_id.id), - ]) - self.env['mail.notification']._notify( - self.id, partners_to_notify=author_follower.partner_id.ids, - force_send=force_send, user_signature=user_signature) + ]): + self = self.with_context(mail_notify_author=True) return super(MailMessage, self)._notify( - self.id, force_send=force_send, user_signature=user_signature) + force_send=force_send, send_after_commit=send_after_commit, + user_signature=user_signature, + ) diff --git a/mail_follower_custom_notification/models/mail_message_subtype.py b/mail_follower_custom_notification/models/mail_message_subtype.py index f58e199d..72c475b8 100644 --- a/mail_follower_custom_notification/models/mail_message_subtype.py +++ b/mail_follower_custom_notification/models/mail_message_subtype.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# © 2015 Therp BV +# Copyright 2015 Therp BV # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import fields, models +from odoo import fields, models class MailMessageSubtype(models.Model): @@ -9,14 +9,18 @@ class MailMessageSubtype(models.Model): custom_notification_mail = fields.Selection( [('force_yes', 'Force yes'), ('force_no', 'Force no')], - string='Send mail notification', help='Leave empty to use the ' + string='Send mail notification', help='Leave empty to use the setting ' 'on the partner\'s form, set to "Force yes" to always send messages ' 'of this type via email, and "Force no" to never send messages of ' - 'type via email') + 'type via email', + ) custom_notification_own = fields.Boolean( 'Notify about own messages', help='Check this to have notifications ' - 'generated and sent via email about own messages') + 'generated and sent via email about own messages', + ) custom_notification_model_ids = fields.Many2many( 'ir.model', string='Models', help='Choose for which models the ' 'custom configuration applies. This is only necessary if your subtype ' - 'doesn\'t set a model itself', domain=[('osv_memory', '=', False)]) + 'doesn\'t set a model itself', + domain=[('transient', '=', False)], + ) diff --git a/mail_follower_custom_notification/models/mail_notification.py b/mail_follower_custom_notification/models/mail_notification.py deleted file mode 100644 index c70e0f50..00000000 --- a/mail_follower_custom_notification/models/mail_notification.py +++ /dev/null @@ -1,33 +0,0 @@ -# -*- coding: utf-8 -*- -# © 2015 Therp BV -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import api, models - - -class MailNotification(models.Model): - _inherit = 'mail.notification' - - @api.multi - def get_partners_to_email(self, message): - partner_ids = super(MailNotification, self)\ - .get_partners_to_email(message) - for this in self: - follower = self.env['mail.followers'].search([ - ('res_model', '=', message.model), - ('res_id', '=', message.res_id), - ('partner_id', '=', this.partner_id.id), - '|', '|', - ('force_nomail_subtype_ids', '=', message.subtype_id.id), - ('force_mail_subtype_ids', '=', message.subtype_id.id), - ('force_own_subtype_ids', '=', message.subtype_id.id), - ]) - if not follower: - continue - if (message.subtype_id in follower.force_mail_subtype_ids or - message.subtype_id in follower.force_own_subtype_ids) and\ - this.partner_id.id not in partner_ids: - partner_ids.append(this.partner_id.id) - if message.subtype_id in follower.force_nomail_subtype_ids and\ - this.partner_id.id in partner_ids: - partner_ids.remove(this.partner_id.id) - return partner_ids diff --git a/mail_follower_custom_notification/models/mail_thread.py b/mail_follower_custom_notification/models/mail_thread.py index 11c23eb8..1a890ee8 100644 --- a/mail_follower_custom_notification/models/mail_thread.py +++ b/mail_follower_custom_notification/models/mail_thread.py @@ -1,40 +1,11 @@ # -*- coding: utf-8 -*- -# © 2015 Therp BV +# Copyright 2015 Therp BV # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import api, models +from odoo import api, models class MailThread(models.AbstractModel): - _inherit = ['base.patch.models.mixin', 'mail.thread'] - _name = 'mail.thread' - - @api.multi - def _get_subscription_data(self, name, args, user_pid=None): - result = super(MailThread, self)._get_subscription_data( - name, args, user_pid=user_pid) - subtypes = self.env['mail.message.subtype'].search([ - ('hidden', '=', False), - '|', - ('res_model', '=', self._name), - ('res_model', '=', False), - ]) - for follower in self.env['mail.followers'].search([ - ('res_model', '=', self._name), - ('res_id', 'in', result.keys()), - ('partner_id', '=', user_pid or self.env.user.partner_id.id), - ]): - # values are ordered dicts, so we get the correct matches - for subtype, data in zip( - subtypes, - result[follower.res_id]['message_subtype_data'].values()): - data['force_mail'] = 'default' - if subtype in follower.force_mail_subtype_ids: - data['force_mail'] = 'force_yes' - elif subtype in follower.force_nomail_subtype_ids: - data['force_mail'] = 'force_no' - data['force_own'] =\ - subtype in follower.force_own_subtype_ids - return result + _inherit = 'mail.thread' @api.multi def message_custom_notification_update_user(self, custom_notifications): @@ -54,9 +25,10 @@ class MailThread(models.AbstractModel): and dictionaries mapping message subtype ids to custom notification values""" def ids_with_value(data, key, value): - return map(lambda x: int(x[0]), - filter(lambda x: x[1][key] == value, - data.iteritems())) + return map( + lambda x: int(x[0]), + filter(lambda x: x[1][key] == value, data.iteritems()) + ) custom_notifications = { int(key): value diff --git a/mail_follower_custom_notification/models/res_partner.py b/mail_follower_custom_notification/models/res_partner.py new file mode 100644 index 00000000..304fbd2a --- /dev/null +++ b/mail_follower_custom_notification/models/res_partner.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +# Copyright 2019 Therp BV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +from odoo import api, models + + +class ResPartner(models.Model): + _inherit = 'res.partner' + + @api.multi + def _notify_by_email( + self, message, force_send=False, send_after_commit=True, + user_signature=True, + ): + """remove partners from `self` who requested not to be mailed, + add the ones who did the opposite""" + domain = [ + ('res_model', '=', message.model), + ('res_id', '=', message.res_id), + ] + self |= self.env['mail.followers'].search( + domain + [('force_mail_subtype_ids', '=', message.subtype_id.id)] + ).mapped('partner_id') + self -= self.env['mail.followers'].search( + domain + [('force_nomail_subtype_ids', '=', message.subtype_id.id)] + ).mapped('partner_id') + return super(ResPartner, self)._notify_by_email( + message, force_send=force_send, + send_after_commit=send_after_commit, user_signature=user_signature, + ) diff --git a/mail_follower_custom_notification/readme/CONFIGURE.rst b/mail_follower_custom_notification/readme/CONFIGURE.rst new file mode 100644 index 00000000..95b051ee --- /dev/null +++ b/mail_follower_custom_notification/readme/CONFIGURE.rst @@ -0,0 +1,10 @@ +When followers open their subscriptions, they will be offered the choice to +override mail settings and to force being notified about their own messages. + +Note subscriptions are only editable for users of the `Technical settings` +group. + +You can add defaults per message subtype for this settings in Settings / +Technical / Email / Subtypes. Here, you also have the opportunity to apply +those defaults to existing subscriptions. Note that this overrides all +customizations your users already have done. diff --git a/mail_follower_custom_notification/readme/CONTRIBUTORS.rst b/mail_follower_custom_notification/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000..b120a956 --- /dev/null +++ b/mail_follower_custom_notification/readme/CONTRIBUTORS.rst @@ -0,0 +1 @@ +* Holger Brunn diff --git a/mail_follower_custom_notification/readme/CREDITS.rst b/mail_follower_custom_notification/readme/CREDITS.rst new file mode 100644 index 00000000..cc056a80 --- /dev/null +++ b/mail_follower_custom_notification/readme/CREDITS.rst @@ -0,0 +1 @@ +* Odoo Community Association: `Icon `_. diff --git a/mail_follower_custom_notification/readme/DESCRIPTION.rst b/mail_follower_custom_notification/readme/DESCRIPTION.rst new file mode 100644 index 00000000..6d1d1d14 --- /dev/null +++ b/mail_follower_custom_notification/readme/DESCRIPTION.rst @@ -0,0 +1,6 @@ +In standard Odoo, receiving mail notifications is an all or nothing affair. +This module allows users to decide per followed record if they want to +receive emails or not. Further, they can choose to receive notifications about +their own messages. + +You can also set defaults for this settings on the subtype in question. diff --git a/mail_follower_custom_notification/static/description/index.html b/mail_follower_custom_notification/static/description/index.html new file mode 100644 index 00000000..59101d8e --- /dev/null +++ b/mail_follower_custom_notification/static/description/index.html @@ -0,0 +1,442 @@ + + + + + + +Custom notification settings for followers + + + +
+

Custom notification settings for followers

+ + +

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

+

In standard Odoo, receiving mail notifications is an all or nothing affair. +This module allows users to decide per followed record if they want to +receive emails or not. Further, they can choose to receive notifications about +their own messages.

+

You can also set defaults for this settings on the subtype in question.

+

Table of contents

+ +
+

Configuration

+

When followers open their subscriptions, they will be offered the choice to +override mail settings and to force being notified about their own messages.

+

Note subscriptions are only editable for users of the Technical settings +group.

+

You can add defaults per message subtype for this settings in Settings / +Technical / Email / Subtypes. Here, you also have the opportunity to apply +those defaults to existing subscriptions. Note that this overrides all +customizations your users already have done.

+
+
+

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

+
    +
  • Therp BV
  • +
+
+
+

Contributors

+ +
+
+

Other credits

+
    +
  • Odoo Community Association: Icon.
  • +
+
+
+

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/social project on GitHub.

+

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

+
+
+
+ + diff --git a/mail_follower_custom_notification/static/src/css/mail_follower_custom_notification.css b/mail_follower_custom_notification/static/src/css/mail_follower_custom_notification.css index 92b9ecb9..a75b9021 100644 --- a/mail_follower_custom_notification/static/src/css/mail_follower_custom_notification.css +++ b/mail_follower_custom_notification/static/src/css/mail_follower_custom_notification.css @@ -1,5 +1,18 @@ -.oe_custom_notification legend +.o_mail_follower_custom_notification +{ + padding: 5px 10px 10px 10px; +} +.o_mail_follower_custom_notification fieldset > legend { font-size: inherit; margin-bottom: 0px; } +.o_mail_follower_custom_notification fieldset > div, +.o_mail_follower_custom_notification fieldset > div > label +{ + white-space: nowrap; +} +.o_mail_follower_custom_notification fieldset > div > label +{ + font-weight: normal; +} diff --git a/mail_follower_custom_notification/static/src/js/mail_follower_custom_notification.js b/mail_follower_custom_notification/static/src/js/mail_follower_custom_notification.js index 104342b1..449e3d1e 100644 --- a/mail_follower_custom_notification/static/src/js/mail_follower_custom_notification.js +++ b/mail_follower_custom_notification/static/src/js/mail_follower_custom_notification.js @@ -1,79 +1,65 @@ -//-*- coding: utf-8 -*- -//© 2015 Therp BV -//License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). - -openerp.mail_follower_custom_notification = function(instance) -{ - instance.mail_followers.Followers.include({ - display_subtypes: function(data, id, dialog) - { - var $list = this.$('.oe_subtype_list ul'); - if (dialog) - { - $list = this.$dialog.$el; +// -*- coding: utf-8 -*- +// Copyright 2015-2019 Therp BV +// License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +odoo.define('mail_follower_custom_notification', function(require) { + 'use strict'; + var core = require('web.core'); + require('mail.Followers'); + core.form_widget_registry.get('mail_followers').include({ + /* eslint-disable-next-line no-unused-vars */ + display_subtypes:function (data, dialog, display_warning) { + this._super.apply(this, arguments); + var $list = this.$('ul.o_followers_list'); + if (dialog) { + $list = this.dialog.$('ul'); } - $list.empty(); - this._super(data, id, dialog); - $list.find('input[type=checkbox]').change(function() - { + $list.find('input[type=checkbox]').change(function() { $list.find(_.str.sprintf( '#custom_notification_%s%s', jQuery(this).data('id'), dialog ? '_dialog' : '' - )) - .toggle(jQuery(this).prop('checked')); + )).toggle(jQuery(this).prop('checked')); }); - if(!dialog) - { - $list.find('.oe_custom_notification input[type=radio]') - .change(this.proxy('do_update_subscription')); - }; - }, - do_update_subscription: function(event, user_pid) - { - /* - if(jQuery(event.currentTarget).parents('.oe_custom_notification') - .length) - { - // mail reacts on all inputs, suppress for our inputs - return jQuery.when(); + if (!dialog) { + $list.find( + '.oe_custom_notification input[type=radio]' + ).change(this.proxy('do_update_subscription')); } - */ + }, + /* eslint-disable-next-line no-unused-vars */ + do_update_subscription: function (event, follower_id, is_channel) { var self = this, update_func = 'message_custom_notification_update_user', follower_ids = [this.session.uid], custom_notifications = {}, - oe_action = this.$('.oe_actions'); - if(user_pid) - { + $list = this.$('ul'); + if (follower_id !== undefined) { update_func = 'message_custom_notification_update'; - follower_ids = [user_pid]; - oe_action = jQuery('.oe_edit_actions'); + follower_ids = [follower_id]; + $list = this.dialog.$('ul'); } - _(follower_ids).each(function(follower) - { - + _(follower_ids).each(function(follower) { var follower_settings = custom_notifications[follower] = {}; - oe_action.find('.oe_custom_notification') - .each(function() - { - var id = parseInt(jQuery(this).data('id')), + $list.find( + '.o_mail_follower_custom_notification' + ).each(function () { + var id = parseInt(jQuery(this).data('id'), 10), settings = follower_settings[id] = {}; - settings['force_mail'] = jQuery(this) - .find('.oe_custom_notification_mail input:checked') + settings.force_mail = jQuery(this) + .find('.mail input:checked') .val(); - settings['force_own'] = jQuery(this) - .find('.oe_custom_notification_own input:checked') + settings.force_own = jQuery(this) + .find('.own input:checked') .val(); }); }); - return jQuery.when(this._super.apply(this, arguments)) - .then(function() - { + return jQuery.when( + this._super.apply(this, arguments) + ).then(function () { return self.ds_model.call( update_func, - [[self.view.datarecord.id], custom_notifications]) - }) + [[self.view.datarecord.id], custom_notifications]); + }).then(this.proxy('render_value')); }, }); -} +}); diff --git a/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml b/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml index 25fee159..72f184f2 100644 --- a/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml +++ b/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml @@ -1,38 +1,35 @@ diff --git a/mail_follower_custom_notification/tests/test_mail_follower_custom_notification.py b/mail_follower_custom_notification/tests/test_mail_follower_custom_notification.py index 11bed947..62463bd6 100644 --- a/mail_follower_custom_notification/tests/test_mail_follower_custom_notification.py +++ b/mail_follower_custom_notification/tests/test_mail_follower_custom_notification.py @@ -1,33 +1,48 @@ # -*- coding: utf-8 -*- -# © 2015 Therp BV +# Copyright 2015 Therp BV # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from mock import Mock, patch from openerp.tests.common import TransactionCase +from ..controllers.mail_controller import MailController class TestMailFollowerCustomNotification(TransactionCase): + def _call_controller(self, res_model, follower_id): + mt_comment = self.env.ref('mail.mt_comment') + with patch('__builtin__.super') as mock_super, patch( + 'odoo.addons.mail_follower_custom_notification.controllers.' + 'mail_controller.request' + ) as mock_request: + mock_super.return_value = Mock( + read_subscription_data=lambda res_model, follower_id: [{ + 'id': mt_comment.id, + }], + ) + mock_request.env = self.env + return MailController.read_subscription_data.__func__( + None, res_model, follower_id, + )[0] + def test_mail_follower_custom_notification(self): - self.env['mail.thread']._register_hook() followed_partner = self.env['res.partner'].create({ 'name': 'I\'m followed', }) demo_user = self.env.ref('base.user_demo') + mt_comment = self.env.ref('mail.mt_comment') followed_partner_demo = followed_partner.sudo(demo_user.id) followed_partner_demo.message_subscribe_users() + follower = followed_partner_demo.message_follower_ids.filtered( + lambda x: x.partner_id == demo_user.partner_id + ) # see if default subscriptions return default custom settings - subscription_data = followed_partner_demo._get_subscription_data( - None, None) - self.assertEqual( - subscription_data[followed_partner.id]['message_subtype_data'] - ['Discussions']['force_mail'], - 'default') - self.assertEqual( - subscription_data[followed_partner.id]['message_subtype_data'] - ['Discussions']['force_own'], - False) + subscription_data = self._call_controller( + follower.res_model, follower.id, + ) + self.assertEqual(subscription_data['force_mail'], 'default') + self.assertEqual(subscription_data['force_own'], False) # set custom settings - mt_comment = self.env.ref('mail.mt_comment') followed_partner_demo.message_custom_notification_update_user({ str(demo_user.id): { str(mt_comment.id): { @@ -37,39 +52,34 @@ class TestMailFollowerCustomNotification(TransactionCase): }, }) # see if we can read them back - subscription_data = followed_partner_demo._get_subscription_data( - None, None) - self.assertEqual( - subscription_data[followed_partner.id]['message_subtype_data'] - ['Discussions']['force_mail'], - 'force_yes') - self.assertEqual( - subscription_data[followed_partner.id]['message_subtype_data'] - ['Discussions']['force_own'], - True) + subscription_data = self._call_controller( + follower.res_model, follower.id, + ) + self.assertEqual(subscription_data['force_mail'], 'force_yes') + self.assertEqual(subscription_data['force_own'], True) # post a message and see if we successfully forced a notification to # ourselves + # pylint: disable=translation-required followed_partner_demo.message_post('hello world', subtype='mt_comment') - self.assertEqual( - followed_partner_demo.message_ids[:-1].notification_ids.partner_id, - demo_user.partner_id) + self.assertIn( + demo_user.partner_id, + followed_partner_demo.message_ids[:-1].notification_ids.mapped( + 'res_partner_id', + ) + ) # assign default values on message subtype and apply them to all # followers - mt_comment.custom_notification_model_ids = self.env['ir.model']\ - .search([('model', '=', 'res.partner')]) + mt_comment.custom_notification_model_ids = self.env['ir.model'].search( + [('model', '=', 'res.partner')] + ) wizard = self.env['mail.subtype.assign.custom.notifications']\ .with_context(active_ids=mt_comment.ids)\ .create({}) wizard.button_apply() - subscription_data = followed_partner_demo._get_subscription_data( - None, None) - self.assertEqual( - subscription_data[followed_partner.id]['message_subtype_data'] - ['Discussions']['force_mail'], - 'default') - self.assertEqual( - subscription_data[followed_partner.id]['message_subtype_data'] - ['Discussions']['force_own'], - False) + subscription_data = self._call_controller( + follower.res_model, follower.id, + ) + self.assertEqual(subscription_data['force_mail'], 'default') + self.assertEqual(subscription_data['force_own'], False) diff --git a/mail_follower_custom_notification/views/mail_message_subtype.xml b/mail_follower_custom_notification/views/mail_message_subtype.xml index 0d60986c..c43a5d07 100644 --- a/mail_follower_custom_notification/views/mail_message_subtype.xml +++ b/mail_follower_custom_notification/views/mail_message_subtype.xml @@ -1,18 +1,16 @@ - - - - mail.message.subtype - - - - - - - - + + + mail.message.subtype + + + + + + + - - - - + + + + diff --git a/mail_follower_custom_notification/views/templates.xml b/mail_follower_custom_notification/views/templates.xml index fbfbec8b..f24f9214 100644 --- a/mail_follower_custom_notification/views/templates.xml +++ b/mail_follower_custom_notification/views/templates.xml @@ -1,11 +1,9 @@ - - - - - + + + diff --git a/mail_follower_custom_notification/wizards/__init__.py b/mail_follower_custom_notification/wizards/__init__.py index e968c053..5b4f1fb7 100644 --- a/mail_follower_custom_notification/wizards/__init__.py +++ b/mail_follower_custom_notification/wizards/__init__.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- -# © 2015 Therp BV +# Copyright 2015 Therp BV # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import mail_subtype_assign_custom_notifications diff --git a/mail_follower_custom_notification/wizards/mail_subtype_assign_custom_notifications.py b/mail_follower_custom_notification/wizards/mail_subtype_assign_custom_notifications.py index c0413e7e..66d04092 100644 --- a/mail_follower_custom_notification/wizards/mail_subtype_assign_custom_notifications.py +++ b/mail_follower_custom_notification/wizards/mail_subtype_assign_custom_notifications.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# © 2015 Therp BV +# Copyright 2015 Therp BV # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp import api, fields, models @@ -15,8 +15,7 @@ class MailSubtypeAssignCustomNotifications(models.TransientModel): @api.multi def button_apply(self): - self.ensure_one() - for subtype in self.subtype_ids: + for subtype in self.mapped('subtype_ids'): domain = [('subtype_ids', '=', subtype.id)] if subtype.custom_notification_model_ids: domain.append( diff --git a/mail_follower_custom_notification/wizards/mail_subtype_assign_custom_notifications.xml b/mail_follower_custom_notification/wizards/mail_subtype_assign_custom_notifications.xml index adbab627..8264c344 100644 --- a/mail_follower_custom_notification/wizards/mail_subtype_assign_custom_notifications.xml +++ b/mail_follower_custom_notification/wizards/mail_subtype_assign_custom_notifications.xml @@ -1,30 +1,27 @@ - - - - mail.subtype.assign.custom.notifications - -
- - - -
-
-
-
-
- -
-
+ + + mail.subtype.assign.custom.notifications + +
+ + + +
+
+
+
+
+ +