From 31a0356f9d57d496e3d0213a0e170681fb775030 Mon Sep 17 00:00:00 2001 From: Maxime Chambreuil Date: Thu, 22 Nov 2012 11:06:52 -0500 Subject: [PATCH 01/75] [ADD] res_partner_address_formatted_phone [ADD] crm_lead_formatted_phone Needs rewriting to get regex from res.country and maybe use phonenumbers lib --- crm_lead_formatted_phone/__init__.py | 22 ++++++++++ crm_lead_formatted_phone/__openerp__.py | 41 +++++++++++++++++ .../crm_lead_formatted_phone.py | 39 ++++++++++++++++ .../crm_lead_formatted_phone.xml | 33 ++++++++++++++ .../__init__.py | 23 ++++++++++ .../__openerp__.py | 44 +++++++++++++++++++ .../res_country_phone_format.py | 31 +++++++++++++ .../res_country_phone_format_data.xml | 10 +++++ .../res_country_phone_format_view.xml | 18 ++++++++ .../res_partner_address_formatted_phone.py | 41 +++++++++++++++++ .../res_partner_address_formatted_phone.xml | 28 ++++++++++++ 11 files changed, 330 insertions(+) create mode 100644 crm_lead_formatted_phone/__init__.py create mode 100644 crm_lead_formatted_phone/__openerp__.py create mode 100644 crm_lead_formatted_phone/crm_lead_formatted_phone.py create mode 100644 crm_lead_formatted_phone/crm_lead_formatted_phone.xml create mode 100644 res_partner_address_formatted_phone/__init__.py create mode 100644 res_partner_address_formatted_phone/__openerp__.py create mode 100644 res_partner_address_formatted_phone/res_country_phone_format.py create mode 100644 res_partner_address_formatted_phone/res_country_phone_format_data.xml create mode 100644 res_partner_address_formatted_phone/res_country_phone_format_view.xml create mode 100644 res_partner_address_formatted_phone/res_partner_address_formatted_phone.py create mode 100644 res_partner_address_formatted_phone/res_partner_address_formatted_phone.xml diff --git a/crm_lead_formatted_phone/__init__.py b/crm_lead_formatted_phone/__init__.py new file mode 100644 index 000000000..b49fb557f --- /dev/null +++ b/crm_lead_formatted_phone/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2012 Savoir-faire Linux (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import crm_lead_formatted_phone diff --git a/crm_lead_formatted_phone/__openerp__.py b/crm_lead_formatted_phone/__openerp__.py new file mode 100644 index 000000000..433bf3681 --- /dev/null +++ b/crm_lead_formatted_phone/__openerp__.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2012 Savoir-faire Linux (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + "name" : "Format phone numbers of lead ", + "version" : "0.1", + "author" : "Savoir-faire Linux", + "website" : "http://www.savoirfairelinux.com", + "license" : "AGPL-3", + "category" : "CRM", + "description" : """ +This module formats the lead phone numbers based on the country phone format. + """, + "images" : [], + "depends" : ["crm", "res_partner_address_formatted_phone"], + "demo" : [], + "test" : [], + "data" : [ + "crm_lead_formatted_phone.xml", + ], + "installable": True, + "complexity": "easy", +} diff --git a/crm_lead_formatted_phone/crm_lead_formatted_phone.py b/crm_lead_formatted_phone/crm_lead_formatted_phone.py new file mode 100644 index 000000000..daacc1fb8 --- /dev/null +++ b/crm_lead_formatted_phone/crm_lead_formatted_phone.py @@ -0,0 +1,39 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2012 Savoir-faire Linux (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import re +from osv import fields, osv + +class crm_lead_formatted_phone(osv.osv): + _inherit = 'crm.lead' + + def on_change_phone(self, cr, uid, ids, field_name, phone, country_id=False): + result = phone + if phone: + digits = [c for c in phone if c.isdigit()] + if len(digits) >= 10: + result = u"(%s) %s-%s" % ("".join(digits[0:3]), "".join(digits[3:6]), + "".join(digits[6:10])) + if len(digits) > 10: + result += " x %s" % "".join(digits[10:]) + return { 'value': { field_name: result } } + +crm_lead_formatted_phone() diff --git a/crm_lead_formatted_phone/crm_lead_formatted_phone.xml b/crm_lead_formatted_phone/crm_lead_formatted_phone.xml new file mode 100644 index 000000000..64daade44 --- /dev/null +++ b/crm_lead_formatted_phone/crm_lead_formatted_phone.xml @@ -0,0 +1,33 @@ + + + + + + crm.lead.formatted.phone.form + crm.lead + + form + + + + + + + + + + + + + + + + + + + + + diff --git a/res_partner_address_formatted_phone/__init__.py b/res_partner_address_formatted_phone/__init__.py new file mode 100644 index 000000000..baebd9a72 --- /dev/null +++ b/res_partner_address_formatted_phone/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2012 Savoir-faire Linux (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import res_partner_address_formatted_phone +import res_country_phone_format diff --git a/res_partner_address_formatted_phone/__openerp__.py b/res_partner_address_formatted_phone/__openerp__.py new file mode 100644 index 000000000..74d8fb969 --- /dev/null +++ b/res_partner_address_formatted_phone/__openerp__.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2012 Savoir-faire Linux (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + "name" : "Format phone numbers of partner", + "version" : "0.1", + "author" : "Savoir-faire Linux", + "website" : "http://www.savoirfairelinux.com", + "license" : "AGPL-3", + "category" : "Partner", + "description" : """ +This module formats the partner phone numbers based on the format of the +phonenumbers library (http://pypi.python.org/pypi/phonenumbers). + """, + "images" : [], + "depends" : ["base"], + "demo" : [], + "test" : [], + "data" : [ + "res_partner_address_formatted_phone.xml", + "res_country_phone_format_view.xml", + "res_country_phone_format_data.xml", + ], + "installable": True, + "complexity": "easy", +} diff --git a/res_partner_address_formatted_phone/res_country_phone_format.py b/res_partner_address_formatted_phone/res_country_phone_format.py new file mode 100644 index 000000000..79c86d9e2 --- /dev/null +++ b/res_partner_address_formatted_phone/res_country_phone_format.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2012 Savoir-faire Linux (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import re +from osv import fields, osv + +class res_country_phone_format(osv.osv): + _inherit = 'res.country' + _columns = { + 'phone_format': fields.char('Phone Format', size=100) + } + +res_country_phone_format() diff --git a/res_partner_address_formatted_phone/res_country_phone_format_data.xml b/res_partner_address_formatted_phone/res_country_phone_format_data.xml new file mode 100644 index 000000000..18b3bcea9 --- /dev/null +++ b/res_partner_address_formatted_phone/res_country_phone_format_data.xml @@ -0,0 +1,10 @@ + + + + + + (XXX) XXX-XXXX x XXX + + + + diff --git a/res_partner_address_formatted_phone/res_country_phone_format_view.xml b/res_partner_address_formatted_phone/res_country_phone_format_view.xml new file mode 100644 index 000000000..ed3066c4e --- /dev/null +++ b/res_partner_address_formatted_phone/res_country_phone_format_view.xml @@ -0,0 +1,18 @@ + + + + + + res.country.phone.format.form + res.country + + form + + + + + + + + + diff --git a/res_partner_address_formatted_phone/res_partner_address_formatted_phone.py b/res_partner_address_formatted_phone/res_partner_address_formatted_phone.py new file mode 100644 index 000000000..8b152d896 --- /dev/null +++ b/res_partner_address_formatted_phone/res_partner_address_formatted_phone.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2012 Savoir-faire Linux (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import re +from osv import fields, osv + +class res_partner_address_formatted_phone(osv.osv): + _inherit = 'res.partner.address' + + def on_change_phone(self, cr, uid, ids, field_name, phone, country_id=False): + result = phone + phone_format = self.pool.get('phone_format') + if phone: + digits = [c for c in phone if c.isdigit()] + crosses = [x for x in phone_format if c == 'X'] + if len(digits) >= len(crosses): + result = u"(%s) %s-%s" % ("".join(digits[0:3]), "".join(digits[3:6]), + "".join(digits[6:10])) + if len(digits) > 10: + result += " x %s" % "".join(digits[10:]) + return { 'value': { field_name: result } } + +res_partner_address_formatted_phone() diff --git a/res_partner_address_formatted_phone/res_partner_address_formatted_phone.xml b/res_partner_address_formatted_phone/res_partner_address_formatted_phone.xml new file mode 100644 index 000000000..59dc3806a --- /dev/null +++ b/res_partner_address_formatted_phone/res_partner_address_formatted_phone.xml @@ -0,0 +1,28 @@ + + + + + res.partner.american_phone_formatter.form + res.partner + + form + + + + + + + + + + + + + + + + From 36f0e6348cc075eb10ad047a837b6978b57c952d Mon Sep 17 00:00:00 2001 From: Harshad Modi Date: Sat, 1 Mar 2008 10:36:31 +0000 Subject: [PATCH 02/75] new module for separate surname from contact name of partner (../addons/extra-trunk rev 1344) --- base_partner_surname/__init__.py | 28 +++++++++++ base_partner_surname/__terp__.py | 16 ++++++ base_partner_surname/partner.py | 72 +++++++++++++++++++++++++++ base_partner_surname/partner_view.xml | 55 ++++++++++++++++++++ 4 files changed, 171 insertions(+) create mode 100644 base_partner_surname/__init__.py create mode 100644 base_partner_surname/__terp__.py create mode 100644 base_partner_surname/partner.py create mode 100644 base_partner_surname/partner_view.xml diff --git a/base_partner_surname/__init__.py b/base_partner_surname/__init__.py new file mode 100644 index 000000000..d21a93c7b --- /dev/null +++ b/base_partner_surname/__init__.py @@ -0,0 +1,28 @@ +############################################################################## +# +# Copyright (c) 2006 TINY SPRL. (http://tiny.be) All Rights Reserved. +# Fabien Pinckaers +# +# WARNING: This program as such is intended to be used by professional +# programmers who take the whole responsability of assessing all potential +# consequences resulting from its eventual inadequacies and bugs +# End users who are looking for a ready-to-use solution with commercial +# garantees and support are strongly adviced to contract a Free Software +# Service Company +# +# This program is Free Software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +############################################################################## +import partner \ No newline at end of file diff --git a/base_partner_surname/__terp__.py b/base_partner_surname/__terp__.py new file mode 100644 index 000000000..e58af9412 --- /dev/null +++ b/base_partner_surname/__terp__.py @@ -0,0 +1,16 @@ +{ + "name" : "Base Partner Surname", + "version" : "1.0", + "author" : "Tiny", + "website" : "http://tinyerp.com", + "category" : "Generic Modules/Base", + "description": """ +This module use for seperate surname from contact name of partner. Now You can give first name & last name on contact Name + + """, + "depends" : ["base"], + "init_xml" : [ ], + "demo_xml" : [ ], + "update_xml" : [ "partner_view.xml" ], + "installable": True +} diff --git a/base_partner_surname/partner.py b/base_partner_surname/partner.py new file mode 100644 index 000000000..be855dfc0 --- /dev/null +++ b/base_partner_surname/partner.py @@ -0,0 +1,72 @@ +############################################################################## +# +# Copyright (c) 2006 TINY SPRL. (http://tiny.be) All Rights Reserved. +# Fabien Pinckaers +# +# WARNING: This program as such is intended to be used by professional +# programmers who take the whole responsability of assessing all potential +# consequences resulting from its eventual inadequacies and bugs +# End users who are looking for a ready-to-use solution with commercial +# garantees and support are strongly adviced to contract a Free Software +# Service Company +# +# This program is Free Software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +############################################################################## +from osv import fields,osv +from mx import DateTime +import tools +import ir +import pooler +import time + +class res_partner_address(osv.osv): + _name = 'res.partner.address' + _inherit ='res.partner.address' + _columns = { + 'first_name' : fields.char('First Name', size=128), + 'last_name' : fields.char('Last Name', size=128), + 'name' : fields.char('Name', size=128,readonly=True), + } + def write(self, cr, uid, ids, vals, context={}): + first_name='' + last_name='' + if 'first_name' in vals and vals['first_name']: + first_name=vals['first_name'] + if 'last_name' in vals and vals['last_name']: + last_name=vals['last_name'] + + vals['name']= first_name + ' ' + last_name + return super(res_partner_address, self).write(cr, uid, ids, vals, context) + + def create(self, cr, uid, vals, context={}): + first_name='' + last_name='' + if 'first_name' in vals and vals['first_name']: + first_name=vals['first_name'] + if 'last_name' in vals and vals['last_name']: + last_name=vals['last_name'] + + vals['name']= first_name + ' ' + last_name + return super(res_partner_address, self).create(cr, uid, vals, context) + + def onchange_name(self, cr, uid, id, first_name,last_name,context={}): + if not first_name: + first_name='' + if not last_name: + last_name='' + return {'value': {'name': first_name + ' ' + last_name}} + +res_partner_address() \ No newline at end of file diff --git a/base_partner_surname/partner_view.xml b/base_partner_surname/partner_view.xml new file mode 100644 index 000000000..314006484 --- /dev/null +++ b/base_partner_surname/partner_view.xml @@ -0,0 +1,55 @@ + + + + + res.partner.address.form1.inherit + res.partner.address + form + + + + + + + + + + + + res.partner.form.inherit + res.partner + form + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
\ No newline at end of file From 6d40aa756b9f556f0d9b07c950cc514b85ab1325 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Wed, 23 Jul 2008 16:24:53 +0200 Subject: [PATCH 03/75] * add encoding comment and vim comment * remove ^M (../addons/extra-trunk rev 3105.1.3) --- base_partner_surname/__init__.py | 5 ++++- base_partner_surname/__terp__.py | 3 +++ base_partner_surname/partner.py | 5 ++++- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/base_partner_surname/__init__.py b/base_partner_surname/__init__.py index d21a93c7b..111abe2c8 100644 --- a/base_partner_surname/__init__.py +++ b/base_partner_surname/__init__.py @@ -1,3 +1,4 @@ +# -*- encoding: utf-8 -*- ############################################################################## # # Copyright (c) 2006 TINY SPRL. (http://tiny.be) All Rights Reserved. @@ -25,4 +26,6 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # ############################################################################## -import partner \ No newline at end of file +import partner +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: + diff --git a/base_partner_surname/__terp__.py b/base_partner_surname/__terp__.py index e58af9412..ef0321b37 100644 --- a/base_partner_surname/__terp__.py +++ b/base_partner_surname/__terp__.py @@ -1,3 +1,4 @@ +# -*- encoding: utf-8 -*- { "name" : "Base Partner Surname", "version" : "1.0", @@ -14,3 +15,5 @@ This module use for seperate surname from contact name of partner. Now You can g "update_xml" : [ "partner_view.xml" ], "installable": True } +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: + diff --git a/base_partner_surname/partner.py b/base_partner_surname/partner.py index be855dfc0..b2bfc37e5 100644 --- a/base_partner_surname/partner.py +++ b/base_partner_surname/partner.py @@ -1,3 +1,4 @@ +# -*- encoding: utf-8 -*- ############################################################################## # # Copyright (c) 2006 TINY SPRL. (http://tiny.be) All Rights Reserved. @@ -69,4 +70,6 @@ class res_partner_address(osv.osv): last_name='' return {'value': {'name': first_name + ' ' + last_name}} -res_partner_address() \ No newline at end of file +res_partner_address() +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: + From eb0f3e35f227b1abe5fb85a3a126ed8b3e1b24f1 Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Sat, 13 Sep 2008 00:59:35 +0200 Subject: [PATCH 04/75] rename the to (../addons/extra-trunk rev 3283.1.57) --- base_partner_surname/partner_view.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base_partner_surname/partner_view.xml b/base_partner_surname/partner_view.xml index 314006484..761741fff 100644 --- a/base_partner_surname/partner_view.xml +++ b/base_partner_surname/partner_view.xml @@ -1,5 +1,5 @@ - + res.partner.address.form1.inherit @@ -52,4 +52,4 @@ - \ No newline at end of file + From 920367616c9c43280a8f8d72553c81e92394517b Mon Sep 17 00:00:00 2001 From: Mantavya Gajjar Date: Thu, 9 Apr 2009 12:36:02 +0530 Subject: [PATCH 05/75] account_indian is a branch of the trunk addons make account_indian up to date with the trunk-extra-addons (../addons/extra-trunk rev 3288.4.56) --- base_partner_surname/__init__.py | 33 ++++----- base_partner_surname/__terp__.py | 25 ++++++- base_partner_surname/partner.py | 33 ++++----- base_partner_surname/partner_view.xml | 96 +++++++++++++-------------- 4 files changed, 97 insertions(+), 90 deletions(-) diff --git a/base_partner_surname/__init__.py b/base_partner_surname/__init__.py index 111abe2c8..5370adc77 100644 --- a/base_partner_surname/__init__.py +++ b/base_partner_surname/__init__.py @@ -1,29 +1,22 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Copyright (c) 2006 TINY SPRL. (http://tiny.be) All Rights Reserved. -# Fabien Pinckaers +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# $Id$ # -# WARNING: This program as such is intended to be used by professional -# programmers who take the whole responsability of assessing all potential -# consequences resulting from its eventual inadequacies and bugs -# End users who are looking for a ready-to-use solution with commercial -# garantees and support are strongly adviced to contract a Free Software -# Service Company +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. # -# This program is Free Software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; either version 2 -# of the License, or (at your option) any later version. +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . # ############################################################################## import partner diff --git a/base_partner_surname/__terp__.py b/base_partner_surname/__terp__.py index ef0321b37..7096c0c99 100644 --- a/base_partner_surname/__terp__.py +++ b/base_partner_surname/__terp__.py @@ -1,12 +1,33 @@ # -*- encoding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# $Id$ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## { "name" : "Base Partner Surname", "version" : "1.0", "author" : "Tiny", - "website" : "http://tinyerp.com", + "website" : "http://www.openerp.com", "category" : "Generic Modules/Base", "description": """ -This module use for seperate surname from contact name of partner. Now You can give first name & last name on contact Name +This module use for seperate surname from contact name of partner. Now You can give first name & last name on contact Name. +This module is deprecated, it is higly recommended to use base_contact instead. """, "depends" : ["base"], diff --git a/base_partner_surname/partner.py b/base_partner_surname/partner.py index b2bfc37e5..f82243e05 100644 --- a/base_partner_surname/partner.py +++ b/base_partner_surname/partner.py @@ -1,29 +1,22 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Copyright (c) 2006 TINY SPRL. (http://tiny.be) All Rights Reserved. -# Fabien Pinckaers +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# $Id$ # -# WARNING: This program as such is intended to be used by professional -# programmers who take the whole responsability of assessing all potential -# consequences resulting from its eventual inadequacies and bugs -# End users who are looking for a ready-to-use solution with commercial -# garantees and support are strongly adviced to contract a Free Software -# Service Company +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. # -# This program is Free Software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; either version 2 -# of the License, or (at your option) any later version. +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . # ############################################################################## from osv import fields,osv diff --git a/base_partner_surname/partner_view.xml b/base_partner_surname/partner_view.xml index 761741fff..8d3fe178d 100644 --- a/base_partner_surname/partner_view.xml +++ b/base_partner_surname/partner_view.xml @@ -1,55 +1,55 @@ - - - res.partner.address.form1.inherit - res.partner.address - form - - - - - - - - - + + + res.partner.address.form1.inherit + res.partner.address + form + + + + + + + + + - - res.partner.form.inherit - res.partner - form - - - -
+ + res.partner.form.inherit + res.partner + form + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - -
-
+ + + + +
From f0f4540647cb5a012cd70cc9af11a21fe5b97145 Mon Sep 17 00:00:00 2001 From: Fabien Pinckaers Date: Mon, 27 Oct 2008 23:52:00 +0100 Subject: [PATCH 06/75] bugfixes (../addons/extra-trunk rev 3327) --- base_partner_surname/__init__.py | 33 +++++++++++++++++++------------- base_partner_surname/__terp__.py | 25 ++---------------------- base_partner_surname/partner.py | 33 +++++++++++++++++++------------- 3 files changed, 42 insertions(+), 49 deletions(-) diff --git a/base_partner_surname/__init__.py b/base_partner_surname/__init__.py index 5370adc77..111abe2c8 100644 --- a/base_partner_surname/__init__.py +++ b/base_partner_surname/__init__.py @@ -1,22 +1,29 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved -# $Id$ +# Copyright (c) 2006 TINY SPRL. (http://tiny.be) All Rights Reserved. +# Fabien Pinckaers # -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. +# WARNING: This program as such is intended to be used by professional +# programmers who take the whole responsability of assessing all potential +# consequences resulting from its eventual inadequacies and bugs +# End users who are looking for a ready-to-use solution with commercial +# garantees and support are strongly adviced to contract a Free Software +# Service Company # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# This program is Free Software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. # -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # ############################################################################## import partner diff --git a/base_partner_surname/__terp__.py b/base_partner_surname/__terp__.py index 7096c0c99..ef0321b37 100644 --- a/base_partner_surname/__terp__.py +++ b/base_partner_surname/__terp__.py @@ -1,33 +1,12 @@ # -*- encoding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved -# $Id$ -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -# -############################################################################## { "name" : "Base Partner Surname", "version" : "1.0", "author" : "Tiny", - "website" : "http://www.openerp.com", + "website" : "http://tinyerp.com", "category" : "Generic Modules/Base", "description": """ -This module use for seperate surname from contact name of partner. Now You can give first name & last name on contact Name. -This module is deprecated, it is higly recommended to use base_contact instead. +This module use for seperate surname from contact name of partner. Now You can give first name & last name on contact Name """, "depends" : ["base"], diff --git a/base_partner_surname/partner.py b/base_partner_surname/partner.py index f82243e05..b2bfc37e5 100644 --- a/base_partner_surname/partner.py +++ b/base_partner_surname/partner.py @@ -1,22 +1,29 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved -# $Id$ +# Copyright (c) 2006 TINY SPRL. (http://tiny.be) All Rights Reserved. +# Fabien Pinckaers # -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. +# WARNING: This program as such is intended to be used by professional +# programmers who take the whole responsability of assessing all potential +# consequences resulting from its eventual inadequacies and bugs +# End users who are looking for a ready-to-use solution with commercial +# garantees and support are strongly adviced to contract a Free Software +# Service Company # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# This program is Free Software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. # -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # ############################################################################## from osv import fields,osv From 7edf55524fa2a9550f2403ba169ce8f843abac7c Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Mon, 3 Nov 2008 20:56:05 +0100 Subject: [PATCH 07/75] passing tiny modules to GPL-3 (../addons/extra-trunk rev 3329.1.2) --- base_partner_surname/__init__.py | 33 +++++++++++++------------------- base_partner_surname/__terp__.py | 20 +++++++++++++++++++ base_partner_surname/partner.py | 33 +++++++++++++------------------- 3 files changed, 46 insertions(+), 40 deletions(-) diff --git a/base_partner_surname/__init__.py b/base_partner_surname/__init__.py index 111abe2c8..5370adc77 100644 --- a/base_partner_surname/__init__.py +++ b/base_partner_surname/__init__.py @@ -1,29 +1,22 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Copyright (c) 2006 TINY SPRL. (http://tiny.be) All Rights Reserved. -# Fabien Pinckaers +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# $Id$ # -# WARNING: This program as such is intended to be used by professional -# programmers who take the whole responsability of assessing all potential -# consequences resulting from its eventual inadequacies and bugs -# End users who are looking for a ready-to-use solution with commercial -# garantees and support are strongly adviced to contract a Free Software -# Service Company +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. # -# This program is Free Software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; either version 2 -# of the License, or (at your option) any later version. +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . # ############################################################################## import partner diff --git a/base_partner_surname/__terp__.py b/base_partner_surname/__terp__.py index ef0321b37..a714d76f3 100644 --- a/base_partner_surname/__terp__.py +++ b/base_partner_surname/__terp__.py @@ -1,4 +1,24 @@ # -*- encoding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# $Id$ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## { "name" : "Base Partner Surname", "version" : "1.0", diff --git a/base_partner_surname/partner.py b/base_partner_surname/partner.py index b2bfc37e5..f82243e05 100644 --- a/base_partner_surname/partner.py +++ b/base_partner_surname/partner.py @@ -1,29 +1,22 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Copyright (c) 2006 TINY SPRL. (http://tiny.be) All Rights Reserved. -# Fabien Pinckaers +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# $Id$ # -# WARNING: This program as such is intended to be used by professional -# programmers who take the whole responsability of assessing all potential -# consequences resulting from its eventual inadequacies and bugs -# End users who are looking for a ready-to-use solution with commercial -# garantees and support are strongly adviced to contract a Free Software -# Service Company +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. # -# This program is Free Software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; either version 2 -# of the License, or (at your option) any later version. +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . # ############################################################################## from osv import fields,osv From d27c2d14ae9f8484ccf3725e9f7ae34f2aba8103 Mon Sep 17 00:00:00 2001 From: "sma (Tiny/Axelor)" Date: Wed, 18 Feb 2009 12:35:48 +0530 Subject: [PATCH 08/75] merge (../addons/extra-trunk rev 3547.5.7) --- base_partner_surname/__terp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base_partner_surname/__terp__.py b/base_partner_surname/__terp__.py index a714d76f3..5646f3313 100644 --- a/base_partner_surname/__terp__.py +++ b/base_partner_surname/__terp__.py @@ -23,7 +23,7 @@ "name" : "Base Partner Surname", "version" : "1.0", "author" : "Tiny", - "website" : "http://tinyerp.com", + "website" : "http://www.openerp.com", "category" : "Generic Modules/Base", "description": """ This module use for seperate surname from contact name of partner. Now You can give first name & last name on contact Name From fc92997208b8fe76912968396b1fbbbe7ec63151 Mon Sep 17 00:00:00 2001 From: Fabian Semal Date: Fri, 13 Mar 2009 18:33:08 +0100 Subject: [PATCH 09/75] * Added access rules * Improved views * Reviewed offer graph (../addons/extra-trunk rev 3589.2.11) --- base_partner_surname/__terp__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/base_partner_surname/__terp__.py b/base_partner_surname/__terp__.py index 5646f3313..7096c0c99 100644 --- a/base_partner_surname/__terp__.py +++ b/base_partner_surname/__terp__.py @@ -26,7 +26,8 @@ "website" : "http://www.openerp.com", "category" : "Generic Modules/Base", "description": """ -This module use for seperate surname from contact name of partner. Now You can give first name & last name on contact Name +This module use for seperate surname from contact name of partner. Now You can give first name & last name on contact Name. +This module is deprecated, it is higly recommended to use base_contact instead. """, "depends" : ["base"], From 9d35bfddc451f3a48d8a66922539724866f7c58f Mon Sep 17 00:00:00 2001 From: "HDA(OpenERP)" Date: Thu, 15 Oct 2009 16:55:40 +0530 Subject: [PATCH 10/75] Changed licence terms (../addons/extra-trunk rev 3907.1.4) --- base_partner_surname/__init__.py | 19 +++++++++---------- base_partner_surname/__terp__.py | 19 +++++++++---------- base_partner_surname/partner.py | 20 ++++++++++---------- 3 files changed, 28 insertions(+), 30 deletions(-) diff --git a/base_partner_surname/__init__.py b/base_partner_surname/__init__.py index 5370adc77..b98977515 100644 --- a/base_partner_surname/__init__.py +++ b/base_partner_surname/__init__.py @@ -1,22 +1,21 @@ # -*- encoding: utf-8 -*- ############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved -# $Id$ +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2009 Tiny SPRL (). # # This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# GNU Affero General Public License for more details. # -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . # ############################################################################## import partner diff --git a/base_partner_surname/__terp__.py b/base_partner_surname/__terp__.py index 7096c0c99..cd4878a34 100644 --- a/base_partner_surname/__terp__.py +++ b/base_partner_surname/__terp__.py @@ -1,22 +1,21 @@ # -*- encoding: utf-8 -*- ############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved -# $Id$ +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2009 Tiny SPRL (). # # This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# GNU Affero General Public License for more details. # -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . # ############################################################################## { diff --git a/base_partner_surname/partner.py b/base_partner_surname/partner.py index f82243e05..9b47c2b41 100644 --- a/base_partner_surname/partner.py +++ b/base_partner_surname/partner.py @@ -1,24 +1,24 @@ # -*- encoding: utf-8 -*- ############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved -# $Id$ +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2009 Tiny SPRL (). # # This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# GNU Affero General Public License for more details. # -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . # ############################################################################## + from osv import fields,osv from mx import DateTime import tools From 27796654b5a1b92ff04ef7f422f6ce1ffff616db Mon Sep 17 00:00:00 2001 From: "Jay(Open ERP)" Date: Fri, 6 Nov 2009 16:17:57 +0530 Subject: [PATCH 11/75] [FIX] Base_partner_surname : module made compatible with base_contact (../addons/extra-trunk rev 3942.1.4) --- base_partner_surname/partner_view.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base_partner_surname/partner_view.xml b/base_partner_surname/partner_view.xml index 8d3fe178d..b078d29a0 100644 --- a/base_partner_surname/partner_view.xml +++ b/base_partner_surname/partner_view.xml @@ -7,7 +7,7 @@ form - + From fbc853c5c6942d6905ae6f75b28a681e5dbf6454 Mon Sep 17 00:00:00 2001 From: "mra (Open ERP)" Date: Mon, 30 Nov 2009 15:33:47 +0530 Subject: [PATCH 12/75] [ADD] added fr_BE.po file for modules [IMP] modify some existing files and solve some errors on modules (../addons/extra-trunk rev 4060.1.5) --- base_partner_surname/i18n/fr_BE.po | 51 ++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 base_partner_surname/i18n/fr_BE.po diff --git a/base_partner_surname/i18n/fr_BE.po b/base_partner_surname/i18n/fr_BE.po new file mode 100644 index 000000000..379813c64 --- /dev/null +++ b/base_partner_surname/i18n/fr_BE.po @@ -0,0 +1,51 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * base_partner_surname +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.6\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-11-25 05:35:30+0000\n" +"PO-Revision-Date: 2009-11-25 05:35:30+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: base_partner_surname +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base_partner_surname +#: field:res.partner.address,last_name:0 +msgid "Last Name" +msgstr "" + +#. module: base_partner_surname +#: model:ir.module.module,shortdesc:base_partner_surname.module_meta_information +msgid "Base Partner Surname" +msgstr "" + +#. module: base_partner_surname +#: field:res.partner.address,first_name:0 +msgid "First Name" +msgstr "" + +#. module: base_partner_surname +#: model:ir.module.module,description:base_partner_surname.module_meta_information +msgid "\n" +"This module use for seperate surname from contact name of partner. Now You can give first name & last name on contact Name.\n" +"This module is deprecated, it is higly recommended to use base_contact instead.\n" +"\n" +" " +msgstr "" + +#. module: base_partner_surname +#: view:res.partner:0 +msgid "Partner Contacts" +msgstr "" + From 96f1e1362b197ae6788b9db30b2e45157e2b7834 Mon Sep 17 00:00:00 2001 From: "psi(Open ERP)" Date: Fri, 1 Jan 2010 17:08:19 +0530 Subject: [PATCH 13/75] [ADD]base_*:added template file (../addons/extra-trunk rev 4191.1.12) --- .../i18n/base_partner_surname.pot | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 base_partner_surname/i18n/base_partner_surname.pot diff --git a/base_partner_surname/i18n/base_partner_surname.pot b/base_partner_surname/i18n/base_partner_surname.pot new file mode 100644 index 000000000..379813c64 --- /dev/null +++ b/base_partner_surname/i18n/base_partner_surname.pot @@ -0,0 +1,51 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * base_partner_surname +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.6\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-11-25 05:35:30+0000\n" +"PO-Revision-Date: 2009-11-25 05:35:30+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: base_partner_surname +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base_partner_surname +#: field:res.partner.address,last_name:0 +msgid "Last Name" +msgstr "" + +#. module: base_partner_surname +#: model:ir.module.module,shortdesc:base_partner_surname.module_meta_information +msgid "Base Partner Surname" +msgstr "" + +#. module: base_partner_surname +#: field:res.partner.address,first_name:0 +msgid "First Name" +msgstr "" + +#. module: base_partner_surname +#: model:ir.module.module,description:base_partner_surname.module_meta_information +msgid "\n" +"This module use for seperate surname from contact name of partner. Now You can give first name & last name on contact Name.\n" +"This module is deprecated, it is higly recommended to use base_contact instead.\n" +"\n" +" " +msgstr "" + +#. module: base_partner_surname +#: view:res.partner:0 +msgid "Partner Contacts" +msgstr "" + From 1e2f4df520c8679032e8ab8b7ff948111b287046 Mon Sep 17 00:00:00 2001 From: Launchpad Code Hosting Date: Sat, 5 Jun 2010 04:43:30 +0100 Subject: [PATCH 14/75] Launchpad automatic translations update. (../addons/extra-trunk rev 4595) --- base_partner_surname/i18n/fr.po | 55 +++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 base_partner_surname/i18n/fr.po diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po new file mode 100644 index 000000000..44d9654df --- /dev/null +++ b/base_partner_surname/i18n/fr.po @@ -0,0 +1,55 @@ +# French translation for openobject-addons +# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2009-11-25 05:35+0000\n" +"PO-Revision-Date: 2010-06-04 07:10+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2010-06-05 03:43+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: base_partner_surname +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML non valide pour l'architecture de la vue" + +#. module: base_partner_surname +#: field:res.partner.address,last_name:0 +msgid "Last Name" +msgstr "Nom" + +#. module: base_partner_surname +#: model:ir.module.module,shortdesc:base_partner_surname.module_meta_information +msgid "Base Partner Surname" +msgstr "" + +#. module: base_partner_surname +#: field:res.partner.address,first_name:0 +msgid "First Name" +msgstr "Prénom" + +#. module: base_partner_surname +#: model:ir.module.module,description:base_partner_surname.module_meta_information +msgid "" +"\n" +"This module use for seperate surname from contact name of partner. Now You " +"can give first name & last name on contact Name.\n" +"This module is deprecated, it is higly recommended to use base_contact " +"instead.\n" +"\n" +" " +msgstr "" + +#. module: base_partner_surname +#: view:res.partner:0 +msgid "Partner Contacts" +msgstr "Contacts du partenaire" From ac1f4aa523c76ec0a96ea9e700e61b566c077ebe Mon Sep 17 00:00:00 2001 From: Launchpad Code Hosting Date: Wed, 21 Jul 2010 04:49:13 +0100 Subject: [PATCH 15/75] Launchpad automatic translations update. (../addons/extra-trunk rev 4698) --- base_partner_surname/i18n/ca.po | 56 +++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 base_partner_surname/i18n/ca.po diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po new file mode 100644 index 000000000..21870dd7d --- /dev/null +++ b/base_partner_surname/i18n/ca.po @@ -0,0 +1,56 @@ +# Catalan translation for openobject-addons +# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2009-11-25 05:35+0000\n" +"PO-Revision-Date: 2010-07-20 19:22+0000\n" +"Last-Translator: Jordi Esteve (www.zikzakmedia.com) " +"\n" +"Language-Team: Catalan \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2010-07-21 03:49+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: base_partner_surname +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML no vàlid per a l'estructura de la vista!" + +#. module: base_partner_surname +#: field:res.partner.address,last_name:0 +msgid "Last Name" +msgstr "Cognoms" + +#. module: base_partner_surname +#: model:ir.module.module,shortdesc:base_partner_surname.module_meta_information +msgid "Base Partner Surname" +msgstr "Base - Cognoms a les empreses" + +#. module: base_partner_surname +#: field:res.partner.address,first_name:0 +msgid "First Name" +msgstr "Nom" + +#. module: base_partner_surname +#: model:ir.module.module,description:base_partner_surname.module_meta_information +msgid "" +"\n" +"This module use for seperate surname from contact name of partner. Now You " +"can give first name & last name on contact Name.\n" +"This module is deprecated, it is higly recommended to use base_contact " +"instead.\n" +"\n" +" " +msgstr "" + +#. module: base_partner_surname +#: view:res.partner:0 +msgid "Partner Contacts" +msgstr "Contactes de l'empresa" From 3b1b2d2e0015f5fee42ebaaaddbbf2bf8f54cd1a Mon Sep 17 00:00:00 2001 From: Launchpad Code Hosting Date: Wed, 18 Aug 2010 08:07:49 +0100 Subject: [PATCH 16/75] Launchpad automatic translations update. (../addons/extra-trunk rev 4760) --- base_partner_surname/i18n/it.po | 62 +++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 base_partner_surname/i18n/it.po diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po new file mode 100644 index 000000000..b29681ad8 --- /dev/null +++ b/base_partner_surname/i18n/it.po @@ -0,0 +1,62 @@ +# Italian translation for openobject-addons +# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2009-11-25 05:35+0000\n" +"PO-Revision-Date: 2010-08-17 14:21+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2010-08-18 07:07+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: base_partner_surname +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML non valido per visualizzare l'Achitettura!" + +#. module: base_partner_surname +#: field:res.partner.address,last_name:0 +msgid "Last Name" +msgstr "Cognome" + +#. module: base_partner_surname +#: model:ir.module.module,shortdesc:base_partner_surname.module_meta_information +msgid "Base Partner Surname" +msgstr "Cognome Partner di base" + +#. module: base_partner_surname +#: field:res.partner.address,first_name:0 +msgid "First Name" +msgstr "Nome" + +#. module: base_partner_surname +#: model:ir.module.module,description:base_partner_surname.module_meta_information +msgid "" +"\n" +"This module use for seperate surname from contact name of partner. Now You " +"can give first name & last name on contact Name.\n" +"This module is deprecated, it is higly recommended to use base_contact " +"instead.\n" +"\n" +" " +msgstr "" +"\n" +"Questo modulo si usa per separare il cognome dal nome contatto del partner. " +"Ora puoi dare Nome & Cognome a Nome Contatto.\n" +"Questo modulo è obsoleto, è altamente raccomandato l'utilizzo del modulo: " +"base_contact al suo posto.\n" +"\n" +" " + +#. module: base_partner_surname +#: view:res.partner:0 +msgid "Partner Contacts" +msgstr "Contatti del partner" From 85d0756e4124913a546af0c63f4a73d447ccb2c8 Mon Sep 17 00:00:00 2001 From: Launchpad Code Hosting Date: Thu, 19 Aug 2010 04:56:16 +0100 Subject: [PATCH 17/75] Launchpad automatic translations update. (../addons/extra-trunk rev 4763) --- base_partner_surname/i18n/it.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index b29681ad8..60973f1ae 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-11-25 05:35+0000\n" -"PO-Revision-Date: 2010-08-17 14:21+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2010-08-18 12:13+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-08-18 07:07+0000\n" +"X-Launchpad-Export-Date: 2010-08-19 03:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname From fb5eb9787fac02f070962fa9828e26ad30cf358f Mon Sep 17 00:00:00 2001 From: Launchpad Code Hosting Date: Thu, 26 Aug 2010 05:08:10 +0100 Subject: [PATCH 18/75] Launchpad automatic translations update. (../addons/extra-trunk rev 4936) --- base_partner_surname/i18n/ca.po | 2 +- base_partner_surname/i18n/fr.po | 2 +- base_partner_surname/i18n/it.po | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 21870dd7d..2d2ff7a28 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,7 +15,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-07-21 03:49+0000\n" +"X-Launchpad-Export-Date: 2010-08-26 04:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 44d9654df..f9c3d4367 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-06-05 03:43+0000\n" +"X-Launchpad-Export-Date: 2010-08-26 04:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 60973f1ae..1a631af7d 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-08-19 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-26 04:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname From 443633c8d827420f77576aaa8741c18307153f08 Mon Sep 17 00:00:00 2001 From: Launchpad Code Hosting Date: Fri, 3 Sep 2010 04:57:32 +0100 Subject: [PATCH 19/75] Launchpad automatic translations update. (../addons/extra-trunk rev 4947) --- base_partner_surname/i18n/es.po | 62 +++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 base_partner_surname/i18n/es.po diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po new file mode 100644 index 000000000..9405f5496 --- /dev/null +++ b/base_partner_surname/i18n/es.po @@ -0,0 +1,62 @@ +# Spanish translation for openobject-addons +# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2009-11-25 05:35+0000\n" +"PO-Revision-Date: 2010-09-02 11:02+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2010-09-03 03:57+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: base_partner_surname +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "¡XML no válido para la estructura de la vista!" + +#. module: base_partner_surname +#: field:res.partner.address,last_name:0 +msgid "Last Name" +msgstr "Apellidos" + +#. module: base_partner_surname +#: model:ir.module.module,shortdesc:base_partner_surname.module_meta_information +msgid "Base Partner Surname" +msgstr "Nombre y apellidos para contactos de empresas" + +#. module: base_partner_surname +#: field:res.partner.address,first_name:0 +msgid "First Name" +msgstr "Nombre" + +#. module: base_partner_surname +#: model:ir.module.module,description:base_partner_surname.module_meta_information +msgid "" +"\n" +"This module use for seperate surname from contact name of partner. Now You " +"can give first name & last name on contact Name.\n" +"This module is deprecated, it is higly recommended to use base_contact " +"instead.\n" +"\n" +" " +msgstr "" +"\n" +"Este módulo sirve para separar nombre y apellidos en el contacto de la " +"empresa. Permite introducir el nombre y apellidos en el nombre de contacto.\n" +"Este módulo está obsoleto, es muy recomendable en su lugar utilizar " +"base_contact.\n" +"\n" +" " + +#. module: base_partner_surname +#: view:res.partner:0 +msgid "Partner Contacts" +msgstr "Contactos de la empresa" From f81219f10582fbb9d41f73b5cdaaa61638b871c8 Mon Sep 17 00:00:00 2001 From: Launchpad Code Hosting Date: Sat, 4 Sep 2010 04:58:13 +0000 Subject: [PATCH 20/75] Launchpad automatic translations update. (../addons/extra-trunk rev 4948) --- base_partner_surname/i18n/es.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 9405f5496..e4667928f 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-11-25 05:35+0000\n" -"PO-Revision-Date: 2010-09-02 11:02+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2010-09-03 08:05+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-09-03 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-09-04 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname From 6da677409d4df56a4b9ef87a17f12d14a6531c48 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Wed, 29 Sep 2010 05:32:05 +0000 Subject: [PATCH 21/75] Launchpad automatic translations update. (../addons/extra-trunk rev 4998.1.2) --- base_partner_surname/i18n/ca.po | 9 ++++++++- base_partner_surname/i18n/es.po | 2 +- base_partner_surname/i18n/fr.po | 2 +- base_partner_surname/i18n/it.po | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 2d2ff7a28..746ce18e4 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,7 +15,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-08-26 04:05+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 05:29+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname @@ -49,6 +49,13 @@ msgid "" "\n" " " msgstr "" +"\n" +"Aquest mòdul serveix per a separar nom i cognoms en el contacte de " +"l'empresa. Permet introduir el nom i cognoms en el nom de contacte.\n" +"Aquest mòdul està obsolet, es molt recomanable en el seu lloc utilitzar " +"base_contact.\n" +"\n" +" " #. module: base_partner_surname #: view:res.partner:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index e4667928f..308e982de 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-09-04 04:58+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 05:29+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index f9c3d4367..273c2903c 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-08-26 04:05+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 05:29+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 1a631af7d..b4f1b3443 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-08-26 04:05+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 05:29+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname From 7dbb1020fe499d961c6d775569e5f158b86bab85 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Thu, 30 Sep 2010 04:57:21 +0000 Subject: [PATCH 22/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5002) --- base_partner_surname/i18n/ca.po | 2 +- base_partner_surname/i18n/es.po | 2 +- base_partner_surname/i18n/fr.po | 2 +- base_partner_surname/i18n/it.po | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 746ce18e4..30f8efa98 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,7 +15,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-09-29 05:29+0000\n" +"X-Launchpad-Export-Date: 2010-09-30 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 308e982de..222bd29b8 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-09-29 05:29+0000\n" +"X-Launchpad-Export-Date: 2010-09-30 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 273c2903c..fceac4875 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-09-29 05:29+0000\n" +"X-Launchpad-Export-Date: 2010-09-30 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index b4f1b3443..6258917dd 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-09-29 05:29+0000\n" +"X-Launchpad-Export-Date: 2010-09-30 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname From 33f108fbbab8becb4176d443efdcae4ae6cd09a2 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Fri, 15 Oct 2010 04:58:13 +0000 Subject: [PATCH 23/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5025) --- base_partner_surname/i18n/ca.po | 2 +- base_partner_surname/i18n/es.po | 2 +- base_partner_surname/i18n/fr.po | 2 +- base_partner_surname/i18n/it.po | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 30f8efa98..11eb1662f 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,7 +15,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-09-30 04:55+0000\n" +"X-Launchpad-Export-Date: 2010-10-15 04:54+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 222bd29b8..1182bca7c 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-09-30 04:55+0000\n" +"X-Launchpad-Export-Date: 2010-10-15 04:54+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index fceac4875..018f2637c 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-09-30 04:55+0000\n" +"X-Launchpad-Export-Date: 2010-10-15 04:54+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 6258917dd..f2e4d8ac8 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-09-30 04:55+0000\n" +"X-Launchpad-Export-Date: 2010-10-15 04:54+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname From 8794a6f5a2d110eec6ce85bd10447d1405c782dc Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Tue, 16 Nov 2010 05:23:17 +0000 Subject: [PATCH 24/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5092.1.14) --- base_partner_surname/i18n/ca.po | 2 +- base_partner_surname/i18n/es.po | 2 +- base_partner_surname/i18n/fr.po | 2 +- base_partner_surname/i18n/it.po | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 11eb1662f..d5c593217 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,7 +15,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-10-15 04:54+0000\n" +"X-Launchpad-Export-Date: 2010-11-16 05:19+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 1182bca7c..efbac3588 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-10-15 04:54+0000\n" +"X-Launchpad-Export-Date: 2010-11-16 05:19+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 018f2637c..c0b346cfe 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-10-15 04:54+0000\n" +"X-Launchpad-Export-Date: 2010-11-16 05:19+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index f2e4d8ac8..1cad18841 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-10-15 04:54+0000\n" +"X-Launchpad-Export-Date: 2010-11-16 05:19+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname From ae74068dcfab4614a5ebe014f3f7ab17caa6fbf6 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Wed, 17 Nov 2010 05:07:06 +0000 Subject: [PATCH 25/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5092.1.28) --- base_partner_surname/i18n/ca.po | 2 +- base_partner_surname/i18n/es.po | 2 +- base_partner_surname/i18n/fr.po | 2 +- base_partner_surname/i18n/it.po | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index d5c593217..3b8cb16e4 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,7 +15,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-11-16 05:19+0000\n" +"X-Launchpad-Export-Date: 2010-11-17 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index efbac3588..656ac47f0 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-11-16 05:19+0000\n" +"X-Launchpad-Export-Date: 2010-11-17 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index c0b346cfe..c32d5e088 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-11-16 05:19+0000\n" +"X-Launchpad-Export-Date: 2010-11-17 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 1cad18841..32c171ce2 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-11-16 05:19+0000\n" +"X-Launchpad-Export-Date: 2010-11-17 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname From d70328a3b891246f8e01f727ba83d3cb4e3581be Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Mon, 22 Nov 2010 17:27:37 +0100 Subject: [PATCH 26/75] [I18N] all: additional (partial) translations, courtesy of swedish translation team (Anders Erikkson ) (../addons/extra-trunk rev 5092.1.49) --- base_partner_surname/i18n/sv.po | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 base_partner_surname/i18n/sv.po diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po new file mode 100644 index 000000000..35a182d10 --- /dev/null +++ b/base_partner_surname/i18n/sv.po @@ -0,0 +1,22 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * base_partner_surname +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.14\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2010-11-22 10:19:32+0000\n" +"PO-Revision-Date: 2010-11-22 10:19:32+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: base_partner_surname +#: model:ir.module.module,shortdesc:base_partner_surname.module_meta_information +msgid "Base Partner Surname" +msgstr "Base Partner Surname" + From 3bfb07b34197cea12b514c61b196c973c0e5c9f6 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Tue, 23 Nov 2010 05:14:57 +0000 Subject: [PATCH 27/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5092.1.50) --- base_partner_surname/i18n/sv.po | 42 +++++++++++++++++++++++++++++---- 1 file changed, 37 insertions(+), 5 deletions(-) diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index 35a182d10..a1463a2d4 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -6,17 +6,49 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.14\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-11-22 10:19:32+0000\n" -"PO-Revision-Date: 2010-11-22 10:19:32+0000\n" -"Last-Translator: <>\n" +"POT-Creation-Date: 2009-11-25 05:35+0000\n" +"PO-Revision-Date: 2010-11-22 21:29+0000\n" +"Last-Translator: Olivier Dony (OpenERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2010-11-23 05:13+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: base_partner_surname +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base_partner_surname +#: field:res.partner.address,last_name:0 +msgid "Last Name" +msgstr "" #. module: base_partner_surname #: model:ir.module.module,shortdesc:base_partner_surname.module_meta_information msgid "Base Partner Surname" msgstr "Base Partner Surname" +#. module: base_partner_surname +#: field:res.partner.address,first_name:0 +msgid "First Name" +msgstr "" + +#. module: base_partner_surname +#: model:ir.module.module,description:base_partner_surname.module_meta_information +msgid "" +"\n" +"This module use for seperate surname from contact name of partner. Now You " +"can give first name & last name on contact Name.\n" +"This module is deprecated, it is higly recommended to use base_contact " +"instead.\n" +"\n" +" " +msgstr "" + +#. module: base_partner_surname +#: view:res.partner:0 +msgid "Partner Contacts" +msgstr "" From f8f9e4deb1b3668ffc49cbce332ab7f006396227 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Wed, 1 Dec 2010 05:10:26 +0000 Subject: [PATCH 28/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5092.1.67) --- base_partner_surname/i18n/pt.po | 62 +++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 base_partner_surname/i18n/pt.po diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po new file mode 100644 index 000000000..28e882165 --- /dev/null +++ b/base_partner_surname/i18n/pt.po @@ -0,0 +1,62 @@ +# Portuguese translation for openobject-addons +# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2009-11-25 05:35+0000\n" +"PO-Revision-Date: 2010-11-30 14:52+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2010-12-01 05:10+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: base_partner_surname +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML Inválido para a Arquitectura de Vista!" + +#. module: base_partner_surname +#: field:res.partner.address,last_name:0 +msgid "Last Name" +msgstr "Ùltimo Nome" + +#. module: base_partner_surname +#: model:ir.module.module,shortdesc:base_partner_surname.module_meta_information +msgid "Base Partner Surname" +msgstr "Apelido de Terceiro Base" + +#. module: base_partner_surname +#: field:res.partner.address,first_name:0 +msgid "First Name" +msgstr "Primeiro Nome" + +#. module: base_partner_surname +#: model:ir.module.module,description:base_partner_surname.module_meta_information +msgid "" +"\n" +"This module use for seperate surname from contact name of partner. Now You " +"can give first name & last name on contact Name.\n" +"This module is deprecated, it is higly recommended to use base_contact " +"instead.\n" +"\n" +" " +msgstr "" +"\n" +"Este módulo serve para separar nome e apelido do contacto do terceiro. " +"Permite introduzir o primeiro nome e o último nome de contacto.\n" +"Este módulo é obsoleto, é altamente recomendado que utilize base_contact " +"como alternativa .\n" +"\n" +" " + +#. module: base_partner_surname +#: view:res.partner:0 +msgid "Partner Contacts" +msgstr "Contactos de Terceiros" From a1b21a16bbe80b401a5071df0bf6704b0c0c4e10 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Wed, 15 Dec 2010 05:44:29 +0000 Subject: [PATCH 29/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5096) --- base_partner_surname/i18n/ca.po | 2 +- base_partner_surname/i18n/es.po | 2 +- base_partner_surname/i18n/fr.po | 2 +- base_partner_surname/i18n/it.po | 2 +- base_partner_surname/i18n/pt.po | 2 +- base_partner_surname/i18n/sv.po | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 3b8cb16e4..c20242c13 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,7 +15,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-11-17 05:02+0000\n" +"X-Launchpad-Export-Date: 2010-12-15 05:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 656ac47f0..ee37031d7 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-11-17 05:02+0000\n" +"X-Launchpad-Export-Date: 2010-12-15 05:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index c32d5e088..23ca4c75e 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-11-17 05:02+0000\n" +"X-Launchpad-Export-Date: 2010-12-15 05:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 32c171ce2..31845d158 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-11-17 05:02+0000\n" +"X-Launchpad-Export-Date: 2010-12-15 05:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 28e882165..9401e7201 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-01 05:10+0000\n" +"X-Launchpad-Export-Date: 2010-12-15 05:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index a1463a2d4..691a74dfd 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-11-23 05:13+0000\n" +"X-Launchpad-Export-Date: 2010-12-15 05:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname From 4eacdb61137d2889efd5755f855a2225a52712fa Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Thu, 23 Dec 2010 05:22:13 +0000 Subject: [PATCH 30/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5118) --- base_partner_surname/i18n/ca.po | 2 +- base_partner_surname/i18n/es.po | 2 +- base_partner_surname/i18n/fr.po | 2 +- base_partner_surname/i18n/it.po | 2 +- base_partner_surname/i18n/pt.po | 2 +- base_partner_surname/i18n/sv.po | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index c20242c13..0a4161988 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,7 +15,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2010-12-23 05:15+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index ee37031d7..27e16c486 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2010-12-23 05:15+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 23ca4c75e..261b437af 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2010-12-23 05:15+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 31845d158..835c7c94e 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2010-12-23 05:15+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 9401e7201..47e2cb5e1 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2010-12-23 05:15+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index 691a74dfd..c8a2f08f3 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2010-12-23 05:15+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_partner_surname From 167c3dcf7b518959fd84a6309829a0229e9a3868 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Tue, 18 Jan 2011 05:30:13 +0000 Subject: [PATCH 31/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5170) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 0a4161988..4d9cabb8e 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 05:15+0000\n" -"X-Generator: Launchpad (build Unknown)\n" +"X-Launchpad-Export-Date: 2011-01-18 05:23+0000\n" +"X-Generator: Launchpad (build 12177)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 27e16c486..5e82fc194 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 05:15+0000\n" -"X-Generator: Launchpad (build Unknown)\n" +"X-Launchpad-Export-Date: 2011-01-18 05:23+0000\n" +"X-Generator: Launchpad (build 12177)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 261b437af..280edf37f 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 05:15+0000\n" -"X-Generator: Launchpad (build Unknown)\n" +"X-Launchpad-Export-Date: 2011-01-18 05:23+0000\n" +"X-Generator: Launchpad (build 12177)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 835c7c94e..972b8876d 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 05:15+0000\n" -"X-Generator: Launchpad (build Unknown)\n" +"X-Launchpad-Export-Date: 2011-01-18 05:23+0000\n" +"X-Generator: Launchpad (build 12177)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 47e2cb5e1..cc7129b1e 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 05:15+0000\n" -"X-Generator: Launchpad (build Unknown)\n" +"X-Launchpad-Export-Date: 2011-01-18 05:23+0000\n" +"X-Generator: Launchpad (build 12177)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index c8a2f08f3..41d6b5600 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 05:15+0000\n" -"X-Generator: Launchpad (build Unknown)\n" +"X-Launchpad-Export-Date: 2011-01-18 05:23+0000\n" +"X-Generator: Launchpad (build 12177)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 259dac6df249fdd19db2daebdc91f201de0ed342 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Fri, 4 Mar 2011 05:19:21 +0000 Subject: [PATCH 32/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5278) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 4d9cabb8e..3fc5d49d4 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-18 05:23+0000\n" -"X-Generator: Launchpad (build 12177)\n" +"X-Launchpad-Export-Date: 2011-03-04 05:10+0000\n" +"X-Generator: Launchpad (build 12351)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 5e82fc194..ad8b031d7 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-18 05:23+0000\n" -"X-Generator: Launchpad (build 12177)\n" +"X-Launchpad-Export-Date: 2011-03-04 05:10+0000\n" +"X-Generator: Launchpad (build 12351)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 280edf37f..c996aa1c2 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-18 05:23+0000\n" -"X-Generator: Launchpad (build 12177)\n" +"X-Launchpad-Export-Date: 2011-03-04 05:10+0000\n" +"X-Generator: Launchpad (build 12351)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 972b8876d..b1aa901b0 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-18 05:23+0000\n" -"X-Generator: Launchpad (build 12177)\n" +"X-Launchpad-Export-Date: 2011-03-04 05:10+0000\n" +"X-Generator: Launchpad (build 12351)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index cc7129b1e..f48f78879 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-18 05:23+0000\n" -"X-Generator: Launchpad (build 12177)\n" +"X-Launchpad-Export-Date: 2011-03-04 05:10+0000\n" +"X-Generator: Launchpad (build 12351)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index 41d6b5600..82ba8c2a8 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-01-18 05:23+0000\n" -"X-Generator: Launchpad (build 12177)\n" +"X-Launchpad-Export-Date: 2011-03-04 05:10+0000\n" +"X-Generator: Launchpad (build 12351)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From d20962b87ff8a60192fbd7fd13b31c7e7ab43ad6 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Thu, 7 Apr 2011 05:10:50 +0000 Subject: [PATCH 33/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5304) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 3fc5d49d4..a50526622 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-03-04 05:10+0000\n" -"X-Generator: Launchpad (build 12351)\n" +"X-Launchpad-Export-Date: 2011-04-07 05:02+0000\n" +"X-Generator: Launchpad (build 12735)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index ad8b031d7..514a55bb8 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-03-04 05:10+0000\n" -"X-Generator: Launchpad (build 12351)\n" +"X-Launchpad-Export-Date: 2011-04-07 05:02+0000\n" +"X-Generator: Launchpad (build 12735)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index c996aa1c2..52e3dc48e 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-03-04 05:10+0000\n" -"X-Generator: Launchpad (build 12351)\n" +"X-Launchpad-Export-Date: 2011-04-07 05:02+0000\n" +"X-Generator: Launchpad (build 12735)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index b1aa901b0..fd2aa3df6 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-03-04 05:10+0000\n" -"X-Generator: Launchpad (build 12351)\n" +"X-Launchpad-Export-Date: 2011-04-07 05:02+0000\n" +"X-Generator: Launchpad (build 12735)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index f48f78879..0ff67a890 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-03-04 05:10+0000\n" -"X-Generator: Launchpad (build 12351)\n" +"X-Launchpad-Export-Date: 2011-04-07 05:02+0000\n" +"X-Generator: Launchpad (build 12735)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index 82ba8c2a8..017af9d6f 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-03-04 05:10+0000\n" -"X-Generator: Launchpad (build 12351)\n" +"X-Launchpad-Export-Date: 2011-04-07 05:02+0000\n" +"X-Generator: Launchpad (build 12735)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From ec7bc0bb37b01de81ee58561ae3637a0c75e7474 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Sat, 18 Jun 2011 05:15:01 +0000 Subject: [PATCH 34/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5361) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index a50526622..3ada0d96a 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-07 05:02+0000\n" -"X-Generator: Launchpad (build 12735)\n" +"X-Launchpad-Export-Date: 2011-06-18 05:06+0000\n" +"X-Generator: Launchpad (build 13168)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 514a55bb8..0f2d3cfde 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-07 05:02+0000\n" -"X-Generator: Launchpad (build 12735)\n" +"X-Launchpad-Export-Date: 2011-06-18 05:06+0000\n" +"X-Generator: Launchpad (build 13168)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 52e3dc48e..0b9505cab 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-07 05:02+0000\n" -"X-Generator: Launchpad (build 12735)\n" +"X-Launchpad-Export-Date: 2011-06-18 05:06+0000\n" +"X-Generator: Launchpad (build 13168)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index fd2aa3df6..047c47c85 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-07 05:02+0000\n" -"X-Generator: Launchpad (build 12735)\n" +"X-Launchpad-Export-Date: 2011-06-18 05:06+0000\n" +"X-Generator: Launchpad (build 13168)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 0ff67a890..af898da5d 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-07 05:02+0000\n" -"X-Generator: Launchpad (build 12735)\n" +"X-Launchpad-Export-Date: 2011-06-18 05:06+0000\n" +"X-Generator: Launchpad (build 13168)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index 017af9d6f..d2dcbb3b3 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-07 05:02+0000\n" -"X-Generator: Launchpad (build 12735)\n" +"X-Launchpad-Export-Date: 2011-06-18 05:06+0000\n" +"X-Generator: Launchpad (build 13168)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 1df09c0f265f742c3e4ca7370c3cc1782227db9c Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Wed, 29 Jun 2011 04:54:41 +0000 Subject: [PATCH 35/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5369) --- base_partner_surname/i18n/fi.po | 55 +++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 base_partner_surname/i18n/fi.po diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po new file mode 100644 index 000000000..8d4a66ab3 --- /dev/null +++ b/base_partner_surname/i18n/fi.po @@ -0,0 +1,55 @@ +# Finnish translation for openobject-addons +# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2009-11-25 05:35+0000\n" +"PO-Revision-Date: 2011-06-28 06:54+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Finnish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-06-29 04:54+0000\n" +"X-Generator: Launchpad (build 13168)\n" + +#. module: base_partner_surname +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Virheellinen XML näkymä-arkkitehtuurille!" + +#. module: base_partner_surname +#: field:res.partner.address,last_name:0 +msgid "Last Name" +msgstr "Sukunimi" + +#. module: base_partner_surname +#: model:ir.module.module,shortdesc:base_partner_surname.module_meta_information +msgid "Base Partner Surname" +msgstr "Kumppanin sukunimi" + +#. module: base_partner_surname +#: field:res.partner.address,first_name:0 +msgid "First Name" +msgstr "Etunimi" + +#. module: base_partner_surname +#: model:ir.module.module,description:base_partner_surname.module_meta_information +msgid "" +"\n" +"This module use for seperate surname from contact name of partner. Now You " +"can give first name & last name on contact Name.\n" +"This module is deprecated, it is higly recommended to use base_contact " +"instead.\n" +"\n" +" " +msgstr "" + +#. module: base_partner_surname +#: view:res.partner:0 +msgid "Partner Contacts" +msgstr "Partnerin yhteystiedot" From 74ea87a052fb86e8261e92a46654c5eb31276e2b Mon Sep 17 00:00:00 2001 From: Maxime Chambreuil Date: Wed, 28 Sep 2011 10:12:06 -0400 Subject: [PATCH 36/75] [MERGE] (../addons/extra-trunk rev 5383.1.5) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 3ada0d96a..b274f887c 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-06-18 05:06+0000\n" -"X-Generator: Launchpad (build 13168)\n" +"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" +"X-Generator: Launchpad (build 14049)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 0f2d3cfde..6a4e6e72b 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-06-18 05:06+0000\n" -"X-Generator: Launchpad (build 13168)\n" +"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" +"X-Generator: Launchpad (build 14049)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index 8d4a66ab3..c77cd7ed3 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-06-29 04:54+0000\n" -"X-Generator: Launchpad (build 13168)\n" +"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" +"X-Generator: Launchpad (build 14049)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 0b9505cab..6b605a55e 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-06-18 05:06+0000\n" -"X-Generator: Launchpad (build 13168)\n" +"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" +"X-Generator: Launchpad (build 14049)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 047c47c85..31b056646 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-06-18 05:06+0000\n" -"X-Generator: Launchpad (build 13168)\n" +"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" +"X-Generator: Launchpad (build 14049)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index af898da5d..82f0b4ea5 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-06-18 05:06+0000\n" -"X-Generator: Launchpad (build 13168)\n" +"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" +"X-Generator: Launchpad (build 14049)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index d2dcbb3b3..417889143 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-06-18 05:06+0000\n" -"X-Generator: Launchpad (build 13168)\n" +"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" +"X-Generator: Launchpad (build 14049)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 6e59740e11c86d3708858a694b41d7bc12af25e8 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Sat, 13 Aug 2011 05:11:04 +0000 Subject: [PATCH 37/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5391) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index b274f887c..5487db13a 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" -"X-Generator: Launchpad (build 14049)\n" +"X-Launchpad-Export-Date: 2011-08-13 05:02+0000\n" +"X-Generator: Launchpad (build 13674)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 6a4e6e72b..e894a0204 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" -"X-Generator: Launchpad (build 14049)\n" +"X-Launchpad-Export-Date: 2011-08-13 05:02+0000\n" +"X-Generator: Launchpad (build 13674)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index c77cd7ed3..7d757ae28 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" -"X-Generator: Launchpad (build 14049)\n" +"X-Launchpad-Export-Date: 2011-08-13 05:02+0000\n" +"X-Generator: Launchpad (build 13674)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 6b605a55e..dd728aee0 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" -"X-Generator: Launchpad (build 14049)\n" +"X-Launchpad-Export-Date: 2011-08-13 05:02+0000\n" +"X-Generator: Launchpad (build 13674)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 31b056646..1bf31f78b 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" -"X-Generator: Launchpad (build 14049)\n" +"X-Launchpad-Export-Date: 2011-08-13 05:02+0000\n" +"X-Generator: Launchpad (build 13674)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 82f0b4ea5..3485f7c29 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" -"X-Generator: Launchpad (build 14049)\n" +"X-Launchpad-Export-Date: 2011-08-13 05:02+0000\n" +"X-Generator: Launchpad (build 13674)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index 417889143..bb1ffcc50 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" -"X-Generator: Launchpad (build 14049)\n" +"X-Launchpad-Export-Date: 2011-08-13 05:02+0000\n" +"X-Generator: Launchpad (build 13674)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From a93c9696c40103c6cdf6e86cb2078fb67789dd72 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Thu, 15 Sep 2011 05:00:20 +0000 Subject: [PATCH 38/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5456) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 5487db13a..b682bc7c3 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-08-13 05:02+0000\n" -"X-Generator: Launchpad (build 13674)\n" +"X-Launchpad-Export-Date: 2011-09-15 04:53+0000\n" +"X-Generator: Launchpad (build 13921)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index e894a0204..1d3ef423e 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-08-13 05:02+0000\n" -"X-Generator: Launchpad (build 13674)\n" +"X-Launchpad-Export-Date: 2011-09-15 04:53+0000\n" +"X-Generator: Launchpad (build 13921)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index 7d757ae28..e1ca81bad 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-08-13 05:02+0000\n" -"X-Generator: Launchpad (build 13674)\n" +"X-Launchpad-Export-Date: 2011-09-15 04:53+0000\n" +"X-Generator: Launchpad (build 13921)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index dd728aee0..27b2648a7 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-08-13 05:02+0000\n" -"X-Generator: Launchpad (build 13674)\n" +"X-Launchpad-Export-Date: 2011-09-15 04:53+0000\n" +"X-Generator: Launchpad (build 13921)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 1bf31f78b..23092701f 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-08-13 05:02+0000\n" -"X-Generator: Launchpad (build 13674)\n" +"X-Launchpad-Export-Date: 2011-09-15 04:53+0000\n" +"X-Generator: Launchpad (build 13921)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 3485f7c29..51b3e108d 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-08-13 05:02+0000\n" -"X-Generator: Launchpad (build 13674)\n" +"X-Launchpad-Export-Date: 2011-09-15 04:53+0000\n" +"X-Generator: Launchpad (build 13921)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index bb1ffcc50..392d21009 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-08-13 05:02+0000\n" -"X-Generator: Launchpad (build 13674)\n" +"X-Launchpad-Export-Date: 2011-09-15 04:53+0000\n" +"X-Generator: Launchpad (build 13921)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From b5f057c30930471214288b150f5c97f29cecebcc Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Wed, 28 Sep 2011 05:36:23 +0000 Subject: [PATCH 39/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5464) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index b682bc7c3..b274f887c 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-15 04:53+0000\n" -"X-Generator: Launchpad (build 13921)\n" +"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" +"X-Generator: Launchpad (build 14049)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 1d3ef423e..6a4e6e72b 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-15 04:53+0000\n" -"X-Generator: Launchpad (build 13921)\n" +"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" +"X-Generator: Launchpad (build 14049)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index e1ca81bad..c77cd7ed3 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-15 04:53+0000\n" -"X-Generator: Launchpad (build 13921)\n" +"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" +"X-Generator: Launchpad (build 14049)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 27b2648a7..6b605a55e 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-15 04:53+0000\n" -"X-Generator: Launchpad (build 13921)\n" +"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" +"X-Generator: Launchpad (build 14049)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 23092701f..31b056646 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-15 04:53+0000\n" -"X-Generator: Launchpad (build 13921)\n" +"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" +"X-Generator: Launchpad (build 14049)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 51b3e108d..82f0b4ea5 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-15 04:53+0000\n" -"X-Generator: Launchpad (build 13921)\n" +"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" +"X-Generator: Launchpad (build 14049)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index 392d21009..417889143 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-15 04:53+0000\n" -"X-Generator: Launchpad (build 13921)\n" +"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" +"X-Generator: Launchpad (build 14049)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From f18096c93e7cb82297c29725cb50d57bf4352dac Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Sat, 15 Oct 2011 05:09:19 +0000 Subject: [PATCH 40/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5474) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index b274f887c..d2cb9910a 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" -"X-Generator: Launchpad (build 14049)\n" +"X-Launchpad-Export-Date: 2011-10-15 05:02+0000\n" +"X-Generator: Launchpad (build 14124)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 6a4e6e72b..32de5fb53 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" -"X-Generator: Launchpad (build 14049)\n" +"X-Launchpad-Export-Date: 2011-10-15 05:02+0000\n" +"X-Generator: Launchpad (build 14124)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index c77cd7ed3..dcef411c8 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" -"X-Generator: Launchpad (build 14049)\n" +"X-Launchpad-Export-Date: 2011-10-15 05:02+0000\n" +"X-Generator: Launchpad (build 14124)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 6b605a55e..fb4582a0c 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" -"X-Generator: Launchpad (build 14049)\n" +"X-Launchpad-Export-Date: 2011-10-15 05:02+0000\n" +"X-Generator: Launchpad (build 14124)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 31b056646..79707dac4 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" -"X-Generator: Launchpad (build 14049)\n" +"X-Launchpad-Export-Date: 2011-10-15 05:02+0000\n" +"X-Generator: Launchpad (build 14124)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 82f0b4ea5..91adbda90 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" -"X-Generator: Launchpad (build 14049)\n" +"X-Launchpad-Export-Date: 2011-10-15 05:02+0000\n" +"X-Generator: Launchpad (build 14124)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index 417889143..690040724 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-28 05:28+0000\n" -"X-Generator: Launchpad (build 14049)\n" +"X-Launchpad-Export-Date: 2011-10-15 05:02+0000\n" +"X-Generator: Launchpad (build 14124)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 4a6e2f325275e68e2b2fdfa815bb83ad3537a74d Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Sun, 23 Oct 2011 05:26:06 +0000 Subject: [PATCH 41/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5484) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index d2cb9910a..3d7fd2c48 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-10-15 05:02+0000\n" -"X-Generator: Launchpad (build 14124)\n" +"X-Launchpad-Export-Date: 2011-10-23 05:19+0000\n" +"X-Generator: Launchpad (build 14170)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 32de5fb53..f75d039da 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-10-15 05:02+0000\n" -"X-Generator: Launchpad (build 14124)\n" +"X-Launchpad-Export-Date: 2011-10-23 05:19+0000\n" +"X-Generator: Launchpad (build 14170)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index dcef411c8..63945463c 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-10-15 05:02+0000\n" -"X-Generator: Launchpad (build 14124)\n" +"X-Launchpad-Export-Date: 2011-10-23 05:19+0000\n" +"X-Generator: Launchpad (build 14170)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index fb4582a0c..f295fc126 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-10-15 05:02+0000\n" -"X-Generator: Launchpad (build 14124)\n" +"X-Launchpad-Export-Date: 2011-10-23 05:19+0000\n" +"X-Generator: Launchpad (build 14170)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 79707dac4..5a5c8c86b 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-10-15 05:02+0000\n" -"X-Generator: Launchpad (build 14124)\n" +"X-Launchpad-Export-Date: 2011-10-23 05:19+0000\n" +"X-Generator: Launchpad (build 14170)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 91adbda90..61e5dc856 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-10-15 05:02+0000\n" -"X-Generator: Launchpad (build 14124)\n" +"X-Launchpad-Export-Date: 2011-10-23 05:19+0000\n" +"X-Generator: Launchpad (build 14170)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index 690040724..61ec18c0b 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-10-15 05:02+0000\n" -"X-Generator: Launchpad (build 14124)\n" +"X-Launchpad-Export-Date: 2011-10-23 05:19+0000\n" +"X-Generator: Launchpad (build 14170)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 385369847a995471b725ef7c0d533823c18bb3e0 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Wed, 9 Nov 2011 05:08:30 +0000 Subject: [PATCH 42/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5489.1.1) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 3d7fd2c48..9a53faaa9 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-10-23 05:19+0000\n" -"X-Generator: Launchpad (build 14170)\n" +"X-Launchpad-Export-Date: 2011-11-09 05:01+0000\n" +"X-Generator: Launchpad (build 14263)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index f75d039da..5f3607fe7 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-10-23 05:19+0000\n" -"X-Generator: Launchpad (build 14170)\n" +"X-Launchpad-Export-Date: 2011-11-09 05:01+0000\n" +"X-Generator: Launchpad (build 14263)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index 63945463c..09145e646 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-10-23 05:19+0000\n" -"X-Generator: Launchpad (build 14170)\n" +"X-Launchpad-Export-Date: 2011-11-09 05:01+0000\n" +"X-Generator: Launchpad (build 14263)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index f295fc126..f2c331479 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-10-23 05:19+0000\n" -"X-Generator: Launchpad (build 14170)\n" +"X-Launchpad-Export-Date: 2011-11-09 05:01+0000\n" +"X-Generator: Launchpad (build 14263)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 5a5c8c86b..55332b06c 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-10-23 05:19+0000\n" -"X-Generator: Launchpad (build 14170)\n" +"X-Launchpad-Export-Date: 2011-11-09 05:01+0000\n" +"X-Generator: Launchpad (build 14263)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 61e5dc856..f93fcd058 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-10-23 05:19+0000\n" -"X-Generator: Launchpad (build 14170)\n" +"X-Launchpad-Export-Date: 2011-11-09 05:01+0000\n" +"X-Generator: Launchpad (build 14263)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index 61ec18c0b..5fd5538ed 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-10-23 05:19+0000\n" -"X-Generator: Launchpad (build 14170)\n" +"X-Launchpad-Export-Date: 2011-11-09 05:01+0000\n" +"X-Generator: Launchpad (build 14263)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 728530cc5f826f45cecfe2d52c59b30b65c73774 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Thu, 10 Nov 2011 05:13:15 +0000 Subject: [PATCH 43/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5494) --- base_partner_surname/i18n/ca.po | 2 +- base_partner_surname/i18n/es.po | 2 +- base_partner_surname/i18n/fi.po | 2 +- base_partner_surname/i18n/fr.po | 2 +- base_partner_surname/i18n/it.po | 2 +- base_partner_surname/i18n/pt.po | 2 +- base_partner_surname/i18n/sv.po | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 9a53faaa9..de88fe222 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,7 +15,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-11-09 05:01+0000\n" +"X-Launchpad-Export-Date: 2011-11-10 05:06+0000\n" "X-Generator: Launchpad (build 14263)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 5f3607fe7..8b65338b9 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-11-09 05:01+0000\n" +"X-Launchpad-Export-Date: 2011-11-10 05:06+0000\n" "X-Generator: Launchpad (build 14263)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index 09145e646..bfd7a5491 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-11-09 05:01+0000\n" +"X-Launchpad-Export-Date: 2011-11-10 05:06+0000\n" "X-Generator: Launchpad (build 14263)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index f2c331479..4f865cede 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-11-09 05:01+0000\n" +"X-Launchpad-Export-Date: 2011-11-10 05:06+0000\n" "X-Generator: Launchpad (build 14263)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 55332b06c..2ca511924 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-11-09 05:01+0000\n" +"X-Launchpad-Export-Date: 2011-11-10 05:06+0000\n" "X-Generator: Launchpad (build 14263)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index f93fcd058..1054b5a1e 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-11-09 05:01+0000\n" +"X-Launchpad-Export-Date: 2011-11-10 05:06+0000\n" "X-Generator: Launchpad (build 14263)\n" #. module: base_partner_surname diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index 5fd5538ed..162856302 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-11-09 05:01+0000\n" +"X-Launchpad-Export-Date: 2011-11-10 05:06+0000\n" "X-Generator: Launchpad (build 14263)\n" #. module: base_partner_surname From 7b9f6df0b138d0ac1eb1213f10d0352d0b0f1968 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Sat, 3 Dec 2011 05:27:19 +0000 Subject: [PATCH 44/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5536) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index de88fe222..6bbb3d506 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-11-10 05:06+0000\n" -"X-Generator: Launchpad (build 14263)\n" +"X-Launchpad-Export-Date: 2011-12-03 05:20+0000\n" +"X-Generator: Launchpad (build 14418)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 8b65338b9..c05e7816e 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-11-10 05:06+0000\n" -"X-Generator: Launchpad (build 14263)\n" +"X-Launchpad-Export-Date: 2011-12-03 05:20+0000\n" +"X-Generator: Launchpad (build 14418)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index bfd7a5491..296a4965a 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-11-10 05:06+0000\n" -"X-Generator: Launchpad (build 14263)\n" +"X-Launchpad-Export-Date: 2011-12-03 05:20+0000\n" +"X-Generator: Launchpad (build 14418)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 4f865cede..953abb240 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-11-10 05:06+0000\n" -"X-Generator: Launchpad (build 14263)\n" +"X-Launchpad-Export-Date: 2011-12-03 05:20+0000\n" +"X-Generator: Launchpad (build 14418)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 2ca511924..6e7978afe 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-11-10 05:06+0000\n" -"X-Generator: Launchpad (build 14263)\n" +"X-Launchpad-Export-Date: 2011-12-03 05:20+0000\n" +"X-Generator: Launchpad (build 14418)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 1054b5a1e..b7d6ee806 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-11-10 05:06+0000\n" -"X-Generator: Launchpad (build 14263)\n" +"X-Launchpad-Export-Date: 2011-12-03 05:20+0000\n" +"X-Generator: Launchpad (build 14418)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index 162856302..a4834872e 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-11-10 05:06+0000\n" -"X-Generator: Launchpad (build 14263)\n" +"X-Launchpad-Export-Date: 2011-12-03 05:20+0000\n" +"X-Generator: Launchpad (build 14418)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 439421c4efa355b9d2e73c6e810ed083586324e2 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Wed, 14 Dec 2011 05:05:10 +0000 Subject: [PATCH 45/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5548) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 6bbb3d506..4b667bfee 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-12-03 05:20+0000\n" -"X-Generator: Launchpad (build 14418)\n" +"X-Launchpad-Export-Date: 2011-12-14 04:58+0000\n" +"X-Generator: Launchpad (build 14487)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index c05e7816e..e2e1d8296 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-12-03 05:20+0000\n" -"X-Generator: Launchpad (build 14418)\n" +"X-Launchpad-Export-Date: 2011-12-14 04:58+0000\n" +"X-Generator: Launchpad (build 14487)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index 296a4965a..67cd6fcec 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-12-03 05:20+0000\n" -"X-Generator: Launchpad (build 14418)\n" +"X-Launchpad-Export-Date: 2011-12-14 04:58+0000\n" +"X-Generator: Launchpad (build 14487)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 953abb240..1fc4a2d73 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-12-03 05:20+0000\n" -"X-Generator: Launchpad (build 14418)\n" +"X-Launchpad-Export-Date: 2011-12-14 04:58+0000\n" +"X-Generator: Launchpad (build 14487)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 6e7978afe..af67eb793 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-12-03 05:20+0000\n" -"X-Generator: Launchpad (build 14418)\n" +"X-Launchpad-Export-Date: 2011-12-14 04:58+0000\n" +"X-Generator: Launchpad (build 14487)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index b7d6ee806..9825da4e8 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-12-03 05:20+0000\n" -"X-Generator: Launchpad (build 14418)\n" +"X-Launchpad-Export-Date: 2011-12-14 04:58+0000\n" +"X-Generator: Launchpad (build 14487)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index a4834872e..dc3dbb642 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-12-03 05:20+0000\n" -"X-Generator: Launchpad (build 14418)\n" +"X-Launchpad-Export-Date: 2011-12-14 04:58+0000\n" +"X-Generator: Launchpad (build 14487)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 964f219012ea631a8bd12259c3bdc4ffa15d45a2 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Wed, 28 Dec 2011 05:40:50 +0000 Subject: [PATCH 46/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5569) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 4b667bfee..ad9a4f6ba 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-12-14 04:58+0000\n" -"X-Generator: Launchpad (build 14487)\n" +"X-Launchpad-Export-Date: 2011-12-28 05:33+0000\n" +"X-Generator: Launchpad (build 14560)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index e2e1d8296..65f407e4e 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-12-14 04:58+0000\n" -"X-Generator: Launchpad (build 14487)\n" +"X-Launchpad-Export-Date: 2011-12-28 05:33+0000\n" +"X-Generator: Launchpad (build 14560)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index 67cd6fcec..5f633101e 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-12-14 04:58+0000\n" -"X-Generator: Launchpad (build 14487)\n" +"X-Launchpad-Export-Date: 2011-12-28 05:33+0000\n" +"X-Generator: Launchpad (build 14560)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 1fc4a2d73..08007e0e4 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-12-14 04:58+0000\n" -"X-Generator: Launchpad (build 14487)\n" +"X-Launchpad-Export-Date: 2011-12-28 05:33+0000\n" +"X-Generator: Launchpad (build 14560)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index af67eb793..5c1485033 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-12-14 04:58+0000\n" -"X-Generator: Launchpad (build 14487)\n" +"X-Launchpad-Export-Date: 2011-12-28 05:33+0000\n" +"X-Generator: Launchpad (build 14560)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 9825da4e8..95caee881 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-12-14 04:58+0000\n" -"X-Generator: Launchpad (build 14487)\n" +"X-Launchpad-Export-Date: 2011-12-28 05:33+0000\n" +"X-Generator: Launchpad (build 14560)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index dc3dbb642..e27b53769 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-12-14 04:58+0000\n" -"X-Generator: Launchpad (build 14487)\n" +"X-Launchpad-Export-Date: 2011-12-28 05:33+0000\n" +"X-Generator: Launchpad (build 14560)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 503cdd3c7a46f9bd5f31ce5c44c14280c63b5c81 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Thu, 5 Jan 2012 05:57:15 +0000 Subject: [PATCH 47/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5574) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index ad9a4f6ba..cb1f3ddab 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-12-28 05:33+0000\n" -"X-Generator: Launchpad (build 14560)\n" +"X-Launchpad-Export-Date: 2012-01-05 05:50+0000\n" +"X-Generator: Launchpad (build 14625)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 65f407e4e..2215da133 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-12-28 05:33+0000\n" -"X-Generator: Launchpad (build 14560)\n" +"X-Launchpad-Export-Date: 2012-01-05 05:50+0000\n" +"X-Generator: Launchpad (build 14625)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index 5f633101e..dd39429bc 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-12-28 05:33+0000\n" -"X-Generator: Launchpad (build 14560)\n" +"X-Launchpad-Export-Date: 2012-01-05 05:50+0000\n" +"X-Generator: Launchpad (build 14625)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 08007e0e4..7f637e978 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-12-28 05:33+0000\n" -"X-Generator: Launchpad (build 14560)\n" +"X-Launchpad-Export-Date: 2012-01-05 05:50+0000\n" +"X-Generator: Launchpad (build 14625)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 5c1485033..d499c8199 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-12-28 05:33+0000\n" -"X-Generator: Launchpad (build 14560)\n" +"X-Launchpad-Export-Date: 2012-01-05 05:50+0000\n" +"X-Generator: Launchpad (build 14625)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 95caee881..48f396b25 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-12-28 05:33+0000\n" -"X-Generator: Launchpad (build 14560)\n" +"X-Launchpad-Export-Date: 2012-01-05 05:50+0000\n" +"X-Generator: Launchpad (build 14625)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index e27b53769..988c194b4 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-12-28 05:33+0000\n" -"X-Generator: Launchpad (build 14560)\n" +"X-Launchpad-Export-Date: 2012-01-05 05:50+0000\n" +"X-Generator: Launchpad (build 14625)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 2c538726b7ccaa8d72759d37976b694b56267d28 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Tue, 17 Jan 2012 05:06:49 +0000 Subject: [PATCH 48/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5590) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index cb1f3ddab..b0788069d 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-01-05 05:50+0000\n" -"X-Generator: Launchpad (build 14625)\n" +"X-Launchpad-Export-Date: 2012-01-17 04:59+0000\n" +"X-Generator: Launchpad (build 14676)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 2215da133..defabb083 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-01-05 05:50+0000\n" -"X-Generator: Launchpad (build 14625)\n" +"X-Launchpad-Export-Date: 2012-01-17 04:59+0000\n" +"X-Generator: Launchpad (build 14676)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index dd39429bc..8b4498a05 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-01-05 05:50+0000\n" -"X-Generator: Launchpad (build 14625)\n" +"X-Launchpad-Export-Date: 2012-01-17 04:59+0000\n" +"X-Generator: Launchpad (build 14676)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 7f637e978..a9c7e6f5f 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-01-05 05:50+0000\n" -"X-Generator: Launchpad (build 14625)\n" +"X-Launchpad-Export-Date: 2012-01-17 04:59+0000\n" +"X-Generator: Launchpad (build 14676)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index d499c8199..e24bf5ce4 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-01-05 05:50+0000\n" -"X-Generator: Launchpad (build 14625)\n" +"X-Launchpad-Export-Date: 2012-01-17 04:59+0000\n" +"X-Generator: Launchpad (build 14676)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 48f396b25..a33fc8d17 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-01-05 05:50+0000\n" -"X-Generator: Launchpad (build 14625)\n" +"X-Launchpad-Export-Date: 2012-01-17 04:59+0000\n" +"X-Generator: Launchpad (build 14676)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index 988c194b4..e776e3ec6 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-01-05 05:50+0000\n" -"X-Generator: Launchpad (build 14625)\n" +"X-Launchpad-Export-Date: 2012-01-17 04:59+0000\n" +"X-Generator: Launchpad (build 14676)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 3300bc86e1254d1bac2788dfc9db29e2811bf3d8 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Wed, 7 Mar 2012 05:33:42 +0000 Subject: [PATCH 49/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5641) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index b0788069d..9ad0c3081 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-01-17 04:59+0000\n" -"X-Generator: Launchpad (build 14676)\n" +"X-Launchpad-Export-Date: 2012-03-07 05:29+0000\n" +"X-Generator: Launchpad (build 14907)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index defabb083..5f28fbb67 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-01-17 04:59+0000\n" -"X-Generator: Launchpad (build 14676)\n" +"X-Launchpad-Export-Date: 2012-03-07 05:29+0000\n" +"X-Generator: Launchpad (build 14907)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index 8b4498a05..35622893a 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-01-17 04:59+0000\n" -"X-Generator: Launchpad (build 14676)\n" +"X-Launchpad-Export-Date: 2012-03-07 05:29+0000\n" +"X-Generator: Launchpad (build 14907)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index a9c7e6f5f..fd81fc9d8 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-01-17 04:59+0000\n" -"X-Generator: Launchpad (build 14676)\n" +"X-Launchpad-Export-Date: 2012-03-07 05:29+0000\n" +"X-Generator: Launchpad (build 14907)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index e24bf5ce4..b4ab81b36 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-01-17 04:59+0000\n" -"X-Generator: Launchpad (build 14676)\n" +"X-Launchpad-Export-Date: 2012-03-07 05:29+0000\n" +"X-Generator: Launchpad (build 14907)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index a33fc8d17..4c17117ca 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-01-17 04:59+0000\n" -"X-Generator: Launchpad (build 14676)\n" +"X-Launchpad-Export-Date: 2012-03-07 05:29+0000\n" +"X-Generator: Launchpad (build 14907)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index e776e3ec6..b9fdff567 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-01-17 04:59+0000\n" -"X-Generator: Launchpad (build 14676)\n" +"X-Launchpad-Export-Date: 2012-03-07 05:29+0000\n" +"X-Generator: Launchpad (build 14907)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From ce63d4946545caa38f8eb3269c5fada75ac25b04 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Fri, 30 Mar 2012 04:47:05 +0000 Subject: [PATCH 50/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5701) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 9ad0c3081..5e07d462d 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-03-07 05:29+0000\n" -"X-Generator: Launchpad (build 14907)\n" +"X-Launchpad-Export-Date: 2012-03-30 04:42+0000\n" +"X-Generator: Launchpad (build 15032)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 5f28fbb67..ed7097577 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-03-07 05:29+0000\n" -"X-Generator: Launchpad (build 14907)\n" +"X-Launchpad-Export-Date: 2012-03-30 04:42+0000\n" +"X-Generator: Launchpad (build 15032)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index 35622893a..73579aad6 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-03-07 05:29+0000\n" -"X-Generator: Launchpad (build 14907)\n" +"X-Launchpad-Export-Date: 2012-03-30 04:42+0000\n" +"X-Generator: Launchpad (build 15032)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index fd81fc9d8..f533d0d75 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-03-07 05:29+0000\n" -"X-Generator: Launchpad (build 14907)\n" +"X-Launchpad-Export-Date: 2012-03-30 04:42+0000\n" +"X-Generator: Launchpad (build 15032)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index b4ab81b36..0392c49c2 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-03-07 05:29+0000\n" -"X-Generator: Launchpad (build 14907)\n" +"X-Launchpad-Export-Date: 2012-03-30 04:42+0000\n" +"X-Generator: Launchpad (build 15032)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 4c17117ca..871e121d0 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-03-07 05:29+0000\n" -"X-Generator: Launchpad (build 14907)\n" +"X-Launchpad-Export-Date: 2012-03-30 04:42+0000\n" +"X-Generator: Launchpad (build 15032)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index b9fdff567..7ee3a588f 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-03-07 05:29+0000\n" -"X-Generator: Launchpad (build 14907)\n" +"X-Launchpad-Export-Date: 2012-03-30 04:42+0000\n" +"X-Generator: Launchpad (build 15032)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 2567987a026b2a9625eb430fecfe70ea150ea508 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Tue, 17 Apr 2012 05:23:16 +0000 Subject: [PATCH 51/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5720) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 5e07d462d..c2adda8ed 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-03-30 04:42+0000\n" -"X-Generator: Launchpad (build 15032)\n" +"X-Launchpad-Export-Date: 2012-04-17 05:18+0000\n" +"X-Generator: Launchpad (build 15099)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index ed7097577..6c84fcc38 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-03-30 04:42+0000\n" -"X-Generator: Launchpad (build 15032)\n" +"X-Launchpad-Export-Date: 2012-04-17 05:18+0000\n" +"X-Generator: Launchpad (build 15099)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index 73579aad6..8b00e6ac2 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-03-30 04:42+0000\n" -"X-Generator: Launchpad (build 15032)\n" +"X-Launchpad-Export-Date: 2012-04-17 05:18+0000\n" +"X-Generator: Launchpad (build 15099)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index f533d0d75..2791c4ae1 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-03-30 04:42+0000\n" -"X-Generator: Launchpad (build 15032)\n" +"X-Launchpad-Export-Date: 2012-04-17 05:18+0000\n" +"X-Generator: Launchpad (build 15099)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 0392c49c2..b7acd43a1 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-03-30 04:42+0000\n" -"X-Generator: Launchpad (build 15032)\n" +"X-Launchpad-Export-Date: 2012-04-17 05:18+0000\n" +"X-Generator: Launchpad (build 15099)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 871e121d0..5da16f589 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-03-30 04:42+0000\n" -"X-Generator: Launchpad (build 15032)\n" +"X-Launchpad-Export-Date: 2012-04-17 05:18+0000\n" +"X-Generator: Launchpad (build 15099)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index 7ee3a588f..8c7a66f02 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-03-30 04:42+0000\n" -"X-Generator: Launchpad (build 15032)\n" +"X-Launchpad-Export-Date: 2012-04-17 05:18+0000\n" +"X-Generator: Launchpad (build 15099)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 8d36b55ec60a7de8543ec0291f9f2695783539cc Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Thu, 3 May 2012 05:38:55 +0000 Subject: [PATCH 52/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5734) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index c2adda8ed..d52e84205 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-04-17 05:18+0000\n" -"X-Generator: Launchpad (build 15099)\n" +"X-Launchpad-Export-Date: 2012-05-03 05:34+0000\n" +"X-Generator: Launchpad (build 15185)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 6c84fcc38..810431f94 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-04-17 05:18+0000\n" -"X-Generator: Launchpad (build 15099)\n" +"X-Launchpad-Export-Date: 2012-05-03 05:34+0000\n" +"X-Generator: Launchpad (build 15185)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index 8b00e6ac2..b6217b669 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-04-17 05:18+0000\n" -"X-Generator: Launchpad (build 15099)\n" +"X-Launchpad-Export-Date: 2012-05-03 05:34+0000\n" +"X-Generator: Launchpad (build 15185)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 2791c4ae1..4e1c57615 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-04-17 05:18+0000\n" -"X-Generator: Launchpad (build 15099)\n" +"X-Launchpad-Export-Date: 2012-05-03 05:34+0000\n" +"X-Generator: Launchpad (build 15185)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index b7acd43a1..b52c410c1 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-04-17 05:18+0000\n" -"X-Generator: Launchpad (build 15099)\n" +"X-Launchpad-Export-Date: 2012-05-03 05:34+0000\n" +"X-Generator: Launchpad (build 15185)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 5da16f589..99c17da35 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-04-17 05:18+0000\n" -"X-Generator: Launchpad (build 15099)\n" +"X-Launchpad-Export-Date: 2012-05-03 05:34+0000\n" +"X-Generator: Launchpad (build 15185)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index 8c7a66f02..abeb56121 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-04-17 05:18+0000\n" -"X-Generator: Launchpad (build 15099)\n" +"X-Launchpad-Export-Date: 2012-05-03 05:34+0000\n" +"X-Generator: Launchpad (build 15185)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 82c0a5a3b6b9573186e4206e6c86bd9bde94b654 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Wed, 16 May 2012 05:08:08 +0000 Subject: [PATCH 53/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5740) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index d52e84205..c93f20dac 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-03 05:34+0000\n" -"X-Generator: Launchpad (build 15185)\n" +"X-Launchpad-Export-Date: 2012-05-16 05:03+0000\n" +"X-Generator: Launchpad (build 15247)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 810431f94..4a1d51e03 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-03 05:34+0000\n" -"X-Generator: Launchpad (build 15185)\n" +"X-Launchpad-Export-Date: 2012-05-16 05:03+0000\n" +"X-Generator: Launchpad (build 15247)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index b6217b669..1e3ca7b66 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-03 05:34+0000\n" -"X-Generator: Launchpad (build 15185)\n" +"X-Launchpad-Export-Date: 2012-05-16 05:03+0000\n" +"X-Generator: Launchpad (build 15247)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 4e1c57615..4728f72aa 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-03 05:34+0000\n" -"X-Generator: Launchpad (build 15185)\n" +"X-Launchpad-Export-Date: 2012-05-16 05:03+0000\n" +"X-Generator: Launchpad (build 15247)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index b52c410c1..0cddf3b7f 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-03 05:34+0000\n" -"X-Generator: Launchpad (build 15185)\n" +"X-Launchpad-Export-Date: 2012-05-16 05:03+0000\n" +"X-Generator: Launchpad (build 15247)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 99c17da35..ab3a703d1 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-03 05:34+0000\n" -"X-Generator: Launchpad (build 15185)\n" +"X-Launchpad-Export-Date: 2012-05-16 05:03+0000\n" +"X-Generator: Launchpad (build 15247)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index abeb56121..68547afa4 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-03 05:34+0000\n" -"X-Generator: Launchpad (build 15185)\n" +"X-Launchpad-Export-Date: 2012-05-16 05:03+0000\n" +"X-Generator: Launchpad (build 15247)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 89fb533088306a0333287d934bb5ae71d58e577b Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Thu, 24 May 2012 11:39:07 +0000 Subject: [PATCH 54/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5757) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index c93f20dac..b078410a5 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-16 05:03+0000\n" -"X-Generator: Launchpad (build 15247)\n" +"X-Launchpad-Export-Date: 2012-05-24 11:35+0000\n" +"X-Generator: Launchpad (build 15288)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 4a1d51e03..96fbc3293 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-16 05:03+0000\n" -"X-Generator: Launchpad (build 15247)\n" +"X-Launchpad-Export-Date: 2012-05-24 11:35+0000\n" +"X-Generator: Launchpad (build 15288)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index 1e3ca7b66..fedf257bb 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-16 05:03+0000\n" -"X-Generator: Launchpad (build 15247)\n" +"X-Launchpad-Export-Date: 2012-05-24 11:35+0000\n" +"X-Generator: Launchpad (build 15288)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 4728f72aa..f8de50ad9 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-16 05:03+0000\n" -"X-Generator: Launchpad (build 15247)\n" +"X-Launchpad-Export-Date: 2012-05-24 11:35+0000\n" +"X-Generator: Launchpad (build 15288)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 0cddf3b7f..4fe586468 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-16 05:03+0000\n" -"X-Generator: Launchpad (build 15247)\n" +"X-Launchpad-Export-Date: 2012-05-24 11:35+0000\n" +"X-Generator: Launchpad (build 15288)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index ab3a703d1..87d2f226d 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-16 05:03+0000\n" -"X-Generator: Launchpad (build 15247)\n" +"X-Launchpad-Export-Date: 2012-05-24 11:35+0000\n" +"X-Generator: Launchpad (build 15288)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index 68547afa4..6374173b7 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-16 05:03+0000\n" -"X-Generator: Launchpad (build 15247)\n" +"X-Launchpad-Export-Date: 2012-05-24 11:35+0000\n" +"X-Generator: Launchpad (build 15288)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From c3077ff4dfaddd324853a236f334cebca5fcc900 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Fri, 13 Jul 2012 05:03:21 +0000 Subject: [PATCH 55/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5768.1.7) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index b078410a5..3ce471ca1 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-24 11:35+0000\n" -"X-Generator: Launchpad (build 15288)\n" +"X-Launchpad-Export-Date: 2012-07-13 04:58+0000\n" +"X-Generator: Launchpad (build 15614)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 96fbc3293..d21626000 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-24 11:35+0000\n" -"X-Generator: Launchpad (build 15288)\n" +"X-Launchpad-Export-Date: 2012-07-13 04:58+0000\n" +"X-Generator: Launchpad (build 15614)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index fedf257bb..4c0679055 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-24 11:35+0000\n" -"X-Generator: Launchpad (build 15288)\n" +"X-Launchpad-Export-Date: 2012-07-13 04:58+0000\n" +"X-Generator: Launchpad (build 15614)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index f8de50ad9..d0490422c 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-24 11:35+0000\n" -"X-Generator: Launchpad (build 15288)\n" +"X-Launchpad-Export-Date: 2012-07-13 04:58+0000\n" +"X-Generator: Launchpad (build 15614)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 4fe586468..92066b578 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-24 11:35+0000\n" -"X-Generator: Launchpad (build 15288)\n" +"X-Launchpad-Export-Date: 2012-07-13 04:58+0000\n" +"X-Generator: Launchpad (build 15614)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 87d2f226d..2da8935d1 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-24 11:35+0000\n" -"X-Generator: Launchpad (build 15288)\n" +"X-Launchpad-Export-Date: 2012-07-13 04:58+0000\n" +"X-Generator: Launchpad (build 15614)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index 6374173b7..ec8662ef7 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-05-24 11:35+0000\n" -"X-Generator: Launchpad (build 15288)\n" +"X-Launchpad-Export-Date: 2012-07-13 04:58+0000\n" +"X-Generator: Launchpad (build 15614)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 761d90e33c00e4cd9f37c58a74ab2eed5eb20cbb Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Wed, 25 Jul 2012 04:50:06 +0000 Subject: [PATCH 56/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5773) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 3ce471ca1..4649a1b7d 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-07-13 04:58+0000\n" -"X-Generator: Launchpad (build 15614)\n" +"X-Launchpad-Export-Date: 2012-07-25 04:46+0000\n" +"X-Generator: Launchpad (build 15679)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index d21626000..53aac0817 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-07-13 04:58+0000\n" -"X-Generator: Launchpad (build 15614)\n" +"X-Launchpad-Export-Date: 2012-07-25 04:46+0000\n" +"X-Generator: Launchpad (build 15679)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index 4c0679055..ad1087f45 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-07-13 04:58+0000\n" -"X-Generator: Launchpad (build 15614)\n" +"X-Launchpad-Export-Date: 2012-07-25 04:46+0000\n" +"X-Generator: Launchpad (build 15679)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index d0490422c..95d1fe53c 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-07-13 04:58+0000\n" -"X-Generator: Launchpad (build 15614)\n" +"X-Launchpad-Export-Date: 2012-07-25 04:46+0000\n" +"X-Generator: Launchpad (build 15679)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 92066b578..c0dbfc79c 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-07-13 04:58+0000\n" -"X-Generator: Launchpad (build 15614)\n" +"X-Launchpad-Export-Date: 2012-07-25 04:46+0000\n" +"X-Generator: Launchpad (build 15679)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 2da8935d1..7e20c35be 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-07-13 04:58+0000\n" -"X-Generator: Launchpad (build 15614)\n" +"X-Launchpad-Export-Date: 2012-07-25 04:46+0000\n" +"X-Generator: Launchpad (build 15679)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index ec8662ef7..390d9953e 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-07-13 04:58+0000\n" -"X-Generator: Launchpad (build 15614)\n" +"X-Launchpad-Export-Date: 2012-07-25 04:46+0000\n" +"X-Generator: Launchpad (build 15679)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From eeaab2f1bab2980430c32509df80fa61ee546b1b Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Thu, 2 Aug 2012 04:59:16 +0000 Subject: [PATCH 57/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5780) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 4649a1b7d..a33cb34f6 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-07-25 04:46+0000\n" -"X-Generator: Launchpad (build 15679)\n" +"X-Launchpad-Export-Date: 2012-08-02 04:54+0000\n" +"X-Generator: Launchpad (build 15719)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 53aac0817..ac2fbf199 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-07-25 04:46+0000\n" -"X-Generator: Launchpad (build 15679)\n" +"X-Launchpad-Export-Date: 2012-08-02 04:54+0000\n" +"X-Generator: Launchpad (build 15719)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index ad1087f45..06ca4e50a 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-07-25 04:46+0000\n" -"X-Generator: Launchpad (build 15679)\n" +"X-Launchpad-Export-Date: 2012-08-02 04:54+0000\n" +"X-Generator: Launchpad (build 15719)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 95d1fe53c..cefbc6316 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-07-25 04:46+0000\n" -"X-Generator: Launchpad (build 15679)\n" +"X-Launchpad-Export-Date: 2012-08-02 04:54+0000\n" +"X-Generator: Launchpad (build 15719)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index c0dbfc79c..3e54aea9f 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-07-25 04:46+0000\n" -"X-Generator: Launchpad (build 15679)\n" +"X-Launchpad-Export-Date: 2012-08-02 04:54+0000\n" +"X-Generator: Launchpad (build 15719)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 7e20c35be..80197b44e 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-07-25 04:46+0000\n" -"X-Generator: Launchpad (build 15679)\n" +"X-Launchpad-Export-Date: 2012-08-02 04:54+0000\n" +"X-Generator: Launchpad (build 15719)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index 390d9953e..32f5918bb 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-07-25 04:46+0000\n" -"X-Generator: Launchpad (build 15679)\n" +"X-Launchpad-Export-Date: 2012-08-02 04:54+0000\n" +"X-Generator: Launchpad (build 15719)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 09ad97877fb3bbceae0f32e49d168df3e659b186 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Tue, 14 Aug 2012 04:59:14 +0000 Subject: [PATCH 58/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5783) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index a33cb34f6..44d70472d 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-02 04:54+0000\n" -"X-Generator: Launchpad (build 15719)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:55+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index ac2fbf199..952e843f0 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-02 04:54+0000\n" -"X-Generator: Launchpad (build 15719)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:55+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index 06ca4e50a..5ff96c36f 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-02 04:54+0000\n" -"X-Generator: Launchpad (build 15719)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:55+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index cefbc6316..2d9cd6421 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-02 04:54+0000\n" -"X-Generator: Launchpad (build 15719)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:55+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 3e54aea9f..b45bf63b3 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-02 04:54+0000\n" -"X-Generator: Launchpad (build 15719)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:55+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 80197b44e..6db7438d1 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-02 04:54+0000\n" -"X-Generator: Launchpad (build 15719)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:55+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index 32f5918bb..d0b961b27 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-02 04:54+0000\n" -"X-Generator: Launchpad (build 15719)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:55+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 893a3560f9d56b7094590d91d83c75c8578f1402 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Tue, 28 Aug 2012 07:17:13 +0000 Subject: [PATCH 59/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5787) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 44d70472d..57550598b 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-14 04:55+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 07:12+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 952e843f0..8415905f3 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-14 04:55+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 07:12+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index 5ff96c36f..75d935219 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-14 04:55+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 07:12+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 2d9cd6421..464a64385 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-14 04:55+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 07:12+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index b45bf63b3..6dbca46d2 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-14 04:55+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 07:12+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 6db7438d1..3664b466a 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-14 04:55+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 07:12+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index d0b961b27..b7a9e7caa 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-14 04:55+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 07:12+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 27ada93856473bfa375b9e55de4447bb4637045f Mon Sep 17 00:00:00 2001 From: Serpent Consulting Services Date: Wed, 5 Sep 2012 00:44:11 +0530 Subject: [PATCH 60/75] [FIX] base_partner_surname : Made 6.1+ compatible (../addons/extra-trunk rev 5789) --- base_partner_surname/__openerp__.py | 39 +++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100755 base_partner_surname/__openerp__.py diff --git a/base_partner_surname/__openerp__.py b/base_partner_surname/__openerp__.py new file mode 100755 index 000000000..cd4878a34 --- /dev/null +++ b/base_partner_surname/__openerp__.py @@ -0,0 +1,39 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2009 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +{ + "name" : "Base Partner Surname", + "version" : "1.0", + "author" : "Tiny", + "website" : "http://www.openerp.com", + "category" : "Generic Modules/Base", + "description": """ +This module use for seperate surname from contact name of partner. Now You can give first name & last name on contact Name. +This module is deprecated, it is higly recommended to use base_contact instead. + + """, + "depends" : ["base"], + "init_xml" : [ ], + "demo_xml" : [ ], + "update_xml" : [ "partner_view.xml" ], + "installable": True +} +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: + From 5edbc16b7d838668b3908bc5fdbff5e8e463af81 Mon Sep 17 00:00:00 2001 From: Serpent Consulting Services Date: Wed, 5 Sep 2012 00:50:20 +0530 Subject: [PATCH 61/75] [FIX] base_partner_surname : Made 6.1+ compatible + code optimization (../addons/extra-trunk rev 5790) --- base_partner_surname/partner.py | 40 +++++++++++++++------------------ 1 file changed, 18 insertions(+), 22 deletions(-) diff --git a/base_partner_surname/partner.py b/base_partner_surname/partner.py index 9b47c2b41..80f0ed086 100644 --- a/base_partner_surname/partner.py +++ b/base_partner_surname/partner.py @@ -19,48 +19,44 @@ # ############################################################################## -from osv import fields,osv -from mx import DateTime -import tools -import ir -import pooler -import time +from osv import fields, osv + class res_partner_address(osv.osv): - _name = 'res.partner.address' - _inherit ='res.partner.address' + _inherit = 'res.partner.address' _columns = { 'first_name' : fields.char('First Name', size=128), 'last_name' : fields.char('Last Name', size=128), - 'name' : fields.char('Name', size=128,readonly=True), + 'name' : fields.char('Name', size=128, readonly=True), } + def write(self, cr, uid, ids, vals, context={}): - first_name='' - last_name='' + first_name = '' + last_name = '' if 'first_name' in vals and vals['first_name']: - first_name=vals['first_name'] + first_name = vals['first_name'] if 'last_name' in vals and vals['last_name']: - last_name=vals['last_name'] + last_name = vals['last_name'] - vals['name']= first_name + ' ' + last_name + vals['name'] = first_name + ' ' + last_name return super(res_partner_address, self).write(cr, uid, ids, vals, context) def create(self, cr, uid, vals, context={}): - first_name='' - last_name='' + first_name = '' + last_name = '' if 'first_name' in vals and vals['first_name']: - first_name=vals['first_name'] + first_name = vals['first_name'] if 'last_name' in vals and vals['last_name']: - last_name=vals['last_name'] + last_name = vals['last_name'] - vals['name']= first_name + ' ' + last_name + vals['name'] = first_name + ' ' + last_name return super(res_partner_address, self).create(cr, uid, vals, context) - def onchange_name(self, cr, uid, id, first_name,last_name,context={}): + def onchange_name(self, cr, uid, id, first_name, last_name, context={}): if not first_name: - first_name='' + first_name = '' if not last_name: - last_name='' + last_name = '' return {'value': {'name': first_name + ' ' + last_name}} res_partner_address() From c7da365ff90b6f448919acfb997924f60d85bd04 Mon Sep 17 00:00:00 2001 From: Serpent Consulting Services Date: Wed, 5 Sep 2012 01:57:27 +0530 Subject: [PATCH 62/75] [FIX] base_partner_surname : bugfix and code optimization (../addons/extra-trunk rev 5791) --- base_partner_surname/__init__.py | 2 +- base_partner_surname/__openerp__.py | 9 +++-- base_partner_surname/partner.py | 47 ++++++++++++++-------- base_partner_surname/partner_view.xml | 56 +++++++++++++-------------- 4 files changed, 64 insertions(+), 50 deletions(-) diff --git a/base_partner_surname/__init__.py b/base_partner_surname/__init__.py index b98977515..f863de6d8 100644 --- a/base_partner_surname/__init__.py +++ b/base_partner_surname/__init__.py @@ -19,5 +19,5 @@ # ############################################################################## import partner -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/base_partner_surname/__openerp__.py b/base_partner_surname/__openerp__.py index cd4878a34..f4ede8364 100755 --- a/base_partner_surname/__openerp__.py +++ b/base_partner_surname/__openerp__.py @@ -21,19 +21,20 @@ { "name" : "Base Partner Surname", "version" : "1.0", - "author" : "Tiny", + "author" : "Tiny, Serpent Consulting Services", "website" : "http://www.openerp.com", "category" : "Generic Modules/Base", "description": """ -This module use for seperate surname from contact name of partner. Now You can give first name & last name on contact Name. -This module is deprecated, it is higly recommended to use base_contact instead. +This module is used for separate surname from contact name of partner. Now You can give first name & last name on contact Name. +This module is deprecated, it is highly recommended to use base_contact instead. """, "depends" : ["base"], "init_xml" : [ ], "demo_xml" : [ ], "update_xml" : [ "partner_view.xml" ], - "installable": True + "installable": True, + "auto_install": False } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/base_partner_surname/partner.py b/base_partner_surname/partner.py index 80f0ed086..13932c6d1 100644 --- a/base_partner_surname/partner.py +++ b/base_partner_surname/partner.py @@ -30,34 +30,47 @@ class res_partner_address(osv.osv): 'name' : fields.char('Name', size=128, readonly=True), } - def write(self, cr, uid, ids, vals, context={}): - first_name = '' - last_name = '' - if 'first_name' in vals and vals['first_name']: - first_name = vals['first_name'] - if 'last_name' in vals and vals['last_name']: - last_name = vals['last_name'] + def write(self, cr, uid, ids, vals, context=None): + if context is None: + context = {} + if isinstance(ids,list): + ids = ids[0] + data = self.read(cr, uid, ids, ['first_name','last_name'], context=context) + first_name = data['first_name'] or '' + if 'first_name' in vals: + first_name = vals['first_name'] or '' + + last_name = data['last_name'] or '' + if 'last_name' in vals: + last_name = vals['last_name'] or '' - vals['name'] = first_name + ' ' + last_name + if first_name or last_name: + vals['name'] = first_name + ' ' + last_name return super(res_partner_address, self).write(cr, uid, ids, vals, context) - def create(self, cr, uid, vals, context={}): + def create(self, cr, uid, vals, context=None): + if context is None: + context = {} first_name = '' last_name = '' - if 'first_name' in vals and vals['first_name']: - first_name = vals['first_name'] - if 'last_name' in vals and vals['last_name']: - last_name = vals['last_name'] - - vals['name'] = first_name + ' ' + last_name + if 'first_name' in vals: + first_name = vals['first_name'] or '' + if 'last_name' in vals: + last_name = vals['last_name'] or '' + + if first_name or last_name: + vals['name'] = first_name + ' ' + last_name return super(res_partner_address, self).create(cr, uid, vals, context) - def onchange_name(self, cr, uid, id, first_name, last_name, context={}): + def onchange_name(self, cr, uid, id, first_name, last_name): + res = {} if not first_name: first_name = '' if not last_name: last_name = '' - return {'value': {'name': first_name + ' ' + last_name}} + if first_name or last_name: + res = {'name': first_name + ' ' + last_name} + return {'value': res} res_partner_address() # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/base_partner_surname/partner_view.xml b/base_partner_surname/partner_view.xml index b078d29a0..205242e68 100644 --- a/base_partner_surname/partner_view.xml +++ b/base_partner_surname/partner_view.xml @@ -1,7 +1,7 @@ - + res.partner.address.form1.inherit res.partner.address form @@ -21,35 +21,35 @@ form - -
- - - - - - - - - - - - - - - - - - - - - - - - - + + +
+ + + + + + + + + + + + + + + + + + + + + + +
+
From c288d3f981d92a990edf1f229103a13d06ea3daa Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Sat, 22 Sep 2012 05:09:58 +0000 Subject: [PATCH 63/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5798) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 57550598b..6bf694942 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-28 07:12+0000\n" -"X-Generator: Launchpad (build 15864)\n" +"X-Launchpad-Export-Date: 2012-09-22 05:06+0000\n" +"X-Generator: Launchpad (build 15985)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 8415905f3..b08bd054d 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-28 07:12+0000\n" -"X-Generator: Launchpad (build 15864)\n" +"X-Launchpad-Export-Date: 2012-09-22 05:06+0000\n" +"X-Generator: Launchpad (build 15985)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index 75d935219..1048ee1cb 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-28 07:12+0000\n" -"X-Generator: Launchpad (build 15864)\n" +"X-Launchpad-Export-Date: 2012-09-22 05:06+0000\n" +"X-Generator: Launchpad (build 15985)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 464a64385..5aaf3e6ba 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-28 07:12+0000\n" -"X-Generator: Launchpad (build 15864)\n" +"X-Launchpad-Export-Date: 2012-09-22 05:06+0000\n" +"X-Generator: Launchpad (build 15985)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 6dbca46d2..1ed3e3a35 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-28 07:12+0000\n" -"X-Generator: Launchpad (build 15864)\n" +"X-Launchpad-Export-Date: 2012-09-22 05:06+0000\n" +"X-Generator: Launchpad (build 15985)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 3664b466a..d00b35eda 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-28 07:12+0000\n" -"X-Generator: Launchpad (build 15864)\n" +"X-Launchpad-Export-Date: 2012-09-22 05:06+0000\n" +"X-Generator: Launchpad (build 15985)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index b7a9e7caa..3d7334172 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-28 07:12+0000\n" -"X-Generator: Launchpad (build 15864)\n" +"X-Launchpad-Export-Date: 2012-09-22 05:06+0000\n" +"X-Generator: Launchpad (build 15985)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 691511455bfe086276a3e5e8e066f6a4249581be Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Wed, 3 Oct 2012 05:26:13 +0000 Subject: [PATCH 64/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5808) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 6bf694942..ed77b5195 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-22 05:06+0000\n" -"X-Generator: Launchpad (build 15985)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:22+0000\n" +"X-Generator: Launchpad (build 16061)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index b08bd054d..7a13615dc 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-22 05:06+0000\n" -"X-Generator: Launchpad (build 15985)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:22+0000\n" +"X-Generator: Launchpad (build 16061)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index 1048ee1cb..b2a1ec7a0 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-22 05:06+0000\n" -"X-Generator: Launchpad (build 15985)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:22+0000\n" +"X-Generator: Launchpad (build 16061)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 5aaf3e6ba..3b86e74cb 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-22 05:06+0000\n" -"X-Generator: Launchpad (build 15985)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:22+0000\n" +"X-Generator: Launchpad (build 16061)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 1ed3e3a35..8f7d31aff 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-22 05:06+0000\n" -"X-Generator: Launchpad (build 15985)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:22+0000\n" +"X-Generator: Launchpad (build 16061)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index d00b35eda..c83650a44 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-22 05:06+0000\n" -"X-Generator: Launchpad (build 15985)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:22+0000\n" +"X-Generator: Launchpad (build 16061)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index 3d7334172..558e399e2 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-22 05:06+0000\n" -"X-Generator: Launchpad (build 15985)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:22+0000\n" +"X-Generator: Launchpad (build 16061)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From ef697b3038d030d4be3353d1e458266f950fed6c Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Thu, 11 Oct 2012 05:20:00 +0000 Subject: [PATCH 65/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5815) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index ed77b5195..21a5ca53d 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-03 05:22+0000\n" -"X-Generator: Launchpad (build 16061)\n" +"X-Launchpad-Export-Date: 2012-10-11 05:16+0000\n" +"X-Generator: Launchpad (build 16118)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 7a13615dc..db3183737 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-03 05:22+0000\n" -"X-Generator: Launchpad (build 16061)\n" +"X-Launchpad-Export-Date: 2012-10-11 05:16+0000\n" +"X-Generator: Launchpad (build 16118)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index b2a1ec7a0..70270d781 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-03 05:22+0000\n" -"X-Generator: Launchpad (build 16061)\n" +"X-Launchpad-Export-Date: 2012-10-11 05:16+0000\n" +"X-Generator: Launchpad (build 16118)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 3b86e74cb..52fbf0e38 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-03 05:22+0000\n" -"X-Generator: Launchpad (build 16061)\n" +"X-Launchpad-Export-Date: 2012-10-11 05:16+0000\n" +"X-Generator: Launchpad (build 16118)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 8f7d31aff..c9d40f615 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-03 05:22+0000\n" -"X-Generator: Launchpad (build 16061)\n" +"X-Launchpad-Export-Date: 2012-10-11 05:16+0000\n" +"X-Generator: Launchpad (build 16118)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index c83650a44..4aa3b5f87 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-03 05:22+0000\n" -"X-Generator: Launchpad (build 16061)\n" +"X-Launchpad-Export-Date: 2012-10-11 05:16+0000\n" +"X-Generator: Launchpad (build 16118)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index 558e399e2..8c523a92d 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-03 05:22+0000\n" -"X-Generator: Launchpad (build 16061)\n" +"X-Launchpad-Export-Date: 2012-10-11 05:16+0000\n" +"X-Generator: Launchpad (build 16118)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 975614f4e84f38c9478848dcb01a90ac913ca849 Mon Sep 17 00:00:00 2001 From: sebastien beau Date: Tue, 16 Oct 2012 19:05:02 +0200 Subject: [PATCH 66/75] [REF] base_partner_surname : refactor view (../addons/extra-trunk rev 5822) --- base_partner_surname/partner_view.xml | 33 ++++----------------------- 1 file changed, 5 insertions(+), 28 deletions(-) diff --git a/base_partner_surname/partner_view.xml b/base_partner_surname/partner_view.xml index 205242e68..799d64407 100644 --- a/base_partner_surname/partner_view.xml +++ b/base_partner_surname/partner_view.xml @@ -21,35 +21,12 @@ form - - -
- - - - - - - - - - - - - - - - - - - - - - - - + + + + + - From 609bf7c76fc8a29b0d7561d369a13727c496ca53 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Tue, 23 Oct 2012 05:04:39 +0000 Subject: [PATCH 67/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5823.1.1) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 21a5ca53d..70e4a2ad4 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-11 05:16+0000\n" -"X-Generator: Launchpad (build 16118)\n" +"X-Launchpad-Export-Date: 2012-10-23 05:00+0000\n" +"X-Generator: Launchpad (build 16179)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index db3183737..a578456b2 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-11 05:16+0000\n" -"X-Generator: Launchpad (build 16118)\n" +"X-Launchpad-Export-Date: 2012-10-23 05:01+0000\n" +"X-Generator: Launchpad (build 16179)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index 70270d781..3da29514b 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-11 05:16+0000\n" -"X-Generator: Launchpad (build 16118)\n" +"X-Launchpad-Export-Date: 2012-10-23 05:00+0000\n" +"X-Generator: Launchpad (build 16179)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 52fbf0e38..cbabcccc7 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-11 05:16+0000\n" -"X-Generator: Launchpad (build 16118)\n" +"X-Launchpad-Export-Date: 2012-10-23 05:01+0000\n" +"X-Generator: Launchpad (build 16179)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index c9d40f615..4422baaa2 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-11 05:16+0000\n" -"X-Generator: Launchpad (build 16118)\n" +"X-Launchpad-Export-Date: 2012-10-23 05:01+0000\n" +"X-Generator: Launchpad (build 16179)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 4aa3b5f87..6b5126b6a 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-11 05:16+0000\n" -"X-Generator: Launchpad (build 16118)\n" +"X-Launchpad-Export-Date: 2012-10-23 05:01+0000\n" +"X-Generator: Launchpad (build 16179)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index 8c523a92d..a62d9aadc 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-11 05:16+0000\n" -"X-Generator: Launchpad (build 16118)\n" +"X-Launchpad-Export-Date: 2012-10-23 05:01+0000\n" +"X-Generator: Launchpad (build 16179)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From f4c855bf1dddb79dc438f4cfd21e7f1dbac77149 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Wed, 31 Oct 2012 04:50:12 +0000 Subject: [PATCH 68/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5823.1.10) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 70e4a2ad4..84f05b445 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-23 05:00+0000\n" -"X-Generator: Launchpad (build 16179)\n" +"X-Launchpad-Export-Date: 2012-10-31 04:46+0000\n" +"X-Generator: Launchpad (build 16218)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index a578456b2..4fb626550 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-23 05:01+0000\n" -"X-Generator: Launchpad (build 16179)\n" +"X-Launchpad-Export-Date: 2012-10-31 04:46+0000\n" +"X-Generator: Launchpad (build 16218)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index 3da29514b..a2cadc105 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-23 05:00+0000\n" -"X-Generator: Launchpad (build 16179)\n" +"X-Launchpad-Export-Date: 2012-10-31 04:46+0000\n" +"X-Generator: Launchpad (build 16218)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index cbabcccc7..88705de7a 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-23 05:01+0000\n" -"X-Generator: Launchpad (build 16179)\n" +"X-Launchpad-Export-Date: 2012-10-31 04:46+0000\n" +"X-Generator: Launchpad (build 16218)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 4422baaa2..9f06b54ab 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-23 05:01+0000\n" -"X-Generator: Launchpad (build 16179)\n" +"X-Launchpad-Export-Date: 2012-10-31 04:46+0000\n" +"X-Generator: Launchpad (build 16218)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 6b5126b6a..88706ee50 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-23 05:01+0000\n" -"X-Generator: Launchpad (build 16179)\n" +"X-Launchpad-Export-Date: 2012-10-31 04:46+0000\n" +"X-Generator: Launchpad (build 16218)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index a62d9aadc..bcda075ac 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-23 05:01+0000\n" -"X-Generator: Launchpad (build 16179)\n" +"X-Launchpad-Export-Date: 2012-10-31 04:46+0000\n" +"X-Generator: Launchpad (build 16218)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From fa3a165312f0a4c3913d0577b86d61cfa1c2b2d9 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Fri, 16 Nov 2012 04:46:31 +0000 Subject: [PATCH 69/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5823.1.14) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 84f05b445..4771e6b38 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-31 04:46+0000\n" -"X-Generator: Launchpad (build 16218)\n" +"X-Launchpad-Export-Date: 2012-11-16 04:42+0000\n" +"X-Generator: Launchpad (build 16272)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 4fb626550..b3ed43ac3 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-31 04:46+0000\n" -"X-Generator: Launchpad (build 16218)\n" +"X-Launchpad-Export-Date: 2012-11-16 04:42+0000\n" +"X-Generator: Launchpad (build 16272)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index a2cadc105..3c6411e00 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-31 04:46+0000\n" -"X-Generator: Launchpad (build 16218)\n" +"X-Launchpad-Export-Date: 2012-11-16 04:42+0000\n" +"X-Generator: Launchpad (build 16272)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 88705de7a..2758b08c5 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-31 04:46+0000\n" -"X-Generator: Launchpad (build 16218)\n" +"X-Launchpad-Export-Date: 2012-11-16 04:42+0000\n" +"X-Generator: Launchpad (build 16272)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 9f06b54ab..262effc15 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-31 04:46+0000\n" -"X-Generator: Launchpad (build 16218)\n" +"X-Launchpad-Export-Date: 2012-11-16 04:42+0000\n" +"X-Generator: Launchpad (build 16272)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 88706ee50..d4c30ec72 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-31 04:46+0000\n" -"X-Generator: Launchpad (build 16218)\n" +"X-Launchpad-Export-Date: 2012-11-16 04:42+0000\n" +"X-Generator: Launchpad (build 16272)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index bcda075ac..b4c769a50 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-10-31 04:46+0000\n" -"X-Generator: Launchpad (build 16218)\n" +"X-Launchpad-Export-Date: 2012-11-16 04:42+0000\n" +"X-Generator: Launchpad (build 16272)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 0e2e69fc6aff7e904b2eaa9671d6c4ace3727c07 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Sat, 24 Nov 2012 07:05:22 +0000 Subject: [PATCH 70/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5823.1.19) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 4771e6b38..6d0aefc25 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-16 04:42+0000\n" -"X-Generator: Launchpad (build 16272)\n" +"X-Launchpad-Export-Date: 2012-11-24 07:02+0000\n" +"X-Generator: Launchpad (build 16293)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index b3ed43ac3..56d71088e 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-16 04:42+0000\n" -"X-Generator: Launchpad (build 16272)\n" +"X-Launchpad-Export-Date: 2012-11-24 07:02+0000\n" +"X-Generator: Launchpad (build 16293)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index 3c6411e00..0ee75a3d7 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-16 04:42+0000\n" -"X-Generator: Launchpad (build 16272)\n" +"X-Launchpad-Export-Date: 2012-11-24 07:02+0000\n" +"X-Generator: Launchpad (build 16293)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 2758b08c5..df1f44663 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-16 04:42+0000\n" -"X-Generator: Launchpad (build 16272)\n" +"X-Launchpad-Export-Date: 2012-11-24 07:02+0000\n" +"X-Generator: Launchpad (build 16293)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 262effc15..879b714ca 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-16 04:42+0000\n" -"X-Generator: Launchpad (build 16272)\n" +"X-Launchpad-Export-Date: 2012-11-24 07:02+0000\n" +"X-Generator: Launchpad (build 16293)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index d4c30ec72..d2b9e875d 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-16 04:42+0000\n" -"X-Generator: Launchpad (build 16272)\n" +"X-Launchpad-Export-Date: 2012-11-24 07:02+0000\n" +"X-Generator: Launchpad (build 16293)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index b4c769a50..b0ddb2ee5 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-16 04:42+0000\n" -"X-Generator: Launchpad (build 16272)\n" +"X-Launchpad-Export-Date: 2012-11-24 07:02+0000\n" +"X-Generator: Launchpad (build 16293)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From ccce8065b30da6780d703cb7115d154daf29055e Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Wed, 28 Nov 2012 04:56:27 +0000 Subject: [PATCH 71/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5825.1.1) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 6d0aefc25..4bbe9e7a4 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-24 07:02+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-11-28 04:52+0000\n" +"X-Generator: Launchpad (build 16309)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 56d71088e..8f56e82fb 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-24 07:02+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-11-28 04:52+0000\n" +"X-Generator: Launchpad (build 16309)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index 0ee75a3d7..dcec87b72 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-24 07:02+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-11-28 04:52+0000\n" +"X-Generator: Launchpad (build 16309)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index df1f44663..2219e82ed 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-24 07:02+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-11-28 04:52+0000\n" +"X-Generator: Launchpad (build 16309)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 879b714ca..72ce53058 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-24 07:02+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-11-28 04:52+0000\n" +"X-Generator: Launchpad (build 16309)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index d2b9e875d..8c3db7f9d 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-24 07:02+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-11-28 04:52+0000\n" +"X-Generator: Launchpad (build 16309)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index b0ddb2ee5..cef095d20 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-24 07:02+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-11-28 04:52+0000\n" +"X-Generator: Launchpad (build 16309)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From 09e8c132eccf81cf5656012e2e183ce07539d1ba Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Wed, 5 Dec 2012 05:42:11 +0000 Subject: [PATCH 72/75] Launchpad automatic translations update. (../addons/extra-trunk rev 5828) --- base_partner_surname/i18n/ca.po | 4 ++-- base_partner_surname/i18n/es.po | 4 ++-- base_partner_surname/i18n/fi.po | 4 ++-- base_partner_surname/i18n/fr.po | 4 ++-- base_partner_surname/i18n/it.po | 4 ++-- base_partner_surname/i18n/pt.po | 4 ++-- base_partner_surname/i18n/sv.po | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/base_partner_surname/i18n/ca.po b/base_partner_surname/i18n/ca.po index 4bbe9e7a4..45de68990 100644 --- a/base_partner_surname/i18n/ca.po +++ b/base_partner_surname/i18n/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-28 04:52+0000\n" -"X-Generator: Launchpad (build 16309)\n" +"X-Launchpad-Export-Date: 2012-12-05 05:38+0000\n" +"X-Generator: Launchpad (build 16335)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/es.po b/base_partner_surname/i18n/es.po index 8f56e82fb..fb1dce7a0 100644 --- a/base_partner_surname/i18n/es.po +++ b/base_partner_surname/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-28 04:52+0000\n" -"X-Generator: Launchpad (build 16309)\n" +"X-Launchpad-Export-Date: 2012-12-05 05:38+0000\n" +"X-Generator: Launchpad (build 16335)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fi.po b/base_partner_surname/i18n/fi.po index dcec87b72..754419802 100644 --- a/base_partner_surname/i18n/fi.po +++ b/base_partner_surname/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-28 04:52+0000\n" -"X-Generator: Launchpad (build 16309)\n" +"X-Launchpad-Export-Date: 2012-12-05 05:38+0000\n" +"X-Generator: Launchpad (build 16335)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/fr.po b/base_partner_surname/i18n/fr.po index 2219e82ed..63dd97c58 100644 --- a/base_partner_surname/i18n/fr.po +++ b/base_partner_surname/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-28 04:52+0000\n" -"X-Generator: Launchpad (build 16309)\n" +"X-Launchpad-Export-Date: 2012-12-05 05:38+0000\n" +"X-Generator: Launchpad (build 16335)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/it.po b/base_partner_surname/i18n/it.po index 72ce53058..4cceda3f2 100644 --- a/base_partner_surname/i18n/it.po +++ b/base_partner_surname/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-28 04:52+0000\n" -"X-Generator: Launchpad (build 16309)\n" +"X-Launchpad-Export-Date: 2012-12-05 05:38+0000\n" +"X-Generator: Launchpad (build 16335)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/pt.po b/base_partner_surname/i18n/pt.po index 8c3db7f9d..09cd5b3fb 100644 --- a/base_partner_surname/i18n/pt.po +++ b/base_partner_surname/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-28 04:52+0000\n" -"X-Generator: Launchpad (build 16309)\n" +"X-Launchpad-Export-Date: 2012-12-05 05:38+0000\n" +"X-Generator: Launchpad (build 16335)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 diff --git a/base_partner_surname/i18n/sv.po b/base_partner_surname/i18n/sv.po index cef095d20..b9197da25 100644 --- a/base_partner_surname/i18n/sv.po +++ b/base_partner_surname/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-28 04:52+0000\n" -"X-Generator: Launchpad (build 16309)\n" +"X-Launchpad-Export-Date: 2012-12-05 05:38+0000\n" +"X-Generator: Launchpad (build 16335)\n" #. module: base_partner_surname #: constraint:ir.ui.view:0 From c07c9d3cf17de6fa726055469c25da32c031904c Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Fri, 22 Feb 2013 18:26:45 -0500 Subject: [PATCH 73/75] [DEL] Phone formatting modules --- crm_lead_formatted_phone/__init__.py | 22 ---------- crm_lead_formatted_phone/__openerp__.py | 41 ----------------- .../crm_lead_formatted_phone.py | 39 ---------------- .../crm_lead_formatted_phone.xml | 33 -------------- .../__init__.py | 23 ---------- .../__openerp__.py | 44 ------------------- .../res_country_phone_format.py | 31 ------------- .../res_country_phone_format_data.xml | 10 ----- .../res_country_phone_format_view.xml | 18 -------- .../res_partner_address_formatted_phone.py | 41 ----------------- .../res_partner_address_formatted_phone.xml | 28 ------------ 11 files changed, 330 deletions(-) delete mode 100644 crm_lead_formatted_phone/__init__.py delete mode 100644 crm_lead_formatted_phone/__openerp__.py delete mode 100644 crm_lead_formatted_phone/crm_lead_formatted_phone.py delete mode 100644 crm_lead_formatted_phone/crm_lead_formatted_phone.xml delete mode 100644 res_partner_address_formatted_phone/__init__.py delete mode 100644 res_partner_address_formatted_phone/__openerp__.py delete mode 100644 res_partner_address_formatted_phone/res_country_phone_format.py delete mode 100644 res_partner_address_formatted_phone/res_country_phone_format_data.xml delete mode 100644 res_partner_address_formatted_phone/res_country_phone_format_view.xml delete mode 100644 res_partner_address_formatted_phone/res_partner_address_formatted_phone.py delete mode 100644 res_partner_address_formatted_phone/res_partner_address_formatted_phone.xml diff --git a/crm_lead_formatted_phone/__init__.py b/crm_lead_formatted_phone/__init__.py deleted file mode 100644 index b49fb557f..000000000 --- a/crm_lead_formatted_phone/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2012 Savoir-faire Linux (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -import crm_lead_formatted_phone diff --git a/crm_lead_formatted_phone/__openerp__.py b/crm_lead_formatted_phone/__openerp__.py deleted file mode 100644 index 433bf3681..000000000 --- a/crm_lead_formatted_phone/__openerp__.py +++ /dev/null @@ -1,41 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2012 Savoir-faire Linux (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -{ - "name" : "Format phone numbers of lead ", - "version" : "0.1", - "author" : "Savoir-faire Linux", - "website" : "http://www.savoirfairelinux.com", - "license" : "AGPL-3", - "category" : "CRM", - "description" : """ -This module formats the lead phone numbers based on the country phone format. - """, - "images" : [], - "depends" : ["crm", "res_partner_address_formatted_phone"], - "demo" : [], - "test" : [], - "data" : [ - "crm_lead_formatted_phone.xml", - ], - "installable": True, - "complexity": "easy", -} diff --git a/crm_lead_formatted_phone/crm_lead_formatted_phone.py b/crm_lead_formatted_phone/crm_lead_formatted_phone.py deleted file mode 100644 index daacc1fb8..000000000 --- a/crm_lead_formatted_phone/crm_lead_formatted_phone.py +++ /dev/null @@ -1,39 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2012 Savoir-faire Linux (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -import re -from osv import fields, osv - -class crm_lead_formatted_phone(osv.osv): - _inherit = 'crm.lead' - - def on_change_phone(self, cr, uid, ids, field_name, phone, country_id=False): - result = phone - if phone: - digits = [c for c in phone if c.isdigit()] - if len(digits) >= 10: - result = u"(%s) %s-%s" % ("".join(digits[0:3]), "".join(digits[3:6]), - "".join(digits[6:10])) - if len(digits) > 10: - result += " x %s" % "".join(digits[10:]) - return { 'value': { field_name: result } } - -crm_lead_formatted_phone() diff --git a/crm_lead_formatted_phone/crm_lead_formatted_phone.xml b/crm_lead_formatted_phone/crm_lead_formatted_phone.xml deleted file mode 100644 index 64daade44..000000000 --- a/crm_lead_formatted_phone/crm_lead_formatted_phone.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - crm.lead.formatted.phone.form - crm.lead - - form - - - - - - - - - - - - - - - - - - - - - diff --git a/res_partner_address_formatted_phone/__init__.py b/res_partner_address_formatted_phone/__init__.py deleted file mode 100644 index baebd9a72..000000000 --- a/res_partner_address_formatted_phone/__init__.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2012 Savoir-faire Linux (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -import res_partner_address_formatted_phone -import res_country_phone_format diff --git a/res_partner_address_formatted_phone/__openerp__.py b/res_partner_address_formatted_phone/__openerp__.py deleted file mode 100644 index 74d8fb969..000000000 --- a/res_partner_address_formatted_phone/__openerp__.py +++ /dev/null @@ -1,44 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2012 Savoir-faire Linux (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -{ - "name" : "Format phone numbers of partner", - "version" : "0.1", - "author" : "Savoir-faire Linux", - "website" : "http://www.savoirfairelinux.com", - "license" : "AGPL-3", - "category" : "Partner", - "description" : """ -This module formats the partner phone numbers based on the format of the -phonenumbers library (http://pypi.python.org/pypi/phonenumbers). - """, - "images" : [], - "depends" : ["base"], - "demo" : [], - "test" : [], - "data" : [ - "res_partner_address_formatted_phone.xml", - "res_country_phone_format_view.xml", - "res_country_phone_format_data.xml", - ], - "installable": True, - "complexity": "easy", -} diff --git a/res_partner_address_formatted_phone/res_country_phone_format.py b/res_partner_address_formatted_phone/res_country_phone_format.py deleted file mode 100644 index 79c86d9e2..000000000 --- a/res_partner_address_formatted_phone/res_country_phone_format.py +++ /dev/null @@ -1,31 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2012 Savoir-faire Linux (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -import re -from osv import fields, osv - -class res_country_phone_format(osv.osv): - _inherit = 'res.country' - _columns = { - 'phone_format': fields.char('Phone Format', size=100) - } - -res_country_phone_format() diff --git a/res_partner_address_formatted_phone/res_country_phone_format_data.xml b/res_partner_address_formatted_phone/res_country_phone_format_data.xml deleted file mode 100644 index 18b3bcea9..000000000 --- a/res_partner_address_formatted_phone/res_country_phone_format_data.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - (XXX) XXX-XXXX x XXX - - - - diff --git a/res_partner_address_formatted_phone/res_country_phone_format_view.xml b/res_partner_address_formatted_phone/res_country_phone_format_view.xml deleted file mode 100644 index ed3066c4e..000000000 --- a/res_partner_address_formatted_phone/res_country_phone_format_view.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - res.country.phone.format.form - res.country - - form - - - - - - - - - diff --git a/res_partner_address_formatted_phone/res_partner_address_formatted_phone.py b/res_partner_address_formatted_phone/res_partner_address_formatted_phone.py deleted file mode 100644 index 8b152d896..000000000 --- a/res_partner_address_formatted_phone/res_partner_address_formatted_phone.py +++ /dev/null @@ -1,41 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2012 Savoir-faire Linux (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -import re -from osv import fields, osv - -class res_partner_address_formatted_phone(osv.osv): - _inherit = 'res.partner.address' - - def on_change_phone(self, cr, uid, ids, field_name, phone, country_id=False): - result = phone - phone_format = self.pool.get('phone_format') - if phone: - digits = [c for c in phone if c.isdigit()] - crosses = [x for x in phone_format if c == 'X'] - if len(digits) >= len(crosses): - result = u"(%s) %s-%s" % ("".join(digits[0:3]), "".join(digits[3:6]), - "".join(digits[6:10])) - if len(digits) > 10: - result += " x %s" % "".join(digits[10:]) - return { 'value': { field_name: result } } - -res_partner_address_formatted_phone() diff --git a/res_partner_address_formatted_phone/res_partner_address_formatted_phone.xml b/res_partner_address_formatted_phone/res_partner_address_formatted_phone.xml deleted file mode 100644 index 59dc3806a..000000000 --- a/res_partner_address_formatted_phone/res_partner_address_formatted_phone.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - res.partner.american_phone_formatter.form - res.partner - - form - - - - - - - - - - - - - - - - From 03e09c0c65f1457875f9dd234c94fed01acb809a Mon Sep 17 00:00:00 2001 From: Maxime Chambreuil Date: Mon, 25 Feb 2013 09:35:32 -0500 Subject: [PATCH 74/75] [FIX] based on code review --- base_partner_surname/__init__.py | 4 +-- base_partner_surname/__openerp__.py | 2 +- base_partner_surname/__terp__.py | 39 ----------------------------- base_partner_surname/partner.py | 11 ++++---- 4 files changed, 8 insertions(+), 48 deletions(-) delete mode 100644 base_partner_surname/__terp__.py diff --git a/base_partner_surname/__init__.py b/base_partner_surname/__init__.py index f863de6d8..a8fdaa846 100644 --- a/base_partner_surname/__init__.py +++ b/base_partner_surname/__init__.py @@ -1,4 +1,4 @@ -# -*- encoding: utf-8 -*- +# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution @@ -20,4 +20,4 @@ ############################################################################## import partner -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/base_partner_surname/__openerp__.py b/base_partner_surname/__openerp__.py index f4ede8364..b62a06792 100755 --- a/base_partner_surname/__openerp__.py +++ b/base_partner_surname/__openerp__.py @@ -1,4 +1,4 @@ -# -*- encoding: utf-8 -*- +# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution diff --git a/base_partner_surname/__terp__.py b/base_partner_surname/__terp__.py deleted file mode 100644 index cd4878a34..000000000 --- a/base_partner_surname/__terp__.py +++ /dev/null @@ -1,39 +0,0 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2009 Tiny SPRL (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -{ - "name" : "Base Partner Surname", - "version" : "1.0", - "author" : "Tiny", - "website" : "http://www.openerp.com", - "category" : "Generic Modules/Base", - "description": """ -This module use for seperate surname from contact name of partner. Now You can give first name & last name on contact Name. -This module is deprecated, it is higly recommended to use base_contact instead. - - """, - "depends" : ["base"], - "init_xml" : [ ], - "demo_xml" : [ ], - "update_xml" : [ "partner_view.xml" ], - "installable": True -} -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - diff --git a/base_partner_surname/partner.py b/base_partner_surname/partner.py index 13932c6d1..f63f22fa6 100644 --- a/base_partner_surname/partner.py +++ b/base_partner_surname/partner.py @@ -1,4 +1,4 @@ -# -*- encoding: utf-8 -*- +# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution @@ -19,10 +19,10 @@ # ############################################################################## -from osv import fields, osv +from openerp.osv import orm, fields -class res_partner_address(osv.osv): +class res_partner_address(orm.Model): _inherit = 'res.partner.address' _columns = { 'first_name' : fields.char('First Name', size=128), @@ -46,7 +46,7 @@ class res_partner_address(osv.osv): if first_name or last_name: vals['name'] = first_name + ' ' + last_name - return super(res_partner_address, self).write(cr, uid, ids, vals, context) + return super(res_partner_address, self).write(cr, uid, ids, vals, context=context) def create(self, cr, uid, vals, context=None): if context is None: @@ -60,7 +60,7 @@ class res_partner_address(osv.osv): if first_name or last_name: vals['name'] = first_name + ' ' + last_name - return super(res_partner_address, self).create(cr, uid, vals, context) + return super(res_partner_address, self).create(cr, uid, vals, context=context) def onchange_name(self, cr, uid, id, first_name, last_name): res = {} @@ -72,6 +72,5 @@ class res_partner_address(osv.osv): res = {'name': first_name + ' ' + last_name} return {'value': res} -res_partner_address() # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: From e73d45d10839079aa68293e28a67dddfb6da17fa Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp-commiter Date: Mon, 25 Feb 2013 09:37:19 -0500 Subject: [PATCH 75/75] [IMP] Bumping the version --- base_partner_surname/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base_partner_surname/__openerp__.py b/base_partner_surname/__openerp__.py index b62a06792..20c194d09 100755 --- a/base_partner_surname/__openerp__.py +++ b/base_partner_surname/__openerp__.py @@ -20,7 +20,7 @@ ############################################################################## { "name" : "Base Partner Surname", - "version" : "1.0", + "version" : "1.1", "author" : "Tiny, Serpent Consulting Services", "website" : "http://www.openerp.com", "category" : "Generic Modules/Base",