From 058b9a56927cc22a928661f40271e149242badaa Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Tue, 29 Sep 2015 14:55:35 +0200 Subject: [PATCH 1/8] [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 f33b68a844f0c6f4264f85399a0dace1fcae1508 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 5 Mar 2016 06:46:40 -0500 Subject: [PATCH 2/8] 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 621d5284cda0492542bda499754eab22256c4cea Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Tue, 9 May 2017 10:19:07 +0200 Subject: [PATCH 3/8] [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 2767b218bf7f07fed26379771e240c8b83d68cd0 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Wed, 18 Jul 2018 14:31:54 +0200 Subject: [PATCH 4/8] [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 d50086cb774f7883cedaf89757eca30a7d74b338 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Wed, 18 Jul 2018 16:04:48 +0200 Subject: [PATCH 5/8] 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 From 28b6d83f972b0b0fd72f2b8cfb5f239cb8d50ef2 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Fri, 14 Sep 2018 23:54:18 +0000 Subject: [PATCH 6/8] [UPD] Update document_page_tags.pot --- document_page_tags/i18n/am.po | 25 ++++--- document_page_tags/i18n/ar.po | 28 +++---- document_page_tags/i18n/bg.po | 25 ++++--- document_page_tags/i18n/bs.po | 28 +++---- document_page_tags/i18n/ca.po | 25 ++++--- document_page_tags/i18n/ca_ES.po | 25 ++++--- document_page_tags/i18n/cs.po | 25 ++++--- document_page_tags/i18n/da.po | 25 ++++--- document_page_tags/i18n/de.po | 25 ++++--- .../i18n/document_page_tags.pot | 75 +++++++++++++++++++ document_page_tags/i18n/el.po | 25 ++++--- document_page_tags/i18n/el_GR.po | 25 ++++--- document_page_tags/i18n/en_GB.po | 25 ++++--- document_page_tags/i18n/es.po | 25 ++++--- document_page_tags/i18n/es_AR.po | 25 ++++--- document_page_tags/i18n/es_CL.po | 25 ++++--- document_page_tags/i18n/es_CO.po | 25 ++++--- document_page_tags/i18n/es_CR.po | 32 +++++--- document_page_tags/i18n/es_DO.po | 25 ++++--- document_page_tags/i18n/es_EC.po | 25 ++++--- document_page_tags/i18n/es_ES.po | 25 ++++--- document_page_tags/i18n/es_MX.po | 25 ++++--- document_page_tags/i18n/es_PE.po | 25 ++++--- document_page_tags/i18n/es_PY.po | 25 ++++--- document_page_tags/i18n/es_VE.po | 25 ++++--- document_page_tags/i18n/et.po | 25 ++++--- document_page_tags/i18n/eu.po | 25 ++++--- document_page_tags/i18n/fa.po | 25 ++++--- document_page_tags/i18n/fi.po | 25 ++++--- document_page_tags/i18n/fr.po | 25 ++++--- document_page_tags/i18n/fr_CA.po | 25 ++++--- document_page_tags/i18n/fr_CH.po | 25 ++++--- document_page_tags/i18n/gl.po | 25 ++++--- document_page_tags/i18n/gl_ES.po | 25 ++++--- document_page_tags/i18n/he.po | 25 ++++--- document_page_tags/i18n/hr.po | 28 +++---- document_page_tags/i18n/hr_HR.po | 28 +++---- document_page_tags/i18n/hu.po | 25 ++++--- document_page_tags/i18n/id.po | 25 ++++--- document_page_tags/i18n/it.po | 25 ++++--- document_page_tags/i18n/ja.po | 25 ++++--- document_page_tags/i18n/ko.po | 25 ++++--- document_page_tags/i18n/lt.po | 28 +++---- document_page_tags/i18n/lt_LT.po | 28 +++---- document_page_tags/i18n/lv.po | 28 +++---- document_page_tags/i18n/mk.po | 25 ++++--- document_page_tags/i18n/mn.po | 25 ++++--- document_page_tags/i18n/nb.po | 25 ++++--- document_page_tags/i18n/nb_NO.po | 25 ++++--- document_page_tags/i18n/nl.po | 25 ++++--- document_page_tags/i18n/nl_BE.po | 25 ++++--- document_page_tags/i18n/nl_NL.po | 25 ++++--- document_page_tags/i18n/pl.po | 28 +++---- document_page_tags/i18n/pt.po | 25 ++++--- document_page_tags/i18n/pt_BR.po | 25 ++++--- document_page_tags/i18n/pt_PT.po | 25 ++++--- document_page_tags/i18n/ro.po | 28 +++---- document_page_tags/i18n/ru.po | 29 +++---- document_page_tags/i18n/sk.po | 25 ++++--- document_page_tags/i18n/sl.po | 28 +++---- document_page_tags/i18n/sr.po | 28 +++---- document_page_tags/i18n/sr@latin.po | 28 +++---- document_page_tags/i18n/sv.po | 25 ++++--- document_page_tags/i18n/th.po | 25 ++++--- document_page_tags/i18n/tr.po | 25 ++++--- document_page_tags/i18n/tr_TR.po | 25 ++++--- document_page_tags/i18n/uk.po | 28 +++---- document_page_tags/i18n/vi.po | 25 ++++--- document_page_tags/i18n/vi_VN.po | 25 ++++--- document_page_tags/i18n/zh_CN.po | 25 ++++--- document_page_tags/i18n/zh_TW.po | 25 ++++--- 71 files changed, 1023 insertions(+), 852 deletions(-) create mode 100644 document_page_tags/i18n/document_page_tags.pot diff --git a/document_page_tags/i18n/am.po b/document_page_tags/i18n/am.po index 4a309925..50e1df37 100644 --- a/document_page_tags/i18n/am.po +++ b/document_page_tags/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/am/)\n" +"Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: am\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Creado por" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Creado en" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Última actualización por" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "" diff --git a/document_page_tags/i18n/ar.po b/document_page_tags/i18n/ar.po index 4655ab6b..5054a20d 100644 --- a/document_page_tags/i18n/ar.po +++ b/document_page_tags/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,14 @@ msgstr "" "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" +"Language-Team: Arabic (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #. module: document_page_tags #: model:ir.model,name:document_page_tags.model_document_page_tag @@ -23,17 +25,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "أنشئ بواسطة" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "أنشئ في" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "اسم العرض" @@ -43,32 +45,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "المعرف" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "آخر تعديل في" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "آخر تحديث بواسطة" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "آخر تحديث في" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "الاسم" diff --git a/document_page_tags/i18n/bg.po b/document_page_tags/i18n/bg.po index 47b30696..07f05656 100644 --- a/document_page_tags/i18n/bg.po +++ b/document_page_tags/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Създадено от" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Създадено на" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Име за Показване" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Последно обновено на" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Последно обновено от" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Последно обновено на" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Име" diff --git a/document_page_tags/i18n/bs.po b/document_page_tags/i18n/bs.po index 10fc9675..84708e24 100644 --- a/document_page_tags/i18n/bs.po +++ b/document_page_tags/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,14 @@ msgstr "" "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" +"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/bs/)\n" +"Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: bs\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: document_page_tags #: model:ir.model,name:document_page_tags.model_document_page_tag @@ -23,17 +25,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Kreirao" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Kreirano" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Prikaži naziv" @@ -43,32 +45,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Zadnje mijenjano" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Zadnji ažurirao" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Zadnje ažurirano" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Ime" diff --git a/document_page_tags/i18n/ca.po b/document_page_tags/i18n/ca.po index 289b0b82..861f1585 100644 --- a/document_page_tags/i18n/ca.po +++ b/document_page_tags/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/ca/)\n" +"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Creat per" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Creat el" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Veure el nom" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Darrera modificació el" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Darrera Actualització per" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Darrera Actualització el" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nom" diff --git a/document_page_tags/i18n/ca_ES.po b/document_page_tags/i18n/ca_ES.po index 3c7da739..dfd07787 100644 --- a/document_page_tags/i18n/ca_ES.po +++ b/document_page_tags/i18n/ca_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Catalan (Spain) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/ca_ES/)\n" +"Language: ca_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ca_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Creat per" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Creat a" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Nom visible" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Darrera modificació en" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Darrera actualització per" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Darrera actualització el" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nom" diff --git a/document_page_tags/i18n/cs.po b/document_page_tags/i18n/cs.po index d5eee533..5fd01224 100644 --- a/document_page_tags/i18n/cs.po +++ b/document_page_tags/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Vytvořil(a)" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Vytvořeno" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Zobrazovaný název" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Naposled upraveno" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Naposled upraveno" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Naposled upraveno" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Název" diff --git a/document_page_tags/i18n/da.po b/document_page_tags/i18n/da.po index 420cf898..86d54244 100644 --- a/document_page_tags/i18n/da.po +++ b/document_page_tags/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Danish (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Oprettet af" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Oprettet den" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Vist navn" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "Id" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Sidst ændret den" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Sidst opdateret af" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Sidst opdateret den" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Navn" diff --git a/document_page_tags/i18n/de.po b/document_page_tags/i18n/de.po index 23acefa1..980df163 100644 --- a/document_page_tags/i18n/de.po +++ b/document_page_tags/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: # Rudolf Schnapka , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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" +"Language-Team: German (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/de/)\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -24,17 +25,17 @@ msgid "A keyword for document pages" msgstr "Ein Schlüsselbegriff für Dokumentseiten" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Angelegt durch" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Erzeugt am" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Anzeigename" @@ -44,32 +45,32 @@ msgid "Document Page" msgstr "Dokumentenseite" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "Schlüsselbegriffe" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Zuletzt geändert am" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Zuletzt aktualisiert durch" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Zuletzt aktualisiert am" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Bezeichnung" diff --git a/document_page_tags/i18n/document_page_tags.pot b/document_page_tags/i18n/document_page_tags.pot new file mode 100644 index 00000000..0693ae2f --- /dev/null +++ b/document_page_tags/i18n/document_page_tags.pot @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tags +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: 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 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid +msgid "Created by" +msgstr "" + +#. module: document_page_tags +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date +msgid "Created on" +msgstr "" + +#. module: document_page_tags +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name +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 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id +msgid "ID" +msgstr "" + +#. module: document_page_tags +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tags +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tags +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: document_page_tags +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "" + +#. module: document_page_tags +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name +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.po b/document_page_tags/i18n/el.po index bbeab716..f15b2dab 100644 --- a/document_page_tags/i18n/el.po +++ b/document_page_tags/i18n/el.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Greek (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/el/)\n" +"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 @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Δημιουργήθηκε από" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Δημιουργήθηκε στις" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Εμφάνιση Ονόματος" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Τελευταία αλλαγή στις" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Τελευταία Ενημέρωση από" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Τελευταία Ενημέρωση στις" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Όνομα" diff --git a/document_page_tags/i18n/el_GR.po b/document_page_tags/i18n/el_GR.po index df42364c..f4fab786 100644 --- a/document_page_tags/i18n/el_GR.po +++ b/document_page_tags/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/el_GR/)\n" +"Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Δημιουργήθηκε από " #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Δημιουργήθηκε στις" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "Κωδικός" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Τελευταία ενημέρωση από" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Τελευταία ενημέρωση στις" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Ονομασία" diff --git a/document_page_tags/i18n/en_GB.po b/document_page_tags/i18n/en_GB.po index e2a3f8b6..db882eaf 100644 --- a/document_page_tags/i18n/en_GB.po +++ b/document_page_tags/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/en_GB/)\n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Created by" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Created on" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Display Name" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Last Modified on" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Last Updated by" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Last Updated on" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Name" diff --git a/document_page_tags/i18n/es.po b/document_page_tags/i18n/es.po index 999a4276..11f9c8a0 100644 --- a/document_page_tags/i18n/es.po +++ b/document_page_tags/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Creado por" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Creado en" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Nombre mostrado" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "Página de documento" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Última modificación el" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Ultima actualización por" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Ultima actualización en" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nombre" diff --git a/document_page_tags/i18n/es_AR.po b/document_page_tags/i18n/es_AR.po index 9f90431d..02299415 100644 --- a/document_page_tags/i18n/es_AR.po +++ b/document_page_tags/i18n/es_AR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/es_AR/)\n" +"Language: es_AR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Creado por" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Creado en" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Mostrar Nombre" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "Página de documento" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Última modificación en" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Ultima actualización por" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Ultima actualización en" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nombre" diff --git a/document_page_tags/i18n/es_CL.po b/document_page_tags/i18n/es_CL.po index fe9cb75f..0f847a8b 100644 --- a/document_page_tags/i18n/es_CL.po +++ b/document_page_tags/i18n/es_CL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/es_CL/)\n" +"Language: es_CL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Creado por" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Creado en" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Nombre mostrado" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID (identificación)" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Última modificación en" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Última actualización de" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nombre" diff --git a/document_page_tags/i18n/es_CO.po b/document_page_tags/i18n/es_CO.po index f7b49f25..eedda36c 100644 --- a/document_page_tags/i18n/es_CO.po +++ b/document_page_tags/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/es_CO/)\n" +"Language: es_CO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Creado por" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Creado" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Nombre Público" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Última Modificación el" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Actualizado por" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Actualizado" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nombre" diff --git a/document_page_tags/i18n/es_CR.po b/document_page_tags/i18n/es_CR.po index 23f0c88d..6f6f6452 100644 --- a/document_page_tags/i18n/es_CR.po +++ b/document_page_tags/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/es_CR/)\n" +"Language: es_CR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,42 +24,53 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Creado por" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Creado en" +#. module: document_page_tags +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name +msgid "Display Name" +msgstr "" + #. 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 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update +#, fuzzy +msgid "Last Modified on" +msgstr "Ultima actualización en" + +#. module: document_page_tags +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Ultima actualización por" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Ultima actualización en" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nombre" diff --git a/document_page_tags/i18n/es_DO.po b/document_page_tags/i18n/es_DO.po index e6e9b910..817e3157 100644 --- a/document_page_tags/i18n/es_DO.po +++ b/document_page_tags/i18n/es_DO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/" +"OCA-knowledge-8-0/language/es_DO/)\n" +"Language: es_DO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_DO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Creado por" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Creado en" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Nombre mostrado" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Última modificación en" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Última actualización de" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nombre" diff --git a/document_page_tags/i18n/es_EC.po b/document_page_tags/i18n/es_EC.po index cc9d61a3..4dfc2138 100644 --- a/document_page_tags/i18n/es_EC.po +++ b/document_page_tags/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/es_EC/)\n" +"Language: es_EC\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Creado por" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Creado en" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Nombre mostrado" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID (identificación)" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Última modificación en" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Última actualización de" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nombre" diff --git a/document_page_tags/i18n/es_ES.po b/document_page_tags/i18n/es_ES.po index 7fc13c80..0d310705 100644 --- a/document_page_tags/i18n/es_ES.po +++ b/document_page_tags/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/es_ES/)\n" +"Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Creado por" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Creado en" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Nombre para mostrar" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Última modificación en" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Última actualización por" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "" diff --git a/document_page_tags/i18n/es_MX.po b/document_page_tags/i18n/es_MX.po index 933d5c97..cff19dbb 100644 --- a/document_page_tags/i18n/es_MX.po +++ b/document_page_tags/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/es_MX/)\n" +"Language: es_MX\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Creado por" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Creado en" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Nombre desplegado" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "Página de documento" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Ultima modificacion realizada" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Ultima actualización por" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Ultima actualización en" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nombre" diff --git a/document_page_tags/i18n/es_PE.po b/document_page_tags/i18n/es_PE.po index 5c5e984a..9ef4f359 100644 --- a/document_page_tags/i18n/es_PE.po +++ b/document_page_tags/i18n/es_PE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/es_PE/)\n" +"Language: es_PE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Creado por" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Creado en" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Nombre a Mostrar" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Ultima Modificación en" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Actualizado última vez por" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Ultima Actualización" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nombre" diff --git a/document_page_tags/i18n/es_PY.po b/document_page_tags/i18n/es_PY.po index 8e433dae..11ed8dc9 100644 --- a/document_page_tags/i18n/es_PY.po +++ b/document_page_tags/i18n/es_PY.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/es_PY/)\n" +"Language: es_PY\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PY\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Creado por" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Creado en" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Ultima actualización por" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Ultima actualización en" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nombre" diff --git a/document_page_tags/i18n/es_VE.po b/document_page_tags/i18n/es_VE.po index 89f31703..409254b2 100644 --- a/document_page_tags/i18n/es_VE.po +++ b/document_page_tags/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/es_VE/)\n" +"Language: es_VE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_VE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Creado por" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Creado en" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Mostrar nombre" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "Página de documento" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Modificada por última vez" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Ultima actualización por" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Ultima actualización en" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nombre" diff --git a/document_page_tags/i18n/et.po b/document_page_tags/i18n/et.po index 776ae348..60b5aba7 100644 --- a/document_page_tags/i18n/et.po +++ b/document_page_tags/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Estonian (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/et/)\n" +"Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Loonud" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Loodud" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Näidatav nimi" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Viimati muudetud" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Viimati uuendatud" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Viimati uuendatud" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nimi" diff --git a/document_page_tags/i18n/eu.po b/document_page_tags/i18n/eu.po index 679cbd00..06a71a9e 100644 --- a/document_page_tags/i18n/eu.po +++ b/document_page_tags/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/eu/)\n" +"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Nork sortua" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Created on" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Izena erakutsi" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Last Updated by" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Last Updated on" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Izena" diff --git a/document_page_tags/i18n/fa.po b/document_page_tags/i18n/fa.po index 2186046d..fd401d02 100644 --- a/document_page_tags/i18n/fa.po +++ b/document_page_tags/i18n/fa.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Persian (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "ایجاد شده توسط" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "ایجاد شده در" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "نام نمایشی" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "شناسه" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "تاریخ آخرین به‌روزرسانی" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "آخرین به روز رسانی توسط" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "آخرین به روز رسانی در" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "نام" diff --git a/document_page_tags/i18n/fi.po b/document_page_tags/i18n/fi.po index 6d317ec9..5aa477b6 100644 --- a/document_page_tags/i18n/fi.po +++ b/document_page_tags/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/fi/)\n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Luonut" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Luotu" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Nimi" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "Dokumentin sivu" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Viimeksi muokattu" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Viimeksi päivittänyt" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Viimeksi päivitetty" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nimi" diff --git a/document_page_tags/i18n/fr.po b/document_page_tags/i18n/fr.po index 2e62a1e9..f8f84fa1 100644 --- a/document_page_tags/i18n/fr.po +++ b/document_page_tags/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: French (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Créé par" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Créé le" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Nom à afficher" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "Page" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Dernière modification le" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Dernière mise à jour par" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Dernière mise à jour le" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nom" diff --git a/document_page_tags/i18n/fr_CA.po b/document_page_tags/i18n/fr_CA.po index 26779778..72a49cb6 100644 --- a/document_page_tags/i18n/fr_CA.po +++ b/document_page_tags/i18n/fr_CA.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/fr_CA/)\n" +"Language: fr_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Créé par" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Créé le" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Afficher le nom" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "Identifiant" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Dernière mise à jour par" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Dernière mise à jour le" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nom" diff --git a/document_page_tags/i18n/fr_CH.po b/document_page_tags/i18n/fr_CH.po index 23ab4f1c..d5f97e2c 100644 --- a/document_page_tags/i18n/fr_CH.po +++ b/document_page_tags/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/fr_CH/)\n" +"Language: fr_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Créé par" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Créé le" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Nom affiché" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Dernière modification le" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Modifié par" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Modifié le" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "" diff --git a/document_page_tags/i18n/gl.po b/document_page_tags/i18n/gl.po index c6a9c239..b626edf7 100644 --- a/document_page_tags/i18n/gl.po +++ b/document_page_tags/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Galician (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/gl/)\n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Creado por" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Creado o" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Última modificación" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "ültima actualización por" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nome" diff --git a/document_page_tags/i18n/gl_ES.po b/document_page_tags/i18n/gl_ES.po index ad9fd104..17f3cabc 100644 --- a/document_page_tags/i18n/gl_ES.po +++ b/document_page_tags/i18n/gl_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/gl_ES/)\n" +"Language: gl_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "" diff --git a/document_page_tags/i18n/he.po b/document_page_tags/i18n/he.po index f8c213c6..8c4bd5c8 100644 --- a/document_page_tags/i18n/he.po +++ b/document_page_tags/i18n/he.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/he/)\n" +"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "נוצר על ידי" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "נוצר ב-" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "השם המוצג" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "מזהה" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "תאריך שינוי אחרון" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "עודכן לאחרונה על ידי" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "עודכן לאחרונה על" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "שם" diff --git a/document_page_tags/i18n/hr.po b/document_page_tags/i18n/hr.po index d81c06a9..26b0b914 100644 --- a/document_page_tags/i18n/hr.po +++ b/document_page_tags/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,14 @@ msgstr "" "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" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/hr/)\n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: document_page_tags #: model:ir.model,name:document_page_tags.model_document_page_tag @@ -23,17 +25,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Kreirao" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Datum kreiranja" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Naziv " @@ -43,32 +45,32 @@ msgid "Document Page" msgstr "Stranica dokumenata" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Zadnje modificirano" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Zadnji ažurirao" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Zadnje ažuriranje" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Naziv" diff --git a/document_page_tags/i18n/hr_HR.po b/document_page_tags/i18n/hr_HR.po index 65d0c56f..c3138170 100644 --- a/document_page_tags/i18n/hr_HR.po +++ b/document_page_tags/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,14 @@ msgstr "" "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" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/hr_HR/)\n" +"Language: hr_HR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr_HR\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: document_page_tags #: model:ir.model,name:document_page_tags.model_document_page_tag @@ -23,17 +25,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Kreirao" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Kreirano" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Naziv" @@ -43,32 +45,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Zadnje modificirano" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Zadnji ažurirao" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Zadnje ažurirano" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Naziv" diff --git a/document_page_tags/i18n/hu.po b/document_page_tags/i18n/hu.po index 285efd95..d964ac99 100644 --- a/document_page_tags/i18n/hu.po +++ b/document_page_tags/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Készítette" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Létrehozás dátuma" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Név megjelenítése" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "Documentum oldal" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Utolsó frissítés dátuma" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Utoljára frissítve, által" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Utoljára frissítve " #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Név" diff --git a/document_page_tags/i18n/id.po b/document_page_tags/i18n/id.po index 129a15f5..1e1dcbaf 100644 --- a/document_page_tags/i18n/id.po +++ b/document_page_tags/i18n/id.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Dibuat oleh" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Dibuat pada" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Nama Tampilan" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Terakhir Dimodifikasi pada" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Diperbaharui oleh" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Diperbaharui pada" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nama" diff --git a/document_page_tags/i18n/it.po b/document_page_tags/i18n/it.po index 11c8edcf..d6d2fa7d 100644 --- a/document_page_tags/i18n/it.po +++ b/document_page_tags/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: # Paolo Valier, 2016 # Paolo Valier, 2016 @@ -12,11 +12,12 @@ msgstr "" "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" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -25,17 +26,17 @@ 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 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Creato da" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Creato il" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Nome da visualizzare" @@ -45,32 +46,32 @@ msgid "Document Page" msgstr "Pagina documento" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "Parole chiave" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Ultima modifica il" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Ultimo aggiornamento da" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Ultimo aggiornamento il" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nome" diff --git a/document_page_tags/i18n/ja.po b/document_page_tags/i18n/ja.po index 8be4abe1..4c1bf6fa 100644 --- a/document_page_tags/i18n/ja.po +++ b/document_page_tags/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/ja/)\n" +"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "作成者" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "作成日" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "表示名" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "最終更新日" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "最終更新者" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "最終更新日" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "名称" diff --git a/document_page_tags/i18n/ko.po b/document_page_tags/i18n/ko.po index 6b070945..6c000483 100644 --- a/document_page_tags/i18n/ko.po +++ b/document_page_tags/i18n/ko.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Korean (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/ko/)\n" +"Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "작성자" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "생성 날짜" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "표시 이름" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "최근 수정" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "최근 갱신한 사람" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "최근 갱신 날짜" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "이름" diff --git a/document_page_tags/i18n/lt.po b/document_page_tags/i18n/lt.po index d0ebb4ee..de23d764 100644 --- a/document_page_tags/i18n/lt.po +++ b/document_page_tags/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,14 @@ msgstr "" "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" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/lt/)\n" +"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" #. module: document_page_tags #: model:ir.model,name:document_page_tags.model_document_page_tag @@ -23,17 +25,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Sukūrė" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Sukurta" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Vaizduojamas pavadinimas" @@ -43,32 +45,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Paskutinį kartą keista" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Paskutinį kartą atnaujino" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Paskutinį kartą atnaujinta" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Pavadinimas" diff --git a/document_page_tags/i18n/lt_LT.po b/document_page_tags/i18n/lt_LT.po index 5186d387..6107af0e 100644 --- a/document_page_tags/i18n/lt_LT.po +++ b/document_page_tags/i18n/lt_LT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,14 @@ msgstr "" "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" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/lt_LT/)\n" +"Language: lt_LT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" #. module: document_page_tags #: model:ir.model,name:document_page_tags.model_document_page_tag @@ -23,17 +25,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Sukūrė" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Sukurta" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "" @@ -43,32 +45,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Paskutinį kartą atnaujino" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Paskutinį kartą atnaujinta" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "" diff --git a/document_page_tags/i18n/lv.po b/document_page_tags/i18n/lv.po index b6894a60..76953135 100644 --- a/document_page_tags/i18n/lv.po +++ b/document_page_tags/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,14 @@ msgstr "" "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" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #. module: document_page_tags #: model:ir.model,name:document_page_tags.model_document_page_tag @@ -23,17 +25,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Izveidoja" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Izveidots" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "" @@ -43,32 +45,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Pēdējo reizi atjaunoja" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Pēdējās izmaiņas" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nosaukums" diff --git a/document_page_tags/i18n/mk.po b/document_page_tags/i18n/mk.po index ff02944f..1f907b0c 100644 --- a/document_page_tags/i18n/mk.po +++ b/document_page_tags/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/mk/)\n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Креирано од" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Креирано на" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Прикажи име" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "Страница на документ" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Последна промена на" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Последно ажурирање од" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Последно ажурирање на" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Име" diff --git a/document_page_tags/i18n/mn.po b/document_page_tags/i18n/mn.po index 5c039fb5..11b2c5b9 100644 --- a/document_page_tags/i18n/mn.po +++ b/document_page_tags/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/mn/)\n" +"Language: mn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Үүсгэгч" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Үүсгэсэн" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Дэлгэцийн Нэр" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "Баримтын Хуудас" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Сүүлийн засвар хийсэн огноо" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Сүүлийн засвар хийсэн" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Сүүлийн засвар хийсэн огноо" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Нэр" diff --git a/document_page_tags/i18n/nb.po b/document_page_tags/i18n/nb.po index d33cccc1..de0dbebf 100644 --- a/document_page_tags/i18n/nb.po +++ b/document_page_tags/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/nb/)\n" +"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Opprettet av" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Opprettet den" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Visnings navn" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Sist oppdatert " #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Sist oppdatert av" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Sist oppdatert" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Navn" diff --git a/document_page_tags/i18n/nb_NO.po b/document_page_tags/i18n/nb_NO.po index 33586a73..4c298522 100644 --- a/document_page_tags/i18n/nb_NO.po +++ b/document_page_tags/i18n/nb_NO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/nb_NO/)\n" +"Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Laget av" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Laget den" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Vis navn" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Sist endret den" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Sist oppdatert av" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Sist oppdatert den" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "" diff --git a/document_page_tags/i18n/nl.po b/document_page_tags/i18n/nl.po index 03552487..1445b943 100644 --- a/document_page_tags/i18n/nl.po +++ b/document_page_tags/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/nl/)\n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Aangemaakt door" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Aangemaakt op" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Te tonen naam" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "Document pagina" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Laatst bijgewerkt op" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Laatst bijgewerkt door" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Laatst bijgewerkt op" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Naam" diff --git a/document_page_tags/i18n/nl_BE.po b/document_page_tags/i18n/nl_BE.po index 709ba068..a734eaa7 100644 --- a/document_page_tags/i18n/nl_BE.po +++ b/document_page_tags/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/nl_BE/)\n" +"Language: nl_BE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Gemaakt door" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Gemaakt op" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Schermnaam" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Laatst Aangepast op" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Laatst bijgewerkt door" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Laatst bijgewerkt op" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Naam:" diff --git a/document_page_tags/i18n/nl_NL.po b/document_page_tags/i18n/nl_NL.po index e7e3ee45..5f654384 100644 --- a/document_page_tags/i18n/nl_NL.po +++ b/document_page_tags/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Aangemaakt door" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Aangemaakt op" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Weergavenaam" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Laatst gewijzigd op" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Laatst bijgewerkt door" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Laatst bijgewerkt op" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Naam" diff --git a/document_page_tags/i18n/pl.po b/document_page_tags/i18n/pl.po index 2ab945c9..285b8c76 100644 --- a/document_page_tags/i18n/pl.po +++ b/document_page_tags/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,14 @@ msgstr "" "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" +"Language-Team: Polish (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=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 @@ -23,17 +25,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Utworzone przez" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Utworzono" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Wyświetlana nazwa " @@ -43,32 +45,32 @@ msgid "Document Page" msgstr "Strona dokumentu" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Ostatnio modyfikowano" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Ostatnio modyfikowane przez" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Ostatnia zmiana" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nazwa" diff --git a/document_page_tags/i18n/pt.po b/document_page_tags/i18n/pt.po index f444e219..94e9fb79 100644 --- a/document_page_tags/i18n/pt.po +++ b/document_page_tags/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Criado por" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Criado em" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Nome" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "Página do documento" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Modificado a última vez por" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Atualizado pela última vez por" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Atualizado pela última vez em" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nome" diff --git a/document_page_tags/i18n/pt_BR.po b/document_page_tags/i18n/pt_BR.po index 5b0de4a0..6813327e 100644 --- a/document_page_tags/i18n/pt_BR.po +++ b/document_page_tags/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Criado por" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Criado em" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Nome para Mostrar" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "Página do Documento" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "Identificação" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Última atualização em" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Última atualização por" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Última atualização em" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nome" diff --git a/document_page_tags/i18n/pt_PT.po b/document_page_tags/i18n/pt_PT.po index 2e126c3a..78561904 100644 --- a/document_page_tags/i18n/pt_PT.po +++ b/document_page_tags/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/pt_PT/)\n" +"Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Criado por" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Criado em" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Nome a exibir" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "Página do Documento" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Modificado pela última vez em" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Modificado pela última vez por" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Atualizado pela última vez em" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nome" diff --git a/document_page_tags/i18n/ro.po b/document_page_tags/i18n/ro.po index 92ae9316..f586bd66 100644 --- a/document_page_tags/i18n/ro.po +++ b/document_page_tags/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,14 @@ msgstr "" "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" +"Language-Team: Romanian (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/ro/)\n" +"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: document_page_tags #: model:ir.model,name:document_page_tags.model_document_page_tag @@ -23,17 +25,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Creat de" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Creat in" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Nume Afişat" @@ -43,32 +45,32 @@ msgid "Document Page" msgstr "Pagina Documentului" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Ultima actualizare în" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Ultima actualizare făcută de" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Ultima actualizare la" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Nume" diff --git a/document_page_tags/i18n/ru.po b/document_page_tags/i18n/ru.po index 91799e81..3b586168 100644 --- a/document_page_tags/i18n/ru.po +++ b/document_page_tags/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,15 @@ msgstr "" "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" +"Language-Team: Russian (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #. module: document_page_tags #: model:ir.model,name:document_page_tags.model_document_page_tag @@ -23,17 +26,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Создано" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Создан" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "" @@ -43,32 +46,32 @@ msgid "Document Page" msgstr "Страница документа" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Последний раз обновлено" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Последний раз обновлено" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Название" diff --git a/document_page_tags/i18n/sk.po b/document_page_tags/i18n/sk.po index 0c582c1b..3d0235a5 100644 --- a/document_page_tags/i18n/sk.po +++ b/document_page_tags/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/sk/)\n" +"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Vytvoril" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Vytvorené" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Zobraziť meno" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Posledná modifikácia" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Naposledy upravoval" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Naposledy upravované" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Meno" diff --git a/document_page_tags/i18n/sl.po b/document_page_tags/i18n/sl.po index f8d0a2bf..959f7b5e 100644 --- a/document_page_tags/i18n/sl.po +++ b/document_page_tags/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: # Matjaž Mozetič , 2016 msgid "" @@ -11,12 +11,14 @@ msgstr "" "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" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/sl/)\n" +"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: document_page_tags #: model:ir.model,name:document_page_tags.model_document_page_tag @@ -24,17 +26,17 @@ msgid "A keyword for document pages" msgstr "Ključna beseda za strani dokumentov" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Ustvaril" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Ustvarjeno" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Prikazni naziv" @@ -44,32 +46,32 @@ msgid "Document Page" msgstr "Stran dokumenta" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "Ključne besede" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Zadnjič spremenjeno" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Zadnjič posodobil" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Zadnjič posodobljeno" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Naziv" diff --git a/document_page_tags/i18n/sr.po b/document_page_tags/i18n/sr.po index 7cb7d22d..463688ff 100644 --- a/document_page_tags/i18n/sr.po +++ b/document_page_tags/i18n/sr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,14 @@ msgstr "" "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" +"Language-Team: Serbian (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/sr/)\n" +"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: document_page_tags #: model:ir.model,name:document_page_tags.model_document_page_tag @@ -23,17 +25,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Kreiran" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "" @@ -43,32 +45,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Ime" diff --git a/document_page_tags/i18n/sr@latin.po b/document_page_tags/i18n/sr@latin.po index 47e93715..f5131ad4 100644 --- a/document_page_tags/i18n/sr@latin.po +++ b/document_page_tags/i18n/sr@latin.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,14 @@ msgstr "" "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" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/sr@latin/)\n" +"Language: sr@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: document_page_tags #: model:ir.model,name:document_page_tags.model_document_page_tag @@ -23,17 +25,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Kreirao" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Kreiran" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Ime za prikaz" @@ -43,32 +45,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Zadnja izmjena" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Zadnja izmjena" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Zadnja izmjena" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Ime:" diff --git a/document_page_tags/i18n/sv.po b/document_page_tags/i18n/sv.po index a24e0c72..7a860975 100644 --- a/document_page_tags/i18n/sv.po +++ b/document_page_tags/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Swedish (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/sv/)\n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Skapad av" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Skapad den" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Visa namn" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "Dokumentsida" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Senast redigerad" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Senast uppdaterad av" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Senast uppdaterad" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Namn" diff --git a/document_page_tags/i18n/th.po b/document_page_tags/i18n/th.po index 61410e93..72f868b6 100644 --- a/document_page_tags/i18n/th.po +++ b/document_page_tags/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-knowledge-8-0/language/" +"th/)\n" +"Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "สร้างโดย" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "สร้างเมื่อ" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "ชื่อที่ใช้แสดง" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "รหัส" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "แก้ไขครั้งสุดท้ายเมื่อ" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "อัพเดทครั้งสุดท้ายโดย" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "อัพเดทครั้งสุดท้ายเมื่อ" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "ชื่อ" diff --git a/document_page_tags/i18n/tr.po b/document_page_tags/i18n/tr.po index d5cd4479..e6b6f7c1 100644 --- a/document_page_tags/i18n/tr.po +++ b/document_page_tags/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/tr/)\n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Oluşturan" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Oluşturulma" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Görünen İsim" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "Belge Sayfası" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Son değişiklik" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Son güncelleyen" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Son güncelleme" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Adı" diff --git a/document_page_tags/i18n/tr_TR.po b/document_page_tags/i18n/tr_TR.po index 84b9a1b4..ea6139b9 100644 --- a/document_page_tags/i18n/tr_TR.po +++ b/document_page_tags/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Oluşturan" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Oluşturulma tarihi" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Görünen ad" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "Kimlik" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "En son güncelleme tarihi" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "En son güncelleyen " #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "En son güncelleme tarihi" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Ad" diff --git a/document_page_tags/i18n/uk.po b/document_page_tags/i18n/uk.po index cc152cea..acba01f1 100644 --- a/document_page_tags/i18n/uk.po +++ b/document_page_tags/i18n/uk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,14 @@ msgstr "" "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" +"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/uk/)\n" +"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: document_page_tags #: model:ir.model,name:document_page_tags.model_document_page_tag @@ -23,17 +25,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Створив" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Створено" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Назва для відображення" @@ -43,32 +45,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Остання модифікація" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Востаннє оновив" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "Останнє оновлення" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Name" diff --git a/document_page_tags/i18n/vi.po b/document_page_tags/i18n/vi.po index 5e9bdfab..36baf8d1 100644 --- a/document_page_tags/i18n/vi.po +++ b/document_page_tags/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-knowledge-8-0/" +"language/vi/)\n" +"Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Được tạo bởi" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Tạo trên" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "Tên hiển thị" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "Sửa lần cuối vào" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "Last Updated by" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date 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 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Tên" diff --git a/document_page_tags/i18n/vi_VN.po b/document_page_tags/i18n/vi_VN.po index b30800f8..7b6b59d7 100644 --- a/document_page_tags/i18n/vi_VN.po +++ b/document_page_tags/i18n/vi_VN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "Tạo bởi" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "Tạo vào" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid 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 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date 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 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "Tên" diff --git a/document_page_tags/i18n/zh_CN.po b/document_page_tags/i18n/zh_CN.po index 49f7793c..963fdc1e 100644 --- a/document_page_tags/i18n/zh_CN.po +++ b/document_page_tags/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "创建者" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "创建在" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "显示名称" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "文档页面" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "ID" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "最后修改时间" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "最后更新者" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "上次更新日期" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "名称" diff --git a/document_page_tags/i18n/zh_TW.po b/document_page_tags/i18n/zh_TW.po index 292cce5f..24b43941 100644 --- a/document_page_tags/i18n/zh_TW.po +++ b/document_page_tags/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page_tags -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "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" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-" +"knowledge-8-0/language/zh_TW/)\n" +"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: document_page_tags @@ -23,17 +24,17 @@ msgid "A keyword for document pages" msgstr "" #. module: document_page_tags -#: field:document.page.tag,create_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid msgid "Created by" msgstr "建立者" #. module: document_page_tags -#: field:document.page.tag,create_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date msgid "Created on" msgstr "建立於" #. module: document_page_tags -#: field:document.page.tag,display_name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name msgid "Display Name" msgstr "顯示名稱" @@ -43,32 +44,32 @@ msgid "Document Page" msgstr "" #. module: document_page_tags -#: field:document.page.tag,id:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id msgid "ID" msgstr "編號" #. module: document_page_tags -#: field:document.page,tag_ids:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids msgid "Keywords" msgstr "" #. module: document_page_tags -#: field:document.page.tag,__last_update:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update msgid "Last Modified on" msgstr "最後修改:" #. module: document_page_tags -#: field:document.page.tag,write_uid:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid msgid "Last Updated by" msgstr "最後更新:" #. module: document_page_tags -#: field:document.page.tag,write_date:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date msgid "Last Updated on" msgstr "最後更新於" #. module: document_page_tags -#: field:document.page.tag,name:0 +#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name msgid "Name" msgstr "名稱" From f46168f4bb2dccedf329bc642ec288399271f003 Mon Sep 17 00:00:00 2001 From: Marcel Savegnago Date: Thu, 19 Dec 2019 03:13:58 -0300 Subject: [PATCH 7/8] [MIG] document_page_tags: Migration to 12.0 --- document_page_tags/README.rst | 10 ++- document_page_tags/__init__.py | 1 - document_page_tags/__manifest__.py | 6 +- document_page_tags/models/__init__.py | 1 - document_page_tags/models/document_page.py | 3 +- .../models/document_page_tag.py | 5 +- .../security/ir.model.access.csv | 7 +- document_page_tags/tests/__init__.py | 1 - .../tests/test_document_page_tags.py | 5 +- document_page_tags/views/document_page.xml | 20 +++++- .../views/document_page_tag.xml | 65 +++++++++++++++++-- 11 files changed, 98 insertions(+), 26 deletions(-) diff --git a/document_page_tags/README.rst b/document_page_tags/README.rst index ebae1dcc..ef955d38 100644 --- a/document_page_tags/README.rst +++ b/document_page_tags/README.rst @@ -5,12 +5,14 @@ Tags/Keywords for document page =============================== -This module allows you to fill in keywords on your pages to simplify finding them afterwards. +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. +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 @@ -21,7 +23,8 @@ 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 +If you spotted it first, help us smashing it by providing a detailed and +welcomed feedback `here `_. Credits @@ -31,6 +34,7 @@ Contributors ------------ * Holger Brunn +* Marcel Savegnago Maintainer ---------- diff --git a/document_page_tags/__init__.py b/document_page_tags/__init__.py index 289e8cdb..7840f99e 100644 --- a/document_page_tags/__init__.py +++ b/document_page_tags/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2015-2018 Therp BV # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from . import models diff --git a/document_page_tags/__manifest__.py b/document_page_tags/__manifest__.py index 77b3cb20..eb29e6d6 100644 --- a/document_page_tags/__manifest__.py +++ b/document_page_tags/__manifest__.py @@ -1,10 +1,10 @@ -# -*- 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", + "name": "Document Page Tags", + "version": "12.0.1.0.0", "author": "Therp BV,Odoo Community Association (OCA)", + "website": "https://github.com/OCA/knowledge", "license": "AGPL-3", "category": "Knowledge Management", "summary": "Allows you to assign tags or keywords to pages and search for " diff --git a/document_page_tags/models/__init__.py b/document_page_tags/models/__init__.py index 7911c6a6..3242a4a1 100644 --- a/document_page_tags/models/__init__.py +++ b/document_page_tags/models/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2015-2018 Therp BV # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from . import document_page diff --git a/document_page_tags/models/document_page.py b/document_page_tags/models/document_page.py index 0358ac14..04e4bb87 100644 --- a/document_page_tags/models/document_page.py +++ b/document_page_tags/models/document_page.py @@ -1,7 +1,6 @@ -# -*- coding: utf-8 -*- # Copyright 2015-2018 Therp BV # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). -from openerp import models, fields +from odoo import models, fields class DocumentPage(models.Model): diff --git a/document_page_tags/models/document_page_tag.py b/document_page_tags/models/document_page_tag.py index f0380375..3fd759d2 100644 --- a/document_page_tags/models/document_page_tag.py +++ b/document_page_tags/models/document_page_tag.py @@ -1,7 +1,6 @@ -# -*- coding: utf-8 -*- # Copyright 2015-2018 Therp BV # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). -from openerp import api, models, fields +from odoo import api, models, fields class DocumentPageTag(models.Model): @@ -9,6 +8,8 @@ class DocumentPageTag(models.Model): _description = 'A keyword for document pages' name = fields.Char(required=True, translate=True) + color = fields.Integer(string='Color Index') + active = fields.Boolean(default=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 index baee8104..c426dec3 100644 --- a/document_page_tags/security/ir.model.access.csv +++ b/document_page_tags/security/ir.model.access.csv @@ -1,3 +1,4 @@ -"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,0,1,1 +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +document_page_user,document.page user,model_document_page_tag,knowledge.group_document_user,1,0,0,0 +document_page_editor,document.page editor,model_document_page_tag,document_page.group_document_editor,1,1,1,0 +document_page_manager,document.page manager,model_document_page_tag,document_page.group_document_manager,1,1,1,1 diff --git a/document_page_tags/tests/__init__.py b/document_page_tags/tests/__init__.py index 5a9ce340..c8af28ed 100644 --- a/document_page_tags/tests/__init__.py +++ b/document_page_tags/tests/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2015-2018 Therp BV # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). 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 index 7265a5f6..add9d242 100644 --- a/document_page_tags/tests/test_document_page_tags.py +++ b/document_page_tags/tests/test_document_page_tags.py @@ -1,9 +1,8 @@ -# -*- coding: utf-8 -*- # 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 openerp.tools.misc import mute_logger +from odoo.tests.common import TransactionCase +from odoo.tools.misc import mute_logger class TestDocumentPageTags(TransactionCase): diff --git a/document_page_tags/views/document_page.xml b/document_page_tags/views/document_page.xml index f7ed85fc..7f4e1b91 100644 --- a/document_page_tags/views/document_page.xml +++ b/document_page_tags/views/document_page.xml @@ -1,11 +1,12 @@ + document.page - + @@ -18,4 +19,21 @@ + + + + document_page.tags.tree + document.page + + tree + child_ids + + + + + + + diff --git a/document_page_tags/views/document_page_tag.xml b/document_page_tags/views/document_page_tag.xml index 54545a5a..524fbfd3 100644 --- a/document_page_tags/views/document_page_tag.xml +++ b/document_page_tags/views/document_page_tag.xml @@ -1,13 +1,66 @@ - + - + + + document.page.tag.search document.page.tag -
- - - + + + + + + + + + + document.page.tag.form + document.page.tag + + + +
+ +
+
+
+ + + +
+ + + document.page.tag.tree + document.page.tag + + + + + + + + + Tags + ir.actions.act_window + document.page.tag + tree,form + form + + + +
From 01a32fc7416f0b5a103435a298c7d2c81cd722c7 Mon Sep 17 00:00:00 2001 From: Marcel Savegnago Date: Tue, 19 May 2020 13:11:21 -0300 Subject: [PATCH 8/8] Update document_page_tags/views/document_page_tag.xml Co-authored-by: Maxime Chambreuil --- .../README.rst | 2 +- .../__init__.py | 0 .../__manifest__.py | 2 +- document_page_tag/i18n/am.po | 79 +++++++++++++++++ document_page_tag/i18n/ar.po | 80 +++++++++++++++++ document_page_tag/i18n/bg.po | 79 +++++++++++++++++ document_page_tag/i18n/bs.po | 80 +++++++++++++++++ document_page_tag/i18n/ca.po | 79 +++++++++++++++++ document_page_tag/i18n/ca_ES.po | 79 +++++++++++++++++ document_page_tag/i18n/cs.po | 79 +++++++++++++++++ document_page_tag/i18n/da.po | 79 +++++++++++++++++ document_page_tag/i18n/de.po | 80 +++++++++++++++++ document_page_tag/i18n/document_page_tag.pot | 75 ++++++++++++++++ document_page_tag/i18n/el.po | 79 +++++++++++++++++ document_page_tag/i18n/el_GR.po | 79 +++++++++++++++++ document_page_tag/i18n/en_GB.po | 79 +++++++++++++++++ document_page_tag/i18n/es.po | 79 +++++++++++++++++ document_page_tag/i18n/es_AR.po | 79 +++++++++++++++++ document_page_tag/i18n/es_CL.po | 79 +++++++++++++++++ document_page_tag/i18n/es_CO.po | 79 +++++++++++++++++ document_page_tag/i18n/es_CR.po | 80 +++++++++++++++++ document_page_tag/i18n/es_DO.po | 79 +++++++++++++++++ document_page_tag/i18n/es_EC.po | 79 +++++++++++++++++ document_page_tag/i18n/es_ES.po | 79 +++++++++++++++++ document_page_tag/i18n/es_MX.po | 79 +++++++++++++++++ document_page_tag/i18n/es_PE.po | 79 +++++++++++++++++ document_page_tag/i18n/es_PY.po | 79 +++++++++++++++++ document_page_tag/i18n/es_VE.po | 79 +++++++++++++++++ document_page_tag/i18n/et.po | 79 +++++++++++++++++ document_page_tag/i18n/eu.po | 79 +++++++++++++++++ document_page_tag/i18n/fa.po | 79 +++++++++++++++++ document_page_tag/i18n/fi.po | 79 +++++++++++++++++ document_page_tag/i18n/fr.po | 79 +++++++++++++++++ document_page_tag/i18n/fr_CA.po | 79 +++++++++++++++++ document_page_tag/i18n/fr_CH.po | 79 +++++++++++++++++ document_page_tag/i18n/gl.po | 79 +++++++++++++++++ document_page_tag/i18n/gl_ES.po | 79 +++++++++++++++++ document_page_tag/i18n/he.po | 79 +++++++++++++++++ document_page_tag/i18n/hr.po | 80 +++++++++++++++++ document_page_tag/i18n/hr_HR.po | 80 +++++++++++++++++ document_page_tag/i18n/hu.po | 79 +++++++++++++++++ document_page_tag/i18n/id.po | 79 +++++++++++++++++ document_page_tag/i18n/it.po | 81 ++++++++++++++++++ document_page_tag/i18n/ja.po | 79 +++++++++++++++++ document_page_tag/i18n/ko.po | 79 +++++++++++++++++ document_page_tag/i18n/lt.po | 80 +++++++++++++++++ document_page_tag/i18n/lt_LT.po | 80 +++++++++++++++++ document_page_tag/i18n/lv.po | 80 +++++++++++++++++ document_page_tag/i18n/mk.po | 79 +++++++++++++++++ document_page_tag/i18n/mn.po | 79 +++++++++++++++++ document_page_tag/i18n/nb.po | 79 +++++++++++++++++ document_page_tag/i18n/nb_NO.po | 79 +++++++++++++++++ document_page_tag/i18n/nl.po | 79 +++++++++++++++++ document_page_tag/i18n/nl_BE.po | 79 +++++++++++++++++ document_page_tag/i18n/nl_NL.po | 79 +++++++++++++++++ document_page_tag/i18n/pl.po | 80 +++++++++++++++++ document_page_tag/i18n/pt.po | 79 +++++++++++++++++ document_page_tag/i18n/pt_BR.po | 79 +++++++++++++++++ document_page_tag/i18n/pt_PT.po | 79 +++++++++++++++++ document_page_tag/i18n/ro.po | 80 +++++++++++++++++ document_page_tag/i18n/ru.po | 81 ++++++++++++++++++ document_page_tag/i18n/sk.po | 79 +++++++++++++++++ document_page_tag/i18n/sl.po | 81 ++++++++++++++++++ document_page_tag/i18n/sr.po | 80 +++++++++++++++++ document_page_tag/i18n/sr@latin.po | 80 +++++++++++++++++ document_page_tag/i18n/sv.po | 79 +++++++++++++++++ document_page_tag/i18n/th.po | 79 +++++++++++++++++ document_page_tag/i18n/tr.po | 79 +++++++++++++++++ document_page_tag/i18n/tr_TR.po | 79 +++++++++++++++++ document_page_tag/i18n/uk.po | 80 +++++++++++++++++ document_page_tag/i18n/vi.po | 79 +++++++++++++++++ document_page_tag/i18n/vi_VN.po | 79 +++++++++++++++++ document_page_tag/i18n/zh_CN.po | 79 +++++++++++++++++ document_page_tag/i18n/zh_TW.po | 79 +++++++++++++++++ .../models/__init__.py | 0 .../models/document_page.py | 0 .../models/document_page_tag.py | 0 document_page_tag/readme/CONFIGURE.rst | 1 + document_page_tag/readme/CONTRIBUTORS.rst | 2 + document_page_tag/readme/DESCRIPTION.rst | 2 + document_page_tag/readme/INSTALL.rst | 1 + document_page_tag/readme/USAGE.rst | 2 + .../security/ir.model.access.csv | 0 .../static/description/icon.png | Bin .../tests/__init__.py | 2 +- .../tests/test_document_page_tag.py | 4 +- .../views/document_page.xml | 2 +- .../views/document_page_tag.xml | 1 - document_page_tags/i18n/am.po | 79 ----------------- document_page_tags/i18n/ar.po | 80 ----------------- document_page_tags/i18n/bg.po | 79 ----------------- document_page_tags/i18n/bs.po | 80 ----------------- document_page_tags/i18n/ca.po | 79 ----------------- document_page_tags/i18n/ca_ES.po | 79 ----------------- document_page_tags/i18n/cs.po | 79 ----------------- document_page_tags/i18n/da.po | 79 ----------------- document_page_tags/i18n/de.po | 80 ----------------- .../i18n/document_page_tags.pot | 75 ---------------- document_page_tags/i18n/el.po | 79 ----------------- document_page_tags/i18n/el_GR.po | 79 ----------------- document_page_tags/i18n/en_GB.po | 79 ----------------- document_page_tags/i18n/es.po | 79 ----------------- document_page_tags/i18n/es_AR.po | 79 ----------------- document_page_tags/i18n/es_CL.po | 79 ----------------- document_page_tags/i18n/es_CO.po | 79 ----------------- document_page_tags/i18n/es_CR.po | 80 ----------------- document_page_tags/i18n/es_DO.po | 79 ----------------- document_page_tags/i18n/es_EC.po | 79 ----------------- document_page_tags/i18n/es_ES.po | 79 ----------------- document_page_tags/i18n/es_MX.po | 79 ----------------- document_page_tags/i18n/es_PE.po | 79 ----------------- document_page_tags/i18n/es_PY.po | 79 ----------------- document_page_tags/i18n/es_VE.po | 79 ----------------- document_page_tags/i18n/et.po | 79 ----------------- document_page_tags/i18n/eu.po | 79 ----------------- document_page_tags/i18n/fa.po | 79 ----------------- document_page_tags/i18n/fi.po | 79 ----------------- document_page_tags/i18n/fr.po | 79 ----------------- document_page_tags/i18n/fr_CA.po | 79 ----------------- document_page_tags/i18n/fr_CH.po | 79 ----------------- document_page_tags/i18n/gl.po | 79 ----------------- document_page_tags/i18n/gl_ES.po | 79 ----------------- document_page_tags/i18n/he.po | 79 ----------------- document_page_tags/i18n/hr.po | 80 ----------------- document_page_tags/i18n/hr_HR.po | 80 ----------------- document_page_tags/i18n/hu.po | 79 ----------------- document_page_tags/i18n/id.po | 79 ----------------- document_page_tags/i18n/it.po | 81 ------------------ document_page_tags/i18n/ja.po | 79 ----------------- document_page_tags/i18n/ko.po | 79 ----------------- document_page_tags/i18n/lt.po | 80 ----------------- document_page_tags/i18n/lt_LT.po | 80 ----------------- document_page_tags/i18n/lv.po | 80 ----------------- document_page_tags/i18n/mk.po | 79 ----------------- document_page_tags/i18n/mn.po | 79 ----------------- document_page_tags/i18n/nb.po | 79 ----------------- document_page_tags/i18n/nb_NO.po | 79 ----------------- document_page_tags/i18n/nl.po | 79 ----------------- document_page_tags/i18n/nl_BE.po | 79 ----------------- document_page_tags/i18n/nl_NL.po | 79 ----------------- document_page_tags/i18n/pl.po | 80 ----------------- document_page_tags/i18n/pt.po | 79 ----------------- document_page_tags/i18n/pt_BR.po | 79 ----------------- document_page_tags/i18n/pt_PT.po | 79 ----------------- document_page_tags/i18n/ro.po | 80 ----------------- document_page_tags/i18n/ru.po | 81 ------------------ document_page_tags/i18n/sk.po | 79 ----------------- document_page_tags/i18n/sl.po | 81 ------------------ document_page_tags/i18n/sr.po | 80 ----------------- document_page_tags/i18n/sr@latin.po | 80 ----------------- document_page_tags/i18n/sv.po | 79 ----------------- document_page_tags/i18n/th.po | 79 ----------------- document_page_tags/i18n/tr.po | 79 ----------------- document_page_tags/i18n/tr_TR.po | 79 ----------------- document_page_tags/i18n/uk.po | 80 ----------------- document_page_tags/i18n/vi.po | 79 ----------------- document_page_tags/i18n/vi_VN.po | 79 ----------------- document_page_tags/i18n/zh_CN.po | 79 ----------------- document_page_tags/i18n/zh_TW.po | 79 ----------------- 159 files changed, 5639 insertions(+), 5632 deletions(-) rename {document_page_tags => document_page_tag}/README.rst (91%) rename {document_page_tags => document_page_tag}/__init__.py (100%) rename {document_page_tags => document_page_tag}/__manifest__.py (94%) create mode 100644 document_page_tag/i18n/am.po create mode 100644 document_page_tag/i18n/ar.po create mode 100644 document_page_tag/i18n/bg.po create mode 100644 document_page_tag/i18n/bs.po create mode 100644 document_page_tag/i18n/ca.po create mode 100644 document_page_tag/i18n/ca_ES.po create mode 100644 document_page_tag/i18n/cs.po create mode 100644 document_page_tag/i18n/da.po create mode 100644 document_page_tag/i18n/de.po create mode 100644 document_page_tag/i18n/document_page_tag.pot create mode 100644 document_page_tag/i18n/el.po create mode 100644 document_page_tag/i18n/el_GR.po create mode 100644 document_page_tag/i18n/en_GB.po create mode 100644 document_page_tag/i18n/es.po create mode 100644 document_page_tag/i18n/es_AR.po create mode 100644 document_page_tag/i18n/es_CL.po create mode 100644 document_page_tag/i18n/es_CO.po create mode 100644 document_page_tag/i18n/es_CR.po create mode 100644 document_page_tag/i18n/es_DO.po create mode 100644 document_page_tag/i18n/es_EC.po create mode 100644 document_page_tag/i18n/es_ES.po create mode 100644 document_page_tag/i18n/es_MX.po create mode 100644 document_page_tag/i18n/es_PE.po create mode 100644 document_page_tag/i18n/es_PY.po create mode 100644 document_page_tag/i18n/es_VE.po create mode 100644 document_page_tag/i18n/et.po create mode 100644 document_page_tag/i18n/eu.po create mode 100644 document_page_tag/i18n/fa.po create mode 100644 document_page_tag/i18n/fi.po create mode 100644 document_page_tag/i18n/fr.po create mode 100644 document_page_tag/i18n/fr_CA.po create mode 100644 document_page_tag/i18n/fr_CH.po create mode 100644 document_page_tag/i18n/gl.po create mode 100644 document_page_tag/i18n/gl_ES.po create mode 100644 document_page_tag/i18n/he.po create mode 100644 document_page_tag/i18n/hr.po create mode 100644 document_page_tag/i18n/hr_HR.po create mode 100644 document_page_tag/i18n/hu.po create mode 100644 document_page_tag/i18n/id.po create mode 100644 document_page_tag/i18n/it.po create mode 100644 document_page_tag/i18n/ja.po create mode 100644 document_page_tag/i18n/ko.po create mode 100644 document_page_tag/i18n/lt.po create mode 100644 document_page_tag/i18n/lt_LT.po create mode 100644 document_page_tag/i18n/lv.po create mode 100644 document_page_tag/i18n/mk.po create mode 100644 document_page_tag/i18n/mn.po create mode 100644 document_page_tag/i18n/nb.po create mode 100644 document_page_tag/i18n/nb_NO.po create mode 100644 document_page_tag/i18n/nl.po create mode 100644 document_page_tag/i18n/nl_BE.po create mode 100644 document_page_tag/i18n/nl_NL.po create mode 100644 document_page_tag/i18n/pl.po create mode 100644 document_page_tag/i18n/pt.po create mode 100644 document_page_tag/i18n/pt_BR.po create mode 100644 document_page_tag/i18n/pt_PT.po create mode 100644 document_page_tag/i18n/ro.po create mode 100644 document_page_tag/i18n/ru.po create mode 100644 document_page_tag/i18n/sk.po create mode 100644 document_page_tag/i18n/sl.po create mode 100644 document_page_tag/i18n/sr.po create mode 100644 document_page_tag/i18n/sr@latin.po create mode 100644 document_page_tag/i18n/sv.po create mode 100644 document_page_tag/i18n/th.po create mode 100644 document_page_tag/i18n/tr.po create mode 100644 document_page_tag/i18n/tr_TR.po create mode 100644 document_page_tag/i18n/uk.po create mode 100644 document_page_tag/i18n/vi.po create mode 100644 document_page_tag/i18n/vi_VN.po create mode 100644 document_page_tag/i18n/zh_CN.po create mode 100644 document_page_tag/i18n/zh_TW.po rename {document_page_tags => document_page_tag}/models/__init__.py (100%) rename {document_page_tags => document_page_tag}/models/document_page.py (100%) rename {document_page_tags => document_page_tag}/models/document_page_tag.py (100%) create mode 100644 document_page_tag/readme/CONFIGURE.rst create mode 100644 document_page_tag/readme/CONTRIBUTORS.rst create mode 100644 document_page_tag/readme/DESCRIPTION.rst create mode 100644 document_page_tag/readme/INSTALL.rst create mode 100644 document_page_tag/readme/USAGE.rst rename {document_page_tags => document_page_tag}/security/ir.model.access.csv (100%) rename {document_page_tags => document_page_tag}/static/description/icon.png (100%) rename {document_page_tags => document_page_tag}/tests/__init__.py (75%) rename document_page_tags/tests/test_document_page_tags.py => document_page_tag/tests/test_document_page_tag.py (90%) rename {document_page_tags => document_page_tag}/views/document_page.xml (97%) rename {document_page_tags => document_page_tag}/views/document_page_tag.xml (98%) delete mode 100644 document_page_tags/i18n/am.po delete mode 100644 document_page_tags/i18n/ar.po delete mode 100644 document_page_tags/i18n/bg.po delete mode 100644 document_page_tags/i18n/bs.po delete mode 100644 document_page_tags/i18n/ca.po delete mode 100644 document_page_tags/i18n/ca_ES.po delete mode 100644 document_page_tags/i18n/cs.po delete mode 100644 document_page_tags/i18n/da.po delete mode 100644 document_page_tags/i18n/de.po delete mode 100644 document_page_tags/i18n/document_page_tags.pot delete mode 100644 document_page_tags/i18n/el.po delete mode 100644 document_page_tags/i18n/el_GR.po delete mode 100644 document_page_tags/i18n/en_GB.po delete mode 100644 document_page_tags/i18n/es.po delete mode 100644 document_page_tags/i18n/es_AR.po delete mode 100644 document_page_tags/i18n/es_CL.po delete mode 100644 document_page_tags/i18n/es_CO.po delete mode 100644 document_page_tags/i18n/es_CR.po delete mode 100644 document_page_tags/i18n/es_DO.po delete mode 100644 document_page_tags/i18n/es_EC.po delete mode 100644 document_page_tags/i18n/es_ES.po delete mode 100644 document_page_tags/i18n/es_MX.po delete mode 100644 document_page_tags/i18n/es_PE.po delete mode 100644 document_page_tags/i18n/es_PY.po delete mode 100644 document_page_tags/i18n/es_VE.po delete mode 100644 document_page_tags/i18n/et.po delete mode 100644 document_page_tags/i18n/eu.po delete mode 100644 document_page_tags/i18n/fa.po delete mode 100644 document_page_tags/i18n/fi.po delete mode 100644 document_page_tags/i18n/fr.po delete mode 100644 document_page_tags/i18n/fr_CA.po delete mode 100644 document_page_tags/i18n/fr_CH.po delete mode 100644 document_page_tags/i18n/gl.po delete mode 100644 document_page_tags/i18n/gl_ES.po delete mode 100644 document_page_tags/i18n/he.po delete mode 100644 document_page_tags/i18n/hr.po delete mode 100644 document_page_tags/i18n/hr_HR.po delete mode 100644 document_page_tags/i18n/hu.po delete mode 100644 document_page_tags/i18n/id.po delete mode 100644 document_page_tags/i18n/it.po delete mode 100644 document_page_tags/i18n/ja.po delete mode 100644 document_page_tags/i18n/ko.po delete mode 100644 document_page_tags/i18n/lt.po delete mode 100644 document_page_tags/i18n/lt_LT.po delete mode 100644 document_page_tags/i18n/lv.po delete mode 100644 document_page_tags/i18n/mk.po delete mode 100644 document_page_tags/i18n/mn.po delete mode 100644 document_page_tags/i18n/nb.po delete mode 100644 document_page_tags/i18n/nb_NO.po delete mode 100644 document_page_tags/i18n/nl.po delete mode 100644 document_page_tags/i18n/nl_BE.po delete mode 100644 document_page_tags/i18n/nl_NL.po delete mode 100644 document_page_tags/i18n/pl.po delete mode 100644 document_page_tags/i18n/pt.po delete mode 100644 document_page_tags/i18n/pt_BR.po delete mode 100644 document_page_tags/i18n/pt_PT.po delete mode 100644 document_page_tags/i18n/ro.po delete mode 100644 document_page_tags/i18n/ru.po delete mode 100644 document_page_tags/i18n/sk.po delete mode 100644 document_page_tags/i18n/sl.po delete mode 100644 document_page_tags/i18n/sr.po delete mode 100644 document_page_tags/i18n/sr@latin.po delete mode 100644 document_page_tags/i18n/sv.po delete mode 100644 document_page_tags/i18n/th.po delete mode 100644 document_page_tags/i18n/tr.po delete mode 100644 document_page_tags/i18n/tr_TR.po delete mode 100644 document_page_tags/i18n/uk.po delete mode 100644 document_page_tags/i18n/vi.po delete mode 100644 document_page_tags/i18n/vi_VN.po delete mode 100644 document_page_tags/i18n/zh_CN.po delete mode 100644 document_page_tags/i18n/zh_TW.po diff --git a/document_page_tags/README.rst b/document_page_tag/README.rst similarity index 91% rename from document_page_tags/README.rst rename to document_page_tag/README.rst index ef955d38..2e3ca4aa 100644 --- a/document_page_tags/README.rst +++ b/document_page_tag/README.rst @@ -25,7 +25,7 @@ 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 `_. +`here `_. Credits ======= diff --git a/document_page_tags/__init__.py b/document_page_tag/__init__.py similarity index 100% rename from document_page_tags/__init__.py rename to document_page_tag/__init__.py diff --git a/document_page_tags/__manifest__.py b/document_page_tag/__manifest__.py similarity index 94% rename from document_page_tags/__manifest__.py rename to document_page_tag/__manifest__.py index eb29e6d6..e7edb30c 100644 --- a/document_page_tags/__manifest__.py +++ b/document_page_tag/__manifest__.py @@ -1,7 +1,7 @@ # Copyright 2015-2018 Therp BV # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). { - "name": "Document Page Tags", + "name": "Document Page Tag", "version": "12.0.1.0.0", "author": "Therp BV,Odoo Community Association (OCA)", "website": "https://github.com/OCA/knowledge", diff --git a/document_page_tag/i18n/am.po b/document_page_tag/i18n/am.po new file mode 100644 index 00000000..c6802b35 --- /dev/null +++ b/document_page_tag/i18n/am.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/ar.po b/document_page_tag/i18n/ar.po new file mode 100644 index 00000000..e67d669a --- /dev/null +++ b/document_page_tag/i18n/ar.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "المعرف" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "الاسم" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/bg.po b/document_page_tag/i18n/bg.po new file mode 100644 index 00000000..46bf789e --- /dev/null +++ b/document_page_tag/i18n/bg.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Име за Показване" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Име" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/bs.po b/document_page_tag/i18n/bs.po new file mode 100644 index 00000000..800cc363 --- /dev/null +++ b/document_page_tag/i18n/bs.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Ime" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/ca.po b/document_page_tag/i18n/ca.po new file mode 100644 index 00000000..3444d8c1 --- /dev/null +++ b/document_page_tag/i18n/ca.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Creat el" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Veure el nom" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nom" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/ca_ES.po b/document_page_tag/i18n/ca_ES.po new file mode 100644 index 00000000..18a641f1 --- /dev/null +++ b/document_page_tag/i18n/ca_ES.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: ca_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Creat a" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Nom visible" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Darrera modificació en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Darrera actualització per" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Darrera actualització el" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nom" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/cs.po b/document_page_tag/i18n/cs.po new file mode 100644 index 00000000..86b5bf5e --- /dev/null +++ b/document_page_tag/i18n/cs.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Název" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/da.po b/document_page_tag/i18n/da.po new file mode 100644 index 00000000..e17e5c9f --- /dev/null +++ b/document_page_tag/i18n/da.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "Id" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Navn" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/de.po b/document_page_tag/i18n/de.po new file mode 100644 index 00000000..658d99fa --- /dev/null +++ b/document_page_tag/i18n/de.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "Ein Schlüsselbegriff für Dokumentseiten" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Angelegt durch" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Erzeugt am" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Dokumentenseite" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "Schlüsselbegriffe" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert durch" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Bezeichnung" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "Schlagworte müssen eindeutig sein" diff --git a/document_page_tag/i18n/document_page_tag.pot b/document_page_tag/i18n/document_page_tag.pot new file mode 100644 index 00000000..64156389 --- /dev/null +++ b/document_page_tag/i18n/document_page_tag.pot @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" + diff --git a/document_page_tag/i18n/el.po b/document_page_tag/i18n/el.po new file mode 100644 index 00000000..3cd543fd --- /dev/null +++ b/document_page_tag/i18n/el.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Τελευταία αλλαγή στις" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Τελευταία Ενημέρωση από" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Τελευταία Ενημέρωση στις" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Όνομα" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/el_GR.po b/document_page_tag/i18n/el_GR.po new file mode 100644 index 00000000..ceec7e6c --- /dev/null +++ b/document_page_tag/i18n/el_GR.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: el_GR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "Κωδικός" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Ονομασία" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/en_GB.po b/document_page_tag/i18n/en_GB.po new file mode 100644 index 00000000..b1a18376 --- /dev/null +++ b/document_page_tag/i18n/en_GB.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Created by" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Created on" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Name" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/es.po b/document_page_tag/i18n/es.po new file mode 100644 index 00000000..a9a7bdfa --- /dev/null +++ b/document_page_tag/i18n/es.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Página de documento" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nombre" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/es_AR.po b/document_page_tag/i18n/es_AR.po new file mode 100644 index 00000000..949ff690 --- /dev/null +++ b/document_page_tag/i18n/es_AR.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: es_AR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Página de documento" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nombre" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/es_CL.po b/document_page_tag/i18n/es_CL.po new file mode 100644 index 00000000..9ee2ae67 --- /dev/null +++ b/document_page_tag/i18n/es_CL.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nombre" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/es_CO.po b/document_page_tag/i18n/es_CO.po new file mode 100644 index 00000000..af70e858 --- /dev/null +++ b/document_page_tag/i18n/es_CO.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Creado" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nombre" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/es_CR.po b/document_page_tag/i18n/es_CR.po new file mode 100644 index 00000000..f3d30a05 --- /dev/null +++ b/document_page_tag/i18n/es_CR.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Página de documento" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +#, fuzzy +msgid "Last Modified on" +msgstr "Ultima actualización en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nombre" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/es_DO.po b/document_page_tag/i18n/es_DO.po new file mode 100644 index 00000000..144c544a --- /dev/null +++ b/document_page_tag/i18n/es_DO.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: es_DO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nombre" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/es_EC.po b/document_page_tag/i18n/es_EC.po new file mode 100644 index 00000000..ee486494 --- /dev/null +++ b/document_page_tag/i18n/es_EC.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nombre" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/es_ES.po b/document_page_tag/i18n/es_ES.po new file mode 100644 index 00000000..d0218787 --- /dev/null +++ b/document_page_tag/i18n/es_ES.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/es_MX.po b/document_page_tag/i18n/es_MX.po new file mode 100644 index 00000000..1605c872 --- /dev/null +++ b/document_page_tag/i18n/es_MX.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: es_MX\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Página de documento" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nombre" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/es_PE.po b/document_page_tag/i18n/es_PE.po new file mode 100644 index 00000000..9556a1b1 --- /dev/null +++ b/document_page_tag/i18n/es_PE.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nombre" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/es_PY.po b/document_page_tag/i18n/es_PY.po new file mode 100644 index 00000000..f048fce1 --- /dev/null +++ b/document_page_tag/i18n/es_PY.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: es_PY\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nombre" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/es_VE.po b/document_page_tag/i18n/es_VE.po new file mode 100644 index 00000000..abd6dc66 --- /dev/null +++ b/document_page_tag/i18n/es_VE.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Página de documento" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nombre" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/et.po b/document_page_tag/i18n/et.po new file mode 100644 index 00000000..f8a7963f --- /dev/null +++ b/document_page_tag/i18n/et.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Loodud" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nimi" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/eu.po b/document_page_tag/i18n/eu.po new file mode 100644 index 00000000..ac074a76 --- /dev/null +++ b/document_page_tag/i18n/eu.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Created on" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Izena" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/fa.po b/document_page_tag/i18n/fa.po new file mode 100644 index 00000000..ffa586a0 --- /dev/null +++ b/document_page_tag/i18n/fa.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "شناسه" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "نام" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/fi.po b/document_page_tag/i18n/fi.po new file mode 100644 index 00000000..60e2b513 --- /dev/null +++ b/document_page_tag/i18n/fi.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Luotu" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Dokumentin sivu" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nimi" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/fr.po b/document_page_tag/i18n/fr.po new file mode 100644 index 00000000..5d5310fa --- /dev/null +++ b/document_page_tag/i18n/fr.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Nom à afficher" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Page" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nom" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/fr_CA.po b/document_page_tag/i18n/fr_CA.po new file mode 100644 index 00000000..5e611948 --- /dev/null +++ b/document_page_tag/i18n/fr_CA.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "Identifiant" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nom" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/fr_CH.po b/document_page_tag/i18n/fr_CH.po new file mode 100644 index 00000000..1957ba52 --- /dev/null +++ b/document_page_tag/i18n/fr_CH.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: fr_CH\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/gl.po b/document_page_tag/i18n/gl.po new file mode 100644 index 00000000..db4518ea --- /dev/null +++ b/document_page_tag/i18n/gl.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Creado o" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nome" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/gl_ES.po b/document_page_tag/i18n/gl_ES.po new file mode 100644 index 00000000..a35d473c --- /dev/null +++ b/document_page_tag/i18n/gl_ES.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/he.po b/document_page_tag/i18n/he.po new file mode 100644 index 00000000..997aa6e8 --- /dev/null +++ b/document_page_tag/i18n/he.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "מזהה" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "שם" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/hr.po b/document_page_tag/i18n/hr.po new file mode 100644 index 00000000..14fe9ff2 --- /dev/null +++ b/document_page_tag/i18n/hr.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Datum kreiranja" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Naziv " + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Stranica dokumenata" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Zadnje ažuriranje" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Naziv" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/hr_HR.po b/document_page_tag/i18n/hr_HR.po new file mode 100644 index 00000000..cc921ffc --- /dev/null +++ b/document_page_tag/i18n/hr_HR.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Naziv" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/hu.po b/document_page_tag/i18n/hu.po new file mode 100644 index 00000000..3ed9b6ea --- /dev/null +++ b/document_page_tag/i18n/hu.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Készítette" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Documentum oldal" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Név" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/id.po b/document_page_tag/i18n/id.po new file mode 100644 index 00000000..cf30610b --- /dev/null +++ b/document_page_tag/i18n/id.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nama" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/it.po b/document_page_tag/i18n/it.po new file mode 100644 index 00000000..3e5bc787 --- /dev/null +++ b/document_page_tag/i18n/it.po @@ -0,0 +1,81 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "Una parola chiave per le pagine del documento" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Creato il" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Pagina documento" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "Parole chiave" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento da" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nome" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "Il Tag devono essere univoci" diff --git a/document_page_tag/i18n/ja.po b/document_page_tag/i18n/ja.po new file mode 100644 index 00000000..bd426462 --- /dev/null +++ b/document_page_tag/i18n/ja.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "作成者" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "作成日" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "表示名" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "名称" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/ko.po b/document_page_tag/i18n/ko.po new file mode 100644 index 00000000..d9ed41fc --- /dev/null +++ b/document_page_tag/i18n/ko.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "작성자" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "생성 날짜" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "이름" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/lt.po b/document_page_tag/i18n/lt.po new file mode 100644 index 00000000..9df0c2a1 --- /dev/null +++ b/document_page_tag/i18n/lt.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Pavadinimas" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/lt_LT.po b/document_page_tag/i18n/lt_LT.po new file mode 100644 index 00000000..f2468a43 --- /dev/null +++ b/document_page_tag/i18n/lt_LT.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: lt_LT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/lv.po b/document_page_tag/i18n/lv.po new file mode 100644 index 00000000..573b9b1d --- /dev/null +++ b/document_page_tag/i18n/lv.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nosaukums" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/mk.po b/document_page_tag/i18n/mk.po new file mode 100644 index 00000000..92e6dedf --- /dev/null +++ b/document_page_tag/i18n/mk.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Страница на документ" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Име" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/mn.po b/document_page_tag/i18n/mn.po new file mode 100644 index 00000000..6fb9af0f --- /dev/null +++ b/document_page_tag/i18n/mn.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Баримтын Хуудас" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Нэр" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/nb.po b/document_page_tag/i18n/nb.po new file mode 100644 index 00000000..daec459d --- /dev/null +++ b/document_page_tag/i18n/nb.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Opprettet den" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Navn" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/nb_NO.po b/document_page_tag/i18n/nb_NO.po new file mode 100644 index 00000000..a5e3a2a4 --- /dev/null +++ b/document_page_tag/i18n/nb_NO.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Laget av" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Laget den" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/nl.po b/document_page_tag/i18n/nl.po new file mode 100644 index 00000000..41c992bf --- /dev/null +++ b/document_page_tag/i18n/nl.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Document pagina" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Naam" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/nl_BE.po b/document_page_tag/i18n/nl_BE.po new file mode 100644 index 00000000..583b5584 --- /dev/null +++ b/document_page_tag/i18n/nl_BE.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: nl_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Gemaakt door" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Naam:" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/nl_NL.po b/document_page_tag/i18n/nl_NL.po new file mode 100644 index 00000000..91c9bf6e --- /dev/null +++ b/document_page_tag/i18n/nl_NL.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Naam" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/pl.po b/document_page_tag/i18n/pl.po new file mode 100644 index 00000000..ad384045 --- /dev/null +++ b/document_page_tag/i18n/pl.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Utworzone przez" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Strona dokumentu" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nazwa" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/pt.po b/document_page_tag/i18n/pt.po new file mode 100644 index 00000000..9aa2bfe3 --- /dev/null +++ b/document_page_tag/i18n/pt.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Nome" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Página do documento" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Modificado a última vez por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nome" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/pt_BR.po b/document_page_tag/i18n/pt_BR.po new file mode 100644 index 00000000..bab19e3d --- /dev/null +++ b/document_page_tag/i18n/pt_BR.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Página do Documento" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "Identificação" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nome" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/pt_PT.po b/document_page_tag/i18n/pt_PT.po new file mode 100644 index 00000000..221b239d --- /dev/null +++ b/document_page_tag/i18n/pt_PT.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Nome a exibir" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Página do Documento" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Modificado pela última vez em" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Modificado pela última vez por" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nome" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/ro.po b/document_page_tag/i18n/ro.po new file mode 100644 index 00000000..28f4d5b8 --- /dev/null +++ b/document_page_tag/i18n/ro.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Creat in" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Pagina Documentului" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Nume" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/ru.po b/document_page_tag/i18n/ru.po new file mode 100644 index 00000000..f7712410 --- /dev/null +++ b/document_page_tag/i18n/ru.po @@ -0,0 +1,81 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Создано" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Создан" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Страница документа" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Название" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/sk.po b/document_page_tag/i18n/sk.po new file mode 100644 index 00000000..f9d80bbc --- /dev/null +++ b/document_page_tag/i18n/sk.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Meno" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/sl.po b/document_page_tag/i18n/sl.po new file mode 100644 index 00000000..0f09a1b4 --- /dev/null +++ b/document_page_tag/i18n/sl.po @@ -0,0 +1,81 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "Ključna beseda za strani dokumentov" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Stran dokumenta" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "Ključne besede" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Zadnjič posodobil" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Naziv" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "Oznake morajo biti unikatne" diff --git a/document_page_tag/i18n/sr.po b/document_page_tag/i18n/sr.po new file mode 100644 index 00000000..ec67f058 --- /dev/null +++ b/document_page_tag/i18n/sr.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Ime" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/sr@latin.po b/document_page_tag/i18n/sr@latin.po new file mode 100644 index 00000000..faf09256 --- /dev/null +++ b/document_page_tag/i18n/sr@latin.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Ime:" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/sv.po b/document_page_tag/i18n/sv.po new file mode 100644 index 00000000..69d16ebc --- /dev/null +++ b/document_page_tag/i18n/sv.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Dokumentsida" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Namn" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/th.po b/document_page_tag/i18n/th.po new file mode 100644 index 00000000..008fd289 --- /dev/null +++ b/document_page_tag/i18n/th.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "รหัส" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "ชื่อ" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/tr.po b/document_page_tag/i18n/tr.po new file mode 100644 index 00000000..b1acf75c --- /dev/null +++ b/document_page_tag/i18n/tr.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Oluşturulma" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "Belge Sayfası" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Adı" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/tr_TR.po b/document_page_tag/i18n/tr_TR.po new file mode 100644 index 00000000..1ec21fa2 --- /dev/null +++ b/document_page_tag/i18n/tr_TR.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "Kimlik" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Ad" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/uk.po b/document_page_tag/i18n/uk.po new file mode 100644 index 00000000..42618544 --- /dev/null +++ b/document_page_tag/i18n/uk.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Створив" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Створено" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Name" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/vi.po b/document_page_tag/i18n/vi.po new file mode 100644 index 00000000..859a1569 --- /dev/null +++ b/document_page_tag/i18n/vi.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Tạo trên" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Tên" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/vi_VN.po b/document_page_tag/i18n/vi_VN.po new file mode 100644 index 00000000..72a0c3b9 --- /dev/null +++ b/document_page_tag/i18n/vi_VN.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: vi_VN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "Tạo vào" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "Tên" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/zh_CN.po b/document_page_tag/i18n/zh_CN.po new file mode 100644 index 00000000..93a11233 --- /dev/null +++ b/document_page_tag/i18n/zh_CN.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "创建者" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "创建在" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "文档页面" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "ID" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "名称" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tag/i18n/zh_TW.po b/document_page_tag/i18n/zh_TW.po new file mode 100644 index 00000000..455cb933 --- /dev/null +++ b/document_page_tag/i18n/zh_TW.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page_tag +# +# 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" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page_tag +msgid "A keyword for document pages" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_uid +msgid "Created by" +msgstr "建立者" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_create_date +msgid "Created on" +msgstr "建立於" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: document_page_tag +#: model:ir.model,name:document_page_tag.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_id +msgid "ID" +msgstr "編號" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_ids +msgid "Keywords" +msgstr "" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag___last_update +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_uid +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: document_page_tag +#: model:ir.model.fields,field_description:document_page_tag.field_document_page_tag_name +msgid "Name" +msgstr "名稱" + +#. module: document_page_tag +#: sql_constraint:document.page.tag:0 +msgid "Tags must me unique" +msgstr "" diff --git a/document_page_tags/models/__init__.py b/document_page_tag/models/__init__.py similarity index 100% rename from document_page_tags/models/__init__.py rename to document_page_tag/models/__init__.py diff --git a/document_page_tags/models/document_page.py b/document_page_tag/models/document_page.py similarity index 100% rename from document_page_tags/models/document_page.py rename to document_page_tag/models/document_page.py diff --git a/document_page_tags/models/document_page_tag.py b/document_page_tag/models/document_page_tag.py similarity index 100% rename from document_page_tags/models/document_page_tag.py rename to document_page_tag/models/document_page_tag.py diff --git a/document_page_tag/readme/CONFIGURE.rst b/document_page_tag/readme/CONFIGURE.rst new file mode 100644 index 00000000..e7dc2359 --- /dev/null +++ b/document_page_tag/readme/CONFIGURE.rst @@ -0,0 +1 @@ +No configuration required. diff --git a/document_page_tag/readme/CONTRIBUTORS.rst b/document_page_tag/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000..665c3d97 --- /dev/null +++ b/document_page_tag/readme/CONTRIBUTORS.rst @@ -0,0 +1,2 @@ +* Holger Brunn +* Marcel Savegnago diff --git a/document_page_tag/readme/DESCRIPTION.rst b/document_page_tag/readme/DESCRIPTION.rst new file mode 100644 index 00000000..0363eb39 --- /dev/null +++ b/document_page_tag/readme/DESCRIPTION.rst @@ -0,0 +1,2 @@ +This module allows you to fill in keywords on your pages to simplify finding +them afterwards. diff --git a/document_page_tag/readme/INSTALL.rst b/document_page_tag/readme/INSTALL.rst new file mode 100644 index 00000000..b643617c --- /dev/null +++ b/document_page_tag/readme/INSTALL.rst @@ -0,0 +1 @@ +This module depends on module knowledge. So make sure to have it in your addons list. diff --git a/document_page_tag/readme/USAGE.rst b/document_page_tag/readme/USAGE.rst new file mode 100644 index 00000000..08447c08 --- /dev/null +++ b/document_page_tag/readme/USAGE.rst @@ -0,0 +1,2 @@ +Fill in your keywords, and search for them by typing (part of) the keyword and +choose searching for keywords. diff --git a/document_page_tags/security/ir.model.access.csv b/document_page_tag/security/ir.model.access.csv similarity index 100% rename from document_page_tags/security/ir.model.access.csv rename to document_page_tag/security/ir.model.access.csv diff --git a/document_page_tags/static/description/icon.png b/document_page_tag/static/description/icon.png similarity index 100% rename from document_page_tags/static/description/icon.png rename to document_page_tag/static/description/icon.png diff --git a/document_page_tags/tests/__init__.py b/document_page_tag/tests/__init__.py similarity index 75% rename from document_page_tags/tests/__init__.py rename to document_page_tag/tests/__init__.py index c8af28ed..f37e36b0 100644 --- a/document_page_tags/tests/__init__.py +++ b/document_page_tag/tests/__init__.py @@ -1,3 +1,3 @@ # Copyright 2015-2018 Therp BV # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). -from . import test_document_page_tags +from . import test_document_page_tag diff --git a/document_page_tags/tests/test_document_page_tags.py b/document_page_tag/tests/test_document_page_tag.py similarity index 90% rename from document_page_tags/tests/test_document_page_tags.py rename to document_page_tag/tests/test_document_page_tag.py index add9d242..2f4e4f00 100644 --- a/document_page_tags/tests/test_document_page_tags.py +++ b/document_page_tag/tests/test_document_page_tag.py @@ -5,8 +5,8 @@ from odoo.tests.common import TransactionCase from odoo.tools.misc import mute_logger -class TestDocumentPageTags(TransactionCase): - def test_document_page_tags(self): +class TestDocumentPageTag(TransactionCase): + def test_document_page_tag(self): testtag = self.env['document.page.tag'].name_create('test') # check we're charitable on duplicates self.assertEqual( diff --git a/document_page_tags/views/document_page.xml b/document_page_tag/views/document_page.xml similarity index 97% rename from document_page_tags/views/document_page.xml rename to document_page_tag/views/document_page.xml index 7f4e1b91..e067fb52 100644 --- a/document_page_tags/views/document_page.xml +++ b/document_page_tag/views/document_page.xml @@ -1,4 +1,4 @@ - + diff --git a/document_page_tags/views/document_page_tag.xml b/document_page_tag/views/document_page_tag.xml similarity index 98% rename from document_page_tags/views/document_page_tag.xml rename to document_page_tag/views/document_page_tag.xml index 524fbfd3..2d92212c 100644 --- a/document_page_tags/views/document_page_tag.xml +++ b/document_page_tag/views/document_page_tag.xml @@ -1,4 +1,3 @@ - diff --git a/document_page_tags/i18n/am.po b/document_page_tags/i18n/am.po deleted file mode 100644 index 50e1df37..00000000 --- a/document_page_tags/i18n/am.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: am\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Creado en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Última actualización por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Última actualización en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 5054a20d..00000000 --- a/document_page_tags/i18n/ar.po +++ /dev/null @@ -1,80 +0,0 @@ -# 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" -"Language: ar\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "أنشئ بواسطة" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "أنشئ في" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "المعرف" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "آخر تعديل في" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "آخر تحديث بواسطة" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "آخر تحديث في" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 07f05656..00000000 --- a/document_page_tags/i18n/bg.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: bg\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Създадено от" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Създадено на" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Последно обновено на" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Последно обновено от" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Последно обновено на" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 84708e24..00000000 --- a/document_page_tags/i18n/bs.po +++ /dev/null @@ -1,80 +0,0 @@ -# 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" -"Language: bs\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Kreirao" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Kreirano" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Zadnje mijenjano" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Zadnji ažurirao" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Zadnje ažurirano" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 861f1585..00000000 --- a/document_page_tags/i18n/ca.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: ca\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Creat per" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Creat el" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Darrera modificació el" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Darrera Actualització per" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Darrera Actualització el" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index dfd07787..00000000 --- a/document_page_tags/i18n/ca_ES.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: ca_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Creat per" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Creat a" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Darrera modificació en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Darrera actualització per" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Darrera actualització el" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 5fd01224..00000000 --- a/document_page_tags/i18n/cs.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: cs\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Vytvořil(a)" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Vytvořeno" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Naposled upraveno" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Naposled upraveno" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Naposled upraveno" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 86d54244..00000000 --- a/document_page_tags/i18n/da.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: da\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Oprettet af" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Oprettet den" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "Id" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Sidst ændret den" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Sidst opdateret af" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Sidst opdateret den" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 980df163..00000000 --- a/document_page_tags/i18n/de.po +++ /dev/null @@ -1,80 +0,0 @@ -# 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" -"Language: de\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Angelegt durch" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Erzeugt am" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "Schlüsselbegriffe" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Zuletzt geändert am" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Zuletzt aktualisiert durch" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Zuletzt aktualisiert am" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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/document_page_tags.pot b/document_page_tags/i18n/document_page_tags.pot deleted file mode 100644 index 0693ae2f..00000000 --- a/document_page_tags/i18n/document_page_tags.pot +++ /dev/null @@ -1,75 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * document_page_tags -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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.po b/document_page_tags/i18n/el.po deleted file mode 100644 index f15b2dab..00000000 --- a/document_page_tags/i18n/el.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: el\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Δημιουργήθηκε από" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Δημιουργήθηκε στις" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Τελευταία αλλαγή στις" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Τελευταία Ενημέρωση από" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Τελευταία Ενημέρωση στις" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index f4fab786..00000000 --- a/document_page_tags/i18n/el_GR.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: el_GR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Δημιουργήθηκε από " - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Δημιουργήθηκε στις" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "Κωδικός" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Τελευταία ενημέρωση από" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Τελευταία ενημέρωση στις" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index db882eaf..00000000 --- a/document_page_tags/i18n/en_GB.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: en_GB\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Created by" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Created on" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Last Modified on" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Last Updated by" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Last Updated on" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 11f9c8a0..00000000 --- a/document_page_tags/i18n/es.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: es\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Creado en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Última modificación el" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Ultima actualización por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Ultima actualización en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 02299415..00000000 --- a/document_page_tags/i18n/es_AR.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: es_AR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Creado en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Última modificación en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Ultima actualización por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Ultima actualización en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 0f847a8b..00000000 --- a/document_page_tags/i18n/es_CL.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: es_CL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Creado en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID (identificación)" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Última modificación en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Última actualización de" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Última actualización en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index eedda36c..00000000 --- a/document_page_tags/i18n/es_CO.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: es_CO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Creado" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Última Modificación el" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Actualizado por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Actualizado" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 6f6f6452..00000000 --- a/document_page_tags/i18n/es_CR.po +++ /dev/null @@ -1,80 +0,0 @@ -# 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" -"Language: es_CR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Creado en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -msgid "Display Name" -msgstr "" - -#. 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -#, fuzzy -msgid "Last Modified on" -msgstr "Ultima actualización en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Ultima actualización por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Ultima actualización en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 817e3157..00000000 --- a/document_page_tags/i18n/es_DO.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: es_DO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Creado en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Última modificación en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Última actualización de" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Última actualización en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 4dfc2138..00000000 --- a/document_page_tags/i18n/es_EC.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: es_EC\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Creado en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID (identificación)" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Última modificación en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Última actualización de" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Última actualización en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 0d310705..00000000 --- a/document_page_tags/i18n/es_ES.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Creado en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Última modificación en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Última actualización por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Última actualización en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index cff19dbb..00000000 --- a/document_page_tags/i18n/es_MX.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: es_MX\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Creado en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Ultima modificacion realizada" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Ultima actualización por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Ultima actualización en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 9ef4f359..00000000 --- a/document_page_tags/i18n/es_PE.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: es_PE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Creado en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Ultima Modificación en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Actualizado última vez por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Ultima Actualización" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 11ed8dc9..00000000 --- a/document_page_tags/i18n/es_PY.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: es_PY\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Creado en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Ultima actualización por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Ultima actualización en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 409254b2..00000000 --- a/document_page_tags/i18n/es_VE.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: es_VE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Creado en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Modificada por última vez" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Ultima actualización por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Ultima actualización en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 60b5aba7..00000000 --- a/document_page_tags/i18n/et.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: et\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Loonud" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Loodud" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Viimati muudetud" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Viimati uuendatud" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Viimati uuendatud" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 06a71a9e..00000000 --- a/document_page_tags/i18n/eu.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: eu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Nork sortua" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Created on" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Last Updated by" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Last Updated on" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index fd401d02..00000000 --- a/document_page_tags/i18n/fa.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: fa\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "ایجاد شده توسط" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "ایجاد شده در" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "شناسه" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "تاریخ آخرین به‌روزرسانی" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "آخرین به روز رسانی توسط" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "آخرین به روز رسانی در" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 5aa477b6..00000000 --- a/document_page_tags/i18n/fi.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: fi\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Luonut" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Luotu" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Viimeksi muokattu" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Viimeksi päivittänyt" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Viimeksi päivitetty" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index f8f84fa1..00000000 --- a/document_page_tags/i18n/fr.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Créé par" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Créé le" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Dernière modification le" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Dernière mise à jour par" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Dernière mise à jour le" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 72a49cb6..00000000 --- a/document_page_tags/i18n/fr_CA.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: fr_CA\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Créé par" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Créé le" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "Identifiant" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Dernière mise à jour par" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Dernière mise à jour le" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index d5f97e2c..00000000 --- a/document_page_tags/i18n/fr_CH.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: fr_CH\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Créé par" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Créé le" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Dernière modification le" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Modifié par" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Modifié le" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index b626edf7..00000000 --- a/document_page_tags/i18n/gl.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: gl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Creado o" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Última modificación" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "ültima actualización por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Última actualización en" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 17f3cabc..00000000 --- a/document_page_tags/i18n/gl_ES.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: gl_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 8c4bd5c8..00000000 --- a/document_page_tags/i18n/he.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: he\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "נוצר על ידי" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "נוצר ב-" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "מזהה" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "תאריך שינוי אחרון" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "עודכן לאחרונה על ידי" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "עודכן לאחרונה על" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 26b0b914..00000000 --- a/document_page_tags/i18n/hr.po +++ /dev/null @@ -1,80 +0,0 @@ -# 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" -"Language: hr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Kreirao" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Datum kreiranja" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Zadnje modificirano" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Zadnji ažurirao" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Zadnje ažuriranje" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index c3138170..00000000 --- a/document_page_tags/i18n/hr_HR.po +++ /dev/null @@ -1,80 +0,0 @@ -# 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" -"Language: hr_HR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Kreirao" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Kreirano" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Zadnje modificirano" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Zadnji ažurirao" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Zadnje ažurirano" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index d964ac99..00000000 --- a/document_page_tags/i18n/hu.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: hu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Készítette" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Létrehozás dátuma" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Utolsó frissítés dátuma" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Utoljára frissítve, által" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Utoljára frissítve " - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 1e1dcbaf..00000000 --- a/document_page_tags/i18n/id.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Dibuat oleh" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Dibuat pada" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Terakhir Dimodifikasi pada" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Diperbaharui oleh" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Diperbaharui pada" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index d6d2fa7d..00000000 --- a/document_page_tags/i18n/it.po +++ /dev/null @@ -1,81 +0,0 @@ -# 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" -"Language: it\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Creato da" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Creato il" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "Parole chiave" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Ultima modifica il" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Ultimo aggiornamento da" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Ultimo aggiornamento il" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 4c1bf6fa..00000000 --- a/document_page_tags/i18n/ja.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: ja\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "作成者" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "作成日" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "最終更新日" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "最終更新者" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "最終更新日" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 6c000483..00000000 --- a/document_page_tags/i18n/ko.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: ko\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "작성자" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "생성 날짜" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "최근 수정" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "최근 갱신한 사람" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "최근 갱신 날짜" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index de23d764..00000000 --- a/document_page_tags/i18n/lt.po +++ /dev/null @@ -1,80 +0,0 @@ -# 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" -"Language: lt\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" -"%100<10 || n%100>=20) ? 1 : 2);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Sukūrė" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Sukurta" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Paskutinį kartą keista" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Paskutinį kartą atnaujino" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Paskutinį kartą atnaujinta" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 6107af0e..00000000 --- a/document_page_tags/i18n/lt_LT.po +++ /dev/null @@ -1,80 +0,0 @@ -# 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" -"Language: lt_LT\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" -"%100<10 || n%100>=20) ? 1 : 2);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Sukūrė" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Sukurta" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Paskutinį kartą atnaujino" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Paskutinį kartą atnaujinta" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 76953135..00000000 --- a/document_page_tags/i18n/lv.po +++ /dev/null @@ -1,80 +0,0 @@ -# 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" -"Language: lv\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Izveidoja" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Izveidots" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Pēdējo reizi atjaunoja" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Pēdējās izmaiņas" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 1f907b0c..00000000 --- a/document_page_tags/i18n/mk.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: mk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Креирано од" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Креирано на" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Последна промена на" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Последно ажурирање од" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Последно ажурирање на" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 11b2c5b9..00000000 --- a/document_page_tags/i18n/mn.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: mn\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Үүсгэгч" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Үүсгэсэн" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Сүүлийн засвар хийсэн огноо" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Сүүлийн засвар хийсэн" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Сүүлийн засвар хийсэн огноо" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index de0dbebf..00000000 --- a/document_page_tags/i18n/nb.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: nb\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Opprettet av" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Opprettet den" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Sist oppdatert " - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Sist oppdatert av" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Sist oppdatert" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 4c298522..00000000 --- a/document_page_tags/i18n/nb_NO.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Laget av" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Laget den" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Sist endret den" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Sist oppdatert av" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Sist oppdatert den" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 1445b943..00000000 --- a/document_page_tags/i18n/nl.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: nl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Aangemaakt door" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Aangemaakt op" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Laatst bijgewerkt op" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Laatst bijgewerkt door" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Laatst bijgewerkt op" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index a734eaa7..00000000 --- a/document_page_tags/i18n/nl_BE.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: nl_BE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Gemaakt door" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Gemaakt op" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Laatst Aangepast op" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Laatst bijgewerkt door" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Laatst bijgewerkt op" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 5f654384..00000000 --- a/document_page_tags/i18n/nl_NL.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: nl_NL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Aangemaakt door" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Aangemaakt op" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Laatst gewijzigd op" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Laatst bijgewerkt door" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Laatst bijgewerkt op" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 285b8c76..00000000 --- a/document_page_tags/i18n/pl.po +++ /dev/null @@ -1,80 +0,0 @@ -# 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" -"Language: pl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Utworzone przez" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Utworzono" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Ostatnio modyfikowano" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Ostatnio modyfikowane przez" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Ostatnia zmiana" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 94e9fb79..00000000 --- a/document_page_tags/i18n/pt.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: pt\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Criado por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Criado em" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Modificado a última vez por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Atualizado pela última vez por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Atualizado pela última vez em" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 6813327e..00000000 --- a/document_page_tags/i18n/pt_BR.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Criado por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Criado em" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "Identificação" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Última atualização em" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Última atualização por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Última atualização em" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 78561904..00000000 --- a/document_page_tags/i18n/pt_PT.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: pt_PT\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Criado por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Criado em" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Modificado pela última vez em" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Modificado pela última vez por" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Atualizado pela última vez em" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index f586bd66..00000000 --- a/document_page_tags/i18n/ro.po +++ /dev/null @@ -1,80 +0,0 @@ -# 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" -"Language: ro\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Creat de" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Creat in" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Ultima actualizare în" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Ultima actualizare făcută de" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Ultima actualizare la" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 3b586168..00000000 --- a/document_page_tags/i18n/ru.po +++ /dev/null @@ -1,81 +0,0 @@ -# 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" -"Language: ru\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Создано" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Создан" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Последний раз обновлено" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Последний раз обновлено" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 3d0235a5..00000000 --- a/document_page_tags/i18n/sk.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: sk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Vytvoril" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Vytvorené" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Posledná modifikácia" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Naposledy upravoval" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Naposledy upravované" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 959f7b5e..00000000 --- a/document_page_tags/i18n/sl.po +++ /dev/null @@ -1,81 +0,0 @@ -# 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" -"Language: sl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Ustvaril" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Ustvarjeno" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "Ključne besede" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Zadnjič spremenjeno" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Zadnjič posodobil" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Zadnjič posodobljeno" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 463688ff..00000000 --- a/document_page_tags/i18n/sr.po +++ /dev/null @@ -1,80 +0,0 @@ -# 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" -"Language: sr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Kreiran" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index f5131ad4..00000000 --- a/document_page_tags/i18n/sr@latin.po +++ /dev/null @@ -1,80 +0,0 @@ -# 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" -"Language: sr@latin\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Kreirao" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Kreiran" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Zadnja izmjena" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Zadnja izmjena" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Zadnja izmjena" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 7a860975..00000000 --- a/document_page_tags/i18n/sv.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: sv\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Skapad av" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Skapad den" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Senast redigerad" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Senast uppdaterad av" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Senast uppdaterad" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 72f868b6..00000000 --- a/document_page_tags/i18n/th.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: th\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "สร้างโดย" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "สร้างเมื่อ" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "รหัส" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "แก้ไขครั้งสุดท้ายเมื่อ" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "อัพเดทครั้งสุดท้ายโดย" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "อัพเดทครั้งสุดท้ายเมื่อ" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index e6b6f7c1..00000000 --- a/document_page_tags/i18n/tr.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Oluşturan" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Oluşturulma" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Son değişiklik" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Son güncelleyen" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Son güncelleme" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index ea6139b9..00000000 --- a/document_page_tags/i18n/tr_TR.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: tr_TR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Oluşturan" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Oluşturulma tarihi" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "Kimlik" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "En son güncelleme tarihi" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "En son güncelleyen " - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "En son güncelleme tarihi" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index acba01f1..00000000 --- a/document_page_tags/i18n/uk.po +++ /dev/null @@ -1,80 +0,0 @@ -# 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" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Створив" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Створено" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Остання модифікація" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Востаннє оновив" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Останнє оновлення" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 36baf8d1..00000000 --- a/document_page_tags/i18n/vi.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: vi\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Được tạo bởi" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Tạo trên" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "Sửa lần cuối vào" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Last Updated by" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Cập nhật lần cuối vào" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 7b6b59d7..00000000 --- a/document_page_tags/i18n/vi_VN.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: vi_VN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "Tạo bởi" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "Tạo vào" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "Cập nhật lần cuối bởi" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "Cập nhật lần cuối vào" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 963fdc1e..00000000 --- a/document_page_tags/i18n/zh_CN.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "创建者" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "创建在" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "ID" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "最后修改时间" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "最后更新者" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "上次更新日期" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -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 deleted file mode 100644 index 24b43941..00000000 --- a/document_page_tags/i18n/zh_TW.po +++ /dev/null @@ -1,79 +0,0 @@ -# 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" -"Language: zh_TW\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: 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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_uid -msgid "Created by" -msgstr "建立者" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_create_date -msgid "Created on" -msgstr "建立於" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_display_name -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 -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_id -msgid "ID" -msgstr "編號" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_ids -msgid "Keywords" -msgstr "" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag___last_update -msgid "Last Modified on" -msgstr "最後修改:" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_uid -msgid "Last Updated by" -msgstr "最後更新:" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_write_date -msgid "Last Updated on" -msgstr "最後更新於" - -#. module: document_page_tags -#: model:ir.model.fields,field_description:document_page_tags.field_document_page_tag_name -msgid "Name" -msgstr "名稱" - -#. module: document_page_tags -#: sql_constraint:document.page.tag:0 -msgid "Tags must me unique" -msgstr ""