From 7116f381f1fa9a73455a759e1212830d48ebe9ac Mon Sep 17 00:00:00 2001 From: Mustufa Rangwala Date: Thu, 26 Aug 2010 09:12:04 +0530 Subject: [PATCH 01/13] [IMP] Account: refund invoice wizard if inv is already reconciled can not use modify and cancel options bzr revid: mra@mra-laptop-20100826034204-fx3c057b7ai74qu5 --- addons/account/wizard/account_invoice_refund.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/addons/account/wizard/account_invoice_refund.py b/addons/account/wizard/account_invoice_refund.py index 22f9ec63789..fb575509184 100644 --- a/addons/account/wizard/account_invoice_refund.py +++ b/addons/account/wizard/account_invoice_refund.py @@ -36,7 +36,7 @@ class account_invoice_refund(osv.osv_memory): 'period': fields.many2one('account.period', 'Force period'), 'journal_id': fields.many2one('account.journal', 'Refund Journal', help='You can select here the journal to use for the refund invoice that will be created. If you leave that field empty, it will use the same journal as the current invoice.'), 'description': fields.char('Description', size=128, required=True), - 'filter_refund': fields.selection([('modify', 'Modify'), ('refund', 'Refund'), ('cancel', 'Cancel')], "Refund Type", required=True, help='Refund invoice base on this type'), + 'filter_refund': fields.selection([('modify', 'Modify'), ('refund', 'Refund'), ('cancel', 'Cancel')], "Refund Type", required=True, help='Refund invoice base on this type. You can not Modify and Cancel if the invoice is already rencociled'), } def _get_journal(self, cr, uid, context=None): @@ -84,6 +84,8 @@ class account_invoice_refund(osv.osv_memory): for inv in inv_obj.browse(cr, uid, context.get('active_ids'), context=context): if inv.state in ['draft', 'proforma2', 'cancel']: raise osv.except_osv(_('Error !'), _('Can not %s draft/proforma/cancel invoice.') % (mode)) + if inv.reconciled and mode in ('cancel', 'modify'): + raise osv.except_osv(_('Error !'), _('Can not %s invoice which is already reconciled, invoice should be unreconciled first. You can only Refund this invoice') % (mode)) if form['period'] : period = form['period'] else: From 7311826cc6a88c201f9eb812a85b69bfac8493f1 Mon Sep 17 00:00:00 2001 From: "PAP(OpenERP)" <> Date: Thu, 26 Aug 2010 09:34:58 +0530 Subject: [PATCH 02/13] [FIX] Account: Customer invoice: Correct domain on taxes on inv lines bzr revid: mra@mra-laptop-20100826040458-16uhkfvwyzbg2kus --- addons/account/account_invoice_view.xml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/addons/account/account_invoice_view.xml b/addons/account/account_invoice_view.xml index 9df1880f61a..41d0344de92 100644 --- a/addons/account/account_invoice_view.xml +++ b/addons/account/account_invoice_view.xml @@ -65,9 +65,8 @@ - - + From c38d1e200acb560a320e4195af9387b261388786 Mon Sep 17 00:00:00 2001 From: "PAP(OpenERP)" <> Date: Thu, 26 Aug 2010 09:50:06 +0530 Subject: [PATCH 03/13] [FIX] Account: onchange of amount of account_invoice_tax for sigh bzr revid: mra@mra-laptop-20100826042006-8ik6hm2c7b7j3q9i --- addons/account/invoice.py | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/addons/account/invoice.py b/addons/account/invoice.py index 0245acaa25d..e7b95cea8dc 100644 --- a/addons/account/invoice.py +++ b/addons/account/invoice.py @@ -874,7 +874,7 @@ class account_invoice(osv.osv): line = self.group_lines(cr, uid, iml, line, inv) - journal_id = inv.journal_id.id + journal_id = inv.journal_id.id journal = self.pool.get('account.journal').browse(cr, uid, journal_id) if journal.centralisation: raise osv.except_osv(_('UserError'), @@ -1496,12 +1496,18 @@ class account_invoice_tax(osv.osv): def amount_change(self, cr, uid, ids, amount, currency_id=False, company_id=False, date_invoice=False): cur_obj = self.pool.get('res.currency') company_obj = self.pool.get('res.company') - company_currency=False + company_currency = False + tax_amount = self.read(cr, uid, ids[0], ['tax_amount'])['tax_amount'] + tax_sign=1 + if tax_amount < 0: + tax_sign = -1 + elif tax_amount == 0: + tax_sign = 0 if company_id: company_currency = company_obj.read(cr, uid, [company_id], ['currency_id'])[0]['currency_id'][0] if currency_id and company_currency: - amount = cur_obj.compute(cr, uid, currency_id, company_currency, amount, context={'date': date_invoice or time.strftime('%Y-%m-%d')}, round=False) - return {'value': {'tax_amount':amount}} + amount = cur_obj.compute(cr, uid, currency_id, company_currency, amount*tax_sign, context={'date': date_invoice or time.strftime('%Y-%m-%d')}, round=False) + return {'value': {'tax_amount': amount}} _order = 'sequence' _defaults = { From da787061dba0a63effc95c8cf159bc8ea15e66e5 Mon Sep 17 00:00:00 2001 From: "psi (Open ERP)" Date: Thu, 26 Aug 2010 10:22:04 +0530 Subject: [PATCH 04/13] [IMP] hr_* Clean the code bzr revid: psi@tinyerp.co.in-20100826045204-lxfawwkq2be62e8s --- addons/hr/hr_department.py | 2 +- addons/hr_attendance/hr_attendance.py | 18 +++++++++--------- .../wizard/hr_attendance_error.py | 2 +- addons/hr_contract/hr_contract.py | 12 ++++++------ addons/hr_evaluation/hr_evaluation.py | 4 ++-- addons/hr_expense/hr_expense.py | 6 +++--- addons/hr_holidays/hr_holidays.py | 8 ++++---- .../wizard/hr_holidays_summary_department.py | 6 +++--- .../wizard/hr_holidays_summary_employees.py | 6 +++--- 9 files changed, 32 insertions(+), 32 deletions(-) diff --git a/addons/hr/hr_department.py b/addons/hr/hr_department.py index 825059bd46b..0f2c3a908ff 100644 --- a/addons/hr/hr_department.py +++ b/addons/hr/hr_department.py @@ -119,7 +119,7 @@ class res_users(osv.osv): result = {} obj_dept = self.pool.get('hr.department') for user_id in ids: - emp_ids = self.pool.get('hr.employee').search(cr, uid, [('user_id', '=', user_id)]) + emp_ids = self.pool.get('hr.employee').search(cr, uid, [('user_id', '=', user_id)], context=context) cr.execute('SELECT emp.department_id FROM hr_employee AS emp \ JOIN resource_resource AS res ON res.id = emp.resource_id \ JOIN hr_department as dept ON dept.id = emp.department_id \ diff --git a/addons/hr_attendance/hr_attendance.py b/addons/hr_attendance/hr_attendance.py index 842fe409d12..643e5d519c9 100644 --- a/addons/hr_attendance/hr_attendance.py +++ b/addons/hr_attendance/hr_attendance.py @@ -72,13 +72,13 @@ class hr_attendance(osv.osv): def _altern_si_so(self, cr, uid, ids): for id in ids: sql = ''' - select action, name - from hr_attendance as att - where employee_id = (select employee_id from hr_attendance where id=%s) - and action in ('sign_in','sign_out') - and name <= (select name from hr_attendance where id=%s) - order by name desc - limit 2 ''' + SELECT action, name + FROM hr_attendance AS att + WHERE employee_id = (SELECT employee_id FROM hr_attendance WHERE id=%s) + AND action IN ('sign_in','sign_out') + AND name <= (SELECT name FROM hr_attendance WHERE id=%s) + ORDER BY name DESC + LIMIT 2 ''' cr.execute(sql,(id,id)) atts = cr.fetchall() if not ((len(atts)==1 and atts[0][0] == 'sign_in') or (atts[0][0] != atts[1][0] and atts[0][1] != atts[1][1])): @@ -117,12 +117,12 @@ class hr_employee(osv.osv): _columns = { 'state': fields.function(_state, method=True, type='selection', selection=[('absent', 'Absent'), ('present', 'Present')], string='Attendance'), - } + } def _action_check(self, cr, uid, emp_id, dt=False, context=None): if context is None: context = {} - cr.execute('select max(name) from hr_attendance where employee_id=%s', (emp_id,)) + cr.execute('SELECT MAX(name) FROM hr_attendance WHERE employee_id=%s', (emp_id,)) res = cr.fetchone() return not (res and (res[0]>=(dt or time.strftime('%Y-%m-%d %H:%M:%S')))) diff --git a/addons/hr_attendance/wizard/hr_attendance_error.py b/addons/hr_attendance/wizard/hr_attendance_error.py index 24109b11496..6c630b1e064 100644 --- a/addons/hr_attendance/wizard/hr_attendance_error.py +++ b/addons/hr_attendance/wizard/hr_attendance_error.py @@ -45,7 +45,7 @@ class hr_attendance_error(osv.osv_memory): data_error = self.read(cr, uid, ids, context=context)[0] date_from = data_error['init_date'] date_to = data_error['end_date'] - cr.execute("select id from hr_attendance where employee_id IN %s and to_char(name,'YYYY-mm-dd')<=%s and to_char(name,'YYYY-mm-dd')>=%s and action IN %s order by name" ,(tuple(context['active_ids']), date_to, date_from, tuple(['sign_in','sign_out']))) + cr.execute("SELECT id FROM hr_attendance WHERE employee_id IN %s AND to_char(name,'YYYY-mm-dd')<=%s AND to_char(name,'YYYY-mm-dd')>=%s AND action IN %s ORDER BY name" ,(tuple(context['active_ids']), date_to, date_from, tuple(['sign_in','sign_out']))) attendance_ids = [x[0] for x in cr.fetchall()] if not attendance_ids: raise osv.except_osv(_('No Data Available'), _('No records found for your selection!')) diff --git a/addons/hr_contract/hr_contract.py b/addons/hr_contract/hr_contract.py index 1d2962a0702..aa04761e9a7 100644 --- a/addons/hr_contract/hr_contract.py +++ b/addons/hr_contract/hr_contract.py @@ -58,10 +58,10 @@ class hr_contract_wage_type_period(osv.osv): _columns = { 'name': fields.char('Period Name', size=50, required=True, select=True), 'factor_days': fields.float('Hours in the period', digits=(12,4), required=True, help='This field is used by the timesheet system to compute the price of an hour of work wased on the contract of the employee') - } + } _defaults = { 'factor_days': 168.0 - } + } hr_contract_wage_type_period() #Contract wage type (hourly, daily, monthly, ...) @@ -73,11 +73,11 @@ class hr_contract_wage_type(osv.osv): 'period_id': fields.many2one('hr.contract.wage.type.period', 'Wage Period', required=True), 'type': fields.selection([('gross','Gross'), ('net','Net')], 'Type', required=True), 'factor_type': fields.float('Factor for hour cost', digits=(12,4), required=True, help='This field is used by the timesheet system to compute the price of an hour of work wased on the contract of the employee') - } + } _defaults = { 'type': 'gross', 'factor_type': 1.8 - } + } hr_contract_wage_type() @@ -107,10 +107,10 @@ class hr_contract(osv.osv): 'advantages_net': fields.float('Net Advantages Value', digits=(16,2)), 'advantages_gross': fields.float('Gross Advantages Value', digits=(16,2)), 'notes': fields.text('Notes'), - } + } _defaults = { 'date_start': time.strftime("%Y-%m-%d"), - } + } hr_contract() diff --git a/addons/hr_evaluation/hr_evaluation.py b/addons/hr_evaluation/hr_evaluation.py index 0b497c461e0..c80c12f10ff 100644 --- a/addons/hr_evaluation/hr_evaluation.py +++ b/addons/hr_evaluation/hr_evaluation.py @@ -274,10 +274,10 @@ class survey_request(osv.osv): _inherit = "survey.request" _columns = { 'is_evaluation': fields.boolean('Is Evaluation?'), - } + } _defaults = { 'state': 'waiting_answer', - } + } survey_request() diff --git a/addons/hr_expense/hr_expense.py b/addons/hr_expense/hr_expense.py index 681a06cd838..c5818536f8c 100644 --- a/addons/hr_expense/hr_expense.py +++ b/addons/hr_expense/hr_expense.py @@ -190,7 +190,7 @@ class hr_expense_expense(osv.osv): invoice_obj.button_compute(cr, uid, [inv_id], {'type': 'in_invoice'}, set_total=True) wf_service = netsvc.LocalService("workflow") wf_service.trg_validate(uid, 'account.invoice', inv_id, 'invoice_open', cr) - + self.write(cr, uid, [exp.id], {'invoice_id': inv_id, 'state': 'invoiced'}) res = inv_id return res @@ -201,7 +201,7 @@ class product_product(osv.osv): _inherit = "product.product" _columns = { 'hr_expense_ok': fields.boolean('Can Constitute an Expense', help="Determines if the product can be visible in the list of product within a selection from an HR expense sheet line."), - } + } product_product() @@ -235,7 +235,7 @@ class hr_expense_line(osv.osv): _defaults = { 'unit_quantity': 1, 'date_value': time.strftime('%Y-%m-%d'), - } + } _order = "sequence" def onchange_product_id(self, cr, uid, ids, product_id, uom_id, employee_id, context=None): diff --git a/addons/hr_holidays/hr_holidays.py b/addons/hr_holidays/hr_holidays.py index efd5df4b480..b5f4534454f 100644 --- a/addons/hr_holidays/hr_holidays.py +++ b/addons/hr_holidays/hr_holidays.py @@ -108,7 +108,7 @@ class hr_holidays_status(osv.osv): _defaults = { 'color_name': 'red', 'active': True, - } + } hr_holidays_status() @@ -147,7 +147,7 @@ class hr_holidays(osv.osv): 'category_id': fields.many2one('hr.employee.category', "Category", help='Category Of employee'), 'holiday_type': fields.selection([('employee','By Employee'),('category','By Employee Category')], 'Holiday Type', help='By Employee: Allocation/Request for individual Employee, By Employee Category: Allocation/Request for group of employees in category'), 'manager_id2': fields.many2one('hr.employee', 'Second Validator', readonly=True, help='This area is automaticly filled by the user who validate the leave with second level (If Leave type need second validation)') - } + } _defaults = { 'employee_id': _employee_get , @@ -156,7 +156,7 @@ class hr_holidays(osv.osv): 'allocation_type': 'employee', 'user_id': lambda obj, cr, uid, context: uid, 'holiday_type': 'employee' - } + } def _create_resource_leave(self, cr, uid, vals, context=None): '''This method will create entry in resource calendar leave object at the time of holidays validated ''' @@ -452,7 +452,7 @@ class resource_calendar_leaves(osv.osv): _description = "Leave Detail" _columns = { 'holiday_id': fields.many2one("hr.holidays", "Holiday"), - } + } resource_calendar_leaves() diff --git a/addons/hr_holidays/wizard/hr_holidays_summary_department.py b/addons/hr_holidays/wizard/hr_holidays_summary_department.py index a08354fd40d..06651e11d33 100644 --- a/addons/hr_holidays/wizard/hr_holidays_summary_department.py +++ b/addons/hr_holidays/wizard/hr_holidays_summary_department.py @@ -31,12 +31,12 @@ class hr_holidays_summary_dept(osv.osv_memory): 'date_from': fields.date('From', required=True), 'depts': fields.many2many('hr.department', 'summary_dept_rel', 'sum_id', 'dept_id', 'Department(s)'), 'holiday_type': fields.selection([('Validated','Validated'),('Confirmed','Confirmed'),('both','Both Validated and Confirmed')], 'Select Holiday Type', required=True) - } + } _defaults = { 'date_from': time.strftime('%Y-%m-%d'), 'holiday_type': 'Validated' - } + } def print_report(self, cr, uid, ids, context=None): if context is None: @@ -48,7 +48,7 @@ class hr_holidays_summary_dept(osv.osv_memory): 'ids': [], 'model': 'ir.ui.menu', 'form': data - } + } return { 'type': 'ir.actions.report.xml', 'report_name': 'holidays.summary', diff --git a/addons/hr_holidays/wizard/hr_holidays_summary_employees.py b/addons/hr_holidays/wizard/hr_holidays_summary_employees.py index ca9ccc83db7..379ff7d76c7 100644 --- a/addons/hr_holidays/wizard/hr_holidays_summary_employees.py +++ b/addons/hr_holidays/wizard/hr_holidays_summary_employees.py @@ -30,12 +30,12 @@ class hr_holidays_summary_employee(osv.osv_memory): 'date_from': fields.date('From', required=True), 'emp': fields.many2many('hr.employee', 'summary_emp_rel', 'sum_id', 'emp_id', 'Employee(s)'), 'holiday_type': fields.selection([('Validated','Validated'),('Confirmed','Confirmed'),('both','Both Validated and Confirmed')], 'Select Holiday Type', required=True) - } + } _defaults = { 'date_from': time.strftime('%Y-%m-%d'), 'holiday_type': 'Validated', - } + } def print_report(self, cr, uid, ids, context=None): if context is None: @@ -46,7 +46,7 @@ class hr_holidays_summary_employee(osv.osv_memory): 'ids': [], 'model': 'hr.employee', 'form': data - } + } return { 'type': 'ir.actions.report.xml', 'report_name': 'holidays.summary', From 115dac5e71e2ad517251d87ca3ae088e104b5297 Mon Sep 17 00:00:00 2001 From: "PAP(OpenERP)" <> Date: Thu, 26 Aug 2010 10:27:22 +0530 Subject: [PATCH 05/13] [FIX] Account: getting error in configuration wizard Generate chart of accounts from chart template with bank information bzr revid: mra@mra-laptop-20100826045722-uunob6nwxxavd6yg --- addons/account/account.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/addons/account/account.py b/addons/account/account.py index fb5795002b4..f0884044fcf 100644 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -2624,13 +2624,13 @@ class wizard_multi_charts_accounts(osv.osv_memory): data_id = data_pool.search(cr, uid, [('model','=','account.journal.view'), ('name','=','account_journal_bank_view_multi')]) data = data_pool.browse(cr, uid, data_id[0]) - ref_acc_bank = data.res_id + view_id_cur = data.res_id ref_acc_bank = obj_multi.chart_template_id.bank_account_view_id current_num = 1 for line in obj_multi.bank_accounts_id: #create the account_account for this bank journal - tmp = self.pool.get('res.partner.bank').name_get(cr, uid, [line.acc_no.id])[0][1] + tmp = line.acc_name dig = obj_multi.code_digits if ref_acc_bank.code: try: @@ -2638,7 +2638,7 @@ class wizard_multi_charts_accounts(osv.osv_memory): except Exception,e: new_code = str(ref_acc_bank.code.ljust(dig-len(str(current_num)),'0')) + str(current_num) vals = { - 'name': line.acc_no.bank and line.acc_no.bank.name+' '+tmp or tmp, + 'name': tmp, 'currency_id': line.currency_id and line.currency_id.id or False, 'code': new_code, 'type': 'other', From 082fce194baa704029958fd92440beb160f6db69 Mon Sep 17 00:00:00 2001 From: Mustufa Rangwala Date: Thu, 26 Aug 2010 11:44:13 +0530 Subject: [PATCH 06/13] [FIX] Bank statements: Cursor is not defined for multicurrency popolate bzr revid: mra@mra-laptop-20100826061413-9h0ruazoweahi612 --- addons/account/wizard/account_statement_from_invoice.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/account/wizard/account_statement_from_invoice.py b/addons/account/wizard/account_statement_from_invoice.py index ab17a7f4a22..87bd8ccb315 100644 --- a/addons/account/wizard/account_statement_from_invoice.py +++ b/addons/account/wizard/account_statement_from_invoice.py @@ -64,10 +64,10 @@ class account_statement_from_invoice_lines(osv.osv_memory): amount = -line.credit if line.amount_currency: - amount = currency_obj.compute(cursor, user, line.currency_id.id, + amount = currency_obj.compute(cr, user, line.currency_id.id, statement.currency.id, line.amount_currency, context=ctx) elif (line.invoice and line.invoice.currency_id.id <> statement.currency.id): - amount = currency_obj.compute(cursor, user, line.invoice.currency_id.id, + amount = currency_obj.compute(cr, user, line.invoice.currency_id.id, statement.currency.id, amount, context=ctx) reconcile_id = statement_reconcile_obj.create(cr, uid, { From 99847457a7067cc0587b33a46cbfb85f48f441f7 Mon Sep 17 00:00:00 2001 From: Mustufa Rangwala Date: Thu, 26 Aug 2010 11:45:22 +0530 Subject: [PATCH 07/13] [FIX] Bank statements: user is not defined for multicurrency popolate bzr revid: mra@mra-laptop-20100826061522-eriiiy7gk4fkug1m --- addons/account/wizard/account_statement_from_invoice.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/account/wizard/account_statement_from_invoice.py b/addons/account/wizard/account_statement_from_invoice.py index 87bd8ccb315..1b01274092e 100644 --- a/addons/account/wizard/account_statement_from_invoice.py +++ b/addons/account/wizard/account_statement_from_invoice.py @@ -64,10 +64,10 @@ class account_statement_from_invoice_lines(osv.osv_memory): amount = -line.credit if line.amount_currency: - amount = currency_obj.compute(cr, user, line.currency_id.id, + amount = currency_obj.compute(cr, uid, line.currency_id.id, statement.currency.id, line.amount_currency, context=ctx) elif (line.invoice and line.invoice.currency_id.id <> statement.currency.id): - amount = currency_obj.compute(cr, user, line.invoice.currency_id.id, + amount = currency_obj.compute(cr, uid, line.invoice.currency_id.id, statement.currency.id, amount, context=ctx) reconcile_id = statement_reconcile_obj.create(cr, uid, { From 9e3b744de402418213c8b5a86aa0c64a6a939496 Mon Sep 17 00:00:00 2001 From: Fabien Pinckaers Date: Thu, 26 Aug 2010 10:30:37 +0200 Subject: [PATCH 08/13] modifs bzr revid: fp@tinyerp.com-20100826083037-7c5xp97frlrk54z3 --- .../voucher_payment_receipt_view.xml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/addons/account_voucher/voucher_payment_receipt_view.xml b/addons/account_voucher/voucher_payment_receipt_view.xml index f0bebc49d2c..8044093e7fb 100644 --- a/addons/account_voucher/voucher_payment_receipt_view.xml +++ b/addons/account_voucher/voucher_payment_receipt_view.xml @@ -161,18 +161,5 @@ - - - Cheques - account.voucher.open - form - [('journal_id.type', 'in', ['bank']), ('type','=','payment')] - {'journal_type':'bank', 'type':'payment'} - - new - - - From 7d9d5287846fb261b6844229d4bf17cbf87e18b1 Mon Sep 17 00:00:00 2001 From: "PSI(OpenERP)" <> Date: Thu, 26 Aug 2010 14:10:08 +0530 Subject: [PATCH 09/13] [FIX] HR : Better improvement of previous commit on the critical error of res_user search if non-admin user is related to an employee bzr revid: jvo@tinyerp.com-20100826084008-5ikttnklrbkfxpez --- addons/hr/hr_department.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/hr/hr_department.py b/addons/hr/hr_department.py index 0f2c3a908ff..21946469ce4 100644 --- a/addons/hr/hr_department.py +++ b/addons/hr/hr_department.py @@ -130,8 +130,8 @@ class res_users(osv.osv): data_dept = obj_dept.read(cr, uid, ids_dept, ['manager_id'], context=context) parent_ids = map(lambda x: x['manager_id'][0], data_dept) cr.execute('SELECT res.user_id FROM hr_employee AS emp JOIN resource_resource AS res ON res.id=emp.resource_id \ - WHERE emp.id IN %s', (tuple(parent_ids),)) - parent_ids = [x[0] for x in cr.fetchall() if x[0]] + WHERE emp.id IN %s AND res.user_id IS NOT NULL', (tuple(parent_ids),)) + parent_ids = [x[0] for x in cr.fetchall()] result[user_id] = parent_ids return result From 2a1754ff217b001546aca30b2ad479a030f574d0 Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Thu, 26 Aug 2010 16:20:22 +0200 Subject: [PATCH 10/13] [FIX] base_action_rule: Use a flag on the object from the pool to disable the recursion issue bzr revid: stephane@openerp.com-20100826142022-9o0xyd3o3a30lsec --- addons/base_action_rule/base_action_rule.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/addons/base_action_rule/base_action_rule.py b/addons/base_action_rule/base_action_rule.py index 40eca6a254d..ff6321e599f 100644 --- a/addons/base_action_rule/base_action_rule.py +++ b/addons/base_action_rule/base_action_rule.py @@ -181,10 +181,12 @@ the rule to mark CC(mail to any other person defined in actions)."), for action_rule in self.browse(cr, uid, ids, context=context): model = action_rule.model_id.model obj_pool = self.pool.get(model) - obj_pool.__setattr__('create', self._create(obj_pool.create, model, context=context)) - obj_pool.__setattr__('write', self._write(obj_pool.write, model, context=context)) - return True + if not hasattr(obj_pool, 'base_action_ruled'): + obj_pool.create = self._create(obj_pool.create, model, context=context) + obj_pool.write = self._write(obj_pool.write, model, context=context) + obj_pool.base_action_ruled = True + return True def create(self, cr, uid, vals, context=None): res_id = super(base_action_rule, self).create(cr, uid, vals, context) self._register_hook(cr, uid, [res_id], context=context) From 0886361cc3a21d97b18556260518c1462170176e Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Thu, 26 Aug 2010 16:45:34 +0200 Subject: [PATCH 11/13] [FIX] project_issue: Remove the user_id in the domain of the actions for the dashboard bzr revid: stephane@openerp.com-20100826144534-hb9vlyu2lxnobua3 --- addons/project_issue/board_project_issue_view.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/addons/project_issue/board_project_issue_view.xml b/addons/project_issue/board_project_issue_view.xml index 343d0e98b35..1173a63ce50 100644 --- a/addons/project_issue/board_project_issue_view.xml +++ b/addons/project_issue/board_project_issue_view.xml @@ -7,7 +7,7 @@ project.issue form tree,form - [('user_id','=',uid),('state','in',['draft','open'])] + [('state','in',['draft','open'])] @@ -16,7 +16,7 @@ project.issue form tree,form - [('user_id','=',uid),('state','=','pending')] + [('state','=','pending')] @@ -25,7 +25,7 @@ project.issue.report form graph - [('user_id','=',uid)] + [] @@ -47,7 +47,7 @@ project.issue.report form graph - [('user_id','=',uid)] + [] From 7f53a6c8d55a8042aa97d6ff86f89a95388287fe Mon Sep 17 00:00:00 2001 From: Antony Lesuisse Date: Thu, 26 Aug 2010 17:31:21 +0200 Subject: [PATCH 12/13] crm message_update check for priority bzr revid: al@openerp.com-20100826153121-krc4wfmbefhyvnp1 --- addons/crm/crm_lead.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/crm/crm_lead.py b/addons/crm/crm_lead.py index 763e96b0ba4..5d5fb5d3114 100644 --- a/addons/crm/crm_lead.py +++ b/addons/crm/crm_lead.py @@ -344,7 +344,7 @@ class crm_lead(crm_case, osv.osv): if isinstance(ids, (str, int, long)): ids = [ids] - if msg.get('priority'): + if msg.get('priority') in dict(crm.AVAILABLE_PRIORITIES): vals['priority'] = msg.get('priority') maps = { From 6422e808eee96da7fb84abe188254295534dd6bc Mon Sep 17 00:00:00 2001 From: Launchpad Code Hosting Date: Fri, 27 Aug 2010 04:41:39 +0100 Subject: [PATCH 13/13] Launchpad automatic translations update. bzr revid: codehost@crowberry-20100827034139-s30gkvfy8v4d0qjw --- addons/account/i18n/da.po | 4 ++-- addons/account/i18n/de.po | 2 +- addons/account/i18n/hu.po | 4 ++-- addons/account/i18n/it.po | 4 ++-- addons/account/i18n/lt.po | 4 ++-- addons/account/i18n/pl.po | 4 ++-- addons/account/i18n/sq.po | 4 ++-- addons/account/i18n/sv.po | 4 ++-- addons/account/i18n/tr.po | 4 ++-- addons/account/i18n/zh_CN.po | 4 ++-- addons/account_analytic_analysis/i18n/bg.po | 4 ++-- addons/account_analytic_analysis/i18n/fi.po | 4 ++-- addons/account_analytic_analysis/i18n/lt.po | 4 ++-- addons/account_analytic_analysis/i18n/tr.po | 4 ++-- addons/account_analytic_default/i18n/lt.po | 4 ++-- addons/account_analytic_default/i18n/tr.po | 4 ++-- addons/account_analytic_plans/i18n/lt.po | 4 ++-- addons/account_analytic_plans/i18n/tr.po | 4 ++-- addons/account_budget/i18n/lt.po | 4 ++-- addons/account_budget/i18n/tr.po | 4 ++-- addons/account_coda/i18n/ar.po | 4 ++-- addons/account_followup/i18n/lt.po | 4 ++-- addons/account_followup/i18n/tr.po | 4 ++-- addons/account_invoice_layout/i18n/lt.po | 4 ++-- addons/account_invoice_layout/i18n/tr.po | 4 ++-- addons/account_payment/i18n/lt.po | 4 ++-- addons/account_payment/i18n/tr.po | 4 ++-- addons/account_report/i18n/lt.po | 4 ++-- addons/account_report/i18n/tr.po | 4 ++-- addons/account_reporting/i18n/lt.po | 4 ++-- addons/account_reporting/i18n/tr.po | 4 ++-- addons/account_tax_include/i18n/tr.po | 4 ++-- addons/account_voucher/i18n/el.po | 6 +++--- addons/account_voucher/i18n/lt.po | 4 ++-- addons/account_voucher/i18n/tr.po | 4 ++-- addons/analytic_journal_billing_rate/i18n/tr.po | 4 ++-- addons/analytic_user_function/i18n/tr.po | 4 ++-- addons/auction/i18n/lt.po | 4 ++-- addons/auction/i18n/nl.po | 4 ++-- addons/auction/i18n/tr.po | 4 ++-- addons/audittrail/i18n/lt.po | 4 ++-- addons/audittrail/i18n/tr.po | 4 ++-- addons/audittrail/i18n/zh_CN.po | 4 ++-- addons/base_contact/i18n/lt.po | 4 ++-- addons/base_contact/i18n/tr.po | 4 ++-- addons/base_contact/i18n/zh_CN.po | 4 ++-- addons/base_iban/i18n/ru.po | 8 ++++---- addons/base_iban/i18n/tr.po | 4 ++-- addons/base_module_quality/i18n/ru.po | 7 ++++--- addons/base_module_quality/i18n/tr.po | 4 ++-- addons/base_module_record/i18n/tr.po | 4 ++-- addons/base_report_creator/i18n/tr.po | 4 ++-- addons/base_report_designer/i18n/tr.po | 4 ++-- addons/base_setup/i18n/ru.po | 8 ++++---- addons/base_setup/i18n/tr.po | 4 ++-- addons/base_vat/i18n/tr.po | 4 ++-- addons/board/i18n/tr.po | 4 ++-- addons/crm/i18n/fi.po | 6 +++--- addons/crm/i18n/hr.po | 4 ++-- addons/crm/i18n/lt.po | 4 ++-- addons/crm/i18n/pl.po | 6 +++--- addons/crm/i18n/pt.po | 4 ++-- addons/crm/i18n/sk.po | 4 ++-- addons/crm/i18n/tr.po | 4 ++-- addons/crm_profiling/i18n/pl.po | 6 +++--- addons/crm_profiling/i18n/tr.po | 4 ++-- addons/delivery/i18n/ru.po | 4 ++-- addons/delivery/i18n/tr.po | 4 ++-- addons/document/i18n/mn.po | 4 ++-- addons/document/i18n/ru.po | 4 ++-- addons/document/i18n/tr.po | 4 ++-- addons/document/i18n/zh_CN.po | 4 ++-- addons/document_ics/i18n/tr.po | 4 ++-- addons/document_ics/i18n/zh_CN.po | 4 ++-- addons/hr/i18n/lt.po | 4 ++-- addons/hr/i18n/pt_BR.po | 4 ++-- addons/hr/i18n/tr.po | 4 ++-- addons/hr/i18n/zh_CN.po | 4 ++-- addons/hr_attendance/i18n/fi.po | 4 ++-- addons/hr_attendance/i18n/pt_BR.po | 4 ++-- addons/hr_attendance/i18n/tr.po | 4 ++-- addons/hr_contract/i18n/tr.po | 4 ++-- addons/hr_expense/i18n/pt_BR.po | 4 ++-- addons/hr_expense/i18n/ru.po | 2 +- addons/hr_expense/i18n/tr.po | 4 ++-- addons/hr_holidays/i18n/lt.po | 4 ++-- addons/hr_holidays/i18n/tr.po | 4 ++-- addons/hr_holidays/i18n/zh_CN.po | 4 ++-- addons/hr_timesheet/i18n/tr.po | 4 ++-- addons/hr_timesheet_invoice/i18n/tr.po | 4 ++-- addons/hr_timesheet_sheet/i18n/lt.po | 4 ++-- addons/hr_timesheet_sheet/i18n/tr.po | 4 ++-- addons/idea/i18n/lt.po | 4 ++-- addons/idea/i18n/zh_CN.po | 4 ++-- addons/l10n_be/i18n/tr.po | 4 ++-- addons/l10n_ch/i18n/it.po | 4 ++-- addons/l10n_ch/i18n/tr.po | 4 ++-- addons/l10n_ch_chart_c2c_pcg/i18n/tr.po | 4 ++-- addons/l10n_chart_uk_minimal/i18n/tr.po | 4 ++-- addons/l10n_fr/i18n/tr.po | 4 ++-- addons/l10n_lu/i18n/tr.po | 4 ++-- addons/membership/i18n/tr.po | 4 ++-- addons/mrp/i18n/pt_BR.po | 4 ++-- addons/mrp/i18n/tr.po | 4 ++-- addons/mrp/i18n/zh_TW.po | 4 ++-- addons/mrp_operations/i18n/tr.po | 4 ++-- addons/mrp_repair/i18n/tr.po | 4 ++-- addons/mrp_subproduct/i18n/tr.po | 4 ++-- addons/point_of_sale/i18n/lt.po | 4 ++-- addons/point_of_sale/i18n/tr.po | 4 ++-- addons/process/i18n/tr.po | 4 ++-- addons/product/i18n/lt.po | 4 ++-- addons/product/i18n/mn.po | 4 ++-- addons/product/i18n/pt_BR.po | 4 ++-- addons/product/i18n/sr.po | 4 ++-- addons/product/i18n/tr.po | 4 ++-- addons/product/i18n/zh_CN.po | 4 ++-- addons/product_margin/i18n/pt_BR.po | 4 ++-- addons/product_margin/i18n/tr.po | 4 ++-- addons/project/i18n/lt.po | 4 ++-- addons/project/i18n/ru.po | 4 ++-- addons/project/i18n/tr.po | 4 ++-- addons/project_gtd/i18n/tr.po | 4 ++-- addons/project_mrp/i18n/tr.po | 4 ++-- addons/project_retro_planning/i18n/tr.po | 4 ++-- addons/project_scrum/i18n/tr.po | 4 ++-- addons/project_timesheet/i18n/tr.po | 4 ++-- addons/purchase/i18n/et.po | 4 ++-- addons/purchase/i18n/lt.po | 4 ++-- addons/purchase/i18n/tr.po | 4 ++-- addons/report_intrastat/i18n/pt_BR.po | 4 ++-- addons/report_intrastat/i18n/tr.po | 4 ++-- addons/sale/i18n/pt_BR.po | 4 ++-- addons/sale/i18n/sr.po | 4 ++-- addons/sale/i18n/sv.po | 4 ++-- addons/sale/i18n/tr.po | 4 ++-- addons/sale/i18n/uk.po | 4 ++-- addons/sale/i18n/vi.po | 4 ++-- addons/sale_journal/i18n/pl.po | 4 ++-- addons/sale_journal/i18n/tr.po | 4 ++-- addons/stock/i18n/bs.po | 4 ++-- addons/stock/i18n/it.po | 4 ++-- addons/stock/i18n/pl.po | 4 ++-- addons/stock/i18n/pt_BR.po | 4 ++-- addons/stock/i18n/tr.po | 4 ++-- addons/stock_invoice_directly/i18n/tr.po | 4 ++-- addons/stock_location/i18n/tr.po | 4 ++-- addons/stock_no_autopicking/i18n/tr.po | 4 ++-- addons/subscription/i18n/pl.po | 6 +++--- addons/subscription/i18n/tr.po | 4 ++-- addons/survey/i18n/pl.po | 6 +++--- addons/warning/i18n/tr.po | 4 ++-- addons/wiki/i18n/tr.po | 4 ++-- 153 files changed, 316 insertions(+), 315 deletions(-) diff --git a/addons/account/i18n/da.po b/addons/account/i18n/da.po index 27244d23694..dd65ca575ff 100644 --- a/addons/account/i18n/da.po +++ b/addons/account/i18n/da.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:56+0000\n" +"PO-Revision-Date: 2010-08-26 08:45+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Danish \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-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account diff --git a/addons/account/i18n/de.po b/addons/account/i18n/de.po index 34c4d4fa398..f321e4993fb 100644 --- a/addons/account/i18n/de.po +++ b/addons/account/i18n/de.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-08-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account diff --git a/addons/account/i18n/hu.po b/addons/account/i18n/hu.po index f6a0e982119..510cecd9501 100644 --- a/addons/account/i18n/hu.po +++ b/addons/account/i18n/hu.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:58+0000\n" +"PO-Revision-Date: 2010-08-26 09:29+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account diff --git a/addons/account/i18n/it.po b/addons/account/i18n/it.po index 6cc89aab9b8..c0bbc120c99 100644 --- a/addons/account/i18n/it.po +++ b/addons/account/i18n/it.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:55+0000\n" +"PO-Revision-Date: 2010-08-26 08:44+0000\n" "Last-Translator: eLBati - albatos.com \n" "Language-Team: \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-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account diff --git a/addons/account/i18n/lt.po b/addons/account/i18n/lt.po index c32d8a0abff..217e5df59fe 100644 --- a/addons/account/i18n/lt.po +++ b/addons/account/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:43+0000\n" +"PO-Revision-Date: 2010-08-26 07:41+0000\n" "Last-Translator: Giedrius Slavinskas \n" "Language-Team: \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-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account diff --git a/addons/account/i18n/pl.po b/addons/account/i18n/pl.po index 0360a636c9d..ec1a8855302 100644 --- a/addons/account/i18n/pl.po +++ b/addons/account/i18n/pl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:44+0000\n" +"PO-Revision-Date: 2010-08-26 07:41+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account diff --git a/addons/account/i18n/sq.po b/addons/account/i18n/sq.po index d92c139d1fd..67ea70f5f02 100644 --- a/addons/account/i18n/sq.po +++ b/addons/account/i18n/sq.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: ASTRIT BOKSHI \n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:19+0000\n" +"PO-Revision-Date: 2010-08-26 07:30+0000\n" "Last-Translator: bokshas \n" "Language-Team: Albanian \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-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account diff --git a/addons/account/i18n/sv.po b/addons/account/i18n/sv.po index 25d42c77ba0..106260acca0 100644 --- a/addons/account/i18n/sv.po +++ b/addons/account/i18n/sv.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:58+0000\n" +"PO-Revision-Date: 2010-08-26 09:18+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: <> <>\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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account diff --git a/addons/account/i18n/tr.po b/addons/account/i18n/tr.po index 480a019a8ca..8839a51f18b 100644 --- a/addons/account/i18n/tr.po +++ b/addons/account/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:43+0000\n" +"PO-Revision-Date: 2010-08-26 07:39+0000\n" "Last-Translator: Omer Barlas \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account diff --git a/addons/account/i18n/zh_CN.po b/addons/account/i18n/zh_CN.po index 1c718ffeaac..0f99498fc53 100644 --- a/addons/account/i18n/zh_CN.po +++ b/addons/account/i18n/zh_CN.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:28+0000\n" +"PO-Revision-Date: 2010-08-26 07:34+0000\n" "Last-Translator: Jeff Wang \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account diff --git a/addons/account_analytic_analysis/i18n/bg.po b/addons/account_analytic_analysis/i18n/bg.po index a9b0d11a6bb..234b0773227 100644 --- a/addons/account_analytic_analysis/i18n/bg.po +++ b/addons/account_analytic_analysis/i18n/bg.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:46+0000\n" +"PO-Revision-Date: 2010-08-26 07:46+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/fi.po b/addons/account_analytic_analysis/i18n/fi.po index 20a7e4b5158..8cdc8c93075 100644 --- a/addons/account_analytic_analysis/i18n/fi.po +++ b/addons/account_analytic_analysis/i18n/fi.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 08:02+0000\n" +"PO-Revision-Date: 2010-08-26 09:42+0000\n" "Last-Translator: OpenERP Administrators \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: 2010-08-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/lt.po b/addons/account_analytic_analysis/i18n/lt.po index 7944728cc78..05e5823c72c 100644 --- a/addons/account_analytic_analysis/i18n/lt.po +++ b/addons/account_analytic_analysis/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:55+0000\n" +"PO-Revision-Date: 2010-08-26 08:43+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/tr.po b/addons/account_analytic_analysis/i18n/tr.po index cb09d7f4bcb..092cf7efb8d 100644 --- a/addons/account_analytic_analysis/i18n/tr.po +++ b/addons/account_analytic_analysis/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:47+0000\n" +"PO-Revision-Date: 2010-08-26 07:49+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_default/i18n/lt.po b/addons/account_analytic_default/i18n/lt.po index bca01654e72..29ef66b8455 100644 --- a/addons/account_analytic_default/i18n/lt.po +++ b/addons/account_analytic_default/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:47+0000\n" +"PO-Revision-Date: 2010-08-26 07:47+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/tr.po b/addons/account_analytic_default/i18n/tr.po index d6d15d4c068..2ad3f17547e 100644 --- a/addons/account_analytic_default/i18n/tr.po +++ b/addons/account_analytic_default/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:48+0000\n" +"PO-Revision-Date: 2010-08-26 07:56+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_plans/i18n/lt.po b/addons/account_analytic_plans/i18n/lt.po index 2b7a8607a36..47739a68e0c 100644 --- a/addons/account_analytic_plans/i18n/lt.po +++ b/addons/account_analytic_plans/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:47+0000\n" +"PO-Revision-Date: 2010-08-26 07:48+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/tr.po b/addons/account_analytic_plans/i18n/tr.po index e92542b87a6..332f675174b 100644 --- a/addons/account_analytic_plans/i18n/tr.po +++ b/addons/account_analytic_plans/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:45+0000\n" +"PO-Revision-Date: 2010-08-26 07:43+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_analytic_plans diff --git a/addons/account_budget/i18n/lt.po b/addons/account_budget/i18n/lt.po index 5f58a37b999..68c09587c7a 100644 --- a/addons/account_budget/i18n/lt.po +++ b/addons/account_budget/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:54+0000\n" +"PO-Revision-Date: 2010-08-26 08:41+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/tr.po b/addons/account_budget/i18n/tr.po index 47281fd52c4..a5f849bc0e5 100644 --- a/addons/account_budget/i18n/tr.po +++ b/addons/account_budget/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:53+0000\n" +"PO-Revision-Date: 2010-08-26 08:32+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_budget diff --git a/addons/account_coda/i18n/ar.po b/addons/account_coda/i18n/ar.po index bd3e7a08bc3..d68f80e9b65 100644 --- a/addons/account_coda/i18n/ar.po +++ b/addons/account_coda/i18n/ar.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-11-24 13:11+0000\n" -"PO-Revision-Date: 2010-08-25 07:28+0000\n" +"PO-Revision-Date: 2010-08-26 06:50+0000\n" "Last-Translator: bamuhrez \n" "Language-Team: Arabic \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_coda diff --git a/addons/account_followup/i18n/lt.po b/addons/account_followup/i18n/lt.po index 099bc916b67..606a55770d7 100644 --- a/addons/account_followup/i18n/lt.po +++ b/addons/account_followup/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:44+0000\n" +"PO-Revision-Date: 2010-08-26 07:42+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/tr.po b/addons/account_followup/i18n/tr.po index 4f360520915..02f6e547571 100644 --- a/addons/account_followup/i18n/tr.po +++ b/addons/account_followup/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:48+0000\n" +"PO-Revision-Date: 2010-08-26 08:01+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_followup diff --git a/addons/account_invoice_layout/i18n/lt.po b/addons/account_invoice_layout/i18n/lt.po index 917ac400da4..44e25f4b42a 100644 --- a/addons/account_invoice_layout/i18n/lt.po +++ b/addons/account_invoice_layout/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:04+0000\n" +"PO-Revision-Date: 2010-08-26 07:26+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/tr.po b/addons/account_invoice_layout/i18n/tr.po index e276818f0a6..730d128ead2 100644 --- a/addons/account_invoice_layout/i18n/tr.po +++ b/addons/account_invoice_layout/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:52+0000\n" +"PO-Revision-Date: 2010-08-26 08:23+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_invoice_layout diff --git a/addons/account_payment/i18n/lt.po b/addons/account_payment/i18n/lt.po index 17409afad79..a68ffcfdfca 100644 --- a/addons/account_payment/i18n/lt.po +++ b/addons/account_payment/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 08:03+0000\n" +"PO-Revision-Date: 2010-08-26 09:54+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/tr.po b/addons/account_payment/i18n/tr.po index 21d80c3683b..3a1d7268acc 100644 --- a/addons/account_payment/i18n/tr.po +++ b/addons/account_payment/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 08:04+0000\n" +"PO-Revision-Date: 2010-08-26 10:06+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_payment diff --git a/addons/account_report/i18n/lt.po b/addons/account_report/i18n/lt.po index fbe0d33588b..3eee0423ed9 100644 --- a/addons/account_report/i18n/lt.po +++ b/addons/account_report/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:49+0000\n" +"PO-Revision-Date: 2010-08-26 08:18+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_report diff --git a/addons/account_report/i18n/tr.po b/addons/account_report/i18n/tr.po index 4e6c4a9d17c..92588898561 100644 --- a/addons/account_report/i18n/tr.po +++ b/addons/account_report/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:57+0000\n" +"PO-Revision-Date: 2010-08-26 08:50+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_report diff --git a/addons/account_reporting/i18n/lt.po b/addons/account_reporting/i18n/lt.po index fd60c86ee77..7a0e56c4207 100644 --- a/addons/account_reporting/i18n/lt.po +++ b/addons/account_reporting/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 05:58+0000\n" +"PO-Revision-Date: 2010-08-26 07:25+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_reporting diff --git a/addons/account_reporting/i18n/tr.po b/addons/account_reporting/i18n/tr.po index 5ae738be8e4..715c35dc034 100644 --- a/addons/account_reporting/i18n/tr.po +++ b/addons/account_reporting/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:57+0000\n" +"PO-Revision-Date: 2010-08-26 09:02+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_reporting diff --git a/addons/account_tax_include/i18n/tr.po b/addons/account_tax_include/i18n/tr.po index b53e7cb1130..2b5c25cf133 100644 --- a/addons/account_tax_include/i18n/tr.po +++ b/addons/account_tax_include/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:50+0000\n" +"PO-Revision-Date: 2010-08-26 08:22+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_tax_include diff --git a/addons/account_voucher/i18n/el.po b/addons/account_voucher/i18n/el.po index e75e183b8c2..ded08435e22 100644 --- a/addons/account_voucher/i18n/el.po +++ b/addons/account_voucher/i18n/el.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-03 02:48+0000\n" -"Last-Translator: mga (Open ERP) \n" +"PO-Revision-Date: 2010-08-26 21:26+0000\n" +"Last-Translator: Makis Nicolaou \n" "Language-Team: Greek \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-12 04:04+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/lt.po b/addons/account_voucher/i18n/lt.po index 3117a73dc6e..9fb0a76ee4c 100644 --- a/addons/account_voucher/i18n/lt.po +++ b/addons/account_voucher/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:53+0000\n" +"PO-Revision-Date: 2010-08-26 08:27+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/tr.po b/addons/account_voucher/i18n/tr.po index 9a1640a7386..a45f401e175 100644 --- a/addons/account_voucher/i18n/tr.po +++ b/addons/account_voucher/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:51+0000\n" +"PO-Revision-Date: 2010-08-26 08:23+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_voucher diff --git a/addons/analytic_journal_billing_rate/i18n/tr.po b/addons/analytic_journal_billing_rate/i18n/tr.po index b789cd2f733..42b2614287a 100644 --- a/addons/analytic_journal_billing_rate/i18n/tr.po +++ b/addons/analytic_journal_billing_rate/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:28+0000\n" +"PO-Revision-Date: 2010-08-26 07:36+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: analytic_journal_billing_rate diff --git a/addons/analytic_user_function/i18n/tr.po b/addons/analytic_user_function/i18n/tr.po index d0d5de89023..9c82898f69c 100644 --- a/addons/analytic_user_function/i18n/tr.po +++ b/addons/analytic_user_function/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:01+0000\n" +"PO-Revision-Date: 2010-08-26 07:26+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: analytic_user_function diff --git a/addons/auction/i18n/lt.po b/addons/auction/i18n/lt.po index 6049a1623c8..e4aea2b4bec 100644 --- a/addons/auction/i18n/lt.po +++ b/addons/auction/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:08+0000\n" +"PO-Revision-Date: 2010-08-26 07:26+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction diff --git a/addons/auction/i18n/nl.po b/addons/auction/i18n/nl.po index 4de273999a5..6704c5ff568 100644 --- a/addons/auction/i18n/nl.po +++ b/addons/auction/i18n/nl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:52+0000\n" +"PO-Revision-Date: 2010-08-26 08:25+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction diff --git a/addons/auction/i18n/tr.po b/addons/auction/i18n/tr.po index 63c637b7d63..09bd5d1cd22 100644 --- a/addons/auction/i18n/tr.po +++ b/addons/auction/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:28+0000\n" +"PO-Revision-Date: 2010-08-26 07:34+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction diff --git a/addons/audittrail/i18n/lt.po b/addons/audittrail/i18n/lt.po index 7300aaeb761..7959db2258f 100644 --- a/addons/audittrail/i18n/lt.po +++ b/addons/audittrail/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 08:04+0000\n" +"PO-Revision-Date: 2010-08-26 10:13+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/tr.po b/addons/audittrail/i18n/tr.po index eb0416ca084..c8614c9de2f 100644 --- a/addons/audittrail/i18n/tr.po +++ b/addons/audittrail/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:26+0000\n" +"PO-Revision-Date: 2010-08-26 07:33+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/zh_CN.po b/addons/audittrail/i18n/zh_CN.po index 8571129abc4..aab0d763868 100644 --- a/addons/audittrail/i18n/zh_CN.po +++ b/addons/audittrail/i18n/zh_CN.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:27+0000\n" +"PO-Revision-Date: 2010-08-26 07:33+0000\n" "Last-Translator: Black Jack \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: audittrail diff --git a/addons/base_contact/i18n/lt.po b/addons/base_contact/i18n/lt.po index e4b3144be1a..15fe693248c 100644 --- a/addons/base_contact/i18n/lt.po +++ b/addons/base_contact/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:45+0000\n" +"PO-Revision-Date: 2010-08-26 07:43+0000\n" "Last-Translator: Giedrius Slavinskas \n" "Language-Team: \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-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" "Language: lt\n" diff --git a/addons/base_contact/i18n/tr.po b/addons/base_contact/i18n/tr.po index 40f009508ac..2535a302fba 100644 --- a/addons/base_contact/i18n/tr.po +++ b/addons/base_contact/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 08:03+0000\n" +"PO-Revision-Date: 2010-08-26 10:01+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_contact diff --git a/addons/base_contact/i18n/zh_CN.po b/addons/base_contact/i18n/zh_CN.po index 051302f693c..4764e2d0f87 100644 --- a/addons/base_contact/i18n/zh_CN.po +++ b/addons/base_contact/i18n/zh_CN.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:58+0000\n" +"PO-Revision-Date: 2010-08-26 09:06+0000\n" "Last-Translator: Black Jack \n" "Language-Team: \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-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_contact diff --git a/addons/base_iban/i18n/ru.po b/addons/base_iban/i18n/ru.po index 93383fa56fe..8371ec8bff6 100644 --- a/addons/base_iban/i18n/ru.po +++ b/addons/base_iban/i18n/ru.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-03 03:37+0000\n" -"Last-Translator: mga (Open ERP) \n" +"PO-Revision-Date: 2010-08-26 18:11+0000\n" +"Last-Translator: Chertykov Denis \n" "Language-Team: \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-12 03:43+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_iban @@ -34,7 +34,7 @@ msgstr "Международный номер банковского счета #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_country_field msgid "country_id" -msgstr "" +msgstr "Интендификатор страны" #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_swift_field diff --git a/addons/base_iban/i18n/tr.po b/addons/base_iban/i18n/tr.po index ae4230e6348..cd48c6b9a05 100644 --- a/addons/base_iban/i18n/tr.po +++ b/addons/base_iban/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:58+0000\n" +"PO-Revision-Date: 2010-08-26 09:13+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_iban diff --git a/addons/base_module_quality/i18n/ru.po b/addons/base_module_quality/i18n/ru.po index 308f491c629..91121a9a7ca 100644 --- a/addons/base_module_quality/i18n/ru.po +++ b/addons/base_module_quality/i18n/ru.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-03 03:42+0000\n" -"Last-Translator: Nikolay Chesnokov \n" +"PO-Revision-Date: 2010-08-26 18:08+0000\n" +"Last-Translator: Chertykov Denis \n" "Language-Team: \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-12 04:06+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_module_quality @@ -70,6 +70,7 @@ msgid "" "Some tests are more critical than others, so they have a bigger weight in " "the computation of final rating" msgstr "" +"При вычислении итогового рейтинга более важные тесты имеют больший вес." #. module: base_module_quality #: view:module.quality.check:0 diff --git a/addons/base_module_quality/i18n/tr.po b/addons/base_module_quality/i18n/tr.po index 74f9138be0d..bfe795080f9 100644 --- a/addons/base_module_quality/i18n/tr.po +++ b/addons/base_module_quality/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:11+0000\n" +"PO-Revision-Date: 2010-08-26 07:27+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_module_quality diff --git a/addons/base_module_record/i18n/tr.po b/addons/base_module_record/i18n/tr.po index adaa0439e3e..b21658f75ae 100644 --- a/addons/base_module_record/i18n/tr.po +++ b/addons/base_module_record/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:26+0000\n" +"PO-Revision-Date: 2010-08-26 07:33+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_module_record diff --git a/addons/base_report_creator/i18n/tr.po b/addons/base_report_creator/i18n/tr.po index 7b6c120c54b..41d069f2e9c 100644 --- a/addons/base_report_creator/i18n/tr.po +++ b/addons/base_report_creator/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:45+0000\n" +"PO-Revision-Date: 2010-08-26 07:44+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_report_creator diff --git a/addons/base_report_designer/i18n/tr.po b/addons/base_report_designer/i18n/tr.po index 88545111c1d..809587930af 100644 --- a/addons/base_report_designer/i18n/tr.po +++ b/addons/base_report_designer/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:36+0000\n" +"PO-Revision-Date: 2010-08-26 07:17+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_report_designer diff --git a/addons/base_setup/i18n/ru.po b/addons/base_setup/i18n/ru.po index fe667959fda..80de3e68d5a 100644 --- a/addons/base_setup/i18n/ru.po +++ b/addons/base_setup/i18n/ru.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-02-02 17:28+0000\n" -"Last-Translator: Nikolay Chesnokov \n" +"PO-Revision-Date: 2010-08-26 17:38+0000\n" +"Last-Translator: Chertykov Denis \n" "Language-Team: \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-12 03:50+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_setup @@ -91,7 +91,7 @@ msgstr "Эл.почта" #: wizard_field:base_setup.base_setup,init,state_id:0 #: wizard_field:base_setup.base_setup,update,state_id:0 msgid "State" -msgstr "Состояние" +msgstr "Область/штат" #. module: base_setup #: wizard_view:base_setup.base_setup,finish:0 diff --git a/addons/base_setup/i18n/tr.po b/addons/base_setup/i18n/tr.po index d2812bee612..182b48a36a6 100644 --- a/addons/base_setup/i18n/tr.po +++ b/addons/base_setup/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:49+0000\n" +"PO-Revision-Date: 2010-08-26 08:06+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_setup diff --git a/addons/base_vat/i18n/tr.po b/addons/base_vat/i18n/tr.po index 48e7b36bc7d..dba4bf3028f 100644 --- a/addons/base_vat/i18n/tr.po +++ b/addons/base_vat/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:53+0000\n" +"PO-Revision-Date: 2010-08-26 08:28+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_vat diff --git a/addons/board/i18n/tr.po b/addons/board/i18n/tr.po index e31ebe54255..c872baeb2d6 100644 --- a/addons/board/i18n/tr.po +++ b/addons/board/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:49+0000\n" +"PO-Revision-Date: 2010-08-26 08:04+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: board diff --git a/addons/crm/i18n/fi.po b/addons/crm/i18n/fi.po index 6c3c0d7a10d..f385e397390 100644 --- a/addons/crm/i18n/fi.po +++ b/addons/crm/i18n/fi.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-01-05 05:59+0000\n" -"PO-Revision-Date: 2010-08-25 18:50+0000\n" -"Last-Translator: Heikki Kulhia \n" +"PO-Revision-Date: 2010-08-26 07:01+0000\n" +"Last-Translator: OpenERP Administrators \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: 2010-08-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm diff --git a/addons/crm/i18n/hr.po b/addons/crm/i18n/hr.po index c2c277685ee..64c53ecd6f4 100644 --- a/addons/crm/i18n/hr.po +++ b/addons/crm/i18n/hr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-01-05 05:59+0000\n" -"PO-Revision-Date: 2010-08-25 06:43+0000\n" +"PO-Revision-Date: 2010-08-26 07:13+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Vinteh\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-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" "Language: hr\n" diff --git a/addons/crm/i18n/lt.po b/addons/crm/i18n/lt.po index 6b6faea036e..7ed3a8e368f 100644 --- a/addons/crm/i18n/lt.po +++ b/addons/crm/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-01-05 05:59+0000\n" -"PO-Revision-Date: 2010-08-25 07:31+0000\n" +"PO-Revision-Date: 2010-08-26 07:19+0000\n" "Last-Translator: Giedrius Slavinskas \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" "Language: lt\n" diff --git a/addons/crm/i18n/pl.po b/addons/crm/i18n/pl.po index 8a22c73cf24..7b2bf0acc4c 100644 --- a/addons/crm/i18n/pl.po +++ b/addons/crm/i18n/pl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-01-05 05:59+0000\n" -"PO-Revision-Date: 2010-08-25 19:54+0000\n" -"Last-Translator: Grzegorz Grzelak (Cirrus.pl) \n" +"PO-Revision-Date: 2010-08-26 07:02+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm diff --git a/addons/crm/i18n/pt.po b/addons/crm/i18n/pt.po index 4f1655d6296..411a17a8a88 100644 --- a/addons/crm/i18n/pt.po +++ b/addons/crm/i18n/pt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-01-05 05:59+0000\n" -"PO-Revision-Date: 2010-08-25 07:31+0000\n" +"PO-Revision-Date: 2010-08-26 07:22+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm diff --git a/addons/crm/i18n/sk.po b/addons/crm/i18n/sk.po index 34539ac2668..0db3da68fdd 100644 --- a/addons/crm/i18n/sk.po +++ b/addons/crm/i18n/sk.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-01-05 05:59+0000\n" -"PO-Revision-Date: 2010-08-25 06:31+0000\n" +"PO-Revision-Date: 2010-08-26 07:21+0000\n" "Last-Translator: Radoslav Sloboda \n" "Language-Team: Slovak \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-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm diff --git a/addons/crm/i18n/tr.po b/addons/crm/i18n/tr.po index fa2d1a40b14..4b654cc259a 100644 --- a/addons/crm/i18n/tr.po +++ b/addons/crm/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-01-05 05:59+0000\n" -"PO-Revision-Date: 2010-08-25 07:30+0000\n" +"PO-Revision-Date: 2010-08-26 07:14+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm diff --git a/addons/crm_profiling/i18n/pl.po b/addons/crm_profiling/i18n/pl.po index ed7fd9d01f5..992b0d16ec4 100644 --- a/addons/crm_profiling/i18n/pl.po +++ b/addons/crm_profiling/i18n/pl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 19:09+0000\n" -"Last-Translator: Grzegorz Grzelak (Cirrus.pl) \n" +"PO-Revision-Date: 2010-08-26 06:38+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/tr.po b/addons/crm_profiling/i18n/tr.po index 6cf4ff61b90..72aee090e3e 100644 --- a/addons/crm_profiling/i18n/tr.po +++ b/addons/crm_profiling/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 08:02+0000\n" +"PO-Revision-Date: 2010-08-26 09:39+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm_profiling diff --git a/addons/delivery/i18n/ru.po b/addons/delivery/i18n/ru.po index 4df773eb8ed..8e940df6c6c 100644 --- a/addons/delivery/i18n/ru.po +++ b/addons/delivery/i18n/ru.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:26+0000\n" +"PO-Revision-Date: 2010-08-26 07:32+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: delivery diff --git a/addons/delivery/i18n/tr.po b/addons/delivery/i18n/tr.po index 79666a02cbd..e09e167a001 100644 --- a/addons/delivery/i18n/tr.po +++ b/addons/delivery/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:46+0000\n" +"PO-Revision-Date: 2010-08-26 07:47+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: delivery diff --git a/addons/document/i18n/mn.po b/addons/document/i18n/mn.po index 4c33b51a4ca..9542888415b 100644 --- a/addons/document/i18n/mn.po +++ b/addons/document/i18n/mn.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:34+0000\n" +"PO-Revision-Date: 2010-08-26 06:44+0000\n" "Last-Translator: ub121 \n" "Language-Team: Mongolian \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: document diff --git a/addons/document/i18n/ru.po b/addons/document/i18n/ru.po index f5dc23b3182..935a9b8c778 100644 --- a/addons/document/i18n/ru.po +++ b/addons/document/i18n/ru.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 08:03+0000\n" +"PO-Revision-Date: 2010-08-26 10:04+0000\n" "Last-Translator: devcode \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: document diff --git a/addons/document/i18n/tr.po b/addons/document/i18n/tr.po index ffa85df4ac1..1d5ef8e8dfd 100644 --- a/addons/document/i18n/tr.po +++ b/addons/document/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 08:01+0000\n" +"PO-Revision-Date: 2010-08-26 09:34+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: document diff --git a/addons/document/i18n/zh_CN.po b/addons/document/i18n/zh_CN.po index e61f62c7dbb..7a295f96d33 100644 --- a/addons/document/i18n/zh_CN.po +++ b/addons/document/i18n/zh_CN.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:53+0000\n" +"PO-Revision-Date: 2010-08-26 08:29+0000\n" "Last-Translator: Black Jack \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: document diff --git a/addons/document_ics/i18n/tr.po b/addons/document_ics/i18n/tr.po index cee29289a55..e13d124f402 100644 --- a/addons/document_ics/i18n/tr.po +++ b/addons/document_ics/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:31+0000\n" +"PO-Revision-Date: 2010-08-26 07:22+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: document_ics diff --git a/addons/document_ics/i18n/zh_CN.po b/addons/document_ics/i18n/zh_CN.po index df13fb1f652..764c7ed8ed6 100644 --- a/addons/document_ics/i18n/zh_CN.po +++ b/addons/document_ics/i18n/zh_CN.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:28+0000\n" +"PO-Revision-Date: 2010-08-26 07:22+0000\n" "Last-Translator: Black Jack \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: document_ics diff --git a/addons/hr/i18n/lt.po b/addons/hr/i18n/lt.po index 395d9c27ea3..e103c05d651 100644 --- a/addons/hr/i18n/lt.po +++ b/addons/hr/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:33+0000\n" +"PO-Revision-Date: 2010-08-26 07:21+0000\n" "Last-Translator: Giedrius Slavinskas \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr diff --git a/addons/hr/i18n/pt_BR.po b/addons/hr/i18n/pt_BR.po index e27f2261802..78005ed129f 100644 --- a/addons/hr/i18n/pt_BR.po +++ b/addons/hr/i18n/pt_BR.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:28+0000\n" +"PO-Revision-Date: 2010-08-26 07:12+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr diff --git a/addons/hr/i18n/tr.po b/addons/hr/i18n/tr.po index 55783de2946..eb24580442d 100644 --- a/addons/hr/i18n/tr.po +++ b/addons/hr/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:22+0000\n" +"PO-Revision-Date: 2010-08-26 07:28+0000\n" "Last-Translator: adsiz_1029@hotmail.com \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr diff --git a/addons/hr/i18n/zh_CN.po b/addons/hr/i18n/zh_CN.po index 7e17bebf90f..e76ed369174 100644 --- a/addons/hr/i18n/zh_CN.po +++ b/addons/hr/i18n/zh_CN.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:28+0000\n" +"PO-Revision-Date: 2010-08-26 06:55+0000\n" "Last-Translator: Black Jack \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr diff --git a/addons/hr_attendance/i18n/fi.po b/addons/hr_attendance/i18n/fi.po index ec469ee387f..6cb072abc90 100644 --- a/addons/hr_attendance/i18n/fi.po +++ b/addons/hr_attendance/i18n/fi.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:11+0000\n" +"PO-Revision-Date: 2010-08-26 07:12+0000\n" "Last-Translator: OpenERP Administrators \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: 2010-08-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/pt_BR.po b/addons/hr_attendance/i18n/pt_BR.po index 544073b1302..d59d4e0afdb 100644 --- a/addons/hr_attendance/i18n/pt_BR.po +++ b/addons/hr_attendance/i18n/pt_BR.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:38+0000\n" +"PO-Revision-Date: 2010-08-26 07:17+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/tr.po b/addons/hr_attendance/i18n/tr.po index d6d85af7f2c..6f723eeea71 100644 --- a/addons/hr_attendance/i18n/tr.po +++ b/addons/hr_attendance/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 08:06+0000\n" +"PO-Revision-Date: 2010-08-26 07:14+0000\n" "Last-Translator: Angel Spy \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_attendance diff --git a/addons/hr_contract/i18n/tr.po b/addons/hr_contract/i18n/tr.po index 68e1b9de4b4..aecad71bbcb 100644 --- a/addons/hr_contract/i18n/tr.po +++ b/addons/hr_contract/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:20+0000\n" +"PO-Revision-Date: 2010-08-26 07:28+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_contract diff --git a/addons/hr_expense/i18n/pt_BR.po b/addons/hr_expense/i18n/pt_BR.po index bb9327b1dc5..579913a3610 100644 --- a/addons/hr_expense/i18n/pt_BR.po +++ b/addons/hr_expense/i18n/pt_BR.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:51+0000\n" +"PO-Revision-Date: 2010-08-26 07:03+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/ru.po b/addons/hr_expense/i18n/ru.po index 670b50ba911..fc72ab921c1 100644 --- a/addons/hr_expense/i18n/ru.po +++ b/addons/hr_expense/i18n/ru.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-08-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/tr.po b/addons/hr_expense/i18n/tr.po index 4fa40599b27..2f460f741ca 100644 --- a/addons/hr_expense/i18n/tr.po +++ b/addons/hr_expense/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:45+0000\n" +"PO-Revision-Date: 2010-08-26 07:09+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_expense diff --git a/addons/hr_holidays/i18n/lt.po b/addons/hr_holidays/i18n/lt.po index 560dd4c9bcb..1a8043fdc90 100644 --- a/addons/hr_holidays/i18n/lt.po +++ b/addons/hr_holidays/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 05:46+0000\n" +"PO-Revision-Date: 2010-08-26 07:12+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/tr.po b/addons/hr_holidays/i18n/tr.po index 12b13f201f4..80f79cb0bb3 100644 --- a/addons/hr_holidays/i18n/tr.po +++ b/addons/hr_holidays/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:30+0000\n" +"PO-Revision-Date: 2010-08-26 06:58+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/zh_CN.po b/addons/hr_holidays/i18n/zh_CN.po index 5677a1f69d7..bf81e0e248d 100644 --- a/addons/hr_holidays/i18n/zh_CN.po +++ b/addons/hr_holidays/i18n/zh_CN.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:53+0000\n" +"PO-Revision-Date: 2010-08-26 07:00+0000\n" "Last-Translator: Black Jack \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_holidays diff --git a/addons/hr_timesheet/i18n/tr.po b/addons/hr_timesheet/i18n/tr.po index 7c73bb0ee57..cd50911e658 100644 --- a/addons/hr_timesheet/i18n/tr.po +++ b/addons/hr_timesheet/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:27+0000\n" +"PO-Revision-Date: 2010-08-26 07:18+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet_invoice/i18n/tr.po b/addons/hr_timesheet_invoice/i18n/tr.po index 1534c4fae3c..5f0528dd200 100644 --- a/addons/hr_timesheet_invoice/i18n/tr.po +++ b/addons/hr_timesheet_invoice/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:26+0000\n" +"PO-Revision-Date: 2010-08-26 07:08+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_sheet/i18n/lt.po b/addons/hr_timesheet_sheet/i18n/lt.po index 1965bfd46e3..a367624291e 100644 --- a/addons/hr_timesheet_sheet/i18n/lt.po +++ b/addons/hr_timesheet_sheet/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:41+0000\n" +"PO-Revision-Date: 2010-08-26 07:04+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/tr.po b/addons/hr_timesheet_sheet/i18n/tr.po index 63b817c9730..21eeb2c1d07 100644 --- a/addons/hr_timesheet_sheet/i18n/tr.po +++ b/addons/hr_timesheet_sheet/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:56+0000\n" +"PO-Revision-Date: 2010-08-26 06:49+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_timesheet_sheet diff --git a/addons/idea/i18n/lt.po b/addons/idea/i18n/lt.po index 89be83fa2d3..d296d8b91ad 100644 --- a/addons/idea/i18n/lt.po +++ b/addons/idea/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:27+0000\n" +"PO-Revision-Date: 2010-08-26 07:18+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: idea diff --git a/addons/idea/i18n/zh_CN.po b/addons/idea/i18n/zh_CN.po index bb8f436d4d5..4d06b7d4d22 100644 --- a/addons/idea/i18n/zh_CN.po +++ b/addons/idea/i18n/zh_CN.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:33+0000\n" +"PO-Revision-Date: 2010-08-26 07:23+0000\n" "Last-Translator: Black Jack \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: idea diff --git a/addons/l10n_be/i18n/tr.po b/addons/l10n_be/i18n/tr.po index 59115d63c99..386c706b758 100644 --- a/addons/l10n_be/i18n/tr.po +++ b/addons/l10n_be/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:24+0000\n" +"PO-Revision-Date: 2010-08-26 07:28+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: l10n_be diff --git a/addons/l10n_ch/i18n/it.po b/addons/l10n_ch/i18n/it.po index 0980533a58f..c3a59bd9325 100644 --- a/addons/l10n_ch/i18n/it.po +++ b/addons/l10n_ch/i18n/it.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:15+0000\n" +"PO-Revision-Date: 2010-08-26 07:27+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: l10n_ch diff --git a/addons/l10n_ch/i18n/tr.po b/addons/l10n_ch/i18n/tr.po index 555280aa43b..377d5a926a3 100644 --- a/addons/l10n_ch/i18n/tr.po +++ b/addons/l10n_ch/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:27+0000\n" +"PO-Revision-Date: 2010-08-26 07:18+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: l10n_ch diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/tr.po b/addons/l10n_ch_chart_c2c_pcg/i18n/tr.po index 0e43c465e1a..4573d619b6c 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/tr.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:42+0000\n" +"PO-Revision-Date: 2010-08-26 07:13+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: l10n_ch_chart_c2c_pcg diff --git a/addons/l10n_chart_uk_minimal/i18n/tr.po b/addons/l10n_chart_uk_minimal/i18n/tr.po index b3eff33c5cd..b1293d69d2f 100644 --- a/addons/l10n_chart_uk_minimal/i18n/tr.po +++ b/addons/l10n_chart_uk_minimal/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:36+0000\n" +"PO-Revision-Date: 2010-08-26 07:17+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: l10n_chart_uk_minimal diff --git a/addons/l10n_fr/i18n/tr.po b/addons/l10n_fr/i18n/tr.po index eb30bedae66..34bb20dfaef 100644 --- a/addons/l10n_fr/i18n/tr.po +++ b/addons/l10n_fr/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:53+0000\n" +"PO-Revision-Date: 2010-08-26 06:59+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: l10n_fr diff --git a/addons/l10n_lu/i18n/tr.po b/addons/l10n_lu/i18n/tr.po index 9079d4f4a62..7dd0ca54f2e 100644 --- a/addons/l10n_lu/i18n/tr.po +++ b/addons/l10n_lu/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:26+0000\n" +"PO-Revision-Date: 2010-08-26 07:28+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: l10n_lu diff --git a/addons/membership/i18n/tr.po b/addons/membership/i18n/tr.po index 34555230ea9..cd3b83590e7 100644 --- a/addons/membership/i18n/tr.po +++ b/addons/membership/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:34+0000\n" +"PO-Revision-Date: 2010-08-26 07:19+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: membership diff --git a/addons/mrp/i18n/pt_BR.po b/addons/mrp/i18n/pt_BR.po index 38d5a24bbbd..0b4e417bb20 100644 --- a/addons/mrp/i18n/pt_BR.po +++ b/addons/mrp/i18n/pt_BR.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:37+0000\n" +"PO-Revision-Date: 2010-08-26 07:16+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: mrp diff --git a/addons/mrp/i18n/tr.po b/addons/mrp/i18n/tr.po index 857c0e138d6..585e130d5de 100644 --- a/addons/mrp/i18n/tr.po +++ b/addons/mrp/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 08:05+0000\n" +"PO-Revision-Date: 2010-08-26 07:24+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: mrp diff --git a/addons/mrp/i18n/zh_TW.po b/addons/mrp/i18n/zh_TW.po index 6ff90cc592d..536f03a06e9 100644 --- a/addons/mrp/i18n/zh_TW.po +++ b/addons/mrp/i18n/zh_TW.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:57+0000\n" +"PO-Revision-Date: 2010-08-26 07:24+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: mrp diff --git a/addons/mrp_operations/i18n/tr.po b/addons/mrp_operations/i18n/tr.po index e1be6a0f609..59662b1eeba 100644 --- a/addons/mrp_operations/i18n/tr.po +++ b/addons/mrp_operations/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:31+0000\n" +"PO-Revision-Date: 2010-08-26 07:38+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: mrp_operations diff --git a/addons/mrp_repair/i18n/tr.po b/addons/mrp_repair/i18n/tr.po index 67143328333..5ad76e1aeda 100644 --- a/addons/mrp_repair/i18n/tr.po +++ b/addons/mrp_repair/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:26+0000\n" +"PO-Revision-Date: 2010-08-26 07:09+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: mrp_repair diff --git a/addons/mrp_subproduct/i18n/tr.po b/addons/mrp_subproduct/i18n/tr.po index d44f1ffaeed..61e415fe738 100644 --- a/addons/mrp_subproduct/i18n/tr.po +++ b/addons/mrp_subproduct/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:41+0000\n" +"PO-Revision-Date: 2010-08-26 07:13+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: mrp_subproduct diff --git a/addons/point_of_sale/i18n/lt.po b/addons/point_of_sale/i18n/lt.po index bb4353fd9a7..2fa4f4fd4a3 100644 --- a/addons/point_of_sale/i18n/lt.po +++ b/addons/point_of_sale/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:29+0000\n" +"PO-Revision-Date: 2010-08-26 06:58+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/tr.po b/addons/point_of_sale/i18n/tr.po index 6840ab6b013..c74114a5b41 100644 --- a/addons/point_of_sale/i18n/tr.po +++ b/addons/point_of_sale/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:33+0000\n" +"PO-Revision-Date: 2010-08-26 07:23+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: point_of_sale diff --git a/addons/process/i18n/tr.po b/addons/process/i18n/tr.po index 559379cdc7f..1c9a2642ad5 100644 --- a/addons/process/i18n/tr.po +++ b/addons/process/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:41+0000\n" +"PO-Revision-Date: 2010-08-26 07:04+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:55+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:39+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: process diff --git a/addons/product/i18n/lt.po b/addons/product/i18n/lt.po index 720d482c323..eb7fc7ff1aa 100644 --- a/addons/product/i18n/lt.po +++ b/addons/product/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:33+0000\n" +"PO-Revision-Date: 2010-08-26 07:38+0000\n" "Last-Translator: Giedrius Slavinskas \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" "Language: lt\n" diff --git a/addons/product/i18n/mn.po b/addons/product/i18n/mn.po index 874e8a6c802..40c4e88cbb2 100644 --- a/addons/product/i18n/mn.po +++ b/addons/product/i18n/mn.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:33+0000\n" +"PO-Revision-Date: 2010-08-26 06:47+0000\n" "Last-Translator: ub121 \n" "Language-Team: Mongolian \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: product diff --git a/addons/product/i18n/pt_BR.po b/addons/product/i18n/pt_BR.po index 24e3745e1fc..b93bdac3c67 100644 --- a/addons/product/i18n/pt_BR.po +++ b/addons/product/i18n/pt_BR.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:34+0000\n" +"PO-Revision-Date: 2010-08-26 07:07+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: product diff --git a/addons/product/i18n/sr.po b/addons/product/i18n/sr.po index 344b4a7367b..972977477b8 100644 --- a/addons/product/i18n/sr.po +++ b/addons/product/i18n/sr.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 08:05+0000\n" +"PO-Revision-Date: 2010-08-26 07:24+0000\n" "Last-Translator: Sonja Sardelić \n" "Language-Team: Serbian \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: product diff --git a/addons/product/i18n/tr.po b/addons/product/i18n/tr.po index e8d1b3f510e..f6ec6b38ae3 100644 --- a/addons/product/i18n/tr.po +++ b/addons/product/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:39+0000\n" +"PO-Revision-Date: 2010-08-26 07:04+0000\n" "Last-Translator: Angel Spy \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: product diff --git a/addons/product/i18n/zh_CN.po b/addons/product/i18n/zh_CN.po index 4489fc3c79b..9a9a8896263 100644 --- a/addons/product/i18n/zh_CN.po +++ b/addons/product/i18n/zh_CN.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:55+0000\n" +"PO-Revision-Date: 2010-08-26 06:56+0000\n" "Last-Translator: Black Jack \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: product diff --git a/addons/product_margin/i18n/pt_BR.po b/addons/product_margin/i18n/pt_BR.po index fc8aac36280..7313b0c6a74 100644 --- a/addons/product_margin/i18n/pt_BR.po +++ b/addons/product_margin/i18n/pt_BR.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:26+0000\n" +"PO-Revision-Date: 2010-08-26 07:08+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/tr.po b/addons/product_margin/i18n/tr.po index 1f746094e89..0391c918d0d 100644 --- a/addons/product_margin/i18n/tr.po +++ b/addons/product_margin/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 08:04+0000\n" +"PO-Revision-Date: 2010-08-26 07:24+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: product_margin diff --git a/addons/project/i18n/lt.po b/addons/project/i18n/lt.po index 7d8c21eba90..8e49f903c2a 100644 --- a/addons/project/i18n/lt.po +++ b/addons/project/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:29+0000\n" +"PO-Revision-Date: 2010-08-26 07:25+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project diff --git a/addons/project/i18n/ru.po b/addons/project/i18n/ru.po index 73de4c144d3..f98e5e15259 100644 --- a/addons/project/i18n/ru.po +++ b/addons/project/i18n/ru.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:34+0000\n" +"PO-Revision-Date: 2010-08-26 07:07+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project diff --git a/addons/project/i18n/tr.po b/addons/project/i18n/tr.po index 8f0c6e4836f..2e2b4ef4646 100644 --- a/addons/project/i18n/tr.po +++ b/addons/project/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:37+0000\n" +"PO-Revision-Date: 2010-08-26 07:06+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project diff --git a/addons/project_gtd/i18n/tr.po b/addons/project_gtd/i18n/tr.po index d35c6f62531..d448448a457 100644 --- a/addons/project_gtd/i18n/tr.po +++ b/addons/project_gtd/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:19+0000\n" +"PO-Revision-Date: 2010-08-26 07:27+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_gtd diff --git a/addons/project_mrp/i18n/tr.po b/addons/project_mrp/i18n/tr.po index ced7c23a54f..9fd10691cea 100644 --- a/addons/project_mrp/i18n/tr.po +++ b/addons/project_mrp/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:04+0000\n" +"PO-Revision-Date: 2010-08-26 07:23+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_mrp diff --git a/addons/project_retro_planning/i18n/tr.po b/addons/project_retro_planning/i18n/tr.po index fe38c87d244..dd11c53d5bd 100644 --- a/addons/project_retro_planning/i18n/tr.po +++ b/addons/project_retro_planning/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:27+0000\n" +"PO-Revision-Date: 2010-08-26 07:19+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_retro_planning diff --git a/addons/project_scrum/i18n/tr.po b/addons/project_scrum/i18n/tr.po index 3a7c12aad91..5734eac375b 100644 --- a/addons/project_scrum/i18n/tr.po +++ b/addons/project_scrum/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:46+0000\n" +"PO-Revision-Date: 2010-08-26 07:44+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_scrum diff --git a/addons/project_timesheet/i18n/tr.po b/addons/project_timesheet/i18n/tr.po index fb50ff8e7ba..076b0f26bb7 100644 --- a/addons/project_timesheet/i18n/tr.po +++ b/addons/project_timesheet/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:49+0000\n" +"PO-Revision-Date: 2010-08-26 07:09+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_timesheet diff --git a/addons/purchase/i18n/et.po b/addons/purchase/i18n/et.po index f1cf9fe0f53..31031d5ff86 100644 --- a/addons/purchase/i18n/et.po +++ b/addons/purchase/i18n/et.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:42+0000\n" +"PO-Revision-Date: 2010-08-26 07:06+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: purchase diff --git a/addons/purchase/i18n/lt.po b/addons/purchase/i18n/lt.po index 0d18789f8be..9822b2315aa 100644 --- a/addons/purchase/i18n/lt.po +++ b/addons/purchase/i18n/lt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:33+0000\n" +"PO-Revision-Date: 2010-08-26 07:23+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: purchase diff --git a/addons/purchase/i18n/tr.po b/addons/purchase/i18n/tr.po index 8e599e7db86..1a49cf8367a 100644 --- a/addons/purchase/i18n/tr.po +++ b/addons/purchase/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 05:50+0000\n" +"PO-Revision-Date: 2010-08-26 07:10+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: purchase diff --git a/addons/report_intrastat/i18n/pt_BR.po b/addons/report_intrastat/i18n/pt_BR.po index e3307bb812b..444fa187953 100644 --- a/addons/report_intrastat/i18n/pt_BR.po +++ b/addons/report_intrastat/i18n/pt_BR.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:35+0000\n" +"PO-Revision-Date: 2010-08-26 07:18+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/tr.po b/addons/report_intrastat/i18n/tr.po index 5b23e2d9293..d6e3f149b05 100644 --- a/addons/report_intrastat/i18n/tr.po +++ b/addons/report_intrastat/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:23+0000\n" +"PO-Revision-Date: 2010-08-26 07:28+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: report_intrastat diff --git a/addons/sale/i18n/pt_BR.po b/addons/sale/i18n/pt_BR.po index 65631f8ed66..caf8b021719 100644 --- a/addons/sale/i18n/pt_BR.po +++ b/addons/sale/i18n/pt_BR.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: pt_BR\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:39+0000\n" +"PO-Revision-Date: 2010-08-26 07:05+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale diff --git a/addons/sale/i18n/sr.po b/addons/sale/i18n/sr.po index 8c98a62608d..ce10b55cd39 100644 --- a/addons/sale/i18n/sr.po +++ b/addons/sale/i18n/sr.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:27+0000\n" +"PO-Revision-Date: 2010-08-26 07:19+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Serbian \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale diff --git a/addons/sale/i18n/sv.po b/addons/sale/i18n/sv.po index 7613d7ed0fd..b53affbdccd 100644 --- a/addons/sale/i18n/sv.po +++ b/addons/sale/i18n/sv.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:31+0000\n" +"PO-Revision-Date: 2010-08-26 07:22+0000\n" "Last-Translator: Anders Eriksson (Mobila System) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale diff --git a/addons/sale/i18n/tr.po b/addons/sale/i18n/tr.po index d9bc3181dcb..ad51a6ca198 100644 --- a/addons/sale/i18n/tr.po +++ b/addons/sale/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:14+0000\n" +"PO-Revision-Date: 2010-08-26 07:11+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale diff --git a/addons/sale/i18n/uk.po b/addons/sale/i18n/uk.po index 55fdd68cbd8..3e76ea4ad23 100644 --- a/addons/sale/i18n/uk.po +++ b/addons/sale/i18n/uk.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:07+0000\n" +"PO-Revision-Date: 2010-08-26 07:23+0000\n" "Last-Translator: Jay (OpenERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale diff --git a/addons/sale/i18n/vi.po b/addons/sale/i18n/vi.po index 5562068fa01..22288572ad4 100644 --- a/addons/sale/i18n/vi.po +++ b/addons/sale/i18n/vi.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:37+0000\n" +"PO-Revision-Date: 2010-08-26 07:15+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: Vietnamese \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale diff --git a/addons/sale_journal/i18n/pl.po b/addons/sale_journal/i18n/pl.po index 8adaeae688c..bdc02ea2cc7 100644 --- a/addons/sale_journal/i18n/pl.po +++ b/addons/sale_journal/i18n/pl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:26+0000\n" +"PO-Revision-Date: 2010-08-26 07:08+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/tr.po b/addons/sale_journal/i18n/tr.po index 8a552d536f1..4cb825ce953 100644 --- a/addons/sale_journal/i18n/tr.po +++ b/addons/sale_journal/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 06:39+0000\n" +"PO-Revision-Date: 2010-08-26 07:16+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:56+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale_journal diff --git a/addons/stock/i18n/bs.po b/addons/stock/i18n/bs.po index d30cf3c9ab0..67342d5c2ac 100644 --- a/addons/stock/i18n/bs.po +++ b/addons/stock/i18n/bs.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:27+0000\n" +"PO-Revision-Date: 2010-08-26 07:06+0000\n" "Last-Translator: adnan \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock diff --git a/addons/stock/i18n/it.po b/addons/stock/i18n/it.po index 2d05a843cfa..f7a4ddc3ed3 100644 --- a/addons/stock/i18n/it.po +++ b/addons/stock/i18n/it.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:25+0000\n" +"PO-Revision-Date: 2010-08-26 07:32+0000\n" "Last-Translator: Davide Corio - Domsense \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock diff --git a/addons/stock/i18n/pl.po b/addons/stock/i18n/pl.po index 12f1d467dbc..a9f54bbc03f 100644 --- a/addons/stock/i18n/pl.po +++ b/addons/stock/i18n/pl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:31+0000\n" +"PO-Revision-Date: 2010-08-26 07:37+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock diff --git a/addons/stock/i18n/pt_BR.po b/addons/stock/i18n/pt_BR.po index a4bdd2f11b4..b6e8ed60691 100644 --- a/addons/stock/i18n/pt_BR.po +++ b/addons/stock/i18n/pt_BR.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 05:56+0000\n" +"PO-Revision-Date: 2010-08-26 07:09+0000\n" "Last-Translator: Renato Lima - http://www.akretion.com " "\n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock diff --git a/addons/stock/i18n/tr.po b/addons/stock/i18n/tr.po index c956bb06e70..21c235a54cc 100644 --- a/addons/stock/i18n/tr.po +++ b/addons/stock/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:01+0000\n" +"PO-Revision-Date: 2010-08-26 07:19+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock diff --git a/addons/stock_invoice_directly/i18n/tr.po b/addons/stock_invoice_directly/i18n/tr.po index 7c54d4d1b40..4fa6a082a80 100644 --- a/addons/stock_invoice_directly/i18n/tr.po +++ b/addons/stock_invoice_directly/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:46+0000\n" +"PO-Revision-Date: 2010-08-26 07:46+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock_invoice_directly diff --git a/addons/stock_location/i18n/tr.po b/addons/stock_location/i18n/tr.po index 901787a10bd..fcb8fd7123f 100644 --- a/addons/stock_location/i18n/tr.po +++ b/addons/stock_location/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 08:02+0000\n" +"PO-Revision-Date: 2010-08-26 09:47+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock_location diff --git a/addons/stock_no_autopicking/i18n/tr.po b/addons/stock_no_autopicking/i18n/tr.po index 768eeab7102..ca8abcc61c6 100644 --- a/addons/stock_no_autopicking/i18n/tr.po +++ b/addons/stock_no_autopicking/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:17+0000\n" +"PO-Revision-Date: 2010-08-26 07:29+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock_no_autopicking diff --git a/addons/subscription/i18n/pl.po b/addons/subscription/i18n/pl.po index c5587879631..cc9b3e50303 100644 --- a/addons/subscription/i18n/pl.po +++ b/addons/subscription/i18n/pl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 18:52+0000\n" -"Last-Translator: Grzegorz Grzelak (Cirrus.pl) \n" +"PO-Revision-Date: 2010-08-26 06:35+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: subscription diff --git a/addons/subscription/i18n/tr.po b/addons/subscription/i18n/tr.po index b2a889a2282..f58a6ead587 100644 --- a/addons/subscription/i18n/tr.po +++ b/addons/subscription/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:29+0000\n" +"PO-Revision-Date: 2010-08-26 07:36+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:54+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: subscription diff --git a/addons/survey/i18n/pl.po b/addons/survey/i18n/pl.po index 95252bfab22..ed5d7e7828e 100644 --- a/addons/survey/i18n/pl.po +++ b/addons/survey/i18n/pl.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-11-26 06:01+0000\n" -"PO-Revision-Date: 2010-08-25 20:02+0000\n" -"Last-Translator: Grzegorz Grzelak (Cirrus.pl) \n" +"PO-Revision-Date: 2010-08-26 06:37+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: Polish \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: survey diff --git a/addons/warning/i18n/tr.po b/addons/warning/i18n/tr.po index ee375cb3d2f..016eaa00642 100644 --- a/addons/warning/i18n/tr.po +++ b/addons/warning/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:49+0000\n" +"PO-Revision-Date: 2010-08-26 08:10+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: warning diff --git a/addons/wiki/i18n/tr.po b/addons/wiki/i18n/tr.po index 8012eea9ffd..01049f4d982 100644 --- a/addons/wiki/i18n/tr.po +++ b/addons/wiki/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-25 07:57+0000\n" +"PO-Revision-Date: 2010-08-26 08:57+0000\n" "Last-Translator: adsiz_1029@hotmail.com \n" "Language-Team: \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-26 03:57+0000\n" +"X-Launchpad-Export-Date: 2010-08-27 03:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: wiki