[tryton-debian-vcs] tryton-modules-party branch debian updated. debian/4.4.2-3-5-g3beaf7a
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Fri Nov 10 12:11:29 UTC 2017
The following commit has been merged in the debian branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-party.git;a=commitdiff;h=debian/4.4.2-3-5-g3beaf7a
commit 3beaf7a8d3a388149ba5a2d4d9760ba02ddbdb63
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Tue Nov 7 16:24:47 2017 +0100
Releasing debian version 4.6.0-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 34dec35..a83841d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+tryton-modules-party (4.6.0-1) unstable; urgency=medium
+
+ * Bump the Standards-Version to 4.1.0, no changes needed.
+ * Bump the Standards-Version to 4.1.1, no changes needed.
+ * Merging upstream version 4.6.0.
+ * Use https in the watch file.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Tue, 07 Nov 2017 10:20:12 +0100
+
tryton-modules-party (4.4.2-3) unstable; urgency=medium
* Switch to Python3.
commit f4a718b25ba3e66346d65c755f398c27d8f6acfa
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Tue Nov 7 10:16:46 2017 +0100
Use https in the watch file.
diff --git a/debian/watch b/debian/watch
index 00f8860..0fd0532 100644
--- a/debian/watch
+++ b/debian/watch
@@ -1,2 +1,2 @@
version=3
-opts=pgpsigurlmangle=s/$/.asc/ http://downloads.tryton.org/current/ .*trytond_party-(\d.*)\.(?:tgz|tbz2|txz|tar\.(?:gz|bz2|xz))
+opts=pgpsigurlmangle=s/$/.asc/ https://downloads.tryton.org/current/ .*trytond_party-(\d.*)\.(?:tgz|tbz2|txz|tar\.(?:gz|bz2|xz))
commit 47013a78e11c8911d98c6cc741423fb10b76f98a
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Mon Nov 6 14:40:58 2017 +0100
Merging upstream version 4.6.0.
diff --git a/.drone.yml b/.drone.yml
new file mode 100644
index 0000000..e0bc2f7
--- /dev/null
+++ b/.drone.yml
@@ -0,0 +1,51 @@
+clone:
+ hg:
+ image: plugins/hg
+
+pipeline:
+ tox:
+ image: ${IMAGE}
+ environment:
+ - CFLAGS=-O0
+ - DB_CACHE=/cache
+ - TOX_TESTENV_PASSENV=CFLAGS DB_CACHE
+ - POSTGRESQL_URI=postgresql://postgres@postgresql:5432/
+ commands:
+ - pip install tox
+ - tox -e "${TOXENV}-${DATABASE}"
+ volumes:
+ - cache:/root/.cache
+
+services:
+ postgresql:
+ image: postgres
+ when:
+ matrix:
+ DATABASE: postgresql
+
+matrix:
+ include:
+ - IMAGE: python:2.7
+ TOXENV: py27
+ DATABASE: sqlite
+ - IMAGE: python:2.7
+ TOXENV: py27
+ DATABASE: postgresql
+ - IMAGE: python:3.4
+ TOXENV: py34
+ DATABASE: sqlite
+ - IMAGE: python:3.4
+ TOXENV: py34
+ DATABASE: postgresql
+ - IMAGE: python:3.5
+ TOXENV: py35
+ DATABASE: sqlite
+ - IMAGE: python:3.5
+ TOXENV: py35
+ DATABASE: postgresql
+ - IMAGE: python:3.6
+ TOXENV: py36
+ DATABASE: sqlite
+ - IMAGE: python:3.6
+ TOXENV: py36
+ DATABASE: postgresql
diff --git a/CHANGELOG b/CHANGELOG
index 798e514..a091f45 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,7 +1,4 @@
-Version 4.4.2 - 2017-08-09
-* Bug fixes (see mercurial logs for details)
-
-Version 4.4.1 - 2017-07-01
+Version 4.6.0 - 2017-10-30
* Bug fixes (see mercurial logs for details)
Version 4.4.0 - 2017-05-01
diff --git a/MANIFEST.in b/MANIFEST.in
index 8d5ff8a..03119bc 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -6,7 +6,7 @@ include LICENSE
include tryton.cfg
include *.xml
include view/*.xml
-include *.odt
+include *.fodt
include locale/*.po
include doc/*
include icons/*
diff --git a/PKG-INFO b/PKG-INFO
index 1d28482..ae00398 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,12 +1,12 @@
Metadata-Version: 1.1
Name: trytond_party
-Version: 4.4.2
+Version: 4.6.0
Summary: Tryton module with parties and addresses
Home-page: http://www.tryton.org/
Author: Tryton
Author-email: issue_tracker at tryton.org
License: GPL-3
-Download-URL: http://downloads.tryton.org/4.4/
+Download-URL: http://downloads.tryton.org/4.6/
Description: trytond_party
=============
@@ -70,9 +70,9 @@ Classifier: Natural Language :: Slovenian
Classifier: Natural Language :: Spanish
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
+Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Office/Business
diff --git a/contact_mechanism.py b/contact_mechanism.py
index ffa0379..880e4ed 100644
--- a/contact_mechanism.py
+++ b/contact_mechanism.py
@@ -259,8 +259,10 @@ class ContactMechanism(sequence_ordered(), ModelSQL, ModelView):
if not phonenumbers or self.type not in _PHONE_TYPES:
return
try:
- phonenumbers.parse(self.value)
+ phonenumber = phonenumbers.parse(self.value)
except NumberParseException:
+ phonenumber = None
+ if not (phonenumber and phonenumbers.is_valid_number(phonenumber)):
self.raise_user_error(
'invalid_phonenumber', {
'phone': self.value,
diff --git a/label.fodt b/label.fodt
new file mode 100644
index 0000000..1b2fc87
--- /dev/null
+++ b/label.fodt
@@ -0,0 +1,315 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
+ <office:meta><meta:generator>LibreOffice/5.2.7.2$Linux_X86_64 LibreOffice_project/20m0$Build-2</meta:generator><meta:creation-date>2008-06-07T15:28:45</meta:creation-date><dc:date>2008-10-22T19:21:28</dc:date><meta:editing-cycles>1</meta:editing-cycles><meta:editing-duration>PT0S</meta:editing-duration><meta:document-statistic meta:character-count="278" meta:image-count="0" meta:non-whitespace-character-count="265" meta:object-count="0" meta:page-count="1" meta:paragraph-count="12" meta:table-count="0" meta:word-count="25"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
+ <office:settings>
+ <config:config-item-set config:name="ooo:view-settings">
+ <config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
+ <config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
+ <config:config-item config:name="ViewAreaWidth" config:type="long">43760</config:config-item>
+ <config:config-item config:name="ViewAreaHeight" config:type="long">21691</config:config-item>
+ <config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
+ <config:config-item-map-indexed config:name="Views">
+ <config:config-item-map-entry>
+ <config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
+ <config:config-item config:name="ViewLeft" config:type="long">2630</config:config-item>
+ <config:config-item config:name="ViewTop" config:type="long">2501</config:config-item>
+ <config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
+ <config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
+ <config:config-item config:name="VisibleRight" config:type="long">43759</config:config-item>
+ <config:config-item config:name="VisibleBottom" config:type="long">21689</config:config-item>
+ <config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
+ <config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
+ <config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ZoomFactor" config:type="short">100</config:config-item>
+ <config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
+ </config:config-item-map-entry>
+ </config:config-item-map-indexed>
+ </config:config-item-set>
+ <config:config-item-set config:name="ooo:configuration-settings">
+ <config:config-item config:name="PrintProspect" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="PrintControls" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="PrintAnnotationMode" config:type="short">0</config:config-item>
+ <config:config-item config:name="PrintGraphics" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="PrintFaxName" config:type="string"/>
+ <config:config-item config:name="PrintPaperFromSetup" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintTextPlaceholder" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ApplyParagraphMarkFormatToNumbering" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintReversed" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="TabOverMargin" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="SurroundTextWrapSmall" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="BackgroundParaOverDrawings" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ClippedPictures" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="FloattableNomargins" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="UnbreakableNumberings" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="EmbedSystemFonts" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="TabOverflow" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintTables" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="PrintSingleJobs" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="SmallCapsPercentage66" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="CollapseEmptyCellPara" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="TreatSingleColumnBreakAsPageBreak" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="AddFrameOffsets" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="IsLabelDocument" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrinterName" config:type="string"/>
+ <config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="IgnoreFirstLineIndentInNumbering" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="PrintBlackFonts" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="TableRowKeep" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
+ <config:config-item config:name="IgnoreTabsAndBlanksForLineCalculation" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="UseOldPrinterMetrics" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="TabsRelativeToIndent" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="Rsid" config:type="int">210213</config:config-item>
+ <config:config-item config:name="PrintProspectRTL" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintEmptyPages" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="ApplyUserData" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintHiddenText" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="UseOldNumbering" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="AddParaTableSpacing" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
+ <config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="PrinterIndependentLayout" config:type="string">high-resolution</config:config-item>
+ <config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="UseFormerObjectPositioning" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="AddVerticalFrameOffsets" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="SubtractFlysAnchoredAtFlys" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="AddParaSpacingToTableCells" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="AddExternalLeading" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="CurrentDatabaseDataSource" config:type="string"/>
+ <config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="UseFormerLineSpacing" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintDrawings" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="UseFormerTextWrapping" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="RedlineProtectionKey" config:type="base64Binary"/>
+ <config:config-item config:name="PropLineSpacingShrinksFirstLine" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ConsiderTextWrapOnObjPos" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="RsidRoot" config:type="int">197346</config:config-item>
+ <config:config-item config:name="StylesNoDefault" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="LinkUpdateMode" config:type="short">1</config:config-item>
+ <config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item>
+ <config:config-item config:name="DoNotJustifyLinesWithManualBreak" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
+ <config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="DoNotCaptureDrawObjsOnPage" config:type="boolean">false</config:config-item>
+ <config:config-item config:name="CurrentDatabaseCommand" config:type="string"/>
+ <config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
+ <config:config-item config:name="ClipAsCharacterAnchoredWriterFlyFrames" config:type="boolean">false</config:config-item>
+ </config:config-item-set>
+ </office:settings>
+ <office:scripts>
+ <office:script script:language="ooo:Basic">
+ <ooo:libraries xmlns:ooo="http://openoffice.org/2004/office" xmlns:xlink="http://www.w3.org/1999/xlink"/>
+ </office:script>
+ </office:scripts>
+ <office:font-face-decls>
+ <style:font-face style:name="StarSymbol" svg:font-family="StarSymbol"/>
+ <style:font-face style:name="Liberation Serif1" svg:font-family="'Liberation Serif'" style:font-adornments="Bold" style:font-family-generic="roman" style:font-pitch="variable"/>
+ <style:font-face style:name="Liberation Serif" svg:font-family="'Liberation Serif'" style:font-adornments="Regular" style:font-family-generic="roman" style:font-pitch="variable"/>
+ <style:font-face style:name="Thorndale AMT" svg:font-family="'Thorndale AMT'" style:font-family-generic="roman" style:font-pitch="variable"/>
+ <style:font-face style:name="Liberation Sans" svg:font-family="'Liberation Sans'" style:font-adornments="Regular" style:font-family-generic="swiss" style:font-pitch="variable"/>
+ <style:font-face style:name="Andale Sans UI" svg:font-family="'Andale Sans UI'" style:font-family-generic="system" style:font-pitch="variable"/>
+ <style:font-face style:name="DejaVu Sans" svg:font-family="'DejaVu Sans'" style:font-family-generic="system" style:font-pitch="variable"/>
+ </office:font-face-decls>
+ <office:styles>
+ <style:default-style style:family="graphic">
+ <style:graphic-properties svg:stroke-color="#000000" draw:fill-color="#99ccff" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in" draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in" draw:start-line-spacing-vertical="0.1114in" draw:end-line-spacing-horizontal="0.1114in" draw:end-line-spacing-vertical="0.1114in" style:flow-with-text="false"/>
+ <style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:writing-mode="lr-tb" style:font-independent-line-spacing="false">
+ <style:tab-stops/>
+ </style:paragraph-properties>
+ <style:text-properties style:use-window-font-color="true" style:font-name="Thorndale AMT" fo:font-size="12pt" fo:language="en" fo:country="US" style:letter-kerning="true" style:font-name-asian="Andale Sans UI" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-name-complex="Andale Sans UI" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none"/>
+ </style:default-style>
+ <style:default-style style:family="paragraph">
+ <style:paragraph-properties fo:hyphenation-ladder-count="no-limit" style:text-autospace="ideograph-alpha" style:punctuation-wrap="hanging" style:line-break="strict" style:tab-stop-distance="0.4925in" style:writing-mode="lr-tb"/>
+ <style:text-properties style:use-window-font-color="true" style:font-name="Thorndale AMT" fo:font-size="12pt" fo:language="en" fo:country="US" style:letter-kerning="true" style:font-name-asian="Andale Sans UI" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-name-complex="Andale Sans UI" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none" fo:hyphenate="false" fo:hyphenation-remain-char-count="2" fo:hyphenation-push-char-count="2"/>
+ </style:default-style>
+ <style:default-style style:family="table">
+ <style:table-properties table:border-model="collapsing"/>
+ </style:default-style>
+ <style:default-style style:family="table-row">
+ <style:table-row-properties fo:keep-together="auto"/>
+ </style:default-style>
+ <style:style style:name="Standard" style:family="paragraph" style:class="text">
+ <style:text-properties style:font-name="Liberation Sans" fo:font-family="'Liberation Sans'" style:font-style-name="Regular" style:font-family-generic="swiss" style:font-pitch="variable" style:font-size-asian="10.5pt"/>
+ </style:style>
+ <style:style style:name="Heading" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="text">
+ <style:paragraph-properties fo:margin-top="0.1665in" fo:margin-bottom="0.0835in" loext:contextual-spacing="false" fo:keep-with-next="always"/>
+ <style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" style:font-style-name="Regular" style:font-family-generic="roman" style:font-pitch="variable" fo:font-size="16pt" style:font-name-asian="DejaVu Sans" style:font-family-asian="'DejaVu Sans'" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-size-asian="14pt" style:font-name-complex="DejaVu Sans" style:font-family-complex="'DejaVu Sans'" style:font-family-generic-complex="system" style:font-pitch-complex="variable" style:font-size-complex="14pt"/>
+ </style:style>
+ <style:style style:name="Text_20_body" style:display-name="Text body" style:family="paragraph" style:parent-style-name="Standard" style:class="text">
+ <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0835in" loext:contextual-spacing="false"/>
+ <style:text-properties style:font-name="Liberation Sans" fo:font-family="'Liberation Sans'" style:font-style-name="Regular" style:font-family-generic="swiss" style:font-pitch="variable" style:font-size-asian="10.5pt"/>
+ </style:style>
+ <style:style style:name="List" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="list">
+ <style:text-properties style:font-size-asian="12pt"/>
+ </style:style>
+ <style:style style:name="Caption" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
+ <style:paragraph-properties fo:margin-top="0.0835in" fo:margin-bottom="0.0835in" loext:contextual-spacing="false" text:number-lines="false" text:line-number="0"/>
+ <style:text-properties fo:font-size="12pt" fo:font-style="italic" style:font-size-asian="12pt" style:font-style-asian="italic" style:font-size-complex="12pt" style:font-style-complex="italic"/>
+ </style:style>
+ <style:style style:name="Index" style:family="paragraph" style:parent-style-name="Standard" style:class="index">
+ <style:paragraph-properties text:number-lines="false" text:line-number="0"/>
+ <style:text-properties style:font-size-asian="12pt"/>
+ </style:style>
+ <style:style style:name="Header" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
+ <style:paragraph-properties text:number-lines="false" text:line-number="0">
+ <style:tab-stops>
+ <style:tab-stop style:position="3.4626in" style:type="center"/>
+ <style:tab-stop style:position="6.9252in" style:type="right"/>
+ </style:tab-stops>
+ </style:paragraph-properties>
+ <style:text-properties fo:font-size="9pt" style:font-size-asian="10.5pt"/>
+ </style:style>
+ <style:style style:name="Heading_20_2" style:display-name="Heading 2" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="text">
+ <style:text-properties fo:font-size="14pt" fo:font-style="italic" fo:font-weight="bold" style:font-size-asian="14pt" style:font-style-asian="italic" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-style-complex="italic" style:font-weight-complex="bold"/>
+ </style:style>
+ <style:style style:name="Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
+ <style:paragraph-properties text:number-lines="false" text:line-number="0">
+ <style:tab-stops>
+ <style:tab-stop style:position="3.4626in" style:type="center"/>
+ <style:tab-stop style:position="6.9252in" style:type="right"/>
+ </style:tab-stops>
+ </style:paragraph-properties>
+ <style:text-properties fo:font-size="9pt" style:font-size-asian="10.5pt"/>
+ </style:style>
+ <style:style style:name="Heading_20_1" style:display-name="Heading 1" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="text">
+ <style:text-properties fo:font-size="16pt" fo:font-weight="bold" style:font-size-asian="115%" style:font-weight-asian="bold" style:font-size-complex="115%" style:font-weight-complex="bold"/>
+ </style:style>
+ <style:style style:name="Table_20_Contents" style:display-name="Table Contents" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
+ <style:paragraph-properties text:number-lines="false" text:line-number="0"/>
+ <style:text-properties style:font-size-asian="10.5pt"/>
+ </style:style>
+ <style:style style:name="Table_20_Heading" style:display-name="Table Heading" style:family="paragraph" style:parent-style-name="Table_20_Contents" style:class="extra" style:master-page-name="">
+ <style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:page-number="auto" text:number-lines="false" text:line-number="0"/>
+ <style:text-properties style:font-name="Liberation Serif1" fo:font-family="'Liberation Serif'" style:font-style-name="Bold" style:font-family-generic="roman" style:font-pitch="variable" fo:font-weight="bold" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
+ </style:style>
+ <style:style style:name="Heading_20_3" style:display-name="Heading 3" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="text">
+ <style:text-properties fo:font-size="14pt" fo:font-weight="bold" style:font-size-asian="14pt" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-weight-complex="bold"/>
+ </style:style>
+ <style:style style:name="Text_20_body_20_indent" style:display-name="Text body indent" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="text">
+ <style:paragraph-properties fo:margin-left="0.1965in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
+ </style:style>
+ <style:style style:name="Text" style:family="paragraph" style:parent-style-name="Caption" style:class="extra"/>
+ <style:style style:name="Placeholder" style:family="text">
+ <style:text-properties fo:font-variant="small-caps" fo:color="#008080" style:text-underline-style="dotted" style:text-underline-width="auto" style:text-underline-color="font-color"/>
+ </style:style>
+ <style:style style:name="Bullet_20_Symbols" style:display-name="Bullet Symbols" style:family="text">
+ <style:text-properties style:font-name="StarSymbol" fo:font-family="StarSymbol" fo:font-size="9pt" style:font-name-asian="StarSymbol" style:font-family-asian="StarSymbol" style:font-size-asian="9pt" style:font-name-complex="StarSymbol" style:font-family-complex="StarSymbol" style:font-size-complex="9pt"/>
+ </style:style>
+ <text:outline-style style:name="Outline">
+ <text:outline-level-style text:level="1" style:num-format="">
+ <style:list-level-properties text:min-label-distance="0.15in"/>
+ </text:outline-level-style>
+ <text:outline-level-style text:level="2" style:num-format="">
+ <style:list-level-properties text:min-label-distance="0.15in"/>
+ </text:outline-level-style>
+ <text:outline-level-style text:level="3" style:num-format="">
+ <style:list-level-properties text:min-label-distance="0.15in"/>
+ </text:outline-level-style>
+ <text:outline-level-style text:level="4" style:num-format="">
+ <style:list-level-properties text:min-label-distance="0.15in"/>
+ </text:outline-level-style>
+ <text:outline-level-style text:level="5" style:num-format="">
+ <style:list-level-properties text:min-label-distance="0.15in"/>
+ </text:outline-level-style>
+ <text:outline-level-style text:level="6" style:num-format="">
+ <style:list-level-properties text:min-label-distance="0.15in"/>
+ </text:outline-level-style>
+ <text:outline-level-style text:level="7" style:num-format="">
+ <style:list-level-properties text:min-label-distance="0.15in"/>
+ </text:outline-level-style>
+ <text:outline-level-style text:level="8" style:num-format="">
+ <style:list-level-properties text:min-label-distance="0.15in"/>
+ </text:outline-level-style>
+ <text:outline-level-style text:level="9" style:num-format="">
+ <style:list-level-properties text:min-label-distance="0.15in"/>
+ </text:outline-level-style>
+ <text:outline-level-style text:level="10" style:num-format="">
+ <style:list-level-properties text:min-label-distance="0.15in"/>
+ </text:outline-level-style>
+ </text:outline-style>
+ <text:notes-configuration text:note-class="footnote" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document"/>
+ <text:notes-configuration text:note-class="endnote" style:num-format="i" text:start-value="0"/>
+ <text:linenumbering-configuration text:number-lines="false" text:offset="0.1965in" style:num-format="1" text:number-position="left" text:increment="5"/>
+ </office:styles>
+ <office:automatic-styles>
+ <style:style style:name="P1" style:family="paragraph" style:parent-style-name="Standard">
+ <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.2in" loext:contextual-spacing="false"/>
+ </style:style>
+ <style:style style:name="P2" style:family="paragraph" style:parent-style-name="Standard">
+ <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0in" loext:contextual-spacing="false"/>
+ </style:style>
+ <style:style style:name="P3" style:family="paragraph" style:parent-style-name="Standard" style:master-page-name="">
+ <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0in" loext:contextual-spacing="false" style:page-number="auto"/>
+ </style:style>
+ <style:style style:name="P4" style:family="paragraph" style:parent-style-name="Standard" style:master-page-name="">
+ <style:paragraph-properties fo:margin-top="0.1965in" fo:margin-bottom="0in" loext:contextual-spacing="false" style:page-number="auto"/>
+ </style:style>
+ <style:style style:name="Sect1" style:family="section">
+ <style:section-properties style:editable="false">
+ <style:columns fo:column-count="1" fo:column-gap="0in"/>
+ </style:section-properties>
+ </style:style>
+ <style:page-layout style:name="pm1">
+ <style:page-layout-properties fo:page-width="8.2673in" fo:page-height="11.6925in" style:num-format="1" style:print-orientation="portrait" fo:margin-top="0.7874in" fo:margin-bottom="0.7874in" fo:margin-left="0.7874in" fo:margin-right="0.7874in" style:shadow="none" fo:background-color="transparent" style:writing-mode="lr-tb" style:layout-grid-color="#c0c0c0" style:layout-grid-lines="44" style:layout-grid-base-height="0.2165in" style:layout-grid-ruby-height="0in" style:layout-grid-mode="none" style:layout-grid-ruby-below="false" style:layout-grid-print="true" style:layout-grid-display="true" draw:fill="none" draw:fill-color="#99ccff" style:footnote-max-height="0in">
+ <style:columns fo:column-count="2" fo:column-gap="0.5in">
+ <style:column style:rel-width="32767*" fo:start-indent="0in" fo:end-indent="0.25in"/>
+ <style:column style:rel-width="32768*" fo:start-indent="0.25in" fo:end-indent="0in"/>
+ </style:columns>
+ <style:footnote-sep style:width="0.0071in" style:distance-before-sep="0.0398in" style:distance-after-sep="0.0398in" style:line-style="none" style:adjustment="left" style:rel-width="25%" style:color="#000000"/>
+ </style:page-layout-properties>
+ <style:header-style/>
+ <style:footer-style/>
+ </style:page-layout>
+ </office:automatic-styles>
+ <office:master-styles>
+ <style:master-page style:name="Standard" style:page-layout-name="pm1"/>
+ </office:master-styles>
+ <office:body>
+ <office:text>
+ <office:forms form:automatic-focus="false" form:apply-design-mode="false"/>
+ <text:sequence-decls>
+ <text:sequence-decl text:display-outline-level="0" text:name="Illustration"/>
+ <text:sequence-decl text:display-outline-level="0" text:name="Table"/>
+ <text:sequence-decl text:display-outline-level="0" text:name="Text"/>
+ <text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
+ </text:sequence-decls>
+ <text:section text:style-name="Sect1" text:name="Section1">
+ <text:p text:style-name="P3"><text:placeholder text:placeholder-type="text"><for each="party in records"></text:placeholder></text:p>
+ <text:p text:style-name="P4"><text:placeholder text:placeholder-type="text"><party.full_name></text:placeholder></text:p>
+ <text:p text:style-name="P1"><text:placeholder text:placeholder-type="text"><if test="party.addresses"></text:placeholder></text:p>
+ <text:p text:style-name="P1"><text:placeholder text:placeholder-type="text"><for each="line in party.addresses[0].full_address.split('\n')"></text:placeholder></text:p>
+ <text:p text:style-name="P2"><text:placeholder text:placeholder-type="text"><line></text:placeholder></text:p>
+ <text:p text:style-name="P2"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
+ <text:p text:style-name="P2"><text:placeholder text:placeholder-type="text"><for each="i in range(5 -len(party.addresses[0].full_address.split('\n')))"></text:placeholder></text:p>
+ <text:p text:style-name="P2"/>
+ <text:p text:style-name="P2"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
+ <text:p text:style-name="P2"><text:placeholder text:placeholder-type="text"></if></text:placeholder></text:p>
+ <text:p text:style-name="P2"><text:placeholder text:placeholder-type="text"><if test="not party.addresses"></text:placeholder></text:p>
+ <text:p text:style-name="P2"/>
+ <text:p text:style-name="P2"/>
+ <text:p text:style-name="P2"/>
+ <text:p text:style-name="P2"/>
+ <text:p text:style-name="P2"/>
+ <text:p text:style-name="P2"><text:placeholder text:placeholder-type="text"></if></text:placeholder></text:p>
+ <text:p text:style-name="P2"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
+ </text:section>
+ </office:text>
+ </office:body>
+</office:document>
\ No newline at end of file
diff --git a/label.odt b/label.odt
deleted file mode 100644
index 4683c4c..0000000
Binary files a/label.odt and /dev/null differ
diff --git a/locale/bg.po b/locale/bg.po
index 4ae4258..a39c97a 100644
--- a/locale/bg.po
+++ b/locale/bg.po
@@ -1,4 +1,4 @@
-#
+#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
@@ -86,8 +86,8 @@ msgid "Party"
msgstr "Партньор"
msgctxt "field:party.address,rec_name:"
-msgid "Name"
-msgstr "Име"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.address,sequence:"
msgid "Sequence"
@@ -147,10 +147,9 @@ msgctxt "field:party.address.format,language:"
msgid "Language"
msgstr "Език"
-#, fuzzy
msgctxt "field:party.address.format,rec_name:"
-msgid "Name"
-msgstr "Условие за плащане"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.address.format,write_date:"
@@ -191,8 +190,8 @@ msgid "Parent"
msgstr "Родител"
msgctxt "field:party.category,rec_name:"
-msgid "Name"
-msgstr "Име"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.category,write_date:"
msgid "Write Date"
@@ -235,8 +234,8 @@ msgid "Party Sequence"
msgstr "Последователност за партньор"
msgctxt "field:party.configuration,rec_name:"
-msgid "Name"
-msgstr "Име"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.configuration,write_date:"
msgid "Write Date"
@@ -265,10 +264,9 @@ msgctxt "field:party.configuration.party_lang,party_lang:"
msgid "Party Language"
msgstr ""
-#, fuzzy
msgctxt "field:party.configuration.party_lang,rec_name:"
-msgid "Name"
-msgstr "Име"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.configuration.party_lang,write_date:"
@@ -300,10 +298,9 @@ msgctxt "field:party.configuration.party_sequence,party_sequence:"
msgid "Party Sequence"
msgstr "Последователност за партньор"
-#, fuzzy
msgctxt "field:party.configuration.party_sequence,rec_name:"
-msgid "Name"
-msgstr "Име"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.configuration.party_sequence,write_date:"
@@ -348,8 +345,8 @@ msgid "Party"
msgstr "Партньор"
msgctxt "field:party.contact_mechanism,rec_name:"
-msgid "Name"
-msgstr "Име"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.contact_mechanism,sequence:"
msgid "Sequence"
@@ -413,8 +410,8 @@ msgid "Party"
msgstr "Партньор"
msgctxt "field:party.identifier,rec_name:"
-msgid "Name"
-msgstr "Име"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.identifier,sequence:"
@@ -507,8 +504,8 @@ msgid "Phone"
msgstr "Телефон"
msgctxt "field:party.party,rec_name:"
-msgid "Name"
-msgstr "Име"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party,replaced_by:"
msgid "Replaced By"
@@ -551,8 +548,8 @@ msgid "Party"
msgstr "Партньор"
msgctxt "field:party.party-party.category,rec_name:"
-msgid "Name"
-msgstr "Име"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party-party.category,write_date:"
msgid "Write Date"
@@ -587,10 +584,9 @@ msgctxt "field:party.party.lang,party:"
msgid "Party"
msgstr "Партньор"
-#, fuzzy
msgctxt "field:party.party.lang,rec_name:"
-msgid "Name"
-msgstr "Име"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.party.lang,write_date:"
diff --git a/locale/ca.po b/locale/ca.po
index 943d5ae..069c7f4 100644
--- a/locale/ca.po
+++ b/locale/ca.po
@@ -1,4 +1,4 @@
-#
+#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
@@ -90,8 +90,8 @@ msgid "Party"
msgstr "Tercer"
msgctxt "field:party.address,rec_name:"
-msgid "Name"
-msgstr "Contacte"
+msgid "Record Name"
+msgstr "Nom del registre"
msgctxt "field:party.address,sequence:"
msgid "Sequence"
@@ -146,8 +146,8 @@ msgid "Language"
msgstr "Idioma"
msgctxt "field:party.address.format,rec_name:"
-msgid "Name"
-msgstr "Nom"
+msgid "Record Name"
+msgstr "Nom del registre"
msgctxt "field:party.address.format,write_date:"
msgid "Write Date"
@@ -186,8 +186,8 @@ msgid "Parent"
msgstr "Pare"
msgctxt "field:party.category,rec_name:"
-msgid "Name"
-msgstr "Nom"
+msgid "Record Name"
+msgstr "Nom del registre"
msgctxt "field:party.category,write_date:"
msgid "Write Date"
@@ -230,8 +230,8 @@ msgid "Party Sequence"
msgstr "Seqüència de tercer"
msgctxt "field:party.configuration,rec_name:"
-msgid "Name"
-msgstr "Nom"
+msgid "Record Name"
+msgstr "Nom del registre"
msgctxt "field:party.configuration,write_date:"
msgid "Write Date"
@@ -258,8 +258,8 @@ msgid "Party Language"
msgstr "Idioma del tercer"
msgctxt "field:party.configuration.party_lang,rec_name:"
-msgid "Name"
-msgstr "Nom"
+msgid "Record Name"
+msgstr "Nom del registre"
msgctxt "field:party.configuration.party_lang,write_date:"
msgid "Write Date"
@@ -286,8 +286,8 @@ msgid "Party Sequence"
msgstr "Seqüència de tercer"
msgctxt "field:party.configuration.party_sequence,rec_name:"
-msgid "Name"
-msgstr "Nom"
+msgid "Record Name"
+msgstr "Nom del registre"
msgctxt "field:party.configuration.party_sequence,write_date:"
msgid "Write Date"
@@ -330,8 +330,8 @@ msgid "Party"
msgstr "Tercer"
msgctxt "field:party.contact_mechanism,rec_name:"
-msgid "Name"
-msgstr "Nom"
+msgid "Record Name"
+msgstr "Nom del registre"
msgctxt "field:party.contact_mechanism,sequence:"
msgid "Sequence"
@@ -394,8 +394,8 @@ msgid "Party"
msgstr "Tercer"
msgctxt "field:party.identifier,rec_name:"
-msgid "Name"
-msgstr "Contacte"
+msgid "Record Name"
+msgstr "Nom del registre"
msgctxt "field:party.identifier,sequence:"
msgid "Sequence"
@@ -486,8 +486,8 @@ msgid "Phone"
msgstr "Telèfon"
msgctxt "field:party.party,rec_name:"
-msgid "Name"
-msgstr "Nom"
+msgid "Record Name"
+msgstr "Nom del registre"
msgctxt "field:party.party,replaced_by:"
msgid "Replaced By"
@@ -530,8 +530,8 @@ msgid "Party"
msgstr "Tercer"
msgctxt "field:party.party-party.category,rec_name:"
-msgid "Name"
-msgstr "Nom"
+msgid "Record Name"
+msgstr "Nom del registre"
msgctxt "field:party.party-party.category,write_date:"
msgid "Write Date"
@@ -562,8 +562,8 @@ msgid "Party"
msgstr "Tercer"
msgctxt "field:party.party.lang,rec_name:"
-msgid "Name"
-msgstr "Nom"
+msgid "Record Name"
+msgstr "Nom del registre"
msgctxt "field:party.party.lang,write_date:"
msgid "Write Date"
diff --git a/locale/cs.po b/locale/cs.po
index 025b9a2..058ff99 100644
--- a/locale/cs.po
+++ b/locale/cs.po
@@ -1,4 +1,4 @@
-#
+#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
@@ -85,10 +85,9 @@ msgctxt "field:party.address,party:"
msgid "Party"
msgstr ""
-#, fuzzy
msgctxt "field:party.address,rec_name:"
-msgid "Name"
-msgstr "Namu"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.address,sequence:"
msgid "Sequence"
@@ -144,10 +143,9 @@ msgctxt "field:party.address.format,language:"
msgid "Language"
msgstr ""
-#, fuzzy
msgctxt "field:party.address.format,rec_name:"
-msgid "Name"
-msgstr "Namu"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.address.format,write_date:"
msgid "Write Date"
@@ -186,10 +184,9 @@ msgctxt "field:party.category,parent:"
msgid "Parent"
msgstr ""
-#, fuzzy
msgctxt "field:party.category,rec_name:"
-msgid "Name"
-msgstr "Namu"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.category,write_date:"
msgid "Write Date"
@@ -231,10 +228,9 @@ msgctxt "field:party.configuration,party_sequence:"
msgid "Party Sequence"
msgstr ""
-#, fuzzy
msgctxt "field:party.configuration,rec_name:"
-msgid "Name"
-msgstr "Namu"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.configuration,write_date:"
msgid "Write Date"
@@ -260,10 +256,9 @@ msgctxt "field:party.configuration.party_lang,party_lang:"
msgid "Party Language"
msgstr ""
-#, fuzzy
msgctxt "field:party.configuration.party_lang,rec_name:"
-msgid "Name"
-msgstr "Namu"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.configuration.party_lang,write_date:"
msgid "Write Date"
@@ -289,10 +284,9 @@ msgctxt "field:party.configuration.party_sequence,party_sequence:"
msgid "Party Sequence"
msgstr ""
-#, fuzzy
msgctxt "field:party.configuration.party_sequence,rec_name:"
-msgid "Name"
-msgstr "Namu"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.configuration.party_sequence,write_date:"
msgid "Write Date"
@@ -334,10 +328,9 @@ msgctxt "field:party.contact_mechanism,party:"
msgid "Party"
msgstr ""
-#, fuzzy
msgctxt "field:party.contact_mechanism,rec_name:"
-msgid "Name"
-msgstr "Namu"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.contact_mechanism,sequence:"
msgid "Sequence"
@@ -399,10 +392,9 @@ msgctxt "field:party.identifier,party:"
msgid "Party"
msgstr ""
-#, fuzzy
msgctxt "field:party.identifier,rec_name:"
-msgid "Name"
-msgstr "Namu"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.identifier,sequence:"
msgid "Sequence"
@@ -493,10 +485,9 @@ msgctxt "field:party.party,phone:"
msgid "Phone"
msgstr ""
-#, fuzzy
msgctxt "field:party.party,rec_name:"
-msgid "Name"
-msgstr "Namu"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party,replaced_by:"
msgid "Replaced By"
@@ -538,10 +529,9 @@ msgctxt "field:party.party-party.category,party:"
msgid "Party"
msgstr ""
-#, fuzzy
msgctxt "field:party.party-party.category,rec_name:"
-msgid "Name"
-msgstr "Namu"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party-party.category,write_date:"
msgid "Write Date"
@@ -571,10 +561,9 @@ msgctxt "field:party.party.lang,party:"
msgid "Party"
msgstr ""
-#, fuzzy
msgctxt "field:party.party.lang,rec_name:"
-msgid "Name"
-msgstr "Namu"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party.lang,write_date:"
msgid "Write Date"
diff --git a/locale/de.po b/locale/de.po
index ab46765..7580118 100644
--- a/locale/de.po
+++ b/locale/de.po
@@ -1,4 +1,4 @@
-#
+#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
@@ -92,8 +92,8 @@ msgid "Party"
msgstr "Partei"
msgctxt "field:party.address,rec_name:"
-msgid "Name"
-msgstr "Name"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.address,sequence:"
msgid "Sequence"
@@ -148,8 +148,8 @@ msgid "Language"
msgstr "Sprache"
msgctxt "field:party.address.format,rec_name:"
-msgid "Name"
-msgstr "Name"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.address.format,write_date:"
msgid "Write Date"
@@ -188,8 +188,8 @@ msgid "Parent"
msgstr "Übergeordnet (Kategorie)"
msgctxt "field:party.category,rec_name:"
-msgid "Name"
-msgstr "Name"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.category,write_date:"
msgid "Write Date"
@@ -232,8 +232,8 @@ msgid "Party Sequence"
msgstr "Nummernkreis Partei"
msgctxt "field:party.configuration,rec_name:"
-msgid "Name"
-msgstr "Name"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.configuration,write_date:"
msgid "Write Date"
@@ -260,8 +260,8 @@ msgid "Party Language"
msgstr "Sprache Partei"
msgctxt "field:party.configuration.party_lang,rec_name:"
-msgid "Name"
-msgstr "Name"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.configuration.party_lang,write_date:"
msgid "Write Date"
@@ -288,8 +288,8 @@ msgid "Party Sequence"
msgstr "Nummernkreis Partei"
msgctxt "field:party.configuration.party_sequence,rec_name:"
-msgid "Name"
-msgstr "Name"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.configuration.party_sequence,write_date:"
msgid "Write Date"
@@ -332,8 +332,8 @@ msgid "Party"
msgstr "Partei"
msgctxt "field:party.contact_mechanism,rec_name:"
-msgid "Name"
-msgstr "Name"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.contact_mechanism,sequence:"
msgid "Sequence"
@@ -396,8 +396,8 @@ msgid "Party"
msgstr "Partei"
msgctxt "field:party.identifier,rec_name:"
-msgid "Name"
-msgstr "Name"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.identifier,sequence:"
msgid "Sequence"
@@ -488,8 +488,8 @@ msgid "Phone"
msgstr "Telefon"
msgctxt "field:party.party,rec_name:"
-msgid "Name"
-msgstr "Name"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party,replaced_by:"
msgid "Replaced By"
@@ -532,8 +532,8 @@ msgid "Party"
msgstr "Partei"
msgctxt "field:party.party-party.category,rec_name:"
-msgid "Name"
-msgstr "Name"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party-party.category,write_date:"
msgid "Write Date"
@@ -564,8 +564,8 @@ msgid "Party"
msgstr "Partei"
msgctxt "field:party.party.lang,rec_name:"
-msgid "Name"
-msgstr "Name"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party.lang,write_date:"
msgid "Write Date"
diff --git a/locale/es.po b/locale/es.po
index b06f355..da64cf8 100644
--- a/locale/es.po
+++ b/locale/es.po
@@ -1,4 +1,4 @@
-#
+#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
@@ -91,8 +91,8 @@ msgid "Party"
msgstr "Tercero"
msgctxt "field:party.address,rec_name:"
-msgid "Name"
-msgstr "Contacto"
+msgid "Record Name"
+msgstr "Nombre del registro"
msgctxt "field:party.address,sequence:"
msgid "Sequence"
@@ -147,8 +147,8 @@ msgid "Language"
msgstr "Idioma"
msgctxt "field:party.address.format,rec_name:"
-msgid "Name"
-msgstr "Nombre"
+msgid "Record Name"
+msgstr "Nombre del registro"
msgctxt "field:party.address.format,write_date:"
msgid "Write Date"
@@ -187,8 +187,8 @@ msgid "Parent"
msgstr "Padre"
msgctxt "field:party.category,rec_name:"
-msgid "Name"
-msgstr "Nombre"
+msgid "Record Name"
+msgstr "Nombre del registro"
msgctxt "field:party.category,write_date:"
msgid "Write Date"
@@ -231,8 +231,8 @@ msgid "Party Sequence"
msgstr "Secuencia de tercero"
msgctxt "field:party.configuration,rec_name:"
-msgid "Name"
-msgstr "Nombre"
+msgid "Record Name"
+msgstr "Nombre del registro"
msgctxt "field:party.configuration,write_date:"
msgid "Write Date"
@@ -259,8 +259,8 @@ msgid "Party Language"
msgstr "Idioma del tercero"
msgctxt "field:party.configuration.party_lang,rec_name:"
-msgid "Name"
-msgstr "Nombre"
+msgid "Record Name"
+msgstr "Nombre del registro"
msgctxt "field:party.configuration.party_lang,write_date:"
msgid "Write Date"
@@ -287,8 +287,8 @@ msgid "Party Sequence"
msgstr "Secuencia de tercero"
msgctxt "field:party.configuration.party_sequence,rec_name:"
-msgid "Name"
-msgstr "Nombre"
+msgid "Record Name"
+msgstr "Nombre del registro"
msgctxt "field:party.configuration.party_sequence,write_date:"
msgid "Write Date"
@@ -331,8 +331,8 @@ msgid "Party"
msgstr "Tercero"
msgctxt "field:party.contact_mechanism,rec_name:"
-msgid "Name"
-msgstr "Nombre"
+msgid "Record Name"
+msgstr "Nombre del registro"
msgctxt "field:party.contact_mechanism,sequence:"
msgid "Sequence"
@@ -395,8 +395,8 @@ msgid "Party"
msgstr "Tercero"
msgctxt "field:party.identifier,rec_name:"
-msgid "Name"
-msgstr "Contacto"
+msgid "Record Name"
+msgstr "Nombre del registro"
msgctxt "field:party.identifier,sequence:"
msgid "Sequence"
@@ -487,8 +487,8 @@ msgid "Phone"
msgstr "Teléfono"
msgctxt "field:party.party,rec_name:"
-msgid "Name"
-msgstr "Nombre"
+msgid "Record Name"
+msgstr "Nombre del registro"
msgctxt "field:party.party,replaced_by:"
msgid "Replaced By"
@@ -531,8 +531,8 @@ msgid "Party"
msgstr "Tercero"
msgctxt "field:party.party-party.category,rec_name:"
-msgid "Name"
-msgstr "Nombre"
+msgid "Record Name"
+msgstr "Nombre del registro"
msgctxt "field:party.party-party.category,write_date:"
msgid "Write Date"
@@ -563,8 +563,8 @@ msgid "Party"
msgstr "Tercero"
msgctxt "field:party.party.lang,rec_name:"
-msgid "Name"
-msgstr "Nombre"
+msgid "Record Name"
+msgstr "Nombre del registro"
msgctxt "field:party.party.lang,write_date:"
msgid "Write Date"
diff --git a/locale/es_419.po b/locale/es_419.po
index 5b41ec7..52951ef 100644
--- a/locale/es_419.po
+++ b/locale/es_419.po
@@ -1,4 +1,4 @@
-#
+#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
@@ -87,7 +87,7 @@ msgid "Party"
msgstr ""
msgctxt "field:party.address,rec_name:"
-msgid "Name"
+msgid "Record Name"
msgstr ""
msgctxt "field:party.address,sequence:"
@@ -143,7 +143,7 @@ msgid "Language"
msgstr ""
msgctxt "field:party.address.format,rec_name:"
-msgid "Name"
+msgid "Record Name"
msgstr ""
msgctxt "field:party.address.format,write_date:"
@@ -183,7 +183,7 @@ msgid "Parent"
msgstr ""
msgctxt "field:party.category,rec_name:"
-msgid "Name"
+msgid "Record Name"
msgstr ""
msgctxt "field:party.category,write_date:"
@@ -227,7 +227,7 @@ msgid "Party Sequence"
msgstr ""
msgctxt "field:party.configuration,rec_name:"
-msgid "Name"
+msgid "Record Name"
msgstr ""
msgctxt "field:party.configuration,write_date:"
@@ -256,7 +256,7 @@ msgid "Party Language"
msgstr ""
msgctxt "field:party.configuration.party_lang,rec_name:"
-msgid "Name"
+msgid "Record Name"
msgstr ""
msgctxt "field:party.configuration.party_lang,write_date:"
@@ -286,7 +286,7 @@ msgid "Party Sequence"
msgstr ""
msgctxt "field:party.configuration.party_sequence,rec_name:"
-msgid "Name"
+msgid "Record Name"
msgstr ""
msgctxt "field:party.configuration.party_sequence,write_date:"
@@ -331,7 +331,7 @@ msgid "Party"
msgstr ""
msgctxt "field:party.contact_mechanism,rec_name:"
-msgid "Name"
+msgid "Record Name"
msgstr ""
msgctxt "field:party.contact_mechanism,sequence:"
@@ -395,7 +395,7 @@ msgid "Party"
msgstr ""
msgctxt "field:party.identifier,rec_name:"
-msgid "Name"
+msgid "Record Name"
msgstr ""
msgctxt "field:party.identifier,sequence:"
@@ -488,7 +488,7 @@ msgid "Phone"
msgstr ""
msgctxt "field:party.party,rec_name:"
-msgid "Name"
+msgid "Record Name"
msgstr ""
msgctxt "field:party.party,replaced_by:"
@@ -532,7 +532,7 @@ msgid "Party"
msgstr ""
msgctxt "field:party.party-party.category,rec_name:"
-msgid "Name"
+msgid "Record Name"
msgstr ""
msgctxt "field:party.party-party.category,write_date:"
@@ -565,7 +565,7 @@ msgid "Party"
msgstr ""
msgctxt "field:party.party.lang,rec_name:"
-msgid "Name"
+msgid "Record Name"
msgstr ""
msgctxt "field:party.party.lang,write_date:"
diff --git a/locale/fr.po b/locale/fr.po
index a26831b..b51fda6 100644
--- a/locale/fr.po
+++ b/locale/fr.po
@@ -1,4 +1,4 @@
-#
+#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
@@ -92,8 +92,8 @@ msgid "Party"
msgstr "Tiers"
msgctxt "field:party.address,rec_name:"
-msgid "Name"
-msgstr "Nom"
+msgid "Record Name"
+msgstr "Nom de l'enregistrement"
msgctxt "field:party.address,sequence:"
msgid "Sequence"
@@ -148,8 +148,8 @@ msgid "Language"
msgstr "Langue"
msgctxt "field:party.address.format,rec_name:"
-msgid "Name"
-msgstr "Nom"
+msgid "Record Name"
+msgstr "Nom de l'enregistrement"
msgctxt "field:party.address.format,write_date:"
msgid "Write Date"
@@ -188,8 +188,8 @@ msgid "Parent"
msgstr "Parent"
msgctxt "field:party.category,rec_name:"
-msgid "Name"
-msgstr "Nom"
+msgid "Record Name"
+msgstr "Nom de l'enregistrement"
msgctxt "field:party.category,write_date:"
msgid "Write Date"
@@ -232,8 +232,8 @@ msgid "Party Sequence"
msgstr "Séquence de tiers"
msgctxt "field:party.configuration,rec_name:"
-msgid "Name"
-msgstr "Nom"
+msgid "Record Name"
+msgstr "Nom de l'enregistrement"
msgctxt "field:party.configuration,write_date:"
msgid "Write Date"
@@ -260,8 +260,8 @@ msgid "Party Language"
msgstr "Langue tiers"
msgctxt "field:party.configuration.party_lang,rec_name:"
-msgid "Name"
-msgstr "Nom"
+msgid "Record Name"
+msgstr "Nom de l'enregistrement"
msgctxt "field:party.configuration.party_lang,write_date:"
msgid "Write Date"
@@ -288,8 +288,8 @@ msgid "Party Sequence"
msgstr "Séquence de tiers"
msgctxt "field:party.configuration.party_sequence,rec_name:"
-msgid "Name"
-msgstr "Nom"
+msgid "Record Name"
+msgstr "Nom de l'enregistrement"
msgctxt "field:party.configuration.party_sequence,write_date:"
msgid "Write Date"
@@ -332,8 +332,8 @@ msgid "Party"
msgstr "Tiers"
msgctxt "field:party.contact_mechanism,rec_name:"
-msgid "Name"
-msgstr "Nom"
+msgid "Record Name"
+msgstr "Nom de l'enregistrement"
msgctxt "field:party.contact_mechanism,sequence:"
msgid "Sequence"
@@ -396,8 +396,8 @@ msgid "Party"
msgstr "Tiers"
msgctxt "field:party.identifier,rec_name:"
-msgid "Name"
-msgstr "Nom"
+msgid "Record Name"
+msgstr "Nom de l'enregistrement"
msgctxt "field:party.identifier,sequence:"
msgid "Sequence"
@@ -488,8 +488,8 @@ msgid "Phone"
msgstr "Téléphone"
msgctxt "field:party.party,rec_name:"
-msgid "Name"
-msgstr "Nom"
+msgid "Record Name"
+msgstr "Nom de l'enregistrement"
msgctxt "field:party.party,replaced_by:"
msgid "Replaced By"
@@ -532,8 +532,8 @@ msgid "Party"
msgstr "Tiers"
msgctxt "field:party.party-party.category,rec_name:"
-msgid "Name"
-msgstr "Nom"
+msgid "Record Name"
+msgstr "Nom de l'enregistrement"
msgctxt "field:party.party-party.category,write_date:"
msgid "Write Date"
@@ -564,8 +564,8 @@ msgid "Party"
msgstr "Tiers"
msgctxt "field:party.party.lang,rec_name:"
-msgid "Name"
-msgstr "Nom"
+msgid "Record Name"
+msgstr "Nom de l'enregistrement"
msgctxt "field:party.party.lang,write_date:"
msgid "Write Date"
diff --git a/locale/hu_HU.po b/locale/hu_HU.po
index 9df25f3..50e0bb0 100644
--- a/locale/hu_HU.po
+++ b/locale/hu_HU.po
@@ -1,4 +1,4 @@
-#
+#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
@@ -88,8 +88,8 @@ msgid "Party"
msgstr "Partner"
msgctxt "field:party.address,rec_name:"
-msgid "Name"
-msgstr "Név"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.address,sequence:"
msgid "Sequence"
@@ -149,10 +149,9 @@ msgctxt "field:party.address.format,language:"
msgid "Language"
msgstr "Nyelv"
-#, fuzzy
msgctxt "field:party.address.format,rec_name:"
-msgid "Name"
-msgstr "Név"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.address.format,write_date:"
@@ -193,8 +192,8 @@ msgid "Parent"
msgstr "Fölérendelt (kategória)"
msgctxt "field:party.category,rec_name:"
-msgid "Name"
-msgstr "Név"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.category,write_date:"
msgid "Write Date"
@@ -237,8 +236,8 @@ msgid "Party Sequence"
msgstr "Partner számköre"
msgctxt "field:party.configuration,rec_name:"
-msgid "Name"
-msgstr "Név"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.configuration,write_date:"
msgid "Write Date"
@@ -267,10 +266,9 @@ msgctxt "field:party.configuration.party_lang,party_lang:"
msgid "Party Language"
msgstr ""
-#, fuzzy
msgctxt "field:party.configuration.party_lang,rec_name:"
-msgid "Name"
-msgstr "Név"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.configuration.party_lang,write_date:"
@@ -302,10 +300,9 @@ msgctxt "field:party.configuration.party_sequence,party_sequence:"
msgid "Party Sequence"
msgstr "Partner számköre"
-#, fuzzy
msgctxt "field:party.configuration.party_sequence,rec_name:"
-msgid "Name"
-msgstr "Név"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.configuration.party_sequence,write_date:"
@@ -350,8 +347,8 @@ msgid "Party"
msgstr "Partner"
msgctxt "field:party.contact_mechanism,rec_name:"
-msgid "Name"
-msgstr "Név"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.contact_mechanism,sequence:"
msgid "Sequence"
@@ -414,8 +411,8 @@ msgid "Party"
msgstr "Partner"
msgctxt "field:party.identifier,rec_name:"
-msgid "Name"
-msgstr "Név"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.identifier,sequence:"
@@ -508,8 +505,8 @@ msgid "Phone"
msgstr "Telefon"
msgctxt "field:party.party,rec_name:"
-msgid "Name"
-msgstr "Név"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party,replaced_by:"
msgid "Replaced By"
@@ -552,8 +549,8 @@ msgid "Party"
msgstr "Partner"
msgctxt "field:party.party-party.category,rec_name:"
-msgid "Name"
-msgstr "Név"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party-party.category,write_date:"
msgid "Write Date"
@@ -588,10 +585,9 @@ msgctxt "field:party.party.lang,party:"
msgid "Party"
msgstr "Partner"
-#, fuzzy
msgctxt "field:party.party.lang,rec_name:"
-msgid "Name"
-msgstr "Név"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.party.lang,write_date:"
diff --git a/locale/it_IT.po b/locale/it_IT.po
index f066add..b2542d6 100644
--- a/locale/it_IT.po
+++ b/locale/it_IT.po
@@ -1,4 +1,4 @@
-#
+#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
@@ -91,8 +91,8 @@ msgid "Party"
msgstr "Controparte"
msgctxt "field:party.address,rec_name:"
-msgid "Name"
-msgstr "Nome"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.address,sequence:"
msgid "Sequence"
@@ -147,8 +147,8 @@ msgid "Language"
msgstr "Lingua"
msgctxt "field:party.address.format,rec_name:"
-msgid "Name"
-msgstr "Nome"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.address.format,write_date:"
msgid "Write Date"
@@ -187,8 +187,8 @@ msgid "Parent"
msgstr "Parte"
msgctxt "field:party.category,rec_name:"
-msgid "Name"
-msgstr "Nome "
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.category,write_date:"
msgid "Write Date"
@@ -231,8 +231,8 @@ msgid "Party Sequence"
msgstr "Sequenza controparte"
msgctxt "field:party.configuration,rec_name:"
-msgid "Name"
-msgstr "Nome"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.configuration,write_date:"
msgid "Write Date"
@@ -261,10 +261,9 @@ msgctxt "field:party.configuration.party_lang,party_lang:"
msgid "Party Language"
msgstr ""
-#, fuzzy
msgctxt "field:party.configuration.party_lang,rec_name:"
-msgid "Name"
-msgstr "Nome"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.configuration.party_lang,write_date:"
@@ -296,10 +295,9 @@ msgctxt "field:party.configuration.party_sequence,party_sequence:"
msgid "Party Sequence"
msgstr "Sequenza controparte"
-#, fuzzy
msgctxt "field:party.configuration.party_sequence,rec_name:"
-msgid "Name"
-msgstr "Nome"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.configuration.party_sequence,write_date:"
@@ -344,8 +342,8 @@ msgid "Party"
msgstr "Controparte"
msgctxt "field:party.contact_mechanism,rec_name:"
-msgid "Name"
-msgstr "Nome"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.contact_mechanism,sequence:"
msgid "Sequence"
@@ -408,8 +406,8 @@ msgid "Party"
msgstr "Controparte"
msgctxt "field:party.identifier,rec_name:"
-msgid "Name"
-msgstr "Nome"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.identifier,sequence:"
msgid "Sequence"
@@ -501,8 +499,8 @@ msgid "Phone"
msgstr "Telefono"
msgctxt "field:party.party,rec_name:"
-msgid "Name"
-msgstr "Nome"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party,replaced_by:"
msgid "Replaced By"
@@ -545,8 +543,8 @@ msgid "Party"
msgstr "Controparte"
msgctxt "field:party.party-party.category,rec_name:"
-msgid "Name"
-msgstr "Nome"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party-party.category,write_date:"
msgid "Write Date"
@@ -581,10 +579,9 @@ msgctxt "field:party.party.lang,party:"
msgid "Party"
msgstr "Controparte"
-#, fuzzy
msgctxt "field:party.party.lang,rec_name:"
-msgid "Name"
-msgstr "Nome"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.party.lang,write_date:"
diff --git a/locale/ja_JP.po b/locale/ja_JP.po
index 8f6e9cd..ad8f42b 100644
--- a/locale/ja_JP.po
+++ b/locale/ja_JP.po
@@ -1,4 +1,4 @@
-#
+#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
@@ -86,7 +86,7 @@ msgid "Party"
msgstr "Party"
msgctxt "field:party.address,rec_name:"
-msgid "Name"
+msgid "Record Name"
msgstr ""
msgctxt "field:party.address,sequence:"
@@ -142,7 +142,7 @@ msgid "Language"
msgstr ""
msgctxt "field:party.address.format,rec_name:"
-msgid "Name"
+msgid "Record Name"
msgstr ""
msgctxt "field:party.address.format,write_date:"
@@ -182,7 +182,7 @@ msgid "Parent"
msgstr ""
msgctxt "field:party.category,rec_name:"
-msgid "Name"
+msgid "Record Name"
msgstr ""
msgctxt "field:party.category,write_date:"
@@ -226,7 +226,7 @@ msgid "Party Sequence"
msgstr ""
msgctxt "field:party.configuration,rec_name:"
-msgid "Name"
+msgid "Record Name"
msgstr ""
msgctxt "field:party.configuration,write_date:"
@@ -254,7 +254,7 @@ msgid "Party Language"
msgstr ""
msgctxt "field:party.configuration.party_lang,rec_name:"
-msgid "Name"
+msgid "Record Name"
msgstr ""
msgctxt "field:party.configuration.party_lang,write_date:"
@@ -282,7 +282,7 @@ msgid "Party Sequence"
msgstr ""
msgctxt "field:party.configuration.party_sequence,rec_name:"
-msgid "Name"
+msgid "Record Name"
msgstr ""
msgctxt "field:party.configuration.party_sequence,write_date:"
@@ -327,7 +327,7 @@ msgid "Party"
msgstr "Party"
msgctxt "field:party.contact_mechanism,rec_name:"
-msgid "Name"
+msgid "Record Name"
msgstr ""
msgctxt "field:party.contact_mechanism,sequence:"
@@ -392,7 +392,7 @@ msgid "Party"
msgstr "Party"
msgctxt "field:party.identifier,rec_name:"
-msgid "Name"
+msgid "Record Name"
msgstr ""
msgctxt "field:party.identifier,sequence:"
@@ -487,7 +487,7 @@ msgid "Phone"
msgstr ""
msgctxt "field:party.party,rec_name:"
-msgid "Name"
+msgid "Record Name"
msgstr ""
msgctxt "field:party.party,replaced_by:"
@@ -532,7 +532,7 @@ msgid "Party"
msgstr "Party"
msgctxt "field:party.party-party.category,rec_name:"
-msgid "Name"
+msgid "Record Name"
msgstr ""
msgctxt "field:party.party-party.category,write_date:"
@@ -565,7 +565,7 @@ msgid "Party"
msgstr "Party"
msgctxt "field:party.party.lang,rec_name:"
-msgid "Name"
+msgid "Record Name"
msgstr ""
msgctxt "field:party.party.lang,write_date:"
diff --git a/locale/lo.po b/locale/lo.po
index 6291809..5f7f1da 100644
--- a/locale/lo.po
+++ b/locale/lo.po
@@ -1,4 +1,4 @@
-#
+#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
@@ -86,8 +86,8 @@ msgid "Party"
msgstr "ພາກສ່ວນ"
msgctxt "field:party.address,rec_name:"
-msgid "Name"
-msgstr "ຊື່"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.address,sequence:"
msgid "Sequence"
@@ -142,8 +142,8 @@ msgid "Language"
msgstr "ພາສາ"
msgctxt "field:party.address.format,rec_name:"
-msgid "Name"
-msgstr "ຊື່"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.address.format,write_date:"
msgid "Write Date"
@@ -182,8 +182,8 @@ msgid "Parent"
msgstr "ຂຶ້ນກັບ"
msgctxt "field:party.category,rec_name:"
-msgid "Name"
-msgstr "ຊື່"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.category,write_date:"
msgid "Write Date"
@@ -226,8 +226,8 @@ msgid "Party Sequence"
msgstr "ລໍາດັບພາກສ່ວນ"
msgctxt "field:party.configuration,rec_name:"
-msgid "Name"
-msgstr "ຊື່"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.configuration,write_date:"
msgid "Write Date"
@@ -256,10 +256,9 @@ msgctxt "field:party.configuration.party_lang,party_lang:"
msgid "Party Language"
msgstr ""
-#, fuzzy
msgctxt "field:party.configuration.party_lang,rec_name:"
-msgid "Name"
-msgstr "ຊື່"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.configuration.party_lang,write_date:"
@@ -291,10 +290,9 @@ msgctxt "field:party.configuration.party_sequence,party_sequence:"
msgid "Party Sequence"
msgstr "ລໍາດັບພາກສ່ວນ"
-#, fuzzy
msgctxt "field:party.configuration.party_sequence,rec_name:"
-msgid "Name"
-msgstr "ຊື່"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.configuration.party_sequence,write_date:"
@@ -339,8 +337,8 @@ msgid "Party"
msgstr "ພາກສ່ວນ"
msgctxt "field:party.contact_mechanism,rec_name:"
-msgid "Name"
-msgstr "ຊື່"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.contact_mechanism,sequence:"
msgid "Sequence"
@@ -403,8 +401,8 @@ msgid "Party"
msgstr "ພາກສ່ວນ"
msgctxt "field:party.identifier,rec_name:"
-msgid "Name"
-msgstr "ຊື່"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.identifier,sequence:"
msgid "Sequence"
@@ -496,8 +494,8 @@ msgid "Phone"
msgstr "ໂທລະສັບ"
msgctxt "field:party.party,rec_name:"
-msgid "Name"
-msgstr "ຊື່"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party,replaced_by:"
msgid "Replaced By"
@@ -540,8 +538,8 @@ msgid "Party"
msgstr "ພາກສ່ວນ"
msgctxt "field:party.party-party.category,rec_name:"
-msgid "Name"
-msgstr "ຊື່"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party-party.category,write_date:"
msgid "Write Date"
@@ -576,10 +574,9 @@ msgctxt "field:party.party.lang,party:"
msgid "Party"
msgstr "ພາກສ່ວນ"
-#, fuzzy
msgctxt "field:party.party.lang,rec_name:"
-msgid "Name"
-msgstr "ຊື່"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.party.lang,write_date:"
diff --git a/locale/lt.po b/locale/lt.po
index 81b675c..89b1958 100644
--- a/locale/lt.po
+++ b/locale/lt.po
@@ -1,4 +1,4 @@
-#
+#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
@@ -85,10 +85,9 @@ msgctxt "field:party.address,party:"
msgid "Party"
msgstr ""
-#, fuzzy
msgctxt "field:party.address,rec_name:"
-msgid "Name"
-msgstr "Namu"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.address,sequence:"
msgid "Sequence"
@@ -143,10 +142,9 @@ msgctxt "field:party.address.format,language:"
msgid "Language"
msgstr ""
-#, fuzzy
msgctxt "field:party.address.format,rec_name:"
-msgid "Name"
-msgstr "Namu"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.address.format,write_date:"
msgid "Write Date"
@@ -185,10 +183,9 @@ msgctxt "field:party.category,parent:"
msgid "Parent"
msgstr ""
-#, fuzzy
msgctxt "field:party.category,rec_name:"
-msgid "Name"
-msgstr "Namu"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.category,write_date:"
msgid "Write Date"
@@ -230,10 +227,9 @@ msgctxt "field:party.configuration,party_sequence:"
msgid "Party Sequence"
msgstr ""
-#, fuzzy
msgctxt "field:party.configuration,rec_name:"
-msgid "Name"
-msgstr "Namu"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.configuration,write_date:"
msgid "Write Date"
@@ -259,10 +255,9 @@ msgctxt "field:party.configuration.party_lang,party_lang:"
msgid "Party Language"
msgstr ""
-#, fuzzy
msgctxt "field:party.configuration.party_lang,rec_name:"
-msgid "Name"
-msgstr "Namu"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.configuration.party_lang,write_date:"
msgid "Write Date"
@@ -288,10 +283,9 @@ msgctxt "field:party.configuration.party_sequence,party_sequence:"
msgid "Party Sequence"
msgstr ""
-#, fuzzy
msgctxt "field:party.configuration.party_sequence,rec_name:"
-msgid "Name"
-msgstr "Namu"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.configuration.party_sequence,write_date:"
msgid "Write Date"
@@ -333,10 +327,9 @@ msgctxt "field:party.contact_mechanism,party:"
msgid "Party"
msgstr ""
-#, fuzzy
msgctxt "field:party.contact_mechanism,rec_name:"
-msgid "Name"
-msgstr "Namu"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.contact_mechanism,sequence:"
msgid "Sequence"
@@ -398,10 +391,9 @@ msgctxt "field:party.identifier,party:"
msgid "Party"
msgstr ""
-#, fuzzy
msgctxt "field:party.identifier,rec_name:"
-msgid "Name"
-msgstr "Namu"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.identifier,sequence:"
msgid "Sequence"
@@ -492,10 +484,9 @@ msgctxt "field:party.party,phone:"
msgid "Phone"
msgstr ""
-#, fuzzy
msgctxt "field:party.party,rec_name:"
-msgid "Name"
-msgstr "Namu"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party,replaced_by:"
msgid "Replaced By"
@@ -537,10 +528,9 @@ msgctxt "field:party.party-party.category,party:"
msgid "Party"
msgstr ""
-#, fuzzy
msgctxt "field:party.party-party.category,rec_name:"
-msgid "Name"
-msgstr "Namu"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party-party.category,write_date:"
msgid "Write Date"
@@ -570,10 +560,9 @@ msgctxt "field:party.party.lang,party:"
msgid "Party"
msgstr ""
-#, fuzzy
msgctxt "field:party.party.lang,rec_name:"
-msgid "Name"
-msgstr "Namu"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party.lang,write_date:"
msgid "Write Date"
diff --git a/locale/nl.po b/locale/nl.po
index 9067622..e70d434 100644
--- a/locale/nl.po
+++ b/locale/nl.po
@@ -1,4 +1,4 @@
-#
+#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
@@ -89,8 +89,8 @@ msgid "Party"
msgstr "Relatie"
msgctxt "field:party.address,rec_name:"
-msgid "Name"
-msgstr "Naam"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.address,sequence:"
msgid "Sequence"
@@ -152,10 +152,9 @@ msgctxt "field:party.address.format,language:"
msgid "Language"
msgstr "Taal"
-#, fuzzy
msgctxt "field:party.address.format,rec_name:"
-msgid "Name"
-msgstr "Naam bijlage"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.address.format,write_date:"
@@ -199,8 +198,8 @@ msgid "Parent"
msgstr "Bovenliggend niveau"
msgctxt "field:party.category,rec_name:"
-msgid "Name"
-msgstr "Naam"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.category,write_date:"
@@ -249,8 +248,8 @@ msgid "Party Sequence"
msgstr "Relatiecode"
msgctxt "field:party.configuration,rec_name:"
-msgid "Name"
-msgstr "Naam"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.configuration,write_date:"
@@ -281,10 +280,9 @@ msgctxt "field:party.configuration.party_lang,party_lang:"
msgid "Party Language"
msgstr ""
-#, fuzzy
msgctxt "field:party.configuration.party_lang,rec_name:"
-msgid "Name"
-msgstr "Naam"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.configuration.party_lang,write_date:"
@@ -316,10 +314,9 @@ msgctxt "field:party.configuration.party_sequence,party_sequence:"
msgid "Party Sequence"
msgstr "Relatiecode"
-#, fuzzy
msgctxt "field:party.configuration.party_sequence,rec_name:"
-msgid "Name"
-msgstr "Naam"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.configuration.party_sequence,write_date:"
@@ -367,8 +364,8 @@ msgid "Party"
msgstr "Relatie"
msgctxt "field:party.contact_mechanism,rec_name:"
-msgid "Name"
-msgstr "Naam"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.contact_mechanism,sequence:"
msgid "Sequence"
@@ -437,8 +434,8 @@ msgid "Party"
msgstr "Relatie"
msgctxt "field:party.identifier,rec_name:"
-msgid "Name"
-msgstr "Aanhef"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.identifier,sequence:"
@@ -536,8 +533,8 @@ msgid "Phone"
msgstr "Telefoon"
msgctxt "field:party.party,rec_name:"
-msgid "Name"
-msgstr "Naam"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party,replaced_by:"
msgid "Replaced By"
@@ -585,8 +582,8 @@ msgid "Party"
msgstr "Relatie"
msgctxt "field:party.party-party.category,rec_name:"
-msgid "Name"
-msgstr "Naam"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.party-party.category,write_date:"
@@ -623,10 +620,9 @@ msgctxt "field:party.party.lang,party:"
msgid "Party"
msgstr "Relatie"
-#, fuzzy
msgctxt "field:party.party.lang,rec_name:"
-msgid "Name"
-msgstr "Naam"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.party.lang,write_date:"
diff --git a/locale/pl.po b/locale/pl.po
index b54311e..1e83151 100644
--- a/locale/pl.po
+++ b/locale/pl.po
@@ -1,4 +1,4 @@
-#
+#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
@@ -8,11 +8,11 @@ msgstr "Niewłaściwy format \"%(format)s\". Wyjątek \"%(exception)s\"."
msgctxt "error:party.address:"
msgid "You can not modify the party of address \"%s\"."
-msgstr "Nie możesz modyfikować strony z adresem \"%s\"."
+msgstr "Nie można modyfikować strony z adresem \"%s\"."
msgctxt "error:party.category:"
msgid "Invalid category name \"%s\": You can not use \" / \" in name field."
-msgstr "Niewłaściwa nazwa kategorii \"%s\": Nie możesz użyć \" / \" w nazwie."
+msgstr "Niewłaściwa nazwa kategorii \"%s\": W nazwie nie można używać znaku \" / \"."
msgctxt "error:party.category:"
msgid "The name of a party category must be unique by parent."
@@ -29,7 +29,7 @@ msgstr "Numer telefonu \"%(phone)s\" strony \"%(party)s\" jest niewłaściwy."
msgctxt "error:party.contact_mechanism:"
msgid "You can not modify the party of contact mechanism \"%s\"."
-msgstr "Nie możesz modyfikować strony, której kontakt to \"%s\"."
+msgstr "Nie można modyfikować strony, której kontakt to \"%s\"."
msgctxt "error:party.identifier:"
msgid "Invalid VAT number \"%(code)s\" on party \"%(party)s\"."
@@ -82,15 +82,15 @@ msgstr "ID"
msgctxt "field:party.address,name:"
msgid "Building Name"
-msgstr "Nazwa lokalizacji"
+msgstr "Nazwa budynku"
msgctxt "field:party.address,party:"
msgid "Party"
msgstr "Strona"
msgctxt "field:party.address,rec_name:"
-msgid "Name"
-msgstr "Nazwa"
+msgid "Record Name"
+msgstr "Nazwa rekordu"
msgctxt "field:party.address,sequence:"
msgid "Sequence"
@@ -102,7 +102,7 @@ msgstr "Ulica"
msgctxt "field:party.address,subdivision:"
msgid "Subdivision"
-msgstr "Jednostka podrzędna"
+msgstr "Region"
msgctxt "field:party.address,write_date:"
msgid "Write Date"
@@ -145,8 +145,8 @@ msgid "Language"
msgstr "Język"
msgctxt "field:party.address.format,rec_name:"
-msgid "Name"
-msgstr "Nazwa"
+msgid "Record Name"
+msgstr "Nazwa rekordu"
msgctxt "field:party.address.format,write_date:"
msgid "Write Date"
@@ -162,7 +162,7 @@ msgstr "Aktywna"
msgctxt "field:party.category,childs:"
msgid "Children"
-msgstr "Podkategorie"
+msgstr "Kategorie podrzędne"
msgctxt "field:party.category,create_date:"
msgid "Create Date"
@@ -185,8 +185,8 @@ msgid "Parent"
msgstr "Kategoria nadrzędna"
msgctxt "field:party.category,rec_name:"
-msgid "Name"
-msgstr "Nazwa"
+msgid "Record Name"
+msgstr "Nazwa rekordu"
msgctxt "field:party.category,write_date:"
msgid "Write Date"
@@ -226,11 +226,11 @@ msgstr "Język strony"
msgctxt "field:party.configuration,party_sequence:"
msgid "Party Sequence"
-msgstr "Sekwencja strony"
+msgstr "Sekwencja kodu strony"
msgctxt "field:party.configuration,rec_name:"
-msgid "Name"
-msgstr "Nazwa"
+msgid "Record Name"
+msgstr "Nazwa rekordu"
msgctxt "field:party.configuration,write_date:"
msgid "Write Date"
@@ -257,8 +257,8 @@ msgid "Party Language"
msgstr "Język strony"
msgctxt "field:party.configuration.party_lang,rec_name:"
-msgid "Name"
-msgstr "Nazwa"
+msgid "Record Name"
+msgstr "Nazwa rekordu"
msgctxt "field:party.configuration.party_lang,write_date:"
msgid "Write Date"
@@ -282,11 +282,11 @@ msgstr "ID"
msgctxt "field:party.configuration.party_sequence,party_sequence:"
msgid "Party Sequence"
-msgstr "Sekwencja strony"
+msgstr "Sekwencja kodu strony"
msgctxt "field:party.configuration.party_sequence,rec_name:"
-msgid "Name"
-msgstr "Nazwa"
+msgid "Record Name"
+msgstr "Nazwa rekordu"
msgctxt "field:party.configuration.party_sequence,write_date:"
msgid "Write Date"
@@ -329,8 +329,8 @@ msgid "Party"
msgstr "Strona"
msgctxt "field:party.contact_mechanism,rec_name:"
-msgid "Name"
-msgstr "Nazwa"
+msgid "Record Name"
+msgstr "Nazwa rekordu"
msgctxt "field:party.contact_mechanism,sequence:"
msgid "Sequence"
@@ -393,8 +393,8 @@ msgid "Party"
msgstr "Strona"
msgctxt "field:party.identifier,rec_name:"
-msgid "Name"
-msgstr "Nazwa"
+msgid "Record Name"
+msgstr "Nazwa rekordu"
msgctxt "field:party.identifier,sequence:"
msgid "Sequence"
@@ -485,8 +485,8 @@ msgid "Phone"
msgstr "Telefon"
msgctxt "field:party.party,rec_name:"
-msgid "Name"
-msgstr "Nazwa"
+msgid "Record Name"
+msgstr "Nazwa rekordu"
msgctxt "field:party.party,replaced_by:"
msgid "Replaced By"
@@ -529,8 +529,8 @@ msgid "Party"
msgstr "Strona"
msgctxt "field:party.party-party.category,rec_name:"
-msgid "Name"
-msgstr "Nazwa"
+msgid "Record Name"
+msgstr "Nazwa rekordu"
msgctxt "field:party.party-party.category,write_date:"
msgid "Write Date"
@@ -561,8 +561,8 @@ msgid "Party"
msgstr "Strona"
msgctxt "field:party.party.lang,rec_name:"
-msgid "Name"
-msgstr "Nazwa"
+msgid "Record Name"
+msgstr "Nazwa rekordu"
msgctxt "field:party.party.lang,write_date:"
msgid "Write Date"
@@ -622,7 +622,7 @@ msgstr "Odznacz, aby nie używać kategorii w przyszłości."
msgctxt "help:party.category,childs:"
msgid "Add children below the category."
-msgstr "Dodaj podkategorie."
+msgstr "Dodaj kategorie podrzędne."
msgctxt "help:party.category,name:"
msgid "The main identifier of the category."
diff --git a/locale/pt_BR.po b/locale/pt_BR.po
index 33fe3dc..693a3e0 100644
--- a/locale/pt_BR.po
+++ b/locale/pt_BR.po
@@ -1,4 +1,4 @@
-#
+#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
@@ -88,8 +88,8 @@ msgid "Party"
msgstr "Pessoa"
msgctxt "field:party.address,rec_name:"
-msgid "Name"
-msgstr "Nome"
+msgid "Record Name"
+msgstr "Nome do Registro"
msgctxt "field:party.address,sequence:"
msgid "Sequence"
@@ -144,8 +144,8 @@ msgid "Language"
msgstr "Idioma"
msgctxt "field:party.address.format,rec_name:"
-msgid "Name"
-msgstr "Nome"
+msgid "Record Name"
+msgstr "Nome do Registro"
msgctxt "field:party.address.format,write_date:"
msgid "Write Date"
@@ -184,8 +184,8 @@ msgid "Parent"
msgstr "Pai"
msgctxt "field:party.category,rec_name:"
-msgid "Name"
-msgstr "Nome"
+msgid "Record Name"
+msgstr "Nome do Registro"
msgctxt "field:party.category,write_date:"
msgid "Write Date"
@@ -228,8 +228,8 @@ msgid "Party Sequence"
msgstr "Sequência da pessoa"
msgctxt "field:party.configuration,rec_name:"
-msgid "Name"
-msgstr "Nome"
+msgid "Record Name"
+msgstr "Nome do Registro"
msgctxt "field:party.configuration,write_date:"
msgid "Write Date"
@@ -256,8 +256,8 @@ msgid "Party Language"
msgstr "Idioma da Pessoa"
msgctxt "field:party.configuration.party_lang,rec_name:"
-msgid "Name"
-msgstr "Nome"
+msgid "Record Name"
+msgstr "Nome do Registro"
msgctxt "field:party.configuration.party_lang,write_date:"
msgid "Write Date"
@@ -284,8 +284,8 @@ msgid "Party Sequence"
msgstr "Sequência da pessoa"
msgctxt "field:party.configuration.party_sequence,rec_name:"
-msgid "Name"
-msgstr "Nome"
+msgid "Record Name"
+msgstr "Nome do Registro"
msgctxt "field:party.configuration.party_sequence,write_date:"
msgid "Write Date"
@@ -328,8 +328,8 @@ msgid "Party"
msgstr "Pessoa"
msgctxt "field:party.contact_mechanism,rec_name:"
-msgid "Name"
-msgstr "Nome"
+msgid "Record Name"
+msgstr "Nome do Registro"
msgctxt "field:party.contact_mechanism,sequence:"
msgid "Sequence"
@@ -392,8 +392,8 @@ msgid "Party"
msgstr "Pessoa"
msgctxt "field:party.identifier,rec_name:"
-msgid "Name"
-msgstr "Nome"
+msgid "Record Name"
+msgstr "Nome do Registro"
msgctxt "field:party.identifier,sequence:"
msgid "Sequence"
@@ -484,8 +484,8 @@ msgid "Phone"
msgstr "Telefone"
msgctxt "field:party.party,rec_name:"
-msgid "Name"
-msgstr "Nome"
+msgid "Record Name"
+msgstr "Nome do Registro"
msgctxt "field:party.party,replaced_by:"
msgid "Replaced By"
@@ -528,8 +528,8 @@ msgid "Party"
msgstr "Pessoa"
msgctxt "field:party.party-party.category,rec_name:"
-msgid "Name"
-msgstr "Nome"
+msgid "Record Name"
+msgstr "Nome do Registro"
msgctxt "field:party.party-party.category,write_date:"
msgid "Write Date"
@@ -560,8 +560,8 @@ msgid "Party"
msgstr "Pessoa"
msgctxt "field:party.party.lang,rec_name:"
-msgid "Name"
-msgstr "Nome"
+msgid "Record Name"
+msgstr "Nome do Registro"
msgctxt "field:party.party.lang,write_date:"
msgid "Write Date"
diff --git a/locale/ru.po b/locale/ru.po
index 2ee5030..29d9a72 100644
--- a/locale/ru.po
+++ b/locale/ru.po
@@ -1,4 +1,4 @@
-#
+#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
@@ -91,8 +91,8 @@ msgid "Party"
msgstr "Контрагент"
msgctxt "field:party.address,rec_name:"
-msgid "Name"
-msgstr "Наименование"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.address,sequence:"
msgid "Sequence"
@@ -152,10 +152,9 @@ msgctxt "field:party.address.format,language:"
msgid "Language"
msgstr "Язык"
-#, fuzzy
msgctxt "field:party.address.format,rec_name:"
-msgid "Name"
-msgstr "Правило оплаты"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.address.format,write_date:"
@@ -196,8 +195,8 @@ msgid "Parent"
msgstr "Предок"
msgctxt "field:party.category,rec_name:"
-msgid "Name"
-msgstr "Наименование"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.category,write_date:"
msgid "Write Date"
@@ -240,8 +239,8 @@ msgid "Party Sequence"
msgstr "Нумерация для контрагентов"
msgctxt "field:party.configuration,rec_name:"
-msgid "Name"
-msgstr "Наименование"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.configuration,write_date:"
msgid "Write Date"
@@ -270,10 +269,9 @@ msgctxt "field:party.configuration.party_lang,party_lang:"
msgid "Party Language"
msgstr ""
-#, fuzzy
msgctxt "field:party.configuration.party_lang,rec_name:"
-msgid "Name"
-msgstr "Наименование"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.configuration.party_lang,write_date:"
@@ -305,10 +303,9 @@ msgctxt "field:party.configuration.party_sequence,party_sequence:"
msgid "Party Sequence"
msgstr "Нумерация для контрагентов"
-#, fuzzy
msgctxt "field:party.configuration.party_sequence,rec_name:"
-msgid "Name"
-msgstr "Наименование"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.configuration.party_sequence,write_date:"
@@ -353,8 +350,8 @@ msgid "Party"
msgstr "Контрагент"
msgctxt "field:party.contact_mechanism,rec_name:"
-msgid "Name"
-msgstr "Наименование"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.contact_mechanism,sequence:"
msgid "Sequence"
@@ -417,8 +414,8 @@ msgid "Party"
msgstr "Контрагент"
msgctxt "field:party.identifier,rec_name:"
-msgid "Name"
-msgstr "Наименование"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.identifier,sequence:"
@@ -511,8 +508,8 @@ msgid "Phone"
msgstr "Телефон"
msgctxt "field:party.party,rec_name:"
-msgid "Name"
-msgstr "Наименование"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party,replaced_by:"
msgid "Replaced By"
@@ -555,8 +552,8 @@ msgid "Party"
msgstr "Контрагент"
msgctxt "field:party.party-party.category,rec_name:"
-msgid "Name"
-msgstr "Наименование"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party-party.category,write_date:"
msgid "Write Date"
@@ -591,10 +588,9 @@ msgctxt "field:party.party.lang,party:"
msgid "Party"
msgstr "Контрагент"
-#, fuzzy
msgctxt "field:party.party.lang,rec_name:"
-msgid "Name"
-msgstr "Наименование"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.party.lang,write_date:"
diff --git a/locale/sl.po b/locale/sl.po
index b71520b..7dcd7be 100644
--- a/locale/sl.po
+++ b/locale/sl.po
@@ -1,4 +1,4 @@
-#
+#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
@@ -87,8 +87,8 @@ msgid "Party"
msgstr "Partner"
msgctxt "field:party.address,rec_name:"
-msgid "Name"
-msgstr "Ime"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.address,sequence:"
msgid "Sequence"
@@ -143,8 +143,8 @@ msgid "Language"
msgstr "Jezik"
msgctxt "field:party.address.format,rec_name:"
-msgid "Name"
-msgstr "Ime"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.address.format,write_date:"
msgid "Write Date"
@@ -183,8 +183,8 @@ msgid "Parent"
msgstr "Matična kategorija"
msgctxt "field:party.category,rec_name:"
-msgid "Name"
-msgstr "Ime"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.category,write_date:"
msgid "Write Date"
@@ -227,8 +227,8 @@ msgid "Party Sequence"
msgstr "Štetje partnerjev"
msgctxt "field:party.configuration,rec_name:"
-msgid "Name"
-msgstr "Ime"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.configuration,write_date:"
msgid "Write Date"
@@ -255,8 +255,8 @@ msgid "Party Language"
msgstr "Jezik partnerja"
msgctxt "field:party.configuration.party_lang,rec_name:"
-msgid "Name"
-msgstr "Ime"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.configuration.party_lang,write_date:"
msgid "Write Date"
@@ -283,8 +283,8 @@ msgid "Party Sequence"
msgstr "Štetje partnerjev"
msgctxt "field:party.configuration.party_sequence,rec_name:"
-msgid "Name"
-msgstr "Ime"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.configuration.party_sequence,write_date:"
msgid "Write Date"
@@ -327,8 +327,8 @@ msgid "Party"
msgstr "Partner"
msgctxt "field:party.contact_mechanism,rec_name:"
-msgid "Name"
-msgstr "Ime"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.contact_mechanism,sequence:"
msgid "Sequence"
@@ -391,8 +391,8 @@ msgid "Party"
msgstr "Partner"
msgctxt "field:party.identifier,rec_name:"
-msgid "Name"
-msgstr "Ime"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.identifier,sequence:"
msgid "Sequence"
@@ -483,8 +483,8 @@ msgid "Phone"
msgstr "Telefon"
msgctxt "field:party.party,rec_name:"
-msgid "Name"
-msgstr "Ime"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party,replaced_by:"
msgid "Replaced By"
@@ -527,8 +527,8 @@ msgid "Party"
msgstr "Partner"
msgctxt "field:party.party-party.category,rec_name:"
-msgid "Name"
-msgstr "Ime"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party-party.category,write_date:"
msgid "Write Date"
@@ -559,8 +559,8 @@ msgid "Party"
msgstr "Partner"
msgctxt "field:party.party.lang,rec_name:"
-msgid "Name"
-msgstr "Ime"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party.lang,write_date:"
msgid "Write Date"
diff --git a/locale/zh_CN.po b/locale/zh_CN.po
index 655673d..da3d115 100644
--- a/locale/zh_CN.po
+++ b/locale/zh_CN.po
@@ -1,4 +1,4 @@
-#
+#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
@@ -89,10 +89,9 @@ msgctxt "field:party.address,party:"
msgid "Party"
msgstr ""
-#, fuzzy
msgctxt "field:party.address,rec_name:"
-msgid "Name"
-msgstr "纳木"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.address,sequence:"
@@ -155,10 +154,9 @@ msgctxt "field:party.address.format,language:"
msgid "Language"
msgstr "语言"
-#, fuzzy
msgctxt "field:party.address.format,rec_name:"
-msgid "Name"
-msgstr "纳木"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.address.format,write_date:"
@@ -205,10 +203,9 @@ msgctxt "field:party.category,parent:"
msgid "Parent"
msgstr "上级"
-#, fuzzy
msgctxt "field:party.category,rec_name:"
-msgid "Name"
-msgstr "纳木"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.category,write_date:"
@@ -256,10 +253,9 @@ msgctxt "field:party.configuration,party_sequence:"
msgid "Party Sequence"
msgstr ""
-#, fuzzy
msgctxt "field:party.configuration,rec_name:"
-msgid "Name"
-msgstr "纳木"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.configuration,write_date:"
@@ -290,10 +286,9 @@ msgctxt "field:party.configuration.party_lang,party_lang:"
msgid "Party Language"
msgstr ""
-#, fuzzy
msgctxt "field:party.configuration.party_lang,rec_name:"
-msgid "Name"
-msgstr "纳木"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.configuration.party_lang,write_date:"
@@ -324,10 +319,9 @@ msgctxt "field:party.configuration.party_sequence,party_sequence:"
msgid "Party Sequence"
msgstr ""
-#, fuzzy
msgctxt "field:party.configuration.party_sequence,rec_name:"
-msgid "Name"
-msgstr "纳木"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.configuration.party_sequence,write_date:"
@@ -376,10 +370,9 @@ msgctxt "field:party.contact_mechanism,party:"
msgid "Party"
msgstr ""
-#, fuzzy
msgctxt "field:party.contact_mechanism,rec_name:"
-msgid "Name"
-msgstr "纳木"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.contact_mechanism,sequence:"
@@ -451,10 +444,9 @@ msgctxt "field:party.identifier,party:"
msgid "Party"
msgstr ""
-#, fuzzy
msgctxt "field:party.identifier,rec_name:"
-msgid "Name"
-msgstr "纳木"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.identifier,sequence:"
@@ -556,10 +548,9 @@ msgctxt "field:party.party,phone:"
msgid "Phone"
msgstr ""
-#, fuzzy
msgctxt "field:party.party,rec_name:"
-msgid "Name"
-msgstr "纳木"
+msgid "Record Name"
+msgstr ""
msgctxt "field:party.party,replaced_by:"
msgid "Replaced By"
@@ -606,10 +597,9 @@ msgctxt "field:party.party-party.category,party:"
msgid "Party"
msgstr ""
-#, fuzzy
msgctxt "field:party.party-party.category,rec_name:"
-msgid "Name"
-msgstr "纳木"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.party-party.category,write_date:"
@@ -645,10 +635,9 @@ msgctxt "field:party.party.lang,party:"
msgid "Party"
msgstr ""
-#, fuzzy
msgctxt "field:party.party.lang,rec_name:"
-msgid "Name"
-msgstr "纳木"
+msgid "Record Name"
+msgstr ""
#, fuzzy
msgctxt "field:party.party.lang,write_date:"
diff --git a/party.xml b/party.xml
index b85b35f..957b2af 100644
--- a/party.xml
+++ b/party.xml
@@ -77,7 +77,7 @@ this repository contains the full copyright notices and license terms. -->
<field name="name">Labels</field>
<field name="model">party.party</field>
<field name="report_name">party.label</field>
- <field name="report">party/label.odt</field>
+ <field name="report">party/label.fodt</field>
</record>
<record model="ir.action.keyword" id="report_label_party">
<field name="keyword">form_print</field>
diff --git a/setup.py b/setup.py
index cfefdab..02d4a21 100644
--- a/setup.py
+++ b/setup.py
@@ -75,7 +75,7 @@ setup(name=name,
],
package_data={
'trytond.modules.party': (info.get('xml', [])
- + ['tryton.cfg', 'view/*.xml', 'locale/*.po', '*.odt',
+ + ['tryton.cfg', 'view/*.xml', 'locale/*.po', '*.fodt',
'icons/*.svg', 'tests/*.rst']),
},
classifiers=[
@@ -104,9 +104,9 @@ setup(name=name,
'Natural Language :: Spanish',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
- 'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Office/Business',
@@ -114,7 +114,8 @@ setup(name=name,
license='GPL-3',
install_requires=requires,
extras_require={
- 'VAT': ['python-stdnum'],
+ 'VIES': ['python-stdnum[VIES]'],
+ 'VIES-ALT': ['python-stdnum[VIES-ALT]'],
'phonenumbers': ['phonenumbers'],
},
dependency_links=dependency_links,
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..527d859
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,18 @@
+[tox]
+envlist = {py27,py34,py35,py36}-{sqlite,postgresql,mysql},pypy-{sqlite,postgresql}
+
+[testenv]
+commands = {envpython} setup.py test
+deps =
+ {py27,py34,py35,py36}-postgresql: psycopg2 >= 2.5
+ pypy-postgresql: psycopg2cffi >= 2.5
+ mysql: MySQL-python
+ sqlite: sqlitebck
+setenv =
+ sqlite: TRYTOND_DATABASE_URI={env:SQLITE_URI:sqlite://}
+ postgresql: TRYTOND_DATABASE_URI={env:POSTGRESQL_URI:postgresql://}
+ mysql: TRYTOND_DATABASE_URI={env:MYSQL_URI:mysql://}
+ sqlite: DB_NAME={env:SQLITE_NAME::memory:}
+ postgresql: DB_NAME={env:POSTGRESQL_NAME:test}
+ mysql: DB_NAME={env:MYSQL_NAME:test}
+install_command = pip install --pre --find-links https://trydevpi.tryton.org/ {opts} {packages}
diff --git a/tryton.cfg b/tryton.cfg
index e50ae11..1a2cb61 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=4.4.2
+version=4.6.0
depends:
country
ir
diff --git a/trytond_party.egg-info/PKG-INFO b/trytond_party.egg-info/PKG-INFO
index 8514333..a3c9145 100644
--- a/trytond_party.egg-info/PKG-INFO
+++ b/trytond_party.egg-info/PKG-INFO
@@ -1,12 +1,12 @@
Metadata-Version: 1.1
Name: trytond-party
-Version: 4.4.2
+Version: 4.6.0
Summary: Tryton module with parties and addresses
Home-page: http://www.tryton.org/
Author: Tryton
Author-email: issue_tracker at tryton.org
License: GPL-3
-Download-URL: http://downloads.tryton.org/4.4/
+Download-URL: http://downloads.tryton.org/4.6/
Description: trytond_party
=============
@@ -70,9 +70,9 @@ Classifier: Natural Language :: Slovenian
Classifier: Natural Language :: Spanish
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
+Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Office/Business
diff --git a/trytond_party.egg-info/SOURCES.txt b/trytond_party.egg-info/SOURCES.txt
index 477e29c..d0ce6c6 100644
--- a/trytond_party.egg-info/SOURCES.txt
+++ b/trytond_party.egg-info/SOURCES.txt
@@ -1,16 +1,25 @@
+.drone.yml
+.hgtags
CHANGELOG
COPYRIGHT
INSTALL
LICENSE
MANIFEST.in
README
+__init__.py
+address.py
address.xml
+category.py
category.xml
+configuration.py
configuration.xml
+contact_mechanism.py
contact_mechanism.xml
-label.odt
+label.fodt
+party.py
party.xml
setup.py
+tox.ini
tryton.cfg
./__init__.py
./address.py
@@ -21,7 +30,7 @@ tryton.cfg
./configuration.xml
./contact_mechanism.py
./contact_mechanism.xml
-./label.odt
+./label.fodt
./party.py
./party.xml
./tryton.cfg
@@ -86,6 +95,9 @@ locale/pt_BR.po
locale/ru.po
locale/sl.po
locale/zh_CN.po
+tests/__init__.py
+tests/scenario_party_replace.rst
+tests/test_party.py
trytond_party.egg-info/PKG-INFO
trytond_party.egg-info/SOURCES.txt
trytond_party.egg-info/dependency_links.txt
diff --git a/trytond_party.egg-info/requires.txt b/trytond_party.egg-info/requires.txt
index fa9aa5a..25c0404 100644
--- a/trytond_party.egg-info/requires.txt
+++ b/trytond_party.egg-info/requires.txt
@@ -1,10 +1,13 @@
python-sql >= 0.4
python-stdnum
-trytond_country >= 4.4, < 4.5
-trytond >= 4.4, < 4.5
+trytond_country >= 4.6, < 4.7
+trytond >= 4.6, < 4.7
-[VAT]
-python-stdnum
+[VIES]
+python-stdnum[VIES]
+
+[VIES-ALT]
+python-stdnum[VIES-ALT]
[phonenumbers]
phonenumbers
--
tryton-modules-party
More information about the tryton-debian-vcs
mailing list