From 8d8a43c9efa0c6b8ede582eac48e24148657b1a2 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Tue, 29 Sep 2015 14:55:35 +0200 Subject: [PATCH 1/5] [ADD] document_page_tags --- document_page_tags/README.rst | 48 ++++++++++++++++ document_page_tags/__init__.py | 21 +++++++ document_page_tags/__openerp__.py | 37 +++++++++++++ document_page_tags/hooks.py | 52 ++++++++++++++++++ document_page_tags/models/__init__.py | 21 +++++++ document_page_tags/models/document_page.py | 26 +++++++++ .../models/document_page_tag.py | 31 +++++++++++ .../security/ir.model.access.csv | 3 + .../static/description/icon.png | Bin 0 -> 9455 bytes document_page_tags/tests/__init__.py | 20 +++++++ .../tests/test_document_page_tags.py | 32 +++++++++++ document_page_tags/views/document_page.xml | 23 ++++++++ 12 files changed, 314 insertions(+) create mode 100644 document_page_tags/README.rst create mode 100644 document_page_tags/__init__.py create mode 100644 document_page_tags/__openerp__.py create mode 100644 document_page_tags/hooks.py create mode 100644 document_page_tags/models/__init__.py create mode 100644 document_page_tags/models/document_page.py create mode 100644 document_page_tags/models/document_page_tag.py create mode 100644 document_page_tags/security/ir.model.access.csv create mode 100644 document_page_tags/static/description/icon.png create mode 100644 document_page_tags/tests/__init__.py create mode 100644 document_page_tags/tests/test_document_page_tags.py create mode 100644 document_page_tags/views/document_page.xml diff --git a/document_page_tags/README.rst b/document_page_tags/README.rst new file mode 100644 index 00000000..ebae1dcc --- /dev/null +++ b/document_page_tags/README.rst @@ -0,0 +1,48 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License: AGPL-3 + +=============================== +Tags/Keywords for document page +=============================== + +This module allows you to fill in keywords on your pages to simplify finding them afterwards. + +Usage +===== + +Fill in your keywords, and search for them by typing (part of) the keyword and choose searching for keywords. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/118/8.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed feedback +`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/document_page_tags/__init__.py b/document_page_tags/__init__.py new file mode 100644 index 00000000..856516ef --- /dev/null +++ b/document_page_tags/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# This module copyright (C) 2015 Therp BV . +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +from . import models +from .hooks import post_init_hook diff --git a/document_page_tags/__openerp__.py b/document_page_tags/__openerp__.py new file mode 100644 index 00000000..b82c7183 --- /dev/null +++ b/document_page_tags/__openerp__.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# This module copyright (C) 2015 Therp BV . +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +{ + "name": "Tags/Keywords for document page", + "version": "8.0.1.0.0", + "author": "Therp BV,Odoo Community Association (OCA)", + "license": "AGPL-3", + "category": "Knowledge Management", + "summary": "Allows you to assign tags or keywords to pages and search for " + "them afterwards", + "depends": [ + 'document_page', + ], + "data": [ + "views/document_page.xml", + 'security/ir.model.access.csv', + ], + "installable": True, + "post_init_hook": 'post_init_hook', +} diff --git a/document_page_tags/hooks.py b/document_page_tags/hooks.py new file mode 100644 index 00000000..a68dfe54 --- /dev/null +++ b/document_page_tags/hooks.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# This module copyright (C) 2015 Therp BV . +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +import re +from openerp import SUPERUSER_ID +from openerp.api import Environment + + +def post_init_hook(cr, pool): + # in case we have an old tags column from the wiki module lying around, + # populate our tags with its content + for column in ['openupgrade_legacy_7_0_tags', 'tags']: + cr.execute('SELECT column_name FROM information_schema.columns ' + 'WHERE table_name=%s and column_name=%s', + (pool['document.page']._table, column)) + if cr.fetchall(): + populate_tags(cr, column) + + +def populate_tags(cr, column): + env = Environment(cr, SUPERUSER_ID, {}) + document_page_tag = env['document.page.tag'] + document_page = env['document.page'] + cr.execute( + 'SELECT %s, ARRAY_AGG(id) from %s WHERE %s IS NOT NULL GROUP BY %s' % ( + column, env['document.page']._table, column, column)) + for keywords, ids in cr.fetchall(): + pages = document_page.browse(ids) + tag_ids = [] + for keyword in re.split(r'\W+', keywords): + tag = document_page_tag.search([('name', '=ilike', keyword)]) + if tag: + tag_ids.append(tag.id) + else: + tag_ids.append(document_page_tag.name_create(keyword)[0]) + pages.write({'tag_ids': [(6, 0, set(tag_ids))]}) diff --git a/document_page_tags/models/__init__.py b/document_page_tags/models/__init__.py new file mode 100644 index 00000000..c7ac18cb --- /dev/null +++ b/document_page_tags/models/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# This module copyright (C) 2015 Therp BV . +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +from . import document_page +from . import document_page_tag diff --git a/document_page_tags/models/document_page.py b/document_page_tags/models/document_page.py new file mode 100644 index 00000000..5f0ed038 --- /dev/null +++ b/document_page_tags/models/document_page.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# This module copyright (C) 2015 Therp BV (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +from openerp import models, fields + + +class DocumentPage(models.Model): + _inherit = 'document.page' + + tag_ids = fields.Many2many('document.page.tag', string='Keywords') diff --git a/document_page_tags/models/document_page_tag.py b/document_page_tags/models/document_page_tag.py new file mode 100644 index 00000000..e7540bc8 --- /dev/null +++ b/document_page_tags/models/document_page_tag.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# This module copyright (C) 2015 Therp BV (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +from openerp import models, fields + + +class DocumentPageTag(models.Model): + _name = 'document.page.tag' + _description = 'A keyword for document pages' + + name = fields.Char(translate=True) + + _sql_constraints = [ + ('unique_name', 'unique(name)', 'Tags must me unique'), + ] diff --git a/document_page_tags/security/ir.model.access.csv b/document_page_tags/security/ir.model.access.csv new file mode 100644 index 00000000..f9dce761 --- /dev/null +++ b/document_page_tags/security/ir.model.access.csv @@ -0,0 +1,3 @@ +"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" +access_document_page_tag,access_document_page_tag,model_document_page_tag,,1,0,0,0 +access_document_page_tag,access_document_page_tag,model_document_page_tag,base.group_user,1,1,1,1 diff --git a/document_page_tags/static/description/icon.png b/document_page_tags/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/document_page_tags/tests/__init__.py b/document_page_tags/tests/__init__.py new file mode 100644 index 00000000..0816344d --- /dev/null +++ b/document_page_tags/tests/__init__.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# This module copyright (C) 2015 Therp BV . +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +from . import test_document_page_tags diff --git a/document_page_tags/tests/test_document_page_tags.py b/document_page_tags/tests/test_document_page_tags.py new file mode 100644 index 00000000..5a1c2752 --- /dev/null +++ b/document_page_tags/tests/test_document_page_tags.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# This module copyright (C) 2015 Therp BV . +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +from psycopg2 import IntegrityError +from openerp.tests.common import TransactionCase +from ..hooks import post_init_hook + + +class TestDocumentPageTags(TransactionCase): + def test_document_page_tags(self): + # run our init hook for coverage + post_init_hook(self.cr, self.registry) + # check we can't create nonunique tags + with self.assertRaises(IntegrityError): + self.env['document.page.tag'].name_create('test') + self.env['document.page.tag'].name_create('test') diff --git a/document_page_tags/views/document_page.xml b/document_page_tags/views/document_page.xml new file mode 100644 index 00000000..e9693769 --- /dev/null +++ b/document_page_tags/views/document_page.xml @@ -0,0 +1,23 @@ + + + + + document.page + + + + + + + + + document.page + + + + + + + + + From c107c5e18c280c06d9fbb8635b2fa5c1e0ee631d Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 5 Mar 2016 06:46:40 -0500 Subject: [PATCH 2/5] OCA Transbot updated translations from Transifex --- document_page_tags/i18n/am.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/ar.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/bg.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/bs.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/ca.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/ca_ES.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/cs.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/da.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/de.po | 79 ++++++++++++++++++++++++++++ document_page_tags/i18n/el.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/el_GR.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/en_GB.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/es.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/es_AR.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/es_CL.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/es_CO.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/es_CR.po | 68 ++++++++++++++++++++++++ document_page_tags/i18n/es_DO.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/es_EC.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/es_ES.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/es_MX.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/es_PE.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/es_PY.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/es_VE.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/et.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/eu.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/fa.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/fi.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/fr.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/fr_CA.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/fr_CH.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/gl.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/gl_ES.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/he.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/hr.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/hr_HR.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/hu.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/id.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/it.po | 80 +++++++++++++++++++++++++++++ document_page_tags/i18n/ja.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/ko.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/lt.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/lt_LT.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/lv.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/mk.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/mn.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/nb.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/nb_NO.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/nl.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/nl_BE.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/nl_NL.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/pl.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/pt.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/pt_BR.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/pt_PT.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/ro.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/ru.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/sk.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/sl.po | 79 ++++++++++++++++++++++++++++ document_page_tags/i18n/sr.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/sr@latin.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/sv.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/th.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/tr.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/tr_TR.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/uk.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/vi.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/vi_VN.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/zh_CN.po | 78 ++++++++++++++++++++++++++++ document_page_tags/i18n/zh_TW.po | 78 ++++++++++++++++++++++++++++ 70 files changed, 5454 insertions(+) create mode 100644 document_page_tags/i18n/am.po create mode 100644 document_page_tags/i18n/ar.po create mode 100644 document_page_tags/i18n/bg.po create mode 100644 document_page_tags/i18n/bs.po create mode 100644 document_page_tags/i18n/ca.po create mode 100644 document_page_tags/i18n/ca_ES.po create mode 100644 document_page_tags/i18n/cs.po create mode 100644 document_page_tags/i18n/da.po create mode 100644 document_page_tags/i18n/de.po create mode 100644 document_page_tags/i18n/el.po create mode 100644 document_page_tags/i18n/el_GR.po create mode 100644 document_page_tags/i18n/en_GB.po create mode 100644 document_page_tags/i18n/es.po create mode 100644 document_page_tags/i18n/es_AR.po create mode 100644 document_page_tags/i18n/es_CL.po create mode 100644 document_page_tags/i18n/es_CO.po create mode 100644 document_page_tags/i18n/es_CR.po create mode 100644 document_page_tags/i18n/es_DO.po create mode 100644 document_page_tags/i18n/es_EC.po create mode 100644 document_page_tags/i18n/es_ES.po create mode 100644 document_page_tags/i18n/es_MX.po create mode 100644 document_page_tags/i18n/es_PE.po create mode 100644 document_page_tags/i18n/es_PY.po create mode 100644 document_page_tags/i18n/es_VE.po create mode 100644 document_page_tags/i18n/et.po create mode 100644 document_page_tags/i18n/eu.po create mode 100644 document_page_tags/i18n/fa.po create mode 100644 document_page_tags/i18n/fi.po create mode 100644 document_page_tags/i18n/fr.po create mode 100644 document_page_tags/i18n/fr_CA.po create mode 100644 document_page_tags/i18n/fr_CH.po create mode 100644 document_page_tags/i18n/gl.po create mode 100644 document_page_tags/i18n/gl_ES.po create mode 100644 document_page_tags/i18n/he.po create mode 100644 document_page_tags/i18n/hr.po create mode 100644 document_page_tags/i18n/hr_HR.po create mode 100644 document_page_tags/i18n/hu.po create mode 100644 document_page_tags/i18n/id.po create mode 100644 document_page_tags/i18n/it.po create mode 100644 document_page_tags/i18n/ja.po create mode 100644 document_page_tags/i18n/ko.po create mode 100644 document_page_tags/i18n/lt.po create mode 100644 document_page_tags/i18n/lt_LT.po create mode 100644 document_page_tags/i18n/lv.po create mode 100644 document_page_tags/i18n/mk.po create mode 100644 document_page_tags/i18n/mn.po create mode 100644 document_page_tags/i18n/nb.po create mode 100644 document_page_tags/i18n/nb_NO.po create mode 100644 document_page_tags/i18n/nl.po create mode 100644 document_page_tags/i18n/nl_BE.po create mode 100644 document_page_tags/i18n/nl_NL.po create mode 100644 document_page_tags/i18n/pl.po create mode 100644 document_page_tags/i18n/pt.po create mode 100644 document_page_tags/i18n/pt_BR.po create mode 100644 document_page_tags/i18n/pt_PT.po create mode 100644 document_page_tags/i18n/ro.po create mode 100644 document_page_tags/i18n/ru.po create mode 100644 document_page_tags/i18n/sk.po create mode 100644 document_page_tags/i18n/sl.po create mode 100644 document_page_tags/i18n/sr.po create mode 100644 document_page_tags/i18n/sr@latin.po create mode 100644 document_page_tags/i18n/sv.po create mode 100644 document_page_tags/i18n/th.po create mode 100644 document_page_tags/i18n/tr.po create mode 100644 document_page_tags/i18n/tr_TR.po create mode 100644 document_page_tags/i18n/uk.po create mode 100644 document_page_tags/i18n/vi.po create mode 100644 document_page_tags/i18n/vi_VN.po create mode 100644 document_page_tags/i18n/zh_CN.po create mode 100644 document_page_tags/i18n/zh_TW.po diff --git a/document_page_tags/i18n/am.po b/document_page_tags/i18n/am.po new file mode 100644 index 00000000..4a309925 --- /dev/null +++ b/document_page_tags/i18n/am.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-knowledge-8-0/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/ar.po b/document_page_tags/i18n/ar.po new file mode 100644 index 00000000..4655ab6b --- /dev/null +++ b/document_page_tags/i18n/ar.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Arabic (http://www.transifex.com/oca/OCA-knowledge-8-0/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "أنشئ في" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "اسم العرض" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "المعرف" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "الاسم" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/bg.po b/document_page_tags/i18n/bg.po new file mode 100644 index 00000000..47b30696 --- /dev/null +++ b/document_page_tags/i18n/bg.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+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-knowledge-8-0/language/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Създадено от" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Създадено на" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Име за Показване" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Име" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/bs.po b/document_page_tags/i18n/bs.po new file mode 100644 index 00000000..10fc9675 --- /dev/null +++ b/document_page_tags/i18n/bs.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-knowledge-8-0/language/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Ime" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/ca.po b/document_page_tags/i18n/ca.po new file mode 100644 index 00000000..289b0b82 --- /dev/null +++ b/document_page_tags/i18n/ca.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2017-01-17 19:17+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-knowledge-8-0/language/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Creat per" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Creat el" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Veure el nom" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nom" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/ca_ES.po b/document_page_tags/i18n/ca_ES.po new file mode 100644 index 00000000..3c7da739 --- /dev/null +++ b/document_page_tags/i18n/ca_ES.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Creat per" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Creat a" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Nom visible" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Darrera modificació en" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Darrera actualització per" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Darrera actualització el" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nom" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/cs.po b/document_page_tags/i18n/cs.po new file mode 100644 index 00000000..d5eee533 --- /dev/null +++ b/document_page_tags/i18n/cs.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-10-11 09:48+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-knowledge-8-0/language/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Vytvořeno" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Název" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/da.po b/document_page_tags/i18n/da.po new file mode 100644 index 00000000..420cf898 --- /dev/null +++ b/document_page_tags/i18n/da.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Danish (http://www.transifex.com/oca/OCA-knowledge-8-0/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Oprettet af" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Oprettet den" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Vist navn" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "Id" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Navn" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/de.po b/document_page_tags/i18n/de.po new file mode 100644 index 00000000..23acefa1 --- /dev/null +++ b/document_page_tags/i18n/de.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +# Rudolf Schnapka , 2017 +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+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-knowledge-8-0/language/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "Ein Schlüsselbegriff für Dokumentseiten" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Angelegt durch" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Erzeugt am" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Anzeigename" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Dokumentenseite" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "Schlüsselbegriffe" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert durch" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Bezeichnung" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "Schlagworte müssen eindeutig sein" diff --git a/document_page_tags/i18n/el.po b/document_page_tags/i18n/el.po new file mode 100644 index 00000000..bbeab716 --- /dev/null +++ b/document_page_tags/i18n/el.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-10-11 09:47+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Greek (http://www.transifex.com/oca/OCA-knowledge-8-0/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Δημιουργήθηκε από" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Τελευταία αλλαγή στις" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Τελευταία Ενημέρωση από" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Τελευταία Ενημέρωση στις" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Όνομα" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/el_GR.po b/document_page_tags/i18n/el_GR.po new file mode 100644 index 00000000..df42364c --- /dev/null +++ b/document_page_tags/i18n/el_GR.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "Κωδικός" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Ονομασία" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/en_GB.po b/document_page_tags/i18n/en_GB.po new file mode 100644 index 00000000..e2a3f8b6 --- /dev/null +++ b/document_page_tags/i18n/en_GB.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Created by" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Display Name" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Name" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/es.po b/document_page_tags/i18n/es.po new file mode 100644 index 00000000..999a4276 --- /dev/null +++ b/document_page_tags/i18n/es.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-09-16 21:45+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-knowledge-8-0/language/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Página de documento" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/es_AR.po b/document_page_tags/i18n/es_AR.po new file mode 100644 index 00000000..9f90431d --- /dev/null +++ b/document_page_tags/i18n/es_AR.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-10-11 09:49+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Página de documento" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/es_CL.po b/document_page_tags/i18n/es_CL.po new file mode 100644 index 00000000..fe9cb75f --- /dev/null +++ b/document_page_tags/i18n/es_CL.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/es_CO.po b/document_page_tags/i18n/es_CO.po new file mode 100644 index 00000000..f7b49f25 --- /dev/null +++ b/document_page_tags/i18n/es_CO.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Creado" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Nombre Público" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/es_CR.po b/document_page_tags/i18n/es_CR.po new file mode 100644 index 00000000..23f0c88d --- /dev/null +++ b/document_page_tags/i18n/es_CR.po @@ -0,0 +1,68 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-03 01:59+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Página de documento" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/es_DO.po b/document_page_tags/i18n/es_DO.po new file mode 100644 index 00000000..e6e9b910 --- /dev/null +++ b/document_page_tags/i18n/es_DO.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/es_EC.po b/document_page_tags/i18n/es_EC.po new file mode 100644 index 00000000..cc9d61a3 --- /dev/null +++ b/document_page_tags/i18n/es_EC.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/es_ES.po b/document_page_tags/i18n/es_ES.po new file mode 100644 index 00000000..7fc13c80 --- /dev/null +++ b/document_page_tags/i18n/es_ES.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/es_MX.po b/document_page_tags/i18n/es_MX.po new file mode 100644 index 00000000..933d5c97 --- /dev/null +++ b/document_page_tags/i18n/es_MX.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-10-11 09:47+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Página de documento" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/es_PE.po b/document_page_tags/i18n/es_PE.po new file mode 100644 index 00000000..5c5e984a --- /dev/null +++ b/document_page_tags/i18n/es_PE.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/es_PY.po b/document_page_tags/i18n/es_PY.po new file mode 100644 index 00000000..8e433dae --- /dev/null +++ b/document_page_tags/i18n/es_PY.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/es_VE.po b/document_page_tags/i18n/es_VE.po new file mode 100644 index 00000000..89f31703 --- /dev/null +++ b/document_page_tags/i18n/es_VE.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-10-11 09:49+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Página de documento" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/et.po b/document_page_tags/i18n/et.po new file mode 100644 index 00000000..776ae348 --- /dev/null +++ b/document_page_tags/i18n/et.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-04-30 15:51+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Estonian (http://www.transifex.com/oca/OCA-knowledge-8-0/language/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Loonud" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Loodud" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nimi" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/eu.po b/document_page_tags/i18n/eu.po new file mode 100644 index 00000000..679cbd00 --- /dev/null +++ b/document_page_tags/i18n/eu.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-knowledge-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Nork sortua" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Izena" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/fa.po b/document_page_tags/i18n/fa.po new file mode 100644 index 00000000..2186046d --- /dev/null +++ b/document_page_tags/i18n/fa.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Persian (http://www.transifex.com/oca/OCA-knowledge-8-0/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "شناسه" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "نام" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/fi.po b/document_page_tags/i18n/fi.po new file mode 100644 index 00000000..6d317ec9 --- /dev/null +++ b/document_page_tags/i18n/fi.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-09-15 12:45+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-knowledge-8-0/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Luonut" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Luotu" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Nimi" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Dokumentin sivu" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nimi" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/fr.po b/document_page_tags/i18n/fr.po new file mode 100644 index 00000000..2e62a1e9 --- /dev/null +++ b/document_page_tags/i18n/fr.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-09-16 21:46+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (http://www.transifex.com/oca/OCA-knowledge-8-0/language/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Nom à afficher" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Page" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nom" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/fr_CA.po b/document_page_tags/i18n/fr_CA.po new file mode 100644 index 00000000..26779778 --- /dev/null +++ b/document_page_tags/i18n/fr_CA.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "Identifiant" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nom" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/fr_CH.po b/document_page_tags/i18n/fr_CH.po new file mode 100644 index 00000000..23ab4f1c --- /dev/null +++ b/document_page_tags/i18n/fr_CH.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Nom affiché" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/gl.po b/document_page_tags/i18n/gl.po new file mode 100644 index 00000000..c6a9c239 --- /dev/null +++ b/document_page_tags/i18n/gl.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2017-08-11 11:55+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Galician (http://www.transifex.com/oca/OCA-knowledge-8-0/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Creado o" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nome" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/gl_ES.po b/document_page_tags/i18n/gl_ES.po new file mode 100644 index 00000000..ad9fd104 --- /dev/null +++ b/document_page_tags/i18n/gl_ES.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/gl_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/he.po b/document_page_tags/i18n/he.po new file mode 100644 index 00000000..f8c213c6 --- /dev/null +++ b/document_page_tags/i18n/he.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-knowledge-8-0/language/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "נוצר ב-" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "השם המוצג" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "מזהה" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "שם" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/hr.po b/document_page_tags/i18n/hr.po new file mode 100644 index 00000000..d81c06a9 --- /dev/null +++ b/document_page_tags/i18n/hr.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-10-05 06:35+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-knowledge-8-0/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Datum kreiranja" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Naziv " + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Stranica dokumenata" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažuriranje" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Naziv" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/hr_HR.po b/document_page_tags/i18n/hr_HR.po new file mode 100644 index 00000000..65d0c56f --- /dev/null +++ b/document_page_tags/i18n/hr_HR.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Naziv" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Naziv" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/hu.po b/document_page_tags/i18n/hu.po new file mode 100644 index 00000000..285efd95 --- /dev/null +++ b/document_page_tags/i18n/hu.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-04-30 15:51+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-knowledge-8-0/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Készítette" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Documentum oldal" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Név" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/id.po b/document_page_tags/i18n/id.po new file mode 100644 index 00000000..129a15f5 --- /dev/null +++ b/document_page_tags/i18n/id.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-knowledge-8-0/language/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Dibuat pada" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nama" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/it.po b/document_page_tags/i18n/it.po new file mode 100644 index 00000000..11c8edcf --- /dev/null +++ b/document_page_tags/i18n/it.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +# Paolo Valier, 2016 +# Paolo Valier, 2016 +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-09-09 12:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-knowledge-8-0/language/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "Una parola chiave per le pagine del documento" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Creato da" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Creato il" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Pagina documento" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "Parole chiave" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Ultimo aggiornamento da" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nome" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "Il Tag devono essere univoci" diff --git a/document_page_tags/i18n/ja.po b/document_page_tags/i18n/ja.po new file mode 100644 index 00000000..8be4abe1 --- /dev/null +++ b/document_page_tags/i18n/ja.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-10-11 09:51+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-knowledge-8-0/language/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "作成者" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "作成日" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "表示名" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "名称" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/ko.po b/document_page_tags/i18n/ko.po new file mode 100644 index 00000000..6b070945 --- /dev/null +++ b/document_page_tags/i18n/ko.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-10-11 09:51+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Korean (http://www.transifex.com/oca/OCA-knowledge-8-0/language/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "작성자" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "생성 날짜" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "표시 이름" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "이름" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/lt.po b/document_page_tags/i18n/lt.po new file mode 100644 index 00000000..d0ebb4ee --- /dev/null +++ b/document_page_tags/i18n/lt.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-10-11 09:51+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-knowledge-8-0/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Sukūrė" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Sukurta" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Pavadinimas" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/lt_LT.po b/document_page_tags/i18n/lt_LT.po new file mode 100644 index 00000000..5186d387 --- /dev/null +++ b/document_page_tags/i18n/lt_LT.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Sukūrė" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Sukurta" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/lv.po b/document_page_tags/i18n/lv.po new file mode 100644 index 00000000..b6894a60 --- /dev/null +++ b/document_page_tags/i18n/lv.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-10-11 09:48+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-knowledge-8-0/language/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Izveidoja" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Izveidots" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nosaukums" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/mk.po b/document_page_tags/i18n/mk.po new file mode 100644 index 00000000..ff02944f --- /dev/null +++ b/document_page_tags/i18n/mk.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-10-11 09:50+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-knowledge-8-0/language/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Креирано од" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Креирано на" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Прикажи име" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Страница на документ" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Име" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/mn.po b/document_page_tags/i18n/mn.po new file mode 100644 index 00000000..5c039fb5 --- /dev/null +++ b/document_page_tags/i18n/mn.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-10-11 09:52+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-knowledge-8-0/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Баримтын Хуудас" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Нэр" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/nb.po b/document_page_tags/i18n/nb.po new file mode 100644 index 00000000..d33cccc1 --- /dev/null +++ b/document_page_tags/i18n/nb.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-10-11 09:52+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-knowledge-8-0/language/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Opprettet av" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Opprettet den" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Visnings navn" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Navn" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/nb_NO.po b/document_page_tags/i18n/nb_NO.po new file mode 100644 index 00000000..33586a73 --- /dev/null +++ b/document_page_tags/i18n/nb_NO.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Laget av" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Laget den" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Vis navn" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/nl.po b/document_page_tags/i18n/nl.po new file mode 100644 index 00000000..03552487 --- /dev/null +++ b/document_page_tags/i18n/nl.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-11-22 12:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-knowledge-8-0/language/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Document pagina" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Naam" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/nl_BE.po b/document_page_tags/i18n/nl_BE.po new file mode 100644 index 00000000..709ba068 --- /dev/null +++ b/document_page_tags/i18n/nl_BE.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Gemaakt door" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Gemaakt op" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Schermnaam" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Naam:" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/nl_NL.po b/document_page_tags/i18n/nl_NL.po new file mode 100644 index 00000000..e7e3ee45 --- /dev/null +++ b/document_page_tags/i18n/nl_NL.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Naam" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/pl.po b/document_page_tags/i18n/pl.po new file mode 100644 index 00000000..2ab945c9 --- /dev/null +++ b/document_page_tags/i18n/pl.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-10-11 09:51+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Polish (http://www.transifex.com/oca/OCA-knowledge-8-0/language/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Utworzone przez" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Utworzono" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Strona dokumentu" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nazwa" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/pt.po b/document_page_tags/i18n/pt.po new file mode 100644 index 00000000..f444e219 --- /dev/null +++ b/document_page_tags/i18n/pt.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+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-knowledge-8-0/language/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Nome" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Página do documento" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Modificado a última vez por" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nome" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/pt_BR.po b/document_page_tags/i18n/pt_BR.po new file mode 100644 index 00000000..5b0de4a0 --- /dev/null +++ b/document_page_tags/i18n/pt_BR.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-10-04 09:43+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Página do Documento" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "Identificação" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nome" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/pt_PT.po b/document_page_tags/i18n/pt_PT.po new file mode 100644 index 00000000..2e126c3a --- /dev/null +++ b/document_page_tags/i18n/pt_PT.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-05-07 16:07+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Nome a exibir" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Página do Documento" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Modificado pela última vez em" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Modificado pela última vez por" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nome" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/ro.po b/document_page_tags/i18n/ro.po new file mode 100644 index 00000000..92ae9316 --- /dev/null +++ b/document_page_tags/i18n/ro.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+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-knowledge-8-0/language/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Creat de" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Creat in" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Pagina Documentului" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Nume" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/ru.po b/document_page_tags/i18n/ru.po new file mode 100644 index 00000000..91799e81 --- /dev/null +++ b/document_page_tags/i18n/ru.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+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-knowledge-8-0/language/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Создано" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Создан" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Страница документа" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Название" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/sk.po b/document_page_tags/i18n/sk.po new file mode 100644 index 00000000..0c582c1b --- /dev/null +++ b/document_page_tags/i18n/sk.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-knowledge-8-0/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Vytvoril" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Vytvorené" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Meno" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/sl.po b/document_page_tags/i18n/sl.po new file mode 100644 index 00000000..f8d0a2bf --- /dev/null +++ b/document_page_tags/i18n/sl.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-05-04 02:39+0000\n" +"PO-Revision-Date: 2016-05-01 04:54+0000\n" +"Last-Translator: Matjaž Mozetič \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-knowledge-8-0/language/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "Ključna beseda za strani dokumentov" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Ustvaril" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Stran dokumenta" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "Ključne besede" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnjič posodobil" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Naziv" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "Oznake morajo biti unikatne" diff --git a/document_page_tags/i18n/sr.po b/document_page_tags/i18n/sr.po new file mode 100644 index 00000000..7cb7d22d --- /dev/null +++ b/document_page_tags/i18n/sr.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-04-30 15:51+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Serbian (http://www.transifex.com/oca/OCA-knowledge-8-0/language/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Ime" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/sr@latin.po b/document_page_tags/i18n/sr@latin.po new file mode 100644 index 00000000..47e93715 --- /dev/null +++ b/document_page_tags/i18n/sr@latin.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-10-11 09:50+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Ime:" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/sv.po b/document_page_tags/i18n/sv.po new file mode 100644 index 00000000..a24e0c72 --- /dev/null +++ b/document_page_tags/i18n/sv.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-10-11 09:53+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Swedish (http://www.transifex.com/oca/OCA-knowledge-8-0/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Skapad av" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Skapad den" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Visa namn" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Dokumentsida" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Namn" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/th.po b/document_page_tags/i18n/th.po new file mode 100644 index 00000000..61410e93 --- /dev/null +++ b/document_page_tags/i18n/th.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-knowledge-8-0/language/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "สร้างโดย" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "รหัส" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "ชื่อ" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/tr.po b/document_page_tags/i18n/tr.po new file mode 100644 index 00000000..d5cd4479 --- /dev/null +++ b/document_page_tags/i18n/tr.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-12-30 18:44+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-knowledge-8-0/language/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Oluşturan" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Oluşturulma" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "Belge Sayfası" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Adı" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/tr_TR.po b/document_page_tags/i18n/tr_TR.po new file mode 100644 index 00000000..84b9a1b4 --- /dev/null +++ b/document_page_tags/i18n/tr_TR.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Oluşturan" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Görünen ad" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "Kimlik" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Ad" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/uk.po b/document_page_tags/i18n/uk.po new file mode 100644 index 00000000..cc152cea --- /dev/null +++ b/document_page_tags/i18n/uk.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-10-11 09:51+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-knowledge-8-0/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Створив" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Створено" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Name" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/vi.po b/document_page_tags/i18n/vi.po new file mode 100644 index 00000000..5e9bdfab --- /dev/null +++ b/document_page_tags/i18n/vi.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-10-11 09:47+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-knowledge-8-0/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Tạo trên" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Tên" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/vi_VN.po b/document_page_tags/i18n/vi_VN.po new file mode 100644 index 00000000..b30800f8 --- /dev/null +++ b/document_page_tags/i18n/vi_VN.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-03-02 07:42+0000\n" +"Last-Translator: <>\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "Tạo bởi" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "Tạo vào" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "Tên" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/zh_CN.po b/document_page_tags/i18n/zh_CN.po new file mode 100644 index 00000000..49f7793c --- /dev/null +++ b/document_page_tags/i18n/zh_CN.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2017-04-19 01:22+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "创建者" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "创建在" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "显示名称" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "文档页面" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "名称" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/i18n/zh_TW.po b/document_page_tags/i18n/zh_TW.po new file mode 100644 index 00000000..292cce5f --- /dev/null +++ b/document_page_tags/i18n/zh_TW.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-31 02:38+0000\n" +"PO-Revision-Date: 2016-10-11 09:52+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-knowledge-8-0/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,create_uid:0 +msgid "Created by" +msgstr "建立者" + +#. module: document_page_tags +#: field:document.page.tag,create_date:0 +msgid "Created on" +msgstr "建立於" + +#. module: document_page_tags +#: field:document.page.tag,display_name:0 +msgid "Display Name" +msgstr "顯示名稱" + +#. module: document_page_tags +#: model:ir.model,name:document_page_tags.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,id:0 +msgid "ID" +msgstr "編號" + +#. module: document_page_tags +#: field:document.page,tag_ids:0 +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: field:document.page.tag,__last_update:0 +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: document_page_tags +#: field:document.page.tag,write_uid:0 +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: document_page_tags +#: field:document.page.tag,write_date:0 +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: document_page_tags +#: field:document.page.tag,name:0 +msgid "Name" +msgstr "名稱" + +#. module: document_page_tags +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" From 39158cab6aa5fd203de1cf0ad092fd925f55b6a6 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Tue, 9 May 2017 10:19:07 +0200 Subject: [PATCH 3/5] [FIX] CI [ADD] tests for attachments_to_filesystem --- document_page_tags/hooks.py | 1 + document_page_tags/security/ir.model.access.csv | 2 +- document_page_tags/tests/test_document_page_tags.py | 6 ++++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/document_page_tags/hooks.py b/document_page_tags/hooks.py index a68dfe54..fdd8fcbb 100644 --- a/document_page_tags/hooks.py +++ b/document_page_tags/hooks.py @@ -37,6 +37,7 @@ def populate_tags(cr, column): env = Environment(cr, SUPERUSER_ID, {}) document_page_tag = env['document.page.tag'] document_page = env['document.page'] + # pylint: disable=E8103 cr.execute( 'SELECT %s, ARRAY_AGG(id) from %s WHERE %s IS NOT NULL GROUP BY %s' % ( column, env['document.page']._table, column, column)) diff --git a/document_page_tags/security/ir.model.access.csv b/document_page_tags/security/ir.model.access.csv index f9dce761..0a0d36a0 100644 --- a/document_page_tags/security/ir.model.access.csv +++ b/document_page_tags/security/ir.model.access.csv @@ -1,3 +1,3 @@ "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" -access_document_page_tag,access_document_page_tag,model_document_page_tag,,1,0,0,0 +access_document_page_tag_all,access_document_page_tag,model_document_page_tag,,1,0,0,0 access_document_page_tag,access_document_page_tag,model_document_page_tag,base.group_user,1,1,1,1 diff --git a/document_page_tags/tests/test_document_page_tags.py b/document_page_tags/tests/test_document_page_tags.py index 5a1c2752..3b6251b9 100644 --- a/document_page_tags/tests/test_document_page_tags.py +++ b/document_page_tags/tests/test_document_page_tags.py @@ -20,6 +20,7 @@ from psycopg2 import IntegrityError from openerp.tests.common import TransactionCase from ..hooks import post_init_hook +from openerp.tools.misc import mute_logger class TestDocumentPageTags(TransactionCase): @@ -28,5 +29,6 @@ class TestDocumentPageTags(TransactionCase): post_init_hook(self.cr, self.registry) # check we can't create nonunique tags with self.assertRaises(IntegrityError): - self.env['document.page.tag'].name_create('test') - self.env['document.page.tag'].name_create('test') + with mute_logger('openerp.sql_db'): + self.env['document.page.tag'].name_create('test') + self.env['document.page.tag'].name_create('test') From 9a57c7eb2cde0c10ccae5cfadf9ec5f1f24044f9 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Wed, 18 Jul 2018 14:31:54 +0200 Subject: [PATCH 4/5] [MIG] document_page_tags --- document_page_tags/__init__.py | 21 +------- document_page_tags/__manifest__.py | 21 ++++++++ document_page_tags/__openerp__.py | 37 ------------- document_page_tags/hooks.py | 53 ------------------- document_page_tags/models/__init__.py | 20 +------ document_page_tags/models/document_page.py | 20 +------ .../models/document_page_tag.py | 32 +++++------ .../security/ir.model.access.csv | 2 +- .../tests/test_document_page_tags.py | 36 +++++-------- document_page_tags/views/document_page.xml | 38 +++++++------ .../views/document_page_tag.xml | 13 +++++ 11 files changed, 83 insertions(+), 210 deletions(-) create mode 100644 document_page_tags/__manifest__.py delete mode 100644 document_page_tags/__openerp__.py delete mode 100644 document_page_tags/hooks.py create mode 100644 document_page_tags/views/document_page_tag.xml diff --git a/document_page_tags/__init__.py b/document_page_tags/__init__.py index 856516ef..289e8cdb 100644 --- a/document_page_tags/__init__.py +++ b/document_page_tags/__init__.py @@ -1,21 +1,4 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# This module copyright (C) 2015 Therp BV . -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# Copyright 2015-2018 Therp BV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from . import models -from .hooks import post_init_hook diff --git a/document_page_tags/__manifest__.py b/document_page_tags/__manifest__.py new file mode 100644 index 00000000..77b3cb20 --- /dev/null +++ b/document_page_tags/__manifest__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Copyright 2015-2018 Therp BV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +{ + "name": "Tags/Keywords for document page", + "version": "10.0.1.0.0", + "author": "Therp BV,Odoo Community Association (OCA)", + "license": "AGPL-3", + "category": "Knowledge Management", + "summary": "Allows you to assign tags or keywords to pages and search for " + "them afterwards", + "depends": [ + 'document_page', + ], + "data": [ + "views/document_page_tag.xml", + "views/document_page.xml", + 'security/ir.model.access.csv', + ], + "installable": True, +} diff --git a/document_page_tags/__openerp__.py b/document_page_tags/__openerp__.py deleted file mode 100644 index b82c7183..00000000 --- a/document_page_tags/__openerp__.py +++ /dev/null @@ -1,37 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# This module copyright (C) 2015 Therp BV . -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -{ - "name": "Tags/Keywords for document page", - "version": "8.0.1.0.0", - "author": "Therp BV,Odoo Community Association (OCA)", - "license": "AGPL-3", - "category": "Knowledge Management", - "summary": "Allows you to assign tags or keywords to pages and search for " - "them afterwards", - "depends": [ - 'document_page', - ], - "data": [ - "views/document_page.xml", - 'security/ir.model.access.csv', - ], - "installable": True, - "post_init_hook": 'post_init_hook', -} diff --git a/document_page_tags/hooks.py b/document_page_tags/hooks.py deleted file mode 100644 index fdd8fcbb..00000000 --- a/document_page_tags/hooks.py +++ /dev/null @@ -1,53 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# This module copyright (C) 2015 Therp BV . -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -import re -from openerp import SUPERUSER_ID -from openerp.api import Environment - - -def post_init_hook(cr, pool): - # in case we have an old tags column from the wiki module lying around, - # populate our tags with its content - for column in ['openupgrade_legacy_7_0_tags', 'tags']: - cr.execute('SELECT column_name FROM information_schema.columns ' - 'WHERE table_name=%s and column_name=%s', - (pool['document.page']._table, column)) - if cr.fetchall(): - populate_tags(cr, column) - - -def populate_tags(cr, column): - env = Environment(cr, SUPERUSER_ID, {}) - document_page_tag = env['document.page.tag'] - document_page = env['document.page'] - # pylint: disable=E8103 - cr.execute( - 'SELECT %s, ARRAY_AGG(id) from %s WHERE %s IS NOT NULL GROUP BY %s' % ( - column, env['document.page']._table, column, column)) - for keywords, ids in cr.fetchall(): - pages = document_page.browse(ids) - tag_ids = [] - for keyword in re.split(r'\W+', keywords): - tag = document_page_tag.search([('name', '=ilike', keyword)]) - if tag: - tag_ids.append(tag.id) - else: - tag_ids.append(document_page_tag.name_create(keyword)[0]) - pages.write({'tag_ids': [(6, 0, set(tag_ids))]}) diff --git a/document_page_tags/models/__init__.py b/document_page_tags/models/__init__.py index c7ac18cb..7911c6a6 100644 --- a/document_page_tags/models/__init__.py +++ b/document_page_tags/models/__init__.py @@ -1,21 +1,5 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# This module copyright (C) 2015 Therp BV . -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# Copyright 2015-2018 Therp BV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from . import document_page from . import document_page_tag diff --git a/document_page_tags/models/document_page.py b/document_page_tags/models/document_page.py index 5f0ed038..0358ac14 100644 --- a/document_page_tags/models/document_page.py +++ b/document_page_tags/models/document_page.py @@ -1,22 +1,6 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# This module copyright (C) 2015 Therp BV (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# Copyright 2015-2018 Therp BV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from openerp import models, fields diff --git a/document_page_tags/models/document_page_tag.py b/document_page_tags/models/document_page_tag.py index e7540bc8..1229ff9a 100644 --- a/document_page_tags/models/document_page_tag.py +++ b/document_page_tags/models/document_page_tag.py @@ -1,31 +1,23 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# This module copyright (C) 2015 Therp BV (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -from openerp import models, fields +# Copyright 2015-2018 Therp BV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +from openerp import api, models, fields class DocumentPageTag(models.Model): _name = 'document.page.tag' _description = 'A keyword for document pages' - name = fields.Char(translate=True) + name = fields.Char(required=True, translate=True) _sql_constraints = [ ('unique_name', 'unique(name)', 'Tags must me unique'), ] + + @api.model + def create(self, vals): + """Be nice when trying to create duplicates""" + existing = self.search([('name', '=ilike', vals['name'])]) + if existing: + return existing + return super(DocumentPageTag, self).create(vals) diff --git a/document_page_tags/security/ir.model.access.csv b/document_page_tags/security/ir.model.access.csv index 0a0d36a0..baee8104 100644 --- a/document_page_tags/security/ir.model.access.csv +++ b/document_page_tags/security/ir.model.access.csv @@ -1,3 +1,3 @@ "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" access_document_page_tag_all,access_document_page_tag,model_document_page_tag,,1,0,0,0 -access_document_page_tag,access_document_page_tag,model_document_page_tag,base.group_user,1,1,1,1 +access_document_page_tag,access_document_page_tag,model_document_page_tag,base.group_user,1,0,1,1 diff --git a/document_page_tags/tests/test_document_page_tags.py b/document_page_tags/tests/test_document_page_tags.py index 3b6251b9..7265a5f6 100644 --- a/document_page_tags/tests/test_document_page_tags.py +++ b/document_page_tags/tests/test_document_page_tags.py @@ -1,34 +1,22 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# This module copyright (C) 2015 Therp BV . -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# Copyright 2015-2018 Therp BV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from psycopg2 import IntegrityError from openerp.tests.common import TransactionCase -from ..hooks import post_init_hook from openerp.tools.misc import mute_logger class TestDocumentPageTags(TransactionCase): def test_document_page_tags(self): - # run our init hook for coverage - post_init_hook(self.cr, self.registry) + testtag = self.env['document.page.tag'].name_create('test') + # check we're charitable on duplicates + self.assertEqual( + testtag, self.env['document.page.tag'].name_create('Test'), + ) # check we can't create nonunique tags with self.assertRaises(IntegrityError): - with mute_logger('openerp.sql_db'): - self.env['document.page.tag'].name_create('test') - self.env['document.page.tag'].name_create('test') + with mute_logger('odoo.sql_db'): + testtag2 = self.env['document.page.tag'].create({ + 'name': 'test2', + }) + testtag2.write({'name': 'test'}) diff --git a/document_page_tags/views/document_page.xml b/document_page_tags/views/document_page.xml index e9693769..f7ed85fc 100644 --- a/document_page_tags/views/document_page.xml +++ b/document_page_tags/views/document_page.xml @@ -1,23 +1,21 @@ - - - - document.page - - - - - + + + document.page + + + + - - - document.page - - - - - + + + + document.page + + + + - - - + + + diff --git a/document_page_tags/views/document_page_tag.xml b/document_page_tags/views/document_page_tag.xml new file mode 100644 index 00000000..54545a5a --- /dev/null +++ b/document_page_tags/views/document_page_tag.xml @@ -0,0 +1,13 @@ + + + + document.page.tag + +
+ + + +
+
+
+
From 3361af21d5b084ec246ce36c54dbfde4ef061ccc Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Wed, 18 Jul 2018 16:04:48 +0200 Subject: [PATCH 5/5] fixup! [MIG] document_page_tags --- .../models/document_page_tag.py | 2 +- document_page_tags/tests/__init__.py | 20 ++----------------- 2 files changed, 3 insertions(+), 19 deletions(-) diff --git a/document_page_tags/models/document_page_tag.py b/document_page_tags/models/document_page_tag.py index 1229ff9a..f0380375 100644 --- a/document_page_tags/models/document_page_tag.py +++ b/document_page_tags/models/document_page_tag.py @@ -17,7 +17,7 @@ class DocumentPageTag(models.Model): @api.model def create(self, vals): """Be nice when trying to create duplicates""" - existing = self.search([('name', '=ilike', vals['name'])]) + existing = self.search([('name', '=ilike', vals['name'])], limit=1) if existing: return existing return super(DocumentPageTag, self).create(vals) diff --git a/document_page_tags/tests/__init__.py b/document_page_tags/tests/__init__.py index 0816344d..5a9ce340 100644 --- a/document_page_tags/tests/__init__.py +++ b/document_page_tags/tests/__init__.py @@ -1,20 +1,4 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# This module copyright (C) 2015 Therp BV . -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# Copyright 2015-2018 Therp BV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from . import test_document_page_tags