diff --git a/addons/account/__openerp__.py b/addons/account/__openerp__.py index 7fffc4f07d4..43aaa2f58c1 100644 --- a/addons/account/__openerp__.py +++ b/addons/account/__openerp__.py @@ -133,7 +133,9 @@ for a particular financial year and for preparation of vouchers there is a modul "static/src/xml/account_move_reconciliation.xml", "static/src/xml/account_move_line_quickadd.xml", ], - 'css':['static/src/css/account_move_reconciliation.css' + 'css':[ + 'static/src/css/account_move_reconciliation.css', + 'static/src/css/account_move_line_quickadd.css' ], 'demo': [ 'demo/account_demo.xml', diff --git a/addons/account/account.py b/addons/account/account.py index ebcf61edcf4..a14c44405b9 100644 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -705,7 +705,7 @@ class account_journal(osv.osv): 'with_last_closing_balance' : fields.boolean('Opening With Last Closing Balance'), 'name': fields.char('Journal Name', size=64, required=True), 'code': fields.char('Code', size=5, required=True, help="The code will be displayed on reports."), - 'type': fields.selection([('sale', 'Sale'),('sale_refund','Sale Refund'), ('purchase', 'Purchase'), ('purchase_refund','Purchase Refund'), ('cash', 'Cash'), ('bank', 'Bank and Cheques'), ('general', 'General'), ('situation', 'Opening/Closing Situation')], 'Type', size=32, required=True, + 'type': fields.selection([('sale', 'Sale'),('sale_refund','Sale Refund'), ('purchase', 'Purchase'), ('purchase_refund','Purchase Refund'), ('cash', 'Cash'), ('bank', 'Bank and Checks'), ('general', 'General'), ('situation', 'Opening/Closing Situation')], 'Type', size=32, required=True, help="Select 'Sale' for customer invoices journals."\ " Select 'Purchase' for supplier invoices journals."\ " Select 'Cash' or 'Bank' for journals that are used in customer or supplier payments."\ @@ -715,7 +715,7 @@ class account_journal(osv.osv): 'account_control_ids': fields.many2many('account.account', 'account_account_type_rel', 'journal_id','account_id', 'Account', domain=[('type','<>','view'), ('type', '<>', 'closed')]), 'default_credit_account_id': fields.many2one('account.account', 'Default Credit Account', domain="[('type','!=','view')]", help="It acts as a default account for credit amount"), 'default_debit_account_id': fields.many2one('account.account', 'Default Debit Account', domain="[('type','!=','view')]", help="It acts as a default account for debit amount"), - 'centralisation': fields.boolean('Centralised Counterpart', help="Check this box to determine that each entry of this journal won't create a new counterpart but will share the same counterpart. This is used in fiscal year closing."), + 'centralisation': fields.boolean('Centralized Counterpart', help="Check this box to determine that each entry of this journal won't create a new counterpart but will share the same counterpart. This is used in fiscal year closing."), 'update_posted': fields.boolean('Allow Cancelling Entries', help="Check this box if you want to allow the cancellation the entries related to this journal or of the invoice related to this journal"), 'group_invoice_lines': fields.boolean('Group Invoice Lines', help="If this box is checked, the system will try to group the accounting lines when generating them from invoices."), 'sequence_id': fields.many2one('ir.sequence', 'Entry Sequence', help="This field contains the information related to the numbering of the journal entries of this journal.", required=True), @@ -1014,10 +1014,15 @@ class account_period(osv.osv): else: company_id = self.pool.get('res.users').browse(cr, uid, uid, context=context).company_id.id args.append(('company_id', '=', company_id)) - ids = self.search(cr, uid, args, context=context) - if not ids: - raise osv.except_osv(_('Error!'), _('There is no period defined for this date: %s.\nPlease create one.')%dt) - return ids + result = [] + if context.get('account_period_prefer_normal'): + # look for non-special periods first, and fallback to all if no result is found + result = self.search(cr, uid, args + [('special', '=', False)], context=context) + if not result: + result = self.search(cr, uid, args, context=context) + if not result: + raise osv.except_osv(_('Error !'), _('There is no period defined for this date: %s.\nPlease create one.')%dt) + return result def action_draft(self, cr, uid, ids, *args): mode = 'draft' @@ -1191,10 +1196,9 @@ class account_move(osv.osv): return res def _get_period(self, cr, uid, context=None): - periods = self.pool.get('account.period').find(cr, uid) - if periods: - return periods[0] - return False + ctx = dict(context or {}, account_period_prefer_normal=True) + period_ids = self.pool.get('account.period').find(cr, uid, context=ctx) + return period_ids[0] def _amount_compute(self, cr, uid, ids, name, args, context, where =''): if not ids: return {} @@ -1459,6 +1463,7 @@ class account_move(osv.osv): line_id = self.pool.get('account.move.line').create(cr, uid, { 'name': _(mode.capitalize()+' Centralisation'), 'centralisation': mode, + 'partner_id': False, 'account_id': account_id, 'move_id': move.id, 'journal_id': move.journal_id.id, @@ -1497,6 +1502,7 @@ class account_move(osv.osv): line_id = self.pool.get('account.move.line').create(cr, uid, { 'name': _('Currency Adjustment'), 'centralisation': 'currency', + 'partner_id': False, 'account_id': account_id, 'move_id': move.id, 'journal_id': move.journal_id.id, diff --git a/addons/account/account_analytic_line.py b/addons/account/account_analytic_line.py index 7120625d8ab..f3617106f28 100644 --- a/addons/account/account_analytic_line.py +++ b/addons/account/account_analytic_line.py @@ -82,7 +82,7 @@ class account_analytic_line(osv.osv): if j_id.type == 'purchase': unit = prod.uom_po_id.id if j_id.type <> 'sale': - a = prod.product_tmpl_id.property_account_expense.id + a = prod.property_account_expense.id if not a: a = prod.categ_id.property_account_expense_categ.id if not a: @@ -91,7 +91,7 @@ class account_analytic_line(osv.osv): 'for this product: "%s" (id:%d).') % \ (prod.name, prod.id,)) else: - a = prod.product_tmpl_id.property_account_income.id + a = prod.property_account_income.id if not a: a = prod.categ_id.property_account_income_categ.id if not a: diff --git a/addons/account/account_bank_statement.py b/addons/account/account_bank_statement.py index 58645536d66..8e1a5dd26c6 100644 --- a/addons/account/account_bank_statement.py +++ b/addons/account/account_bank_statement.py @@ -439,10 +439,11 @@ class account_bank_statement(osv.osv): for st in self.browse(cr, uid, ids, context=context): if st.state=='draft': continue - ids = [] + move_ids = [] for line in st.line_ids: - ids += [x.id for x in line.move_ids] - account_move_obj.unlink(cr, uid, ids, context) + move_ids += [x.id for x in line.move_ids] + account_move_obj.button_cancel(cr, uid, move_ids, context=context) + account_move_obj.unlink(cr, uid, move_ids, context) done.append(st.id) return self.write(cr, uid, done, {'state':'draft'}, context=context) @@ -546,7 +547,7 @@ class account_bank_statement_line(osv.osv): _name = "account.bank.statement.line" _description = "Bank Statement Line" _columns = { - 'name': fields.char('Communication', required=True), + 'name': fields.char('OBI', required=True, help="Originator to Beneficiary Information"), 'date': fields.date('Date', required=True), 'amount': fields.float('Amount', digits_compute=dp.get_precision('Account')), 'type': fields.selection([ diff --git a/addons/account/account_invoice.py b/addons/account/account_invoice.py index 89caf499c70..250a0446534 100644 --- a/addons/account/account_invoice.py +++ b/addons/account/account_invoice.py @@ -184,7 +184,14 @@ class account_invoice(osv.osv): _inherit = ['mail.thread'] _description = 'Invoice' _order = "id desc" - + _track = { + 'type': { + }, + 'state': { + 'account.mt_invoice_paid': lambda self, cr, uid, obj, ctx=None: obj['state'] == 'paid' and obj['type'] in ('out_invoice', 'out_refund'), + 'account.mt_invoice_validated': lambda self, cr, uid, obj, ctx=None: obj['state'] == 'open' and obj['type'] in ('out_invoice', 'out_refund'), + }, + } _columns = { 'name': fields.char('Description', size=64, select=True, readonly=True, states={'draft':[('readonly',False)]}), 'origin': fields.char('Source Document', size=64, help="Reference of the document that produced this invoice.", readonly=True, states={'draft':[('readonly',False)]}), @@ -194,7 +201,7 @@ class account_invoice(osv.osv): ('in_invoice','Supplier Invoice'), ('out_refund','Customer Refund'), ('in_refund','Supplier Refund'), - ],'Type', readonly=True, select=True, change_default=True), + ],'Type', readonly=True, select=True, change_default=True, track_visibility='always'), 'number': fields.related('move_id','name', type='char', readonly=True, size=64, relation='account.move', store=True, string='Number'), 'internal_number': fields.char('Invoice Number', size=32, readonly=True, help="Unique number of the invoice, computed automatically when the invoice is created."), @@ -210,7 +217,7 @@ class account_invoice(osv.osv): ('open','Open'), ('paid','Paid'), ('cancel','Cancelled'), - ],'Status', select=True, readonly=True, + ],'Status', select=True, readonly=True, track_visibility='onchange', help=' * The \'Draft\' status is used when a user is encoding a new and unconfirmed Invoice. \ \n* The \'Pro-forma\' when invoice is in Pro-forma status,invoice does not have an invoice number. \ \n* The \'Open\' status is used when user create invoice,a invoice number is generated.Its in open status till user does not pay invoice. \ @@ -221,8 +228,8 @@ class account_invoice(osv.osv): 'date_due': fields.date('Due Date', readonly=True, states={'draft':[('readonly',False)]}, select=True, help="If you use payment terms, the due date will be computed automatically at the generation "\ "of accounting entries. The payment term may compute several due dates, for example 50% now and 50% in one month, but if you want to force a due date, make sure that the payment term is not set on the invoice. If you keep the payment term and the due date empty, it means direct payment."), - 'partner_id': fields.many2one('res.partner', 'Partner', change_default=True, readonly=True, required=True, states={'draft':[('readonly',False)]}), - 'payment_term': fields.many2one('account.payment.term', 'Payment Term',readonly=True, states={'draft':[('readonly',False)]}, + 'partner_id': fields.many2one('res.partner', 'Partner', change_default=True, readonly=True, required=True, states={'draft':[('readonly',False)]}, track_visibility='always'), + 'payment_term': fields.many2one('account.payment.term', 'Payment Terms',readonly=True, states={'draft':[('readonly',False)]}, help="If you use payment terms, the due date will be computed automatically at the generation "\ "of accounting entries. If you keep the payment term and the due date empty, it means direct payment. "\ "The payment term may compute several due dates, for example 50% now, 50% in one month."), @@ -233,7 +240,7 @@ class account_invoice(osv.osv): 'tax_line': fields.one2many('account.invoice.tax', 'invoice_id', 'Tax Lines', readonly=True, states={'draft':[('readonly',False)]}), 'move_id': fields.many2one('account.move', 'Journal Entry', readonly=True, select=1, ondelete='restrict', help="Link to the automatically generated Journal Items."), - 'amount_untaxed': fields.function(_amount_all, digits_compute=dp.get_precision('Account'), string='Untaxed', + 'amount_untaxed': fields.function(_amount_all, digits_compute=dp.get_precision('Account'), string='Subtotal', track_visibility='always', store={ 'account.invoice': (lambda self, cr, uid, ids, c={}: ids, ['invoice_line'], 20), 'account.invoice.tax': (_get_invoice_tax, None, 20), @@ -254,7 +261,7 @@ class account_invoice(osv.osv): 'account.invoice.line': (_get_invoice_line, ['price_unit','invoice_line_tax_id','quantity','discount','invoice_id'], 20), }, multi='all'), - 'currency_id': fields.many2one('res.currency', 'Currency', required=True, readonly=True, states={'draft':[('readonly',False)]}), + 'currency_id': fields.many2one('res.currency', 'Currency', required=True, readonly=True, states={'draft':[('readonly',False)]}, track_visibility='always'), 'journal_id': fields.many2one('account.journal', 'Journal', required=True, readonly=True, states={'draft':[('readonly',False)]}), 'company_id': fields.many2one('res.company', 'Company', required=True, change_default=True, readonly=True, states={'draft':[('readonly',False)]}), 'check_total': fields.float('Verification Total', digits_compute=dp.get_precision('Account'), readonly=True, states={'draft':[('readonly',False)]}), @@ -278,7 +285,7 @@ class account_invoice(osv.osv): help="Remaining amount due."), 'payment_ids': fields.function(_compute_lines, relation='account.move.line', type="many2many", string='Payments'), 'move_name': fields.char('Journal Entry', size=64, readonly=True, states={'draft':[('readonly',False)]}), - 'user_id': fields.many2one('res.users', 'Salesperson', readonly=True, states={'draft':[('readonly',False)]}), + 'user_id': fields.many2one('res.users', 'Salesperson', readonly=True, track_visibility='onchange', states={'draft':[('readonly',False)]}), 'fiscal_position': fields.many2one('account.fiscal.position', 'Fiscal Position', readonly=True, states={'draft':[('readonly',False)]}) } _defaults = { @@ -373,10 +380,7 @@ class account_invoice(osv.osv): if context is None: context = {} try: - res = super(account_invoice, self).create(cr, uid, vals, context) - if res: - self.create_send_note(cr, uid, [res], context=context) - return res + return super(account_invoice, self).create(cr, uid, vals, context) except Exception, e: if '"journal_id" viol' in e.args[0]: raise orm.except_orm(_('Configuration Error!'), @@ -440,7 +444,6 @@ class account_invoice(osv.osv): if context is None: context = {} self.write(cr, uid, ids, {'state':'paid'}, context=context) - self.confirm_paid_send_note(cr, uid, ids, context=context) return True def unlink(self, cr, uid, ids, context=None): @@ -994,7 +997,8 @@ class account_invoice(osv.osv): 'narration':inv.comment } period_id = inv.period_id and inv.period_id.id or False - ctx.update({'company_id': inv.company_id.id}) + ctx.update(company_id=inv.company_id.id, + account_period_prefer_normal=True) if not period_id: period_ids = period_obj.find(cr, uid, inv.date_invoice, context=ctx) period_id = period_ids and period_ids[0] or False @@ -1046,13 +1050,12 @@ class account_invoice(osv.osv): self.write(cr, uid, ids, {}) for obj_inv in self.browse(cr, uid, ids, context=context): - id = obj_inv.id invtype = obj_inv.type number = obj_inv.number move_id = obj_inv.move_id and obj_inv.move_id.id or False reference = obj_inv.reference or '' - self.write(cr, uid, ids, {'internal_number':number}) + self.write(cr, uid, ids, {'internal_number': number}) if invtype in ('in_invoice', 'in_refund'): if not reference: @@ -1073,13 +1076,6 @@ class account_invoice(osv.osv): 'WHERE account_move_line.move_id = %s ' \ 'AND account_analytic_line.move_id = account_move_line.id', (ref, move_id)) - - for inv_id, name in self.name_get(cr, uid, [id]): - ctx = context.copy() - if obj_inv.type in ('out_invoice', 'out_refund'): - ctx = self.get_log_context(cr, uid, context=ctx) - message = _("Invoice '%s' is validated.") % name - self.message_post(cr, uid, [inv_id], body=message, context=context) return True def action_cancel(self, cr, uid, ids, context=None): @@ -1108,7 +1104,6 @@ class account_invoice(osv.osv): # will be automatically deleted too account_move_obj.unlink(cr, uid, move_ids, context=context) self._log_event(cr, uid, ids, -1.0, 'Cancel Invoice') - self.invoice_cancel_send_note(cr, uid, ids, context=context) return True ################### @@ -1149,73 +1144,92 @@ class account_invoice(osv.osv): ids = self.search(cr, user, [('name',operator,name)] + args, limit=limit, context=context) return self.name_get(cr, user, ids, context) - def _refund_cleanup_lines(self, cr, uid, lines): + def _refund_cleanup_lines(self, cr, uid, lines, context=None): + clean_lines = [] for line in lines: - del line['id'] - del line['invoice_id'] - for field in ('company_id', 'partner_id', 'account_id', 'product_id', - 'uos_id', 'account_analytic_id', 'tax_code_id', 'base_code_id'): - if line.get(field): - line[field] = line[field][0] - if 'invoice_line_tax_id' in line: - line['invoice_line_tax_id'] = [(6,0, line.get('invoice_line_tax_id', [])) ] - return map(lambda x: (0,0,x), lines) + clean_line = {} + for field in line._all_columns.keys(): + if line._all_columns[field].column._type == 'many2one': + clean_line[field] = line[field].id + elif line._all_columns[field].column._type not in ['many2many','one2many']: + clean_line[field] = line[field] + elif field == 'invoice_line_tax_id': + tax_list = [] + for tax in line[field]: + tax_list.append(tax.id) + clean_line[field] = [(6,0, tax_list)] + clean_lines.append(clean_line) + return map(lambda x: (0,0,x), clean_lines) - def refund(self, cr, uid, ids, date=None, period_id=None, description=None, journal_id=None): - invoices = self.read(cr, uid, ids, ['name', 'type', 'number', 'reference', 'comment', 'date_due', 'partner_id', 'partner_contact', 'partner_insite', 'partner_ref', 'payment_term', 'account_id', 'currency_id', 'invoice_line', 'tax_line', 'journal_id', 'company_id', 'user_id', 'fiscal_position']) - obj_invoice_line = self.pool.get('account.invoice.line') - obj_invoice_tax = self.pool.get('account.invoice.tax') + def _prepare_refund(self, cr, uid, invoice, date=None, period_id=None, description=None, journal_id=None, context=None): + """Prepare the dict of values to create the new refund from the invoice. + This method may be overridden to implement custom + refund generation (making sure to call super() to establish + a clean extension chain). + + :param integer invoice_id: id of the invoice to refund + :param dict invoice: read of the invoice to refund + :param string date: refund creation date from the wizard + :param integer period_id: force account.period from the wizard + :param string description: description of the refund from the wizard + :param integer journal_id: account.journal from the wizard + :return: dict of value to create() the refund + """ obj_journal = self.pool.get('account.journal') - new_ids = [] - for invoice in invoices: - del invoice['id'] - type_dict = { - 'out_invoice': 'out_refund', # Customer Invoice - 'in_invoice': 'in_refund', # Supplier Invoice - 'out_refund': 'out_invoice', # Customer Refund - 'in_refund': 'in_invoice', # Supplier Refund - } - - invoice_lines = obj_invoice_line.read(cr, uid, invoice['invoice_line']) - invoice_lines = self._refund_cleanup_lines(cr, uid, invoice_lines) - - tax_lines = obj_invoice_tax.read(cr, uid, invoice['tax_line']) - tax_lines = filter(lambda l: l['manual'], tax_lines) - tax_lines = self._refund_cleanup_lines(cr, uid, tax_lines) - if journal_id: - refund_journal_ids = [journal_id] - elif invoice['type'] == 'in_invoice': - refund_journal_ids = obj_journal.search(cr, uid, [('type','=','purchase_refund')]) + type_dict = { + 'out_invoice': 'out_refund', # Customer Invoice + 'in_invoice': 'in_refund', # Supplier Invoice + 'out_refund': 'out_invoice', # Customer Refund + 'in_refund': 'in_invoice', # Supplier Refund + } + invoice_data = {} + for field in ['name', 'reference', 'comment', 'date_due', 'partner_id', 'company_id', + 'account_id', 'currency_id', 'payment_term', 'user_id', 'fiscal_position']: + if invoice._all_columns[field].column._type == 'many2one': + invoice_data[field] = invoice[field].id else: - refund_journal_ids = obj_journal.search(cr, uid, [('type','=','sale_refund')]) + invoice_data[field] = invoice[field] if invoice[field] else False - if not date: - date = time.strftime('%Y-%m-%d') - invoice.update({ - 'type': type_dict[invoice['type']], - 'date_invoice': date, - 'state': 'draft', - 'number': False, - 'invoice_line': invoice_lines, - 'tax_line': tax_lines, - 'journal_id': refund_journal_ids - }) - if period_id: - invoice.update({ - 'period_id': period_id, - }) - if description: - invoice.update({ - 'name': description, - }) - # take the id part of the tuple returned for many2one fields - for field in ('partner_id', 'company_id', - 'account_id', 'currency_id', 'payment_term', 'journal_id', - 'user_id', 'fiscal_position'): - invoice[field] = invoice[field] and invoice[field][0] + invoice_lines = self._refund_cleanup_lines(cr, uid, invoice.invoice_line, context=context) + + tax_lines = filter(lambda l: l['manual'], invoice.tax_line) + tax_lines = self._refund_cleanup_lines(cr, uid, tax_lines, context=context) + if journal_id: + refund_journal_ids = [journal_id] + elif invoice['type'] == 'in_invoice': + refund_journal_ids = obj_journal.search(cr, uid, [('type','=','purchase_refund')], context=context) + else: + refund_journal_ids = obj_journal.search(cr, uid, [('type','=','sale_refund')], context=context) + + if not date: + date = time.strftime('%Y-%m-%d') + invoice_data.update({ + 'type': type_dict[invoice['type']], + 'date_invoice': date, + 'state': 'draft', + 'number': False, + 'invoice_line': invoice_lines, + 'tax_line': tax_lines, + 'journal_id': refund_journal_ids and refund_journal_ids[0] or False, + }) + if period_id: + invoice_data['period_id'] = period_id + if description: + invoice_data['name'] = description + return invoice_data + + def refund(self, cr, uid, ids, date=None, period_id=None, description=None, journal_id=None, context=None): + new_ids = [] + for invoice in self.browse(cr, uid, ids, context=context): + invoice = self._prepare_refund(cr, uid, invoice, + date=date, + period_id=period_id, + description=description, + journal_id=journal_id, + context=context) # create the new invoice - new_ids.append(self.create(cr, uid, invoice)) + new_ids.append(self.create(cr, uid, invoice, context=context)) return new_ids @@ -1312,8 +1326,8 @@ class account_invoice(osv.osv): else: code = invoice.currency_id.symbol # TODO: use currency's formatting function - msg = _("Invoice '%s' is paid partially: %s%s of %s%s (%s%s remaining).") % \ - (name, pay_amount, code, invoice.amount_total, code, total, code) + msg = _("Invoice partially paid: %s%s of %s%s (%s%s remaining).") % \ + (pay_amount, code, invoice.amount_total, code, total, code) self.message_post(cr, uid, [inv_id], body=msg, context=context) self.pool.get('account.move.line').reconcile_partial(cr, uid, line_ids, 'manual', context) @@ -1321,35 +1335,6 @@ class account_invoice(osv.osv): self.pool.get('account.invoice').write(cr, uid, ids, {}, context=context) return True - # ----------------------------------------- - # OpenChatter notifications and need_action - # ----------------------------------------- - - def _get_document_type(self, type): - type_dict = { - # Translation markers will have no effect at runtime, only used to properly flag export - 'out_invoice': _('Customer invoice'), - 'in_invoice': _('Supplier invoice'), - 'out_refund': _('Customer Refund'), - 'in_refund': _('Supplier Refund'), - } - return type_dict.get(type, 'Invoice') - - def create_send_note(self, cr, uid, ids, context=None): - for obj in self.browse(cr, uid, ids, context=context): - self.message_post(cr, uid, [obj.id], body=_("%s created.") % (self._get_document_type(obj.type)), - subtype="account.mt_invoice_new", context=context) - - def confirm_paid_send_note(self, cr, uid, ids, context=None): - for obj in self.browse(cr, uid, ids, context=context): - self.message_post(cr, uid, [obj.id], body=_("%s paid.") % (self._get_document_type(obj.type)), - subtype="account.mt_invoice_paid", context=context) - - def invoice_cancel_send_note(self, cr, uid, ids, context=None): - for obj in self.browse(cr, uid, ids, context=context): - self.message_post(cr, uid, [obj.id], body=_("%s cancelled.") % (self._get_document_type(obj.type)), - context=context) - class account_invoice_line(osv.osv): @@ -1395,7 +1380,7 @@ class account_invoice_line(osv.osv): 'product_id': fields.many2one('product.product', 'Product', ondelete='set null', select=True), 'account_id': fields.many2one('account.account', 'Account', required=True, domain=[('type','<>','view'), ('type', '<>', 'closed')], help="The income or expense account related to the selected product."), 'price_unit': fields.float('Unit Price', required=True, digits_compute= dp.get_precision('Product Price')), - 'price_subtotal': fields.function(_amount_line, string='Subtotal', type="float", + 'price_subtotal': fields.function(_amount_line, string='Amount', type="float", digits_compute= dp.get_precision('Account'), store=True), 'quantity': fields.float('Quantity', digits_compute= dp.get_precision('Product Unit of Measure'), required=True), 'discount': fields.float('Discount (%)', digits_compute= dp.get_precision('Discount')), @@ -1456,11 +1441,11 @@ class account_invoice_line(osv.osv): res = self.pool.get('product.product').browse(cr, uid, product, context=context) if type in ('out_invoice','out_refund'): - a = res.product_tmpl_id.property_account_income.id + a = res.property_account_income.id if not a: a = res.categ_id.property_account_income_categ.id else: - a = res.product_tmpl_id.property_account_expense.id + a = res.property_account_expense.id if not a: a = res.categ_id.property_account_expense_categ.id a = fpos_obj.map_account(cr, uid, fpos, a) @@ -1499,11 +1484,10 @@ class account_invoice_line(osv.osv): new_price = res_final['value']['price_unit'] * currency.rate res_final['value']['price_unit'] = new_price - if result['uos_id'] != res.uom_id.id: - selected_uom = self.pool.get('product.uom_id').browse(cr, uid, result['uos_id'], context=context) - if res.uom_id.category_id.id == selected_uom.category_id.id: - new_price = res_final['value']['price_unit'] * uom_id.factor_inv - res_final['value']['price_unit'] = new_price + if result['uos_id'] and result['uos_id'] != res.uom_id.id: + selected_uom = self.pool.get('product.uom').browse(cr, uid, result['uos_id'], context=context) + new_price = self.pool.get('product.uom')._compute_price(cr, uid, res.uom_id.id, res_final['value']['price_unit'], result['uos_id']) + res_final['value']['price_unit'] = new_price return res_final def uos_id_change(self, cr, uid, ids, product, uom, qty=0, name='', type='out_invoice', partner_id=False, fposition_id=False, price_unit=False, currency_id=False, context=None, company_id=None): @@ -1759,12 +1743,13 @@ class res_partner(osv.osv): return super(res_partner, self).copy(cr, uid, id, default, context) -class mail_compose_message(osv.osv): +class mail_compose_message(osv.Model): _inherit = 'mail.compose.message' def send_mail(self, cr, uid, ids, context=None): context = context or {} if context.get('default_model') == 'account.invoice' and context.get('default_res_id') and context.get('mark_invoice_as_sent'): + context = dict(context, mail_post_autofollow=True) self.pool.get('account.invoice').write(cr, uid, [context['default_res_id']], {'sent': True}, context=context) return super(mail_compose_message, self).send_mail(cr, uid, ids, context=context) diff --git a/addons/account/account_invoice_view.xml b/addons/account/account_invoice_view.xml index 382f490d8c4..6ca7c21a6e4 100644 --- a/addons/account/account_invoice_view.xml +++ b/addons/account/account_invoice_view.xml @@ -145,7 +145,8 @@
@@ -537,6 +537,7 @@ account.bank.statement.form account.bank.statement + 1
@@ -549,10 +550,8 @@
-
- +

@@ -156,7 +156,7 @@ - Sales Receipt + Sales Receipts account.voucher form [('journal_id.type','in',['sale','sale_refund']), ('type','=','sale')] @@ -310,7 +310,7 @@
- Purchase Receipt + Purchase Receipts account.voucher form [('journal_id.type','in',['purchase','purchase_refund']), ('type','=','purchase')] diff --git a/addons/account_voucher/wizard/account_statement_from_invoice.py b/addons/account_voucher/wizard/account_statement_from_invoice.py index b0f9bb34410..fce251df175 100644 --- a/addons/account_voucher/wizard/account_statement_from_invoice.py +++ b/addons/account_voucher/wizard/account_statement_from_invoice.py @@ -74,7 +74,8 @@ class account_statement_from_invoice_lines(osv.osv_memory): amount = currency_obj.compute(cr, uid, line.invoice.currency_id.id, statement.currency.id, amount, context=ctx) - context.update({'move_line_ids': [line.id]}) + context.update({'move_line_ids': [line.id], + 'invoice_id': line.invoice.id}) type = 'general' ttype = amount < 0 and 'payment' or 'receipt' sign = 1 @@ -90,11 +91,13 @@ class account_statement_from_invoice_lines(osv.osv_memory): 'name': line.name, 'partner_id': line.partner_id.id, 'journal_id': statement.journal_id.id, - 'account_id': result.get('account_id', statement.journal_id.default_credit_account_id.id), + 'account_id': result['value'].get('account_id', statement.journal_id.default_credit_account_id.id), 'company_id': statement.company_id.id, 'currency_id': statement.currency.id, 'date': line.date, 'amount': sign*amount, + 'payment_rate': result['value']['payment_rate'], + 'payment_rate_currency_id': result['value']['payment_rate_currency_id'], 'period_id':statement.period_id.id} voucher_id = voucher_obj.create(cr, uid, voucher_res, context=context) diff --git a/addons/analytic/__openerp__.py b/addons/analytic/__openerp__.py index 6227cd369d3..eaff26df197 100644 --- a/addons/analytic/__openerp__.py +++ b/addons/analytic/__openerp__.py @@ -39,7 +39,7 @@ that have no counterpart in the general financial accounts. 'security/ir.model.access.csv', 'analytic_sequence.xml', 'analytic_view.xml', - 'analytic_data.xml' + 'analytic_data.xml', ], 'demo': [], 'installable': True, diff --git a/addons/analytic/analytic.py b/addons/analytic/analytic.py index bae2d892526..07552172d9b 100644 --- a/addons/analytic/analytic.py +++ b/addons/analytic/analytic.py @@ -31,6 +31,13 @@ class account_analytic_account(osv.osv): _name = 'account.analytic.account' _inherit = ['mail.thread'] _description = 'Analytic Account' + _track = { + 'state': { + 'analytic.mt_account_pending': lambda self, cr, uid, obj, ctx=None: obj['state'] == 'pending', + 'analytic.mt_account_closed': lambda self, cr, uid, obj, ctx=None: obj['state'] == 'close', + 'analytic.mt_account_opened': lambda self, cr, uid, obj, ctx=None: obj['state'] == 'open', + }, + } def _compute_level_tree(self, cr, uid, ids, child_ids, res, field_names, context=None): currency_obj = self.pool.get('res.currency') @@ -121,7 +128,7 @@ class account_analytic_account(osv.osv): if level<=0: return '...' if elmt.parent_id and not elmt.type == 'template': - parent_path = self._get_one_full_name(elmt.parent_id, level-1) + "/" + parent_path = self._get_one_full_name(elmt.parent_id, level-1) + " / " else: parent_path = '' return parent_path + elmt.name @@ -189,7 +196,7 @@ class account_analytic_account(osv.osv): 'date_start': fields.date('Start Date'), 'date': fields.date('Date End', select=True), 'company_id': fields.many2one('res.company', 'Company', required=False), #not required because we want to allow different companies to use the same chart of account, except for leaf accounts. - 'state': fields.selection([('template', 'Template'),('draft','New'),('open','In Progress'), ('cancelled', 'Cancelled'),('pending','To Renew'),('close','Closed')], 'Status', required=True,), + 'state': fields.selection([('template', 'Template'),('draft','New'),('open','In Progress'), ('cancelled', 'Cancelled'),('pending','To Renew'),('close','Closed')], 'Status', required=True, track_visibility='onchange'), 'currency_id': fields.function(_currency, fnct_inv=_set_company_currency, #the currency_id field is readonly except if it's a view account and if there is no company store = { 'res.company': (_get_analytic_account, ['currency_id'], 10), @@ -292,39 +299,16 @@ class account_analytic_account(osv.osv): if name: account_ids = self.search(cr, uid, [('code', '=', name)] + args, limit=limit, context=context) if not account_ids: - names=map(lambda i : i.strip(),name.split('/')) - for i in range(len(names)): - dom=[('name', operator, names[i])] - if i>0: - dom+=[('id','child_of',account_ids)] - account_ids = self.search(cr, uid, dom, limit=limit, context=context) - newacc = account_ids - while newacc: - newacc = self.search(cr, uid, [('parent_id', 'in', newacc)], limit=limit, context=context) - account_ids += newacc - if args: - account_ids = self.search(cr, uid, [('id', 'in', account_ids)] + args, limit=limit, context=context) + dom = [] + for name2 in name.split('/'): + name = name2.strip() + account_ids = self.search(cr, uid, dom + [('name', 'ilike', name)] + args, limit=limit, context=context) + if not account_ids: break + dom = [('parent_id','in',account_ids)] else: account_ids = self.search(cr, uid, args, limit=limit, context=context) return self.name_get(cr, uid, account_ids, context=context) - def create(self, cr, uid, vals, context=None): - contract = super(account_analytic_account, self).create(cr, uid, vals, context=context) - if contract: - self.create_send_note(cr, uid, [contract], context=context) - return contract - - def create_send_note(self, cr, uid, ids, context=None): - for obj in self.browse(cr, uid, ids, context=context): - message = _("Contract created.") - if obj.partner_id: - message = _("Contract for %s has been created.") % (obj.partner_id.name,) - self.message_post(cr, uid, [obj.id], body=message, - subtype="analytic.mt_account_status", context=context) - -account_analytic_account() - - class account_analytic_line(osv.osv): _name = 'account.analytic.line' _description = 'Analytic Line' diff --git a/addons/analytic/analytic_data.xml b/addons/analytic/analytic_data.xml index 67940fb2063..26eb5ae3dd5 100644 --- a/addons/analytic/analytic_data.xml +++ b/addons/analytic/analytic_data.xml @@ -2,10 +2,21 @@ - - - Status Change + + + Contract to Renew account.analytic.account + Contract pending + + + Contract Finished + account.analytic.account + Contract closed + + + Contract Opened + account.analytic.account + Contract opened diff --git a/addons/analytic/i18n/analytic.pot b/addons/analytic/i18n/analytic.pot index 65c5640e1e9..8ad0654898d 100644 --- a/addons/analytic/i18n/analytic.pot +++ b/addons/analytic/i18n/analytic.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" -"PO-Revision-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -26,8 +26,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -45,6 +46,19 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "If you select the View Type, it means you won't allow to create journal entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "Once the end date of the contract is\n" @@ -56,9 +70,13 @@ msgid "Once the end date of the contract is\n" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -71,20 +89,14 @@ msgstr "" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" msgstr "" #. module: analytic @@ -103,7 +115,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -119,11 +131,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -150,13 +157,18 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "Sets the higher limit of time to work on the contract, based on the timesheet. (for instance, number of hours in a limited support contract.)" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "If you set a company, the currency selected has to be the same as it's currency. \n" "You can remove the company belonging, and thus change the currency, only on analytic account of type 'view'. This can be really usefull for consolidation purposes of several companies charts with different currencies, for example." @@ -173,8 +185,8 @@ msgid "User" msgstr "" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" msgstr "" #. module: analytic @@ -183,17 +195,18 @@ msgid "Date" msgstr "" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "If you select the View Type, it means you won't allow to create journal entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" +msgstr "" + +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "Calculated by multiplying the quantity and the price given in the Product's cost price. Always expressed in the company main currency." msgstr "" #. module: analytic @@ -212,8 +225,8 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" msgstr "" #. module: analytic @@ -243,19 +256,13 @@ msgid "Credit" msgstr "" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." -msgstr "" - -#. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -300,7 +307,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -311,8 +318,8 @@ msgid "Analytic Accounting" msgstr "" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" +#: field:account.analytic.line,amount:0 +msgid "Amount" msgstr "" #. module: analytic @@ -349,8 +356,8 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "Calculated by multiplying the quantity and the price given in the Product's cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" #. module: analytic diff --git a/addons/analytic/i18n/ar.po b/addons/analytic/i18n/ar.po index e27d58ed4d0..82faed29080 100644 --- a/addons/analytic/i18n/ar.po +++ b/addons/analytic/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-01-23 14:39+0000\n" "Last-Translator: kifcaliph \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: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "تحديد مجموع الكمية لعدّها" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "مدين" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "مدير المحاسبة" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "مغلق" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "مدين" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "خط بياني" msgid "Description" msgstr "وصف" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -190,9 +207,9 @@ msgid "User" msgstr "مستخدِم" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "الحساب التحليلي الرئيسي" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -200,24 +217,24 @@ msgid "Date" msgstr "تاريخ" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"محسوبة بواسطة ضرب الكمية و السعر المعطى في سعر تكلفة المنتج. و يعبر عنه " +"دائما بالعملة الرئيسية للشركة." + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -234,9 +251,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "الحساب التحليلي الرئيسي" #. module: analytic #: view:account.analytic.account:0 @@ -265,19 +282,13 @@ msgid "Credit" msgstr "دائن" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "المقدار" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -322,7 +333,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -333,9 +344,9 @@ msgid "Analytic Accounting" msgstr "محاسبة تحليلية" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "المقدار" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -373,13 +384,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"محسوبة بواسطة ضرب الكمية و السعر المعطى في سعر تكلفة المنتج. و يعبر عنه " -"دائما بالعملة الرئيسية للشركة." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/bg.po b/addons/analytic/i18n/bg.po index 87b866239ef..5d2d7055661 100644 --- a/addons/analytic/i18n/bg.po +++ b/addons/analytic/i18n/bg.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-02-25 23:13+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Дебит" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "Отговорник за сметка" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Затворена" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Дебит" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "Аналитичен ред" msgid "Description" msgstr "Описание" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -186,9 +203,9 @@ msgid "User" msgstr "Потребител" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Родителска аналитична сметка" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -196,22 +213,20 @@ msgid "Date" msgstr "Дата" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" +msgstr "" + +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." msgstr "" #. module: analytic @@ -230,9 +245,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Родителска аналитична сметка" #. module: analytic #: view:account.analytic.account:0 @@ -261,19 +276,13 @@ msgid "Credit" msgstr "Кредит" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Количество" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -318,7 +327,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -329,9 +338,9 @@ msgid "Analytic Accounting" msgstr "" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Количество" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -369,10 +378,8 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" #. module: analytic diff --git a/addons/analytic/i18n/bs.po b/addons/analytic/i18n/bs.po index d357b282688..51f99fe8638 100644 --- a/addons/analytic/i18n/bs.po +++ b/addons/analytic/i18n/bs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-09-29 10:36+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Bosnian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "Specificira količinu koja se zaračunava." +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Dugovanje" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "Upravitelj računa" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Zatvorena" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Dugovanje" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "Analitička stavka" msgid "Description" msgstr "Opis" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -186,9 +203,9 @@ msgid "User" msgstr "Korisnik" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Nadređeni analitički konto" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -196,22 +213,20 @@ msgid "Date" msgstr "Datum" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" +msgstr "" + +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." msgstr "" #. module: analytic @@ -230,9 +245,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Nadređeni analitički konto" #. module: analytic #: view:account.analytic.account:0 @@ -261,19 +276,13 @@ msgid "Credit" msgstr "Potraživanje" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Iznos" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -318,7 +327,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -329,9 +338,9 @@ msgid "Analytic Accounting" msgstr "" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Iznos" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -369,10 +378,8 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" #. module: analytic diff --git a/addons/analytic/i18n/ca.po b/addons/analytic/i18n/ca.po index 909c2b7c982..80a0776a360 100644 --- a/addons/analytic/i18n/ca.po +++ b/addons/analytic/i18n/ca.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-04-02 18:36+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "Especifica el valor de les quantitats a comptar." +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Dèbit" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "Gestor comptable" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Tancat" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Dèbit" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "Línia analítica" msgid "Description" msgstr "Descripció" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -186,9 +203,9 @@ msgid "User" msgstr "Usuari/a" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Compte analítica pare" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -196,24 +213,24 @@ msgid "Date" msgstr "Data" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Calculat multiplicant la quantitat i el preu obtingut del preu de cost del " +"producte. Sempre s'expressa en la moneda principal de la companyia." + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -230,9 +247,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Compte analítica pare" #. module: analytic #: view:account.analytic.account:0 @@ -261,19 +278,13 @@ msgid "Credit" msgstr "Haver" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Quantitat" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -318,7 +329,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -329,9 +340,9 @@ msgid "Analytic Accounting" msgstr "" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Quantitat" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -369,13 +380,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Calculat multiplicant la quantitat i el preu obtingut del preu de cost del " -"producte. Sempre s'expressa en la moneda principal de la companyia." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/cs.po b/addons/analytic/i18n/cs.po index 38556785438..aa1d8d3f539 100644 --- a/addons/analytic/i18n/cs.po +++ b/addons/analytic/i18n/cs.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-09-06 06:48+0000\n" "Last-Translator: Jiří Hajda \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" "X-Poedit-Language: czech\n" #. module: analytic @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "Určuje částku množství ke spočtení." +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Má dáti" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "Správce účtu" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Uzavřeno" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Má dáti" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "Analytický řádek" msgid "Description" msgstr "Popis" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -186,9 +203,9 @@ msgid "User" msgstr "Uživatel" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Nadřazený analytický účet" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -196,24 +213,24 @@ msgid "Date" msgstr "Datum" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Vypočteno jako násobek množství a ceny dané cenou Výrobku. Vždy vyjádřeno v " +"hlavní měně společnosti." + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -230,9 +247,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Nadřazený analytický účet" #. module: analytic #: view:account.analytic.account:0 @@ -261,19 +278,13 @@ msgid "Credit" msgstr "Dal" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Částka" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -318,7 +329,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -329,9 +340,9 @@ msgid "Analytic Accounting" msgstr "" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Částka" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -369,13 +380,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Vypočteno jako násobek množství a ceny dané cenou Výrobku. Vždy vyjádřeno v " -"hlavní měně společnosti." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/da.po b/addons/analytic/i18n/da.po index ada2793640d..52b6e307dfc 100644 --- a/addons/analytic/i18n/da.po +++ b/addons/analytic/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-01-27 08:31+0000\n" "Last-Translator: FULL NAME \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: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,20 +100,14 @@ msgstr "" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" msgstr "" #. module: analytic @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -186,8 +203,8 @@ msgid "User" msgstr "" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" msgstr "" #. module: analytic @@ -196,22 +213,20 @@ msgid "Date" msgstr "" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" +msgstr "" + +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." msgstr "" #. module: analytic @@ -230,8 +245,8 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" msgstr "" #. module: analytic @@ -261,19 +276,13 @@ msgid "Credit" msgstr "" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." -msgstr "" - -#. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -318,7 +327,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -329,8 +338,8 @@ msgid "Analytic Accounting" msgstr "" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" +#: field:account.analytic.line,amount:0 +msgid "Amount" msgstr "" #. module: analytic @@ -369,10 +378,8 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" #. module: analytic diff --git a/addons/analytic/i18n/de.po b/addons/analytic/i18n/de.po index a2b4294d422..13ca63eca95 100644 --- a/addons/analytic/i18n/de.po +++ b/addons/analytic/i18n/de.po @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" -"PO-Revision-Date: 2012-12-08 10:41+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 14:27+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-09 04:39+0000\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -29,9 +29,10 @@ msgid "In Progress" msgstr "In Arbeit" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" -msgstr "Status Änderung" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " +msgstr "Vertrag: " #. module: analytic #: selection:account.analytic.account,state:0 @@ -48,6 +49,32 @@ msgstr "Ende Datum" msgid "Specifies the amount of quantity to count." msgstr "Definiert die zu zählende Menge" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Soll" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" +"Wenn Sie 'Ansicht' als Typ einer Kostenstelle auswählen, darf auf dieser " +"Kostenstelle nicht gebucht werden.\n" +"Der Typ 'Kostenstelle' steht für die normalen internen Kostenstellen, die " +"nur in der Buchhaltung verwendet werden.\n" +"Wenn Sie 'Vertrag oder Projekt' auswählen, können Sie die Einstellungen zur " +"Vertragsdauer und zur Abrechnung \n" +"verwalten. In einer 'Vertrag Vorlage' hinterlegen Sie Standard-Daten, die " +"Sie immer wieder verwenden können." + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -67,10 +94,14 @@ msgstr "" "Vertrag mit dem Kunden zu erneuern." #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " -msgstr "Vertrag: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "Vertrag oder Projekt" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" +msgstr "Kostenstelle/Vertrag Bezeichnung" #. module: analytic #: field:account.analytic.account,manager_id:0 @@ -82,21 +113,15 @@ msgstr "Verantw. Mitarbeiter" msgid "Followers" msgstr "Followers" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "Vertrag wurde erstellt." - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Beendet" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Soll" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -114,7 +139,7 @@ msgid "Status" msgstr "Status" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "%s (Kopie)" @@ -130,11 +155,6 @@ msgstr "Kostenstellen Buchung" msgid "Description" msgstr "Buchungstext" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "Kostenstelle/Vertrag Bezeichnung" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -161,6 +181,11 @@ msgstr "Erneuerung" msgid "Messages and communication history" msgstr "Nachrichten und Kommunikation" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -171,7 +196,7 @@ msgstr "" "den Stundenzetteln ergibt (z.B. Kontingent Supportstunden)." #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -182,8 +207,8 @@ msgid "" "currencies, for example." msgstr "" "Wenn Sie ein Unternehmen definieren, müssen die Währungen übereinstimmen.\n" -"Sie können die Definition des Unternehmen für Sicheten entfernen.\n" -"Damit können Sie verschiedene Firmen mit verschiedenen Währungen " +"Sie können die Definition des Unternehmen für Ansichten entfernen.\n" +"Damit können Sie dann auch verschiedene Firmen mit verschiedenen Währungen \n" "konsolidieren." #. module: analytic @@ -197,9 +222,9 @@ msgid "User" msgstr "Benutzer" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Übergeordnetes Analyse Konto" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -207,31 +232,24 @@ msgid "Date" msgstr "Datum" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" -"Wenn Sie 'Ansicht' als Typ einer Kostenstelle auswählen, darf auf dieser " -"Kostenstelle nicht gebucht werden.\n" -"Der Typ 'Kostenstelle' steht für die normalen internen Kostenstellen, die " -"nur in der Buchhaltung verwendet werden.\n" -"Wenn Sie 'Vertrag oder Projekt' auswählen, können Sie die Einstellungen zur " -"Vertragsdauer und zur Abrechnung \n" -"verwalten. In einer 'Vertrag Vorlage' hinterlegen Sie Standard-Daten, die " -"Sie immer wieder verwenden können." #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" -msgstr "Kommentare und EMails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" +msgstr "Bedingungen und Konditionen" + +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Berechnet durch Multiplikation von Menge und Herstellungskosten bzw. " +"Anschaffungskosten des Produkts. Die Angabe erfolgt immer in der Standard " +"Währung des Unternehmens." #. module: analytic #: field:account.analytic.account,partner_id:0 @@ -249,10 +267,9 @@ msgid "Messages" msgstr "Mitteilungen" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" -"Sie können keine Kostenstellen buchen, die als Ansicht definiert wurde" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Übergeordnete Kostenstelle" #. module: analytic #: view:account.analytic.account:0 @@ -281,20 +298,14 @@ msgid "Credit" msgstr "Haben" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Betrag" +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" +msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." -msgstr "Vertrag für %s wurde erstellt." - -#. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" -msgstr "Bedingungen und Konditionen" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -338,7 +349,7 @@ msgid "Reference" msgstr "Kostenstellennummer" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "Fehler !" @@ -349,9 +360,9 @@ msgid "Analytic Accounting" msgstr "Kostenstellenrechnung" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "Vertrag oder Projekt" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Betrag" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -392,14 +403,10 @@ msgid "Start Date" msgstr "Start Datum" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Berechnet durch Multiplikation von Menge und Herstellungskosten bzw. " -"Anschaffungskosten des Produkts. Die Angabe erfolgt immer in der Standard " -"Währung des Unternehmens." +"Sie können keine Kostenstellen buchen, die als Ansicht definiert wurde" #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/el.po b/addons/analytic/i18n/el.po index a948727043b..77532a01c5b 100644 --- a/addons/analytic/i18n/el.po +++ b/addons/analytic/i18n/el.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-29 10:18+0000\n" "Last-Translator: Dimitris Andavoglou \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: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "Καθορίζει την επιμετρούμενη ποσότητα" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Χρεωστική" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "Υπεύθυνος Λογαριασμού" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Κλεισμένα" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Χρεωστική" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "Γραμμή Αναλυτικής" msgid "Description" msgstr "Περιγραφή" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -186,9 +203,9 @@ msgid "User" msgstr "Χρήστης" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Γονικός Λογαριασμός Αναλυτικής" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -196,24 +213,25 @@ msgid "Date" msgstr "Ημερομηνία" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Υπολογίστηκε πολλαπλασιάζοντας τη νποσότητα επί την τιμή που προκύπτει από " +"την τιμή κόστους του πίνακα Προϊόντων. Πάντα εκφράζεται στο κύριο νόμισμα " +"της εταιρείας." + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -230,9 +248,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Γονικός Λογαριασμός Αναλυτικής" #. module: analytic #: view:account.analytic.account:0 @@ -261,19 +279,13 @@ msgid "Credit" msgstr "Πίστωση" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Ποσό" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -318,7 +330,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -329,9 +341,9 @@ msgid "Analytic Accounting" msgstr "" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Ποσό" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -369,14 +381,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Υπολογίστηκε πολλαπλασιάζοντας τη νποσότητα επί την τιμή που προκύπτει από " -"την τιμή κόστους του πίνακα Προϊόντων. Πάντα εκφράζεται στο κύριο νόμισμα " -"της εταιρείας." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/es.po b/addons/analytic/i18n/es.po index 5bc3bfc725a..6364e040873 100644 --- a/addons/analytic/i18n/es.po +++ b/addons/analytic/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" -"PO-Revision-Date: 2012-12-11 12:55+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-24 09:57+0000\n" "Last-Translator: Pedro Manuel Baeza \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-25 04:48+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,9 +28,10 @@ msgid "In Progress" msgstr "En proceso" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" -msgstr "Cambio de estado" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " +msgstr "Contrato: " #. module: analytic #: selection:account.analytic.account,state:0 @@ -47,6 +48,31 @@ msgstr "Fecha final" msgid "Specifies the amount of quantity to count." msgstr "Especifica el valor de las cantidades a contar." +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Debe" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" +"Si selecciona el tipo 'Vista', no podrá crear asientos usando esta cuenta. " +"El tipo 'Cuenta analítica' está para las cuentas usuales que sólo se quieren " +"usar en contabilidad. Si selecciona 'Contrato o proyecto', le permite la " +"posibilidad de administrar una validez y opciones de facturación para esta " +"cuenta.\n" +"El tipo especial 'Plantilla de contrato' permite definir una plantilla con " +"los datos por defecto que se podrán reutilizar fácilmente." + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -66,10 +92,14 @@ msgstr "" "el cliente." #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " -msgstr "Contrato: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "Contrato o proyecto" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" +msgstr "Nombre del contrato/cuenta" #. module: analytic #: field:account.analytic.account,manager_id:0 @@ -81,21 +111,15 @@ msgstr "Gestor contable" msgid "Followers" msgstr "Seguidores" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "Contrato creado." - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Cerrado" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Debe" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "Contrato a renovar" #. module: analytic #: selection:account.analytic.account,state:0 @@ -113,7 +137,7 @@ msgid "Status" msgstr "Estado" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "%s (copia)" @@ -129,11 +153,6 @@ msgstr "Línea analítica" msgid "Description" msgstr "Descripción" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "Nombre del contrato/cuenta" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -160,6 +179,11 @@ msgstr "Renovación" msgid "Messages and communication history" msgstr "Mensajes e historial de comunicación" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "Etapa abierta" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -171,7 +195,7 @@ msgstr "" "limitado)." #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -198,9 +222,9 @@ msgid "User" msgstr "Usuario" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Cuenta analítica padre" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "Contrato pendiente" #. module: analytic #: field:account.analytic.line,date:0 @@ -208,30 +232,23 @@ msgid "Date" msgstr "Fecha" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." -msgstr "" -"Si selecciona el tipo 'Vista', no podrá crear asientos usando esta cuenta. " -"El tipo 'Cuenta analítica' está para las cuentas usuales que sólo se quieren " -"usar en contabilidad. Si selecciona 'Contrato o proyecto', le permite la " -"posibilidad de administrar una validez y opciones de facturación para esta " -"cuenta.\n" -"El tipo especial 'Plantilla de contrato' permite definir una plantilla con " -"los datos por defecto que se podrán reutilizar fácilmente." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" +msgstr "Contrato finalizado" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" -msgstr "Comentarios y correos" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" +msgstr "Plazos y condiciones" + +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Calculado multiplicando la cantidad y el precio obtenido del precio de coste " +"del producto. Siempre se expresa en la moneda principal de la compañía." #. module: analytic #: field:account.analytic.account,partner_id:0 @@ -249,9 +266,9 @@ msgid "Messages" msgstr "Mensajes" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "No puede crear una línea analítica en una cuenta de tipo vista." +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Cuenta analítica padre" #. module: analytic #: view:account.analytic.account:0 @@ -280,20 +297,14 @@ msgid "Credit" msgstr "Haber" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Importe" +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" +msgstr "Contrato abierto" #. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." -msgstr "El contrato para %s ha sido creado." - -#. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" -msgstr "Plazos y condiciones" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" +msgstr "Contrato cerrado" #. module: analytic #: selection:account.analytic.account,state:0 @@ -337,7 +348,7 @@ msgid "Reference" msgstr "Referencia" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "¡Error!" @@ -348,9 +359,9 @@ msgid "Analytic Accounting" msgstr "Contabilidad analítica" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "Contrato o proyecto" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Importe" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -390,13 +401,9 @@ msgid "Start Date" msgstr "Fecha de inicio" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." -msgstr "" -"Calculado multiplicando la cantidad y el precio obtenido del precio de coste " -"del producto. Siempre se expresa en la moneda principal de la compañía." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." +msgstr "No puede crear una línea analítica en una cuenta de tipo vista." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/es_CR.po b/addons/analytic/i18n/es_CR.po index 9839544a58b..eb57c260d69 100644 --- a/addons/analytic/i18n/es_CR.po +++ b/addons/analytic/i18n/es_CR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-15 15:50+0000\n" "Last-Translator: Freddy Gonzalez \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" "Language: es\n" #. module: analytic @@ -29,8 +29,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -48,6 +49,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "Especifica el valor de las cantidades a contar." +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Debe" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -63,9 +82,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -78,21 +101,15 @@ msgstr "Gestor contable" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Cerrado" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Debe" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -110,7 +127,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -126,11 +143,6 @@ msgstr "Línea analítica" msgid "Description" msgstr "Descripción" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -157,6 +169,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -165,7 +182,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -193,9 +210,9 @@ msgid "User" msgstr "Usuario" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Cuenta analítica padre" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -203,24 +220,24 @@ msgid "Date" msgstr "Fecha" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Calculado multiplicando la cantidad y el precio obtenido del precio de coste " +"del producto. Siempre se expresa en la moneda principal de la compañía." + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -237,9 +254,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Cuenta analítica padre" #. module: analytic #: view:account.analytic.account:0 @@ -268,19 +285,13 @@ msgid "Credit" msgstr "Haber" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Monto" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -325,7 +336,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -336,9 +347,9 @@ msgid "Analytic Accounting" msgstr "Contabilidad analítica" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Monto" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -376,13 +387,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Calculado multiplicando la cantidad y el precio obtenido del precio de coste " -"del producto. Siempre se expresa en la moneda principal de la compañía." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/es_EC.po b/addons/analytic/i18n/es_EC.po index da725063b53..69db3441d7a 100644 --- a/addons/analytic/i18n/es_EC.po +++ b/addons/analytic/i18n/es_EC.po @@ -2,15 +2,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-13 03:48+0000\n" "Last-Translator: Cristian Salamea (Gnuthink) \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: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -23,8 +23,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -42,6 +43,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "Especificar el monto de la cantidad a contar" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Debito" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -57,9 +76,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -72,21 +95,15 @@ msgstr "Administrador Contable" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Cerrado" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Debito" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -104,7 +121,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -120,11 +137,6 @@ msgstr "Linea Analitica" msgid "Description" msgstr "Descripcion" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -151,6 +163,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -159,7 +176,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -186,9 +203,9 @@ msgid "User" msgstr "Usuario" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Cuenta Analitica Padre" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -196,24 +213,24 @@ msgid "Date" msgstr "Fecha" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Calculado multiplicando la cantidad y el precio obtenido del precio de coste " +"del producto. Siempre se expresa en la moneda principal de la compañía." + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -230,9 +247,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Cuenta Analitica Padre" #. module: analytic #: view:account.analytic.account:0 @@ -261,19 +278,13 @@ msgid "Credit" msgstr "Credito" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Monto" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -318,7 +329,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -329,9 +340,9 @@ msgid "Analytic Accounting" msgstr "Contabilidad Analítica" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Monto" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -369,13 +380,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Calculado multiplicando la cantidad y el precio obtenido del precio de coste " -"del producto. Siempre se expresa en la moneda principal de la compañía." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/es_PY.po b/addons/analytic/i18n/es_PY.po index db58b75d9a0..a347462826a 100644 --- a/addons/analytic/i18n/es_PY.po +++ b/addons/analytic/i18n/es_PY.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-07 23:12+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Paraguay) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "Especifica el valor de las cantidades a contar." +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Débito" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "Gestor contable" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Cierre" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Débito" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "Línea analítica" msgid "Description" msgstr "Descripción" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -186,9 +203,9 @@ msgid "User" msgstr "Usuario" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Cuenta analítica padre" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -196,24 +213,24 @@ msgid "Date" msgstr "Fecha" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Calculado multiplicando la cantidad y el precio obtenido del precio de coste " +"del producto. Siempre se expresa en la moneda principal de la compañía." + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -230,9 +247,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Cuenta analítica padre" #. module: analytic #: view:account.analytic.account:0 @@ -261,19 +278,13 @@ msgid "Credit" msgstr "Crédito" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Importe" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -318,7 +329,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -329,9 +340,9 @@ msgid "Analytic Accounting" msgstr "" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Importe" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -369,13 +380,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Calculado multiplicando la cantidad y el precio obtenido del precio de coste " -"del producto. Siempre se expresa en la moneda principal de la compañía." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/et.po b/addons/analytic/i18n/et.po index 619d7f9d2cc..b475ca2b38d 100644 --- a/addons/analytic/i18n/et.po +++ b/addons/analytic/i18n/et.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 00:14+0000\n" "Last-Translator: lyyser \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Deebet" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "Konto haldur" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Suletud" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Deebet" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "" msgid "Description" msgstr "Kirjeldus" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -186,9 +203,9 @@ msgid "User" msgstr "Kasutaja" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Ülem analüütiline konto" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -196,22 +213,20 @@ msgid "Date" msgstr "Kuupäev" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" +msgstr "" + +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." msgstr "" #. module: analytic @@ -230,9 +245,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Ülem analüütiline konto" #. module: analytic #: view:account.analytic.account:0 @@ -261,19 +276,13 @@ msgid "Credit" msgstr "Krediit" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Kogus" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -318,7 +327,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -329,9 +338,9 @@ msgid "Analytic Accounting" msgstr "" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Kogus" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -369,10 +378,8 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" #. module: analytic diff --git a/addons/analytic/i18n/fa.po b/addons/analytic/i18n/fa.po index 50904c11387..cbe0264c974 100644 --- a/addons/analytic/i18n/fa.po +++ b/addons/analytic/i18n/fa.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-12-18 17:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,20 +100,14 @@ msgstr "" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" msgstr "" #. module: analytic @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -186,8 +203,8 @@ msgid "User" msgstr "" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" msgstr "" #. module: analytic @@ -196,22 +213,20 @@ msgid "Date" msgstr "" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" +msgstr "" + +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." msgstr "" #. module: analytic @@ -230,8 +245,8 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" msgstr "" #. module: analytic @@ -261,19 +276,13 @@ msgid "Credit" msgstr "" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." -msgstr "" - -#. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -318,7 +327,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -329,8 +338,8 @@ msgid "Analytic Accounting" msgstr "" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" +#: field:account.analytic.line,amount:0 +msgid "Amount" msgstr "" #. module: analytic @@ -369,10 +378,8 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" #. module: analytic diff --git a/addons/analytic/i18n/fi.po b/addons/analytic/i18n/fi.po index f68159a339a..02789d9513a 100644 --- a/addons/analytic/i18n/fi.po +++ b/addons/analytic/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-06-29 06:16+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "Määrittelee laskettavan määrän" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Debet" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "Asiakasvastaava" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Suljettu" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Debet" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "Analyyttinen rivi" msgid "Description" msgstr "Kuvaus" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -186,9 +203,9 @@ msgid "User" msgstr "Käyttäjä" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Ylempi analyyttinen tili" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -196,24 +213,24 @@ msgid "Date" msgstr "Päiväys" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Laskettu kertomalla määrä ja tuotteen kustannushinta. Yrityksen " +"päävaluutassa." + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -230,9 +247,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Ylempi analyyttinen tili" #. module: analytic #: view:account.analytic.account:0 @@ -261,19 +278,13 @@ msgid "Credit" msgstr "Kredit" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Määrä" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -318,7 +329,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -329,9 +340,9 @@ msgid "Analytic Accounting" msgstr "" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Määrä" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -369,13 +380,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Laskettu kertomalla määrä ja tuotteen kustannushinta. Yrityksen " -"päävaluutassa." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/fr.po b/addons/analytic/i18n/fr.po index 45849bc8a9b..c39feb41cab 100644 --- a/addons/analytic/i18n/fr.po +++ b/addons/analytic/i18n/fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-29 15:37+0000\n" "Last-Translator: Numérigraphe \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "Définit le montant de la quantité à compter." +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Débit" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "Responsable du compte" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Fermé" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Débit" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "Ligne analytique" msgid "Description" msgstr "Description" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -192,9 +209,9 @@ msgid "User" msgstr "Utilisateur" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Compte analytique parent" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -202,24 +219,24 @@ msgid "Date" msgstr "Date" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Calculé en multipliant la quantité par le prix de revient de l'article. " +"Toujours exprimé dans la devise principale de la société." + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -236,9 +253,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Compte analytique parent" #. module: analytic #: view:account.analytic.account:0 @@ -267,19 +284,13 @@ msgid "Credit" msgstr "Crédit" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Montant" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -324,7 +335,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -335,9 +346,9 @@ msgid "Analytic Accounting" msgstr "Comptabilité analytique" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Montant" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -375,13 +386,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Calculé en multipliant la quantité par le prix de revient de l'article. " -"Toujours exprimé dans la devise principale de la société." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/gl.po b/addons/analytic/i18n/gl.po index 23f031a138d..c450239d698 100644 --- a/addons/analytic/i18n/gl.po +++ b/addons/analytic/i18n/gl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-02-24 00:54+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "Especifica o importe da cantidade a contar." +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Débito" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "Xestor da Conta" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Pechado" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Débito" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "Liña Analítica" msgid "Description" msgstr "Descrición" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -186,9 +203,9 @@ msgid "User" msgstr "Usuario" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Conta Analítica Padre" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -196,24 +213,24 @@ msgid "Date" msgstr "Data" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Calculado multiplicando a cantidade e o prezo dado no prezo de custo do " +"produto. Sempre expresado na divisa da compañía principal." + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -230,9 +247,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Conta Analítica Padre" #. module: analytic #: view:account.analytic.account:0 @@ -261,19 +278,13 @@ msgid "Credit" msgstr "Crédito" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Importe" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -318,7 +329,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -329,9 +340,9 @@ msgid "Analytic Accounting" msgstr "" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Importe" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -369,13 +380,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Calculado multiplicando a cantidade e o prezo dado no prezo de custo do " -"produto. Sempre expresado na divisa da compañía principal." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/hr.po b/addons/analytic/i18n/hr.po index 271e967abe5..e9a94c51a25 100644 --- a/addons/analytic/i18n/hr.po +++ b/addons/analytic/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-01-30 15:18+0000\n" "Last-Translator: Goran Kliska \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "Količina" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Duguje" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "Voditelj računovodstva" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Zatvoren" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Duguje" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "Analitičke stavke" msgid "Description" msgstr "Opis" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -186,9 +203,9 @@ msgid "User" msgstr "Korisnik" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Nadređeni analitički konto" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -196,24 +213,24 @@ msgid "Date" msgstr "Datum" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Izračunato kao umnožak količine i nabavne cijene proizvoda. Uvijek u " +"matičnoj valuti organizacije(kn)." + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -230,9 +247,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Nadređeni analitički konto" #. module: analytic #: view:account.analytic.account:0 @@ -261,19 +278,13 @@ msgid "Credit" msgstr "Potražuje" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Iznos" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -318,7 +329,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -329,9 +340,9 @@ msgid "Analytic Accounting" msgstr "Analitičko računovodstvo" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Iznos" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -369,13 +380,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Izračunato kao umnožak količine i nabavne cijene proizvoda. Uvijek u " -"matičnoj valuti organizacije(kn)." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/hu.po b/addons/analytic/i18n/hu.po index 02e20c8e924..19de9e5e090 100644 --- a/addons/analytic/i18n/hu.po +++ b/addons/analytic/i18n/hu.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-30 18:54+0000\n" "Last-Translator: Krisztian Eyssen \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: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -27,8 +27,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -46,6 +47,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "Itt lehet megadni a mennyiséget." +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Tartozik" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -61,9 +80,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -76,21 +99,15 @@ msgstr "Felelős" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Lezárt" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Tartozik" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -108,7 +125,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -124,11 +141,6 @@ msgstr "Gyűjtőkód tétel" msgid "Description" msgstr "Leírás" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -155,6 +167,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -163,7 +180,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -185,9 +202,9 @@ msgid "User" msgstr "Felhasználó" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Fölérendelt gyűjtőkód" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -195,24 +212,24 @@ msgid "Date" msgstr "Dátum" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"A mennyiség és a termék törzsadatai között tárolt bekerülési érték " +"szorzataként kerül kiszámításra. Mindig a vállalat pénznemében van kifejezve." + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -229,9 +246,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Fölérendelt gyűjtőkód" #. module: analytic #: view:account.analytic.account:0 @@ -260,19 +277,13 @@ msgid "Credit" msgstr "Követel" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Összeg" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -317,7 +328,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -328,9 +339,9 @@ msgid "Analytic Accounting" msgstr "" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Összeg" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -368,13 +379,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"A mennyiség és a termék törzsadatai között tárolt bekerülési érték " -"szorzataként kerül kiszámításra. Mindig a vállalat pénznemében van kifejezve." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/it.po b/addons/analytic/i18n/it.po index dcebab3348b..b8f20e4a45d 100644 --- a/addons/analytic/i18n/it.po +++ b/addons/analytic/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-14 21:13+0000\n" "Last-Translator: Davide Corio - agilebg.com \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-15 05:06+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,9 +28,10 @@ msgid "In Progress" msgstr "In Corso" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" -msgstr "Cambio di stato" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " +msgstr "Contratto: " #. module: analytic #: selection:account.analytic.account,state:0 @@ -47,6 +48,32 @@ msgstr "Data Finale" msgid "Specifies the amount of quantity to count." msgstr "Specifica la quantità da sommare" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Debito" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" +"Se viene selezionata il Tipo Vista, significa che non sarà permesso creare " +"registrazioni usando quel conto.\n" +"Il tipo 'Conto analitico' serve per conti tipici che si usano in " +"contabilità.\n" +"Se viene selezionato Contratto o Progetto, permette di gestire la validità e " +"le opzioni di fatturazione per questo conto.\n" +"Il tipo speciale 'Modello di Contratto' permette di definire un modello con " +"i dati di default che è possibile riutilizzare facilmente." + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -72,10 +99,14 @@ msgstr "" " cliente." #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " -msgstr "Contratto: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "Contratto o Progetto" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" +msgstr "Nome Conto/Contratto" #. module: analytic #: field:account.analytic.account,manager_id:0 @@ -87,21 +118,15 @@ msgstr "Gestore Conti" msgid "Followers" msgstr "Followers" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "Contratto creato." - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Chiuso" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Debito" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -119,7 +144,7 @@ msgid "Status" msgstr "Stato" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "%s (copia)" @@ -135,11 +160,6 @@ msgstr "Linea conto analitico" msgid "Description" msgstr "Descrizione" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "Nome Conto/Contratto" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -166,6 +186,11 @@ msgstr "Rinnovo" msgid "Messages and communication history" msgstr "Storico messaggi e comunicazioni" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -177,7 +202,7 @@ msgstr "" "pacchetto.)" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -205,9 +230,9 @@ msgid "User" msgstr "Utente" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Conto Analitico padre" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -215,31 +240,23 @@ msgid "Date" msgstr "Data" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" -"Se viene selezionata il Tipo Vista, significa che non sarà permesso creare " -"registrazioni usando quel conto.\n" -"Il tipo 'Conto analitico' serve per conti tipici che si usano in " -"contabilità.\n" -"Se viene selezionato Contratto o Progetto, permette di gestire la validità e " -"le opzioni di fatturazione per questo conto.\n" -"Il tipo speciale 'Modello di Contratto' permette di definire un modello con " -"i dati di default che è possibile riutilizzare facilmente." #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" -msgstr "Commenti ed Email" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" +msgstr "Termini e Condizioni" + +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Calcolato moltiplicando la quantità ed il prezzo specificato nel prezzo di " +"costo del Prodotto. Sempre espresso nella valuta principale aziendale." #. module: analytic #: field:account.analytic.account,partner_id:0 @@ -257,9 +274,9 @@ msgid "Messages" msgstr "Messaggi" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "Non è possibile creare righe analitiche in conti vista." +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Conto Analitico padre" #. module: analytic #: view:account.analytic.account:0 @@ -288,20 +305,14 @@ msgid "Credit" msgstr "Credito" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Importo" +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" +msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." -msgstr "Il Contratto per %s è stato creato." - -#. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" -msgstr "Termini e Condizioni" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -345,7 +356,7 @@ msgid "Reference" msgstr "Riferimento" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "Errore!" @@ -356,9 +367,9 @@ msgid "Analytic Accounting" msgstr "Contabilità Analitica" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "Contratto o Progetto" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Importo" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -398,13 +409,9 @@ msgid "Start Date" msgstr "Data Iniziale" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." -msgstr "" -"Calcolato moltiplicando la quantità ed il prezzo specificato nel prezzo di " -"costo del Prodotto. Sempre espresso nella valuta principale aziendale." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." +msgstr "Non è possibile creare righe analitiche in conti vista." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/ja.po b/addons/analytic/i18n/ja.po index b24719be6bc..dfd39405c10 100644 --- a/addons/analytic/i18n/ja.po +++ b/addons/analytic/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-06-08 23:38+0000\n" "Last-Translator: Akira Hiyama \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "数えた数量の指定" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "借方" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "会計マネジャ" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "閉じた" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "借方" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "分析行" msgid "Description" msgstr "詳細" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -189,9 +206,9 @@ msgid "User" msgstr "ユーザ" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "パートナ分析アカウント" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -199,24 +216,22 @@ msgid "Date" msgstr "日付" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "数量と製品の原価価格を乗算して計算されます。いつも会社の主な通貨で表現されます。" + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -233,9 +248,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "パートナ分析アカウント" #. module: analytic #: view:account.analytic.account:0 @@ -264,19 +279,13 @@ msgid "Credit" msgstr "貸方" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "金額" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -321,7 +330,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -332,9 +341,9 @@ msgid "Analytic Accounting" msgstr "分析会計" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "金額" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -372,11 +381,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." -msgstr "数量と製品の原価価格を乗算して計算されます。いつも会社の主な通貨で表現されます。" +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." +msgstr "" #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/lv.po b/addons/analytic/i18n/lv.po index 66b69c5832d..7e74ac39adb 100644 --- a/addons/analytic/i18n/lv.po +++ b/addons/analytic/i18n/lv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-28 14:32+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "Norāda uzskaitāmo daudzumu." +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Debets" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "Kontu Pārvaldnieks" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Slēgts" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Debets" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "Analītiskā Rinda" msgid "Description" msgstr "Apraksts" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -186,9 +203,9 @@ msgid "User" msgstr "Lietotājs" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Saistītais Analītiskais Konts" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -196,24 +213,24 @@ msgid "Date" msgstr "Datums" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Aprēķina produkta pašizmaksas cenu reizinot ar daudzumu. Vienmēr izsaka " +"uzņēmuma galvenajā valūtā." + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -230,9 +247,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Saistītais Analītiskais Konts" #. module: analytic #: view:account.analytic.account:0 @@ -261,19 +278,13 @@ msgid "Credit" msgstr "Kredīts" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Summa" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -318,7 +329,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -329,9 +340,9 @@ msgid "Analytic Accounting" msgstr "" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Summa" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -369,13 +380,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Aprēķina produkta pašizmaksas cenu reizinot ar daudzumu. Vienmēr izsaka " -"uzņēmuma galvenajā valūtā." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/mn.po b/addons/analytic/i18n/mn.po index 59a79a2ff7e..5d577a0d72a 100644 --- a/addons/analytic/i18n/mn.po +++ b/addons/analytic/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-21 08:52+0000\n" "Last-Translator: OpenERP Administrators \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: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "Тоо ширхэгийг тоолох хэмжээг тооцоолох" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Дебит" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "Дансны менежер" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Хаасан" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Дебит" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "Аналитик шугам" msgid "Description" msgstr "Тайлбар" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -190,9 +207,9 @@ msgid "User" msgstr "Хэрэглэгч" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Эцэг аналитик данс" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -200,24 +217,24 @@ msgid "Date" msgstr "Огноо" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Барааны өртөг үнэнд өгөгдсөн тоо ширхэг болон үнийг үржүүлж тооцоолоогдсон. " +"Үргэлж компанийн үндсэн мөнгөн тэмдэгтэд илэрхийлэгддэг." + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -234,9 +251,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Эцэг аналитик данс" #. module: analytic #: view:account.analytic.account:0 @@ -265,19 +282,13 @@ msgid "Credit" msgstr "Кредит" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Дүн" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -322,7 +333,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -333,9 +344,9 @@ msgid "Analytic Accounting" msgstr "Аналитик санхүү" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Дүн" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -373,13 +384,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Барааны өртөг үнэнд өгөгдсөн тоо ширхэг болон үнийг үржүүлж тооцоолоогдсон. " -"Үргэлж компанийн үндсэн мөнгөн тэмдэгтэд илэрхийлэгддэг." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/nb.po b/addons/analytic/i18n/nb.po index abe41034a88..20e4da1190a 100644 --- a/addons/analytic/i18n/nb.po +++ b/addons/analytic/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-29 13:08+0000\n" "Last-Translator: Kaare Pettersen \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,9 +28,10 @@ msgid "In Progress" msgstr "I arbeid." #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" -msgstr "Statusendring." +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " +msgstr "Kontrakt. " #. module: analytic #: selection:account.analytic.account,state:0 @@ -47,6 +48,24 @@ msgstr "Sluttdato." msgid "Specifies the amount of quantity to count." msgstr "Angir mengden avnkvantitet å telle." +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Debet" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,10 +81,14 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " -msgstr "Kontrakt. " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "Kontrakt eller prosjekt." + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" +msgstr "Konto/kontrakt navn." #. module: analytic #: field:account.analytic.account,manager_id:0 @@ -77,21 +100,15 @@ msgstr "kontofører" msgid "Followers" msgstr "Følgere." -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "Kontrakt Opprett ." - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Lukket" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Debet" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "Status." #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "%s (kopi)" @@ -125,11 +142,6 @@ msgstr "Analytisk linje" msgid "Description" msgstr "Beskrivelse" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "Konto/kontrakt navn." - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "Meldinger og kommunikasjon historie." +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -192,9 +209,9 @@ msgid "User" msgstr "Bruker" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Overordnet analytisk konto" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -202,23 +219,23 @@ msgid "Date" msgstr "Dato" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" -msgstr "Kommentarer og E-poster." +#: view:account.analytic.account:0 +msgid "Terms and Conditions" +msgstr "Vilkår og betingelser." + +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Beregnet ved å multiplisere antall og pris gitt av produktets kostpris. " +"Alltid uttrykt i firmaets hovedvaluta." #. module: analytic #: field:account.analytic.account,partner_id:0 @@ -236,9 +253,9 @@ msgid "Messages" msgstr "Meldinger." #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "Du kan ikke opprette en analytisk linje på vis konto." +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Overordnet analytisk konto" #. module: analytic #: view:account.analytic.account:0 @@ -267,20 +284,14 @@ msgid "Credit" msgstr "Kredit" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Beløp" +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" +msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." -msgstr "Kontrakt for %s har vært Opprett ." - -#. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" -msgstr "Vilkår og betingelser." +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -324,7 +335,7 @@ msgid "Reference" msgstr "Referanse." #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "Feil!" @@ -335,9 +346,9 @@ msgid "Analytic Accounting" msgstr "Analytisk bokføring" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "Kontrakt eller prosjekt." +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Beløp" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -375,13 +386,9 @@ msgid "Start Date" msgstr "Startdato." #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." -msgstr "" -"Beregnet ved å multiplisere antall og pris gitt av produktets kostpris. " -"Alltid uttrykt i firmaets hovedvaluta." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." +msgstr "Du kan ikke opprette en analytisk linje på vis konto." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/nl.po b/addons/analytic/i18n/nl.po index 1077f732ffe..ba5e4437f8a 100644 --- a/addons/analytic/i18n/nl.po +++ b/addons/analytic/i18n/nl.po @@ -7,20 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-25 21:19+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 msgid "Child Accounts" -msgstr "Subrekeningen" +msgstr "Onderliggende kostenplaatsen" #. module: analytic #: selection:account.analytic.account,state:0 @@ -28,9 +28,10 @@ msgid "In Progress" msgstr "In Behandeling" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" -msgstr "Statuswijziging" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " +msgstr "Contract: " #. module: analytic #: selection:account.analytic.account,state:0 @@ -47,6 +48,24 @@ msgstr "Einddatum" msgid "Specifies the amount of quantity to count." msgstr "Het aantal te rekenen eenheden" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Debit" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,10 +81,14 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " -msgstr "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "Contract of project" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" +msgstr "" #. module: analytic #: field:account.analytic.account,manager_id:0 @@ -77,21 +100,15 @@ msgstr "Beheerder kostenplaats" msgid "Followers" msgstr "Volgers" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Gesloten" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Debit" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "Status" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "%s (kopie)" @@ -125,11 +142,6 @@ msgstr "Kostenplaatsboeking" msgid "Description" msgstr "Omschrijving" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "Vernieuwen" msgid "Messages and communication history" msgstr "Berichten en communicatie historie" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -192,9 +209,9 @@ msgid "User" msgstr "Gebruiker" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Bovenliggende kostenplaats" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -202,23 +219,23 @@ msgid "Date" msgstr "Datum" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" -msgstr "Opmerkingen en e-mails." +#: view:account.analytic.account:0 +msgid "Terms and Conditions" +msgstr "Voorwaarden" + +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Berekend door vermenigvuldiging van aantal en prijs uit de kostprijs van het " +"product. Altijd uitgedrukt in de hoofdvaluta van het bedrijf." #. module: analytic #: field:account.analytic.account,partner_id:0 @@ -228,7 +245,7 @@ msgstr "Klant" #. module: analytic #: field:account.analytic.account,child_complete_ids:0 msgid "Account Hierarchy" -msgstr "Rekening hirarcie" +msgstr "Kostenplaats hirarcie" #. module: analytic #: field:account.analytic.account,message_ids:0 @@ -236,9 +253,9 @@ msgid "Messages" msgstr "Berichten" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Bovenliggende kostenplaats" #. module: analytic #: view:account.analytic.account:0 @@ -267,20 +284,14 @@ msgid "Credit" msgstr "Credit" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Bedrag" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" -msgstr "Voorwaarden" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -324,7 +335,7 @@ msgid "Reference" msgstr "Referentie" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "Fout!" @@ -335,9 +346,9 @@ msgid "Analytic Accounting" msgstr "Kostenplaatsen" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "Contract of project" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Bedrag" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -378,22 +389,15 @@ msgid "Start Date" msgstr "Begindatum" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Berekend door vermenigvuldiging van aantal en prijs uit de kostprijs van het " -"product. Altijd uitgedrukt in de hoofdvaluta van het bedrijf." #. module: analytic #: field:account.analytic.account,line_ids:0 msgid "Analytic Entries" msgstr "Kostenplaatsboekingen" -#~ msgid "Account Name" -#~ msgstr "Naam rekening" - #~ msgid "State" #~ msgstr "Status" @@ -407,37 +411,6 @@ msgstr "Kostenplaatsboekingen" #~ msgid "Draft" #~ msgstr "Concept" -#~ msgid "" -#~ "* When an account is created its in 'Draft' state. " -#~ " \n" -#~ "* If any associated partner is there, it can be in 'Open' state. " -#~ " \n" -#~ "* If any pending balance is there it can be in 'Pending'. " -#~ " \n" -#~ "* And finally when all the transactions are over, it can be in 'Close' " -#~ "state. \n" -#~ "* The project can be in either if the states 'Template' and 'Running'.\n" -#~ " If it is template then we can make projects based on the template projects. " -#~ "If its in 'Running' state it is a normal project. " -#~ " \n" -#~ " If it is to be reviewed then the state is 'Pending'.\n" -#~ " When the project is completed the state is set to 'Done'." -#~ msgstr "" -#~ "* Nadat de rekening is gemaakt, wordt de status 'Concept'. " -#~ " \n" -#~ "* Als er een gekoppelde relatie is, kan de status naar 'Open'. " -#~ " \n" -#~ "* Als er openstaand saldo is, kan de status naar 'Wacht'. " -#~ " \n" -#~ "* En tenslotte als alle transacties klaar zijn, dan gaat de status naar " -#~ "'Gesloten'. \n" -#~ "* Het project kan zowel in 'Sjabloon' als in 'Lopend' zijn.\n" -#~ " Als het in 'Sjabloon' status is, dan kunnen we projecten maken op basis van " -#~ "het sjabloon project. Als het status 'Lopend' heeft, dan is het een gewoon " -#~ "project. \n" -#~ " Als het moet worden nagekeken is de status 'Wacht'.\n" -#~ " Als het project klaar is dan is de status 'Klaar'." - #~ msgid "Pending" #~ msgstr "Wacht" @@ -465,9 +438,6 @@ msgstr "Kostenplaatsboekingen" #~ msgid "Open" #~ msgstr "Open" -#~ msgid "Account Type" -#~ msgstr "Rekeningsoort" - #~ msgid "Maximum Quantity" #~ msgstr "Maximum aantal" @@ -494,18 +464,55 @@ msgstr "Kostenplaatsboekingen" #~ msgid "Maximum Time" #~ msgstr "Maximum Tijd" -#~ msgid "You can not create analytic line on view account." -#~ msgstr "" -#~ "Het is niet mogelijk een kostenplaats te maken op een rekening van het type " -#~ "'view'" - #~ msgid "Sets the higher limit of time to work on the contract." #~ msgstr "" #~ "Bepaald het bovenbereik van de tijd wat kan worden gewerkt op een contract." +#~ msgid "You can not create analytic line on view account." +#~ msgstr "" +#~ "Het is niet mogelijk een kostenplaats boekingen te maken op een kostenplaats " +#~ "van het type 'aanzicht'" + +#~ msgid "Account Name" +#~ msgstr "Naam kostenplaats" + +#~ msgid "Account Type" +#~ msgstr "Soort kostenplaats" + +#~ msgid "" +#~ "* When an account is created its in 'Draft' state. " +#~ " \n" +#~ "* If any associated partner is there, it can be in 'Open' state. " +#~ " \n" +#~ "* If any pending balance is there it can be in 'Pending'. " +#~ " \n" +#~ "* And finally when all the transactions are over, it can be in 'Close' " +#~ "state. \n" +#~ "* The project can be in either if the states 'Template' and 'Running'.\n" +#~ " If it is template then we can make projects based on the template projects. " +#~ "If its in 'Running' state it is a normal project. " +#~ " \n" +#~ " If it is to be reviewed then the state is 'Pending'.\n" +#~ " When the project is completed the state is set to 'Done'." +#~ msgstr "" +#~ "* Nadat de kostenplaats is gemaakt, wordt de status 'Concept'. " +#~ " \n" +#~ "* Als er een gekoppelde relatie is, kan de status naar 'Open'. " +#~ " \n" +#~ "* Als er openstaand saldo is, kan de status naar 'Wacht'. " +#~ " \n" +#~ "* En tenslotte als alle transacties klaar zijn, dan gaat de status naar " +#~ "'Gesloten'. \n" +#~ "* Het project kan zowel in 'Sjabloon' als in 'Lopend' zijn.\n" +#~ " Als het in 'Sjabloon' status is, dan kunnen we projecten maken op basis van " +#~ "het sjabloon project. Als het status 'Lopend' heeft, dan is het een gewoon " +#~ "project. \n" +#~ " Als het moet worden nagekeken is de status 'Wacht'.\n" +#~ " Als het project klaar is dan is de status 'Klaar'." + #~ msgid "" #~ "If you select the View Type, it means you won't allow to create journal " #~ "entries using that account." #~ msgstr "" #~ "Als u de soort weergave selecteert, betekent dat u het niet toelaat dat er " -#~ "journaalposten op deze rekening gemaakt worden." +#~ "journaalposten op deze kostenplaats gemaakt worden." diff --git a/addons/analytic/i18n/nl_BE.po b/addons/analytic/i18n/nl_BE.po index 3cb352b2c9d..ef00fe85d9e 100644 --- a/addons/analytic/i18n/nl_BE.po +++ b/addons/analytic/i18n/nl_BE.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-03 16:46+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch (Belgium) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,20 +100,14 @@ msgstr "" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" msgstr "" #. module: analytic @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -186,8 +203,8 @@ msgid "User" msgstr "" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" msgstr "" #. module: analytic @@ -196,22 +213,20 @@ msgid "Date" msgstr "" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" +msgstr "" + +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." msgstr "" #. module: analytic @@ -230,8 +245,8 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" msgstr "" #. module: analytic @@ -261,19 +276,13 @@ msgid "Credit" msgstr "" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." -msgstr "" - -#. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -318,7 +327,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -329,8 +338,8 @@ msgid "Analytic Accounting" msgstr "" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" +#: field:account.analytic.line,amount:0 +msgid "Amount" msgstr "" #. module: analytic @@ -369,10 +378,8 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" #. module: analytic diff --git a/addons/analytic/i18n/pl.po b/addons/analytic/i18n/pl.po index 600366c847d..74bdaecdee4 100644 --- a/addons/analytic/i18n/pl.po +++ b/addons/analytic/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-15 19:45+0000\n" "Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \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: 2012-12-16 04:48+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,9 +28,10 @@ msgid "In Progress" msgstr "W toku" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" -msgstr "Zmiana statusu" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " +msgstr "Umowa: " #. module: analytic #: selection:account.analytic.account,state:0 @@ -47,6 +48,31 @@ msgstr "Data Końcowa" msgid "Specifies the amount of quantity to count." msgstr "Określa ilość do obliczeń." +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Winien" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" +"Typ konta Widok oznacza, że nie zezwalasz na zapisy na tym koncie.\n" +"Typ 'Konto analityczne' jest stosowany do zwykłych zapisów analitycznych.\n" +"Jeśli wybierzesz \"Umowa' lub 'Projekt', to konta będą miały dodatkowe " +"funkcjonalności\n" +"zatwierdzania zapisów i fakturowania.\n" +"Typ specjalny 'Szablon umowy' pozwala definiować szablon z ustawieniami " +"domyślnymi do kopiowania w tworzonych umowach.." + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -70,10 +96,14 @@ msgstr "" " umowy z klientem." #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " -msgstr "Umowa: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "Umowa lub Projekt" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" +msgstr "Nazwa umowy/konta" #. module: analytic #: field:account.analytic.account,manager_id:0 @@ -85,21 +115,15 @@ msgstr "Menedżer kontraktu" msgid "Followers" msgstr "Wypowiadający się" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "Umowę utworzono." - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Zamknięte" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Winien" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -117,7 +141,7 @@ msgid "Status" msgstr "Stan" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "%s (kopia)" @@ -133,11 +157,6 @@ msgstr "Pozycja analityczna" msgid "Description" msgstr "Opis" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "Nazwa umowy/konta" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -164,6 +183,11 @@ msgstr "Odnowienie" msgid "Messages and communication history" msgstr "Wiadomości i historia komunikacji" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -172,7 +196,7 @@ msgid "" msgstr "Ustaw wyższy limit czasu pracy dla umowy związanej z kartą pracy." #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -197,9 +221,9 @@ msgid "User" msgstr "Użytkownik" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Nadrzędne konto analityczne" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -207,30 +231,23 @@ msgid "Date" msgstr "Data" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" -"Typ konta Widok oznacza, że nie zezwalasz na zapisy na tym koncie.\n" -"Typ 'Konto analityczne' jest stosowany do zwykłych zapisów analitycznych.\n" -"Jeśli wybierzesz \"Umowa' lub 'Projekt', to konta będą miały dodatkowe " -"funkcjonalności\n" -"zatwierdzania zapisów i fakturowania.\n" -"Typ specjalny 'Szablon umowy' pozwala definiować szablon z ustawieniami " -"domyślnymi do kopiowania w tworzonych umowach.." #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" -msgstr "Komentarze i emaile" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" +msgstr "Warunki i postanowienia" + +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Obliczone jako iloczyn ilości i ceny kosztowej z Produktu. Wyrażone i " +"walucie firmy." #. module: analytic #: field:account.analytic.account,partner_id:0 @@ -248,9 +265,9 @@ msgid "Messages" msgstr "Wiadomości" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "Nie możesz robić zapisu na koncie analitycznym typu widok." +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Nadrzędne konto analityczne" #. module: analytic #: view:account.analytic.account:0 @@ -279,20 +296,14 @@ msgid "Credit" msgstr "Ma" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Kwota" +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" +msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." -msgstr "Umowa dla %s została utworzona." - -#. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" -msgstr "Warunki i postanowienia" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -336,7 +347,7 @@ msgid "Reference" msgstr "Odnośnik" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "Błąd!" @@ -347,9 +358,9 @@ msgid "Analytic Accounting" msgstr "Księgowość analityczna" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "Umowa lub Projekt" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Kwota" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -390,13 +401,9 @@ msgid "Start Date" msgstr "Data początkowa" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." -msgstr "" -"Obliczone jako iloczyn ilości i ceny kosztowej z Produktu. Wyrażone i " -"walucie firmy." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." +msgstr "Nie możesz robić zapisu na koncie analitycznym typu widok." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/pt.po b/addons/analytic/i18n/pt.po index a132f205ea0..1d55d8fb01a 100644 --- a/addons/analytic/i18n/pt.po +++ b/addons/analytic/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-12 16:32+0000\n" "Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-13 04:44+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,9 +28,10 @@ msgid "In Progress" msgstr "Em progresso" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" -msgstr "Alteração de estado" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " +msgstr "Contrato: " #. module: analytic #: selection:account.analytic.account,state:0 @@ -47,6 +48,24 @@ msgstr "Data de fecho" msgid "Specifies the amount of quantity to count." msgstr "Especifica o montante do valor a contar" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Débito" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,10 +81,14 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " -msgstr "Contrato: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "Contrato ou projeto" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" +msgstr "Nome de Conta/Contrato" #. module: analytic #: field:account.analytic.account,manager_id:0 @@ -77,21 +100,15 @@ msgstr "Gestor de conta" msgid "Followers" msgstr "Seguidores" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Encerrado" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Débito" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "Linha analítica" msgid "Description" msgstr "Descrição" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "Nome de Conta/Contrato" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "Renovação" msgid "Messages and communication history" msgstr "Histórico de mensagens e comunicação" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -192,9 +209,9 @@ msgid "User" msgstr "Utilizador" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Conta Analítica Ascendente" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -202,23 +219,23 @@ msgid "Date" msgstr "Data" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" -msgstr "Comentários e emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" +msgstr "Termos e condições" + +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Calculado multiplicando a quantidade pelo preço de custo do artigo. Sempre " +"expresso na Moeda da principal da empresa." #. module: analytic #: field:account.analytic.account,partner_id:0 @@ -236,9 +253,9 @@ msgid "Messages" msgstr "Mensagens" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Conta Analítica Ascendente" #. module: analytic #: view:account.analytic.account:0 @@ -267,20 +284,14 @@ msgid "Credit" msgstr "Crédito" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Montante" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" -msgstr "Termos e condições" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -324,7 +335,7 @@ msgid "Reference" msgstr "Referência" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "Erro!" @@ -335,9 +346,9 @@ msgid "Analytic Accounting" msgstr "Contabilidade Analítica" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "Contrato ou projeto" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Montante" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -375,13 +386,9 @@ msgid "Start Date" msgstr "Data de abertura" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Calculado multiplicando a quantidade pelo preço de custo do artigo. Sempre " -"expresso na Moeda da principal da empresa." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/pt_BR.po b/addons/analytic/i18n/pt_BR.po index b0f48e582f5..dec1fbf54ff 100644 --- a/addons/analytic/i18n/pt_BR.po +++ b/addons/analytic/i18n/pt_BR.po @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" -"PO-Revision-Date: 2012-12-16 22:53+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-22 01:02+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " "\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-18 05:01+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-23 04:41+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -29,9 +29,10 @@ msgid "In Progress" msgstr "Em Andamento" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" -msgstr "Mudança de Situação" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " +msgstr "Contrato " #. module: analytic #: selection:account.analytic.account,state:0 @@ -48,6 +49,32 @@ msgstr "Data Final" msgid "Specifies the amount of quantity to count." msgstr "Especifica o total da quantidade para contar." +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Débito" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" +"Se você selecionar o tipo de visão, isso significa que você não vai permitir " +"a criação de lançamentos de diário usando essa conta.\n" +"O Tipo 'Conta Analítica' é para contas habituais que você só quer usar em " +"contabilidade.\n" +"Se você selecionar Contrato ou Projeto, oferece-lhe a possibilidade de " +"controlar a validade e as opções de faturamento para esta conta.\n" +"O tipo especial 'Modelo de Contrato' permite que você defina um modelo com " +"dados padrão que você pode reutilizar facilmente." + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -73,10 +100,14 @@ msgstr "" "                                         cliente." #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " -msgstr "Contrato " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "Contrato ou Projeto" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" +msgstr "Conta/Nome do Contrato" #. module: analytic #: field:account.analytic.account,manager_id:0 @@ -88,21 +119,15 @@ msgstr "Gerente de Contas" msgid "Followers" msgstr "Seguidores" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "Contrato criado." - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Fechado" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Débito" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "Contrato para Renovar" #. module: analytic #: selection:account.analytic.account,state:0 @@ -120,7 +145,7 @@ msgid "Status" msgstr "Situação" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "%s (cópia)" @@ -136,11 +161,6 @@ msgstr "Linha Analítica" msgid "Description" msgstr "Descrição" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "Conta/Nome do Contrato" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -167,6 +187,11 @@ msgstr "Renovação" msgid "Messages and communication history" msgstr "Histórico de mensagens e comunicação" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "Estágio aberto" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -178,7 +203,7 @@ msgstr "" "limitado.)" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -205,9 +230,9 @@ msgid "User" msgstr "Usuário" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Conta Analítica Pai" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "Contrato pendente" #. module: analytic #: field:account.analytic.line,date:0 @@ -215,31 +240,23 @@ msgid "Date" msgstr "Data" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." -msgstr "" -"Se você selecionar o tipo de visão, isso significa que você não vai permitir " -"a criação de lançamentos de diário usando essa conta.\n" -"O Tipo 'Conta Analítica' é para contas habituais que você só quer usar em " -"contabilidade.\n" -"Se você selecionar Contrato ou Projeto, oferece-lhe a possibilidade de " -"controlar a validade e as opções de faturamento para esta conta.\n" -"O tipo especial 'Modelo de Contrato' permite que você defina um modelo com " -"dados padrão que você pode reutilizar facilmente." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" +msgstr "Contrato Terminado" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" -msgstr "Comentários e emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" +msgstr "Termos e Condições" + +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Calculado multiplicando a quantidade e o preço dado no preço de custo do " +"produto. Sempre expressos na moeda principal da empresa." #. module: analytic #: field:account.analytic.account,partner_id:0 @@ -257,10 +274,9 @@ msgid "Messages" msgstr "Mensagens" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" -"Você não pode criar uma linha analítica em uma conta de visualização." +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Conta Analítica Pai" #. module: analytic #: view:account.analytic.account:0 @@ -289,20 +305,14 @@ msgid "Credit" msgstr "Crédito" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Valor" +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" +msgstr "Contrato Iniciado" #. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." -msgstr "Contrato para %s foi criado." - -#. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" -msgstr "Termos e Condições" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" +msgstr "Contrato fechado" #. module: analytic #: selection:account.analytic.account,state:0 @@ -346,7 +356,7 @@ msgid "Reference" msgstr "Referência" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "Erro!" @@ -357,9 +367,9 @@ msgid "Analytic Accounting" msgstr "Contabilidade Analítica" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "Contrato ou Projeto" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Valor" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -400,13 +410,10 @@ msgid "Start Date" msgstr "Data de Início" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Calculado multiplicando a quantidade e o preço dado no preço de custo do " -"produto. Sempre expressos na moeda principal da empresa." +"Você não pode criar uma linha analítica em uma conta de visualização." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/ro.po b/addons/analytic/i18n/ro.po index 3227949ffed..5330e7cfef7 100644 --- a/addons/analytic/i18n/ro.po +++ b/addons/analytic/i18n/ro.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-12-29 23:37+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "Specifica suma de numarat" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Debit" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "Manager cont" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Inchis" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Debit" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "Linie analitica" msgid "Description" msgstr "Descriere" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -191,9 +208,9 @@ msgid "User" msgstr "Utilizator" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Cont Analitic Părinte" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -201,24 +218,24 @@ msgid "Date" msgstr "Dată" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Calculat prin inmultirea cantitatii cu pretul dat in pretul de cost al " +"Produsului. Exprimat intotdeauna in moneda principala a companiei." + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -235,9 +252,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Cont Analitic Părinte" #. module: analytic #: view:account.analytic.account:0 @@ -266,19 +283,13 @@ msgid "Credit" msgstr "Credit" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Sumă" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -323,7 +334,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -334,9 +345,9 @@ msgid "Analytic Accounting" msgstr "Contabilitate Analitica" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Sumă" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -374,13 +385,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Calculat prin inmultirea cantitatii cu pretul dat in pretul de cost al " -"Produsului. Exprimat intotdeauna in moneda principala a companiei." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/ru.po b/addons/analytic/i18n/ru.po index c9fe8a4d6e3..15fd661dc32 100644 --- a/addons/analytic/i18n/ru.po +++ b/addons/analytic/i18n/ru.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-02-21 18:14+0000\n" "Last-Translator: Chertykov Denis \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "Определяет итоговую сумму для расчета." +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Дебет" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "Управляющий счётом" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Закрыто" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Дебет" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "Позиция аналитики" msgid "Description" msgstr "Описание" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -186,9 +203,9 @@ msgid "User" msgstr "Пользователь" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Основной аналитический счет" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -196,24 +213,24 @@ msgid "Date" msgstr "Дата" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Рассчитывается путем умножения количества и цены, взятой из себестоимости " +"ТМЦ. Всегда выражено в основной валюте компании." + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -230,9 +247,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Основной аналитический счет" #. module: analytic #: view:account.analytic.account:0 @@ -261,19 +278,13 @@ msgid "Credit" msgstr "Кредит" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Суммма" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -318,7 +329,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -329,9 +340,9 @@ msgid "Analytic Accounting" msgstr "" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Суммма" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -369,13 +380,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Рассчитывается путем умножения количества и цены, взятой из себестоимости " -"ТМЦ. Всегда выражено в основной валюте компании." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/sl.po b/addons/analytic/i18n/sl.po index 0e7b7a4dbfc..0ccc573694f 100644 --- a/addons/analytic/i18n/sl.po +++ b/addons/analytic/i18n/sl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-16 05:04+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "Določa vrednost količine za štetje." +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Breme" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "Računovodja" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Zaprto" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Breme" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "Analitična postavka" msgid "Description" msgstr "Opis" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -186,9 +203,9 @@ msgid "User" msgstr "Uporabnik" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Nadrejeni analitični konto" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -196,24 +213,24 @@ msgid "Date" msgstr "Datum" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Izračunano z množenjem količine in cene podane v ceni vrednosti Izdelka. " +"Vedno izraženo v glavni valuti podjetja." + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -230,9 +247,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Nadrejeni analitični konto" #. module: analytic #: view:account.analytic.account:0 @@ -261,19 +278,13 @@ msgid "Credit" msgstr "Dobro" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Znesek" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -318,7 +329,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -329,9 +340,9 @@ msgid "Analytic Accounting" msgstr "" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Znesek" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -369,13 +380,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Izračunano z množenjem količine in cene podane v ceni vrednosti Izdelka. " -"Vedno izraženo v glavni valuti podjetja." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/sq.po b/addons/analytic/i18n/sq.po index 31baa8b742a..0abc0801c18 100644 --- a/addons/analytic/i18n/sq.po +++ b/addons/analytic/i18n/sq.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-28 15:14+0000\n" "Last-Translator: FULL NAME \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: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,20 +100,14 @@ msgstr "" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" msgstr "" #. module: analytic @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "" msgid "Description" msgstr "" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -186,8 +203,8 @@ msgid "User" msgstr "" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" msgstr "" #. module: analytic @@ -196,22 +213,20 @@ msgid "Date" msgstr "" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" +msgstr "" + +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." msgstr "" #. module: analytic @@ -230,8 +245,8 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" msgstr "" #. module: analytic @@ -261,19 +276,13 @@ msgid "Credit" msgstr "" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." -msgstr "" - -#. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -318,7 +327,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -329,8 +338,8 @@ msgid "Analytic Accounting" msgstr "" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" +#: field:account.analytic.line,amount:0 +msgid "Amount" msgstr "" #. module: analytic @@ -369,10 +378,8 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" #. module: analytic diff --git a/addons/analytic/i18n/sr.po b/addons/analytic/i18n/sr.po index 64fa8221a7c..cc42d1d5ca4 100644 --- a/addons/analytic/i18n/sr.po +++ b/addons/analytic/i18n/sr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-10-26 08:24+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: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "Specificira koju kolicinu iznosa da broji" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Duguje" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "Upravnik računovodstva" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Zatvoren" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Duguje" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "Analiticki red" msgid "Description" msgstr "Opis" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -186,9 +203,9 @@ msgid "User" msgstr "Korisnik" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Nadređeni analitički konto" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -196,24 +213,24 @@ msgid "Date" msgstr "Datum" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Izracunato mnozenjem kolicine i cene date u proizvodovom cenovniku. Uvek " +"prikazano u osnovnoj valuti preduzeca." + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -230,9 +247,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Nadređeni analitički konto" #. module: analytic #: view:account.analytic.account:0 @@ -261,19 +278,13 @@ msgid "Credit" msgstr "Kredit" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Iznos" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -318,7 +329,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -329,9 +340,9 @@ msgid "Analytic Accounting" msgstr "" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Iznos" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -369,13 +380,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Izracunato mnozenjem kolicine i cene date u proizvodovom cenovniku. Uvek " -"prikazano u osnovnoj valuti preduzeca." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/sr@latin.po b/addons/analytic/i18n/sr@latin.po index f960e6cb536..48e959bb191 100644 --- a/addons/analytic/i18n/sr@latin.po +++ b/addons/analytic/i18n/sr@latin.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-12-27 16:12+0000\n" "Last-Translator: Milan Milosevic \n" "Language-Team: Serbian latin \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "Naznačuje količinu naloga za brojanje" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Duguje" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "Upravnik računovodstva" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Zatvoren" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Duguje" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "Analiticki red" msgid "Description" msgstr "Opis" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -191,9 +208,9 @@ msgid "User" msgstr "Korisnik" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Nadređeni analitički konto" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -201,24 +218,24 @@ msgid "Date" msgstr "Datum" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Izračunato množenjem količine i cene datim u cenovniku proizvoda. Uvek " +"izraženo u osnovnoj valuti preduzeća." + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -235,9 +252,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Nadređeni analitički konto" #. module: analytic #: view:account.analytic.account:0 @@ -266,19 +283,13 @@ msgid "Credit" msgstr "Kredit" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Iznos" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -323,7 +334,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -334,9 +345,9 @@ msgid "Analytic Accounting" msgstr "Analitičko računovodstvo" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Iznos" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -374,13 +385,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Izračunato množenjem količine i cene datim u cenovniku proizvoda. Uvek " -"izraženo u osnovnoj valuti preduzeća." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/sv.po b/addons/analytic/i18n/sv.po index aa8730a32c2..9ca80bc415a 100644 --- a/addons/analytic/i18n/sv.po +++ b/addons/analytic/i18n/sv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-02 09:05+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "Ange antal att räkna." +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Debet" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "Ekonomichef" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Stängd" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Debet" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "Objektrad" msgid "Description" msgstr "Beskrivning" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -191,9 +208,9 @@ msgid "User" msgstr "Användare" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Överliggande objektkonto" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -201,24 +218,24 @@ msgid "Date" msgstr "Datum" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Beräknad genom multiplicering av kvantitet och priser från produktens " +"kostpris. Alltid uttryckt i bolagets huvudvaluta." + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -235,9 +252,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Överliggande objektkonto" #. module: analytic #: view:account.analytic.account:0 @@ -266,19 +283,13 @@ msgid "Credit" msgstr "Kredit" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Belopp" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -323,7 +334,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -334,9 +345,9 @@ msgid "Analytic Accounting" msgstr "Objektsredovisning" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Belopp" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -374,13 +385,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Beräknad genom multiplicering av kvantitet och priser från produktens " -"kostpris. Alltid uttryckt i bolagets huvudvaluta." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/tr.po b/addons/analytic/i18n/tr.po index d589be7c829..6c063b59f79 100644 --- a/addons/analytic/i18n/tr.po +++ b/addons/analytic/i18n/tr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-05-29 17:52+0000\n" "Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "Sayılacak miktarı belirtir." +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Borç" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "Hesap Yöneticisi" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Kapalı" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Borç" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "Analiz Satırı" msgid "Description" msgstr "Açıklama" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -191,9 +208,9 @@ msgid "User" msgstr "Kullanıcı" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "Üst Hesap Analizi" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -201,24 +218,24 @@ msgid "Date" msgstr "Tarih" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "" +"Ürünün maliyet bedeli olarak verilen fiyatın miktarla çarpılmasıyla " +"hesaplanır. Her zaman şirketin ana para birimi cinsinden ifade edilmelidir." + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -235,9 +252,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "Üst Hesap Analizi" #. module: analytic #: view:account.analytic.account:0 @@ -266,19 +283,13 @@ msgid "Credit" msgstr "Kredi" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Tutar" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -323,7 +334,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -334,9 +345,9 @@ msgid "Analytic Accounting" msgstr "Analiz Muhasebesi" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Tutar" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -374,13 +385,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" -"Ürünün maliyet bedeli olarak verilen fiyatın miktarla çarpılmasıyla " -"hesaplanır. Her zaman şirketin ana para birimi cinsinden ifade edilmelidir." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/vi.po b/addons/analytic/i18n/vi.po index 696b37c28d3..452c3cb4ae5 100644 --- a/addons/analytic/i18n/vi.po +++ b/addons/analytic/i18n/vi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-26 08:19+0000\n" "Last-Translator: OpenERP Administrators \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: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "Bên nợ" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "Người quản lý Tài Khoản" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "Đã đóng" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "Bên nợ" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "" msgid "Description" msgstr "Mô tả" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -186,8 +203,8 @@ msgid "User" msgstr "Người dùng" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" msgstr "" #. module: analytic @@ -196,22 +213,20 @@ msgid "Date" msgstr "Ngày" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" +msgstr "" + +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." msgstr "" #. module: analytic @@ -230,8 +245,8 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" msgstr "" #. module: analytic @@ -261,19 +276,13 @@ msgid "Credit" msgstr "Bên có" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "Giá trị" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -318,7 +327,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -329,9 +338,9 @@ msgid "Analytic Accounting" msgstr "" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "Giá trị" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -369,10 +378,8 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." msgstr "" #. module: analytic diff --git a/addons/analytic/i18n/zh_CN.po b/addons/analytic/i18n/zh_CN.po index 4c1aa0de264..1ab151aa64b 100644 --- a/addons/analytic/i18n/zh_CN.po +++ b/addons/analytic/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-30 07:45+0000\n" "Last-Translator: mrshelly \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,9 +28,10 @@ msgid "In Progress" msgstr "进行中" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" -msgstr "状态更改" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -47,6 +48,24 @@ msgstr "截止日期" msgid "Specifies the amount of quantity to count." msgstr "指定金额的数量用来计算" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "借方" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "科目管理员" msgid "Followers" msgstr "关注者" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "已关闭" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "借方" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "状态" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "%s (副本)" @@ -125,11 +142,6 @@ msgstr "辅助核算明细" msgid "Description" msgstr "描述" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -188,9 +205,9 @@ msgid "User" msgstr "用户" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "上级辅助核算项" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -198,24 +215,22 @@ msgid "Date" msgstr "日期" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "计算公式是数量乘以产品成本价。币别是公司本位币。" + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -232,9 +247,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "上级辅助核算项" #. module: analytic #: view:account.analytic.account:0 @@ -263,19 +278,13 @@ msgid "Credit" msgstr "贷方" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "金额" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -320,7 +329,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -331,9 +340,9 @@ msgid "Analytic Accounting" msgstr "成本会计" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "金额" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -371,11 +380,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." -msgstr "计算公式是数量乘以产品成本价。币别是公司本位币。" +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." +msgstr "" #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/zh_TW.po b/addons/analytic/i18n/zh_TW.po index a149f78645a..48fe2289d24 100644 --- a/addons/analytic/i18n/zh_TW.po +++ b/addons/analytic/i18n/zh_TW.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-08-27 12:22+0000\n" "Last-Translator: Eric Huang \n" "Language-Team: Chinese (Traditional) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:46+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:56+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -28,8 +28,9 @@ msgid "In Progress" msgstr "" #. module: analytic -#: model:mail.message.subtype,name:analytic.mt_account_status -msgid "Status Change" +#: code:addons/analytic/analytic.py:229 +#, python-format +msgid "Contract: " msgstr "" #. module: analytic @@ -47,6 +48,24 @@ msgstr "" msgid "Specifies the amount of quantity to count." msgstr "指定金額的數量用來計算" +#. module: analytic +#: field:account.analytic.account,debit:0 +msgid "Debit" +msgstr "借方" + +#. module: analytic +#: help:account.analytic.account,type:0 +msgid "" +"If you select the View Type, it means you won't allow to create journal " +"entries using that account.\n" +"The type 'Analytic account' stands for usual accounts that you only want to " +"use in accounting.\n" +"If you select Contract or Project, it offers you the possibility to manage " +"the validity and the invoicing options for this account.\n" +"The special type 'Template of Contract' allows you to define a template with " +"default data that you can reuse easily." +msgstr "" + #. module: analytic #: view:account.analytic.account:0 msgid "" @@ -62,9 +81,13 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:222 -#, python-format -msgid "Contract: " +#: selection:account.analytic.account,type:0 +msgid "Contract or Project" +msgstr "" + +#. module: analytic +#: field:account.analytic.account,name:0 +msgid "Account/Contract Name" msgstr "" #. module: analytic @@ -77,21 +100,15 @@ msgstr "科目管理" msgid "Followers" msgstr "" -#. module: analytic -#: code:addons/analytic/analytic.py:319 -#, python-format -msgid "Contract created." -msgstr "" - #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" msgstr "已關閉" #. module: analytic -#: field:account.analytic.account,debit:0 -msgid "Debit" -msgstr "借方" +#: model:mail.message.subtype,name:analytic.mt_account_pending +msgid "Contract to Renew" +msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgid "Status" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:261 +#: code:addons/analytic/analytic.py:268 #, python-format msgid "%s (copy)" msgstr "" @@ -125,11 +142,6 @@ msgstr "輔助核算項目明細" msgid "Description" msgstr "說明" -#. module: analytic -#: field:account.analytic.account,name:0 -msgid "Account/Contract Name" -msgstr "" - #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" @@ -156,6 +168,11 @@ msgstr "" msgid "Messages and communication history" msgstr "" +#. module: analytic +#: model:mail.message.subtype,description:analytic.mt_account_opened +msgid "Stage opened" +msgstr "" + #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "" @@ -164,7 +181,7 @@ msgid "" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "" "If you set a company, the currency selected has to be the same as it's " @@ -188,9 +205,9 @@ msgid "User" msgstr "使用者" #. module: analytic -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "上級輔助核算項" +#: model:mail.message.subtype,description:analytic.mt_account_pending +msgid "Contract pending" +msgstr "" #. module: analytic #: field:account.analytic.line,date:0 @@ -198,24 +215,22 @@ msgid "Date" msgstr "日期" #. module: analytic -#: help:account.analytic.account,type:0 -msgid "" -"If you select the View Type, it means you won't allow to create journal " -"entries using that account.\n" -"The type 'Analytic account' stands for usual accounts that you only want to " -"use in accounting.\n" -"If you select Contract or Project, it offers you the possibility to manage " -"the validity and the invoicing options for this account.\n" -"The special type 'Template of Contract' allows you to define a template with " -"default data that you can reuse easily." +#: model:mail.message.subtype,name:analytic.mt_account_closed +msgid "Contract Finished" msgstr "" #. module: analytic -#: field:account.analytic.account,message_comment_ids:0 -#: help:account.analytic.account,message_comment_ids:0 -msgid "Comments and emails" +#: view:account.analytic.account:0 +msgid "Terms and Conditions" msgstr "" +#. module: analytic +#: help:account.analytic.line,amount:0 +msgid "" +"Calculated by multiplying the quantity and the price given in the Product's " +"cost price. Always expressed in the company main currency." +msgstr "計算公式是數量乘以產品成本價。幣別是公司主要幣別。" + #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" @@ -232,9 +247,9 @@ msgid "Messages" msgstr "" #. module: analytic -#: constraint:account.analytic.line:0 -msgid "You cannot create analytic line on view account." -msgstr "" +#: field:account.analytic.account,parent_id:0 +msgid "Parent Analytic Account" +msgstr "上級輔助核算項" #. module: analytic #: view:account.analytic.account:0 @@ -263,19 +278,13 @@ msgid "Credit" msgstr "貸方" #. module: analytic -#: field:account.analytic.line,amount:0 -msgid "Amount" -msgstr "金額" - -#. module: analytic -#: code:addons/analytic/analytic.py:321 -#, python-format -msgid "Contract for %s has been created." +#: model:mail.message.subtype,name:analytic.mt_account_opened +msgid "Contract Opened" msgstr "" #. module: analytic -#: view:account.analytic.account:0 -msgid "Terms and Conditions" +#: model:mail.message.subtype,description:analytic.mt_account_closed +msgid "Contract closed" msgstr "" #. module: analytic @@ -320,7 +329,7 @@ msgid "Reference" msgstr "" #. module: analytic -#: code:addons/analytic/analytic.py:153 +#: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" msgstr "" @@ -331,9 +340,9 @@ msgid "Analytic Accounting" msgstr "輔助核算會計" #. module: analytic -#: selection:account.analytic.account,type:0 -msgid "Contract or Project" -msgstr "" +#: field:account.analytic.line,amount:0 +msgid "Amount" +msgstr "金額" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -371,11 +380,9 @@ msgid "Start Date" msgstr "" #. module: analytic -#: help:account.analytic.line,amount:0 -msgid "" -"Calculated by multiplying the quantity and the price given in the Product's " -"cost price. Always expressed in the company main currency." -msgstr "計算公式是數量乘以產品成本價。幣別是公司主要幣別。" +#: constraint:account.analytic.line:0 +msgid "You cannot create analytic line on view account." +msgstr "" #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/security/analytic_security.xml b/addons/analytic/security/analytic_security.xml index a8c43b0bbb7..70688275de2 100644 --- a/addons/analytic/security/analytic_security.xml +++ b/addons/analytic/security/analytic_security.xml @@ -1,5 +1,6 @@ - + + Analytic multi company rule @@ -14,9 +15,14 @@ ['|',('company_id','=',False),('company_id','child_of',[user.company_id.id])] - + + + + Analytic Accounting - + + + diff --git a/addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py b/addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py index 93e8cc058a3..4ce2eca1ee4 100644 --- a/addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py +++ b/addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py @@ -109,20 +109,19 @@ class account_analytic_account(osv.osv): return res def open_hr_expense(self, cr, uid, ids, context=None): + mod_obj = self.pool.get('ir.model.data') + act_obj = self.pool.get('ir.actions.act_window') + + dummy, act_window_id = mod_obj.get_object_reference(cr, uid, 'hr_expense', 'expense_all') + result = act_obj.read(cr, uid, act_window_id, context=context) + line_ids = self.pool.get('hr.expense.line').search(cr,uid,[('analytic_account', 'in', ids)]) - domain = [('line_ids', 'in', line_ids)] - names = [record.name for record in self.browse(cr, uid, ids, context=context)] - name = _('Expenses of %s') % ','.join(names) - return { - 'type': 'ir.actions.act_window', - 'name': name, - 'view_type': 'form', - 'view_mode': 'tree,form', - 'context':{'analytic_account':ids[0]}, - 'domain' : domain, - 'res_model': 'hr.expense.expense', - 'nodestroy': True, - } + result['domain'] = [('line_ids', 'in', line_ids)] + names = [account.name for account in self.browse(cr, uid, ids, context=context)] + result['name'] = _('Expenses of %s') % ','.join(names) + result['context'] = {'analytic_account': ids[0]} + result['view_type'] = 'form' + return result def hr_to_invoice_expense(self, cr, uid, ids, context=None): domain = [('invoice_id','=',False),('to_invoice','!=',False), ('journal_id.type', '=', 'purchase'), ('account_id', 'in', ids)] diff --git a/addons/analytic_contract_hr_expense/i18n/analytic_contract_hr_expense.pot b/addons/analytic_contract_hr_expense/i18n/analytic_contract_hr_expense.pot index 937ff0a7172..2ac57971716 100644 --- a/addons/analytic_contract_hr_expense/i18n/analytic_contract_hr_expense.pot +++ b/addons/analytic_contract_hr_expense/i18n/analytic_contract_hr_expense.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" -"PO-Revision-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -36,13 +36,13 @@ msgid "Analytic Account" msgstr "" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:134 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 #, python-format msgid "Expenses to Invoice of %s" msgstr "" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:119 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 #, python-format msgid "Expenses of %s" msgstr "" diff --git a/addons/analytic_contract_hr_expense/i18n/ar.po b/addons/analytic_contract_hr_expense/i18n/ar.po index 54cdf30f435..5bf296cf2e2 100644 --- a/addons/analytic_contract_hr_expense/i18n/ar.po +++ b/addons/analytic_contract_hr_expense/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-01 18:30+0000\n" "Last-Translator: gehad shaat \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: 2012-12-04 05:55+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "حسابات تحليلية" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:134 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 #, python-format msgid "Expenses to Invoice of %s" msgstr "" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:119 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 #, python-format msgid "Expenses of %s" msgstr "" diff --git a/addons/analytic_contract_hr_expense/i18n/de.po b/addons/analytic_contract_hr_expense/i18n/de.po index 1b0e311413c..b1315e553ce 100644 --- a/addons/analytic_contract_hr_expense/i18n/de.po +++ b/addons/analytic_contract_hr_expense/i18n/de.po @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" -"PO-Revision-Date: 2012-12-17 21:47+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-18 15:31+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-18 05:02+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -39,16 +39,16 @@ msgid "Analytic Account" msgstr "Kostenstelle" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:134 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 #, python-format msgid "Expenses to Invoice of %s" -msgstr "" +msgstr "Spesen Abrechnung zu %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:119 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 #, python-format msgid "Expenses of %s" -msgstr "" +msgstr "Spesen zu %s" #. module: analytic_contract_hr_expense #: field:account.analytic.account,expense_invoiced:0 diff --git a/addons/analytic_contract_hr_expense/i18n/es.po b/addons/analytic_contract_hr_expense/i18n/es.po index 21114981da9..cadd73d6a3f 100644 --- a/addons/analytic_contract_hr_expense/i18n/es.po +++ b/addons/analytic_contract_hr_expense/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 12:02+0000\n" "Last-Translator: Pedro Manuel Baeza \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Cuenta analítica" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:134 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 #, python-format msgid "Expenses to Invoice of %s" msgstr "Gastos a facturar de %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:119 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 #, python-format msgid "Expenses of %s" msgstr "Gastos de %s" diff --git a/addons/analytic_contract_hr_expense/i18n/fr.po b/addons/analytic_contract_hr_expense/i18n/fr.po new file mode 100644 index 00000000000..bb9b15f374f --- /dev/null +++ b/addons/analytic_contract_hr_expense/i18n/fr.po @@ -0,0 +1,72 @@ +# French translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-18 23:00+0000\n" +"Last-Translator: Nicolas JEUDY \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "or view" +msgstr "" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "Nothing to invoice, create" +msgstr "Rien à facturer, créer" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "expenses" +msgstr "Dépenses" + +#. module: analytic_contract_hr_expense +#: model:ir.model,name:analytic_contract_hr_expense.model_account_analytic_account +msgid "Analytic Account" +msgstr "Compte Analytique" + +#. module: analytic_contract_hr_expense +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#, python-format +msgid "Expenses to Invoice of %s" +msgstr "" + +#. module: analytic_contract_hr_expense +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#, python-format +msgid "Expenses of %s" +msgstr "" + +#. module: analytic_contract_hr_expense +#: field:account.analytic.account,expense_invoiced:0 +#: field:account.analytic.account,expense_to_invoice:0 +#: field:account.analytic.account,remaining_expense:0 +msgid "unknown" +msgstr "inconnu" + +#. module: analytic_contract_hr_expense +#: field:account.analytic.account,est_expenses:0 +msgid "Estimation of Expenses to Invoice" +msgstr "Estimation des Dépenses à facturer" + +#. module: analytic_contract_hr_expense +#: field:account.analytic.account,charge_expenses:0 +msgid "Charge Expenses" +msgstr "" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "⇒ Invoice" +msgstr "Facture" diff --git a/addons/analytic_contract_hr_expense/i18n/hr.po b/addons/analytic_contract_hr_expense/i18n/hr.po index 49e3ab00dd9..de71083393e 100644 --- a/addons/analytic_contract_hr_expense/i18n/hr.po +++ b/addons/analytic_contract_hr_expense/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-10 07:34+0000\n" "Last-Translator: Goran Kliska \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-11 04:49+0000\n" -"X-Generator: Launchpad (build 16356)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Analitički konto" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:134 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 #, python-format msgid "Expenses to Invoice of %s" msgstr "" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:119 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 #, python-format msgid "Expenses of %s" msgstr "Troškovi %s" diff --git a/addons/analytic_contract_hr_expense/i18n/it.po b/addons/analytic_contract_hr_expense/i18n/it.po index bee2b304211..087519b54c9 100644 --- a/addons/analytic_contract_hr_expense/i18n/it.po +++ b/addons/analytic_contract_hr_expense/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-10 23:34+0000\n" "Last-Translator: Sergio Corato \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Conto analitico" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:134 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 #, python-format msgid "Expenses to Invoice of %s" msgstr "Costi da Fatturare di %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:119 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 #, python-format msgid "Expenses of %s" msgstr "Costi di %s" diff --git a/addons/analytic_contract_hr_expense/i18n/nb.po b/addons/analytic_contract_hr_expense/i18n/nb.po index 9b3ea2929c1..c7996cb0336 100644 --- a/addons/analytic_contract_hr_expense/i18n/nb.po +++ b/addons/analytic_contract_hr_expense/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-29 13:13+0000\n" "Last-Translator: Kaare Pettersen \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:55+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Analytisk konto." #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:134 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 #, python-format msgid "Expenses to Invoice of %s" msgstr "Utgifter til Faktura av% s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:119 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 #, python-format msgid "Expenses of %s" msgstr "Utgifter av %s." diff --git a/addons/analytic_contract_hr_expense/i18n/nl.po b/addons/analytic_contract_hr_expense/i18n/nl.po index f49523025d6..33fe31e5e4e 100644 --- a/addons/analytic_contract_hr_expense/i18n/nl.po +++ b/addons/analytic_contract_hr_expense/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-29 15:10+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:55+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Kostenplaats" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:134 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 #, python-format msgid "Expenses to Invoice of %s" msgstr "Uitgave te factureren van %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:119 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 #, python-format msgid "Expenses of %s" msgstr "Uitgaven van %s" diff --git a/addons/analytic_contract_hr_expense/i18n/pl.po b/addons/analytic_contract_hr_expense/i18n/pl.po index 1ae139ab3e0..11047615aea 100644 --- a/addons/analytic_contract_hr_expense/i18n/pl.po +++ b/addons/analytic_contract_hr_expense/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-16 11:12+0000\n" "Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \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: 2012-12-17 04:47+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Konto analityczne" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:134 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 #, python-format msgid "Expenses to Invoice of %s" msgstr "Wydatki do zafakturowania %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:119 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 #, python-format msgid "Expenses of %s" msgstr "" diff --git a/addons/analytic_contract_hr_expense/i18n/pt.po b/addons/analytic_contract_hr_expense/i18n/pt.po index b477c92dd6f..de877454114 100644 --- a/addons/analytic_contract_hr_expense/i18n/pt.po +++ b/addons/analytic_contract_hr_expense/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 17:54+0000\n" "Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Conta analítica" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:134 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 #, python-format msgid "Expenses to Invoice of %s" msgstr "" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:119 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 #, python-format msgid "Expenses of %s" msgstr "Despesas de %s" diff --git a/addons/analytic_contract_hr_expense/i18n/pt_BR.po b/addons/analytic_contract_hr_expense/i18n/pt_BR.po index 060d6dbd00e..ab3633d453b 100644 --- a/addons/analytic_contract_hr_expense/i18n/pt_BR.po +++ b/addons/analytic_contract_hr_expense/i18n/pt_BR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-10 14:50+0000\n" "Last-Translator: Projetaty Soluções OpenSource \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-11 04:49+0000\n" -"X-Generator: Launchpad (build 16356)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Conta Analítica" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:134 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 #, python-format msgid "Expenses to Invoice of %s" msgstr "Despesas para Faturar de %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:119 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 #, python-format msgid "Expenses of %s" msgstr "Despesas de %s" diff --git a/addons/analytic_contract_hr_expense/i18n/ro.po b/addons/analytic_contract_hr_expense/i18n/ro.po new file mode 100644 index 00000000000..dc4e3d3e9d6 --- /dev/null +++ b/addons/analytic_contract_hr_expense/i18n/ro.po @@ -0,0 +1,72 @@ +# Romanian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-18 18:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-19 05:22+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "or view" +msgstr "sau vizualizare" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "Nothing to invoice, create" +msgstr "Nimic de facturat, creati" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "expenses" +msgstr "cheltuieli" + +#. module: analytic_contract_hr_expense +#: model:ir.model,name:analytic_contract_hr_expense.model_account_analytic_account +msgid "Analytic Account" +msgstr "Cont Analitic" + +#. module: analytic_contract_hr_expense +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#, python-format +msgid "Expenses to Invoice of %s" +msgstr "Cheltuieli de Facturat de %s" + +#. module: analytic_contract_hr_expense +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#, python-format +msgid "Expenses of %s" +msgstr "Cletuieli de %s" + +#. module: analytic_contract_hr_expense +#: field:account.analytic.account,expense_invoiced:0 +#: field:account.analytic.account,expense_to_invoice:0 +#: field:account.analytic.account,remaining_expense:0 +msgid "unknown" +msgstr "necunoscut(a)" + +#. module: analytic_contract_hr_expense +#: field:account.analytic.account,est_expenses:0 +msgid "Estimation of Expenses to Invoice" +msgstr "Estimare a Cheltuielilor de Facturat" + +#. module: analytic_contract_hr_expense +#: field:account.analytic.account,charge_expenses:0 +msgid "Charge Expenses" +msgstr "Incarca Cheltuielile" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "⇒ Invoice" +msgstr "⇒ Factura" diff --git a/addons/analytic_contract_hr_expense/i18n/sl.po b/addons/analytic_contract_hr_expense/i18n/sl.po new file mode 100644 index 00000000000..d2ee087886a --- /dev/null +++ b/addons/analytic_contract_hr_expense/i18n/sl.po @@ -0,0 +1,72 @@ +# Slovenian translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-29 11:33+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-30 05:20+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "or view" +msgstr "ali pogled" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "Nothing to invoice, create" +msgstr "Ni kaj fakturirati" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "expenses" +msgstr "stroški" + +#. module: analytic_contract_hr_expense +#: model:ir.model,name:analytic_contract_hr_expense.model_account_analytic_account +msgid "Analytic Account" +msgstr "Analitični konto" + +#. module: analytic_contract_hr_expense +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#, python-format +msgid "Expenses to Invoice of %s" +msgstr "" + +#. module: analytic_contract_hr_expense +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#, python-format +msgid "Expenses of %s" +msgstr "" + +#. module: analytic_contract_hr_expense +#: field:account.analytic.account,expense_invoiced:0 +#: field:account.analytic.account,expense_to_invoice:0 +#: field:account.analytic.account,remaining_expense:0 +msgid "unknown" +msgstr "neznano" + +#. module: analytic_contract_hr_expense +#: field:account.analytic.account,est_expenses:0 +msgid "Estimation of Expenses to Invoice" +msgstr "" + +#. module: analytic_contract_hr_expense +#: field:account.analytic.account,charge_expenses:0 +msgid "Charge Expenses" +msgstr "" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "⇒ Invoice" +msgstr "⇒ Račun" diff --git a/addons/analytic_contract_hr_expense/i18n/zh_CN.po b/addons/analytic_contract_hr_expense/i18n/zh_CN.po index 4271f2247d2..219cb8cfe99 100644 --- a/addons/analytic_contract_hr_expense/i18n/zh_CN.po +++ b/addons/analytic_contract_hr_expense/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-30 17:47+0000\n" "Last-Translator: ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:55+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "辅助核算项" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:134 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 #, python-format msgid "Expenses to Invoice of %s" msgstr "%s的费用到发票" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:119 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 #, python-format msgid "Expenses of %s" msgstr "%s的费用" diff --git a/addons/analytic_user_function/analytic_user_function.py b/addons/analytic_user_function/analytic_user_function.py index bc387b25859..ec2aa1688d6 100644 --- a/addons/analytic_user_function/analytic_user_function.py +++ b/addons/analytic_user_function/analytic_user_function.py @@ -96,10 +96,10 @@ class hr_analytic_timesheet(osv.osv): res.setdefault('value',{}) res['value']= super(hr_analytic_timesheet, self).on_change_account_id(cr, uid, ids, account_id)['value'] res['value']['product_id'] = r.product_id.id - res['value']['product_uom_id'] = r.product_id.product_tmpl_id.uom_id.id + res['value']['product_uom_id'] = r.product_id.uom_id.id #the change of product has to impact the amount, uom and general_account_id - a = r.product_id.product_tmpl_id.property_account_expense.id + a = r.product_id.property_account_expense.id if not a: a = r.product_id.categ_id.property_account_expense_categ.id if not a: @@ -128,7 +128,7 @@ class hr_analytic_timesheet(osv.osv): res['value']['product_id'] = r.product_id.id #the change of product has to impact the amount, uom and general_account_id - a = r.product_id.product_tmpl_id.property_account_expense.id + a = r.product_id.property_account_expense.id if not a: a = r.product_id.categ_id.property_account_expense_categ.id if not a: diff --git a/addons/analytic_user_function/i18n/analytic_user_function.pot b/addons/analytic_user_function/i18n/analytic_user_function.pot index b75fdf6df4f..f0c0671d4d6 100644 --- a/addons/analytic_user_function/i18n/analytic_user_function.pot +++ b/addons/analytic_user_function/i18n/analytic_user_function.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" -"PO-Revision-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/ar.po b/addons/analytic_user_function/i18n/ar.po index 8593fa06b9a..453bdab2ffa 100644 --- a/addons/analytic_user_function/i18n/ar.po +++ b/addons/analytic_user_function/i18n/ar.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-02-03 06:24+0000\n" "Last-Translator: <>\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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/bg.po b/addons/analytic_user_function/i18n/bg.po index 9c817c45a7d..0cf7eec3a3c 100644 --- a/addons/analytic_user_function/i18n/bg.po +++ b/addons/analytic_user_function/i18n/bg.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-02-03 09: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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/bs.po b/addons/analytic_user_function/i18n/bs.po index 2c4629791f3..8525055da2b 100644 --- a/addons/analytic_user_function/i18n/bs.po +++ b/addons/analytic_user_function/i18n/bs.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-02-03 08: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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ca.po b/addons/analytic_user_function/i18n/ca.po index 68fe1b3c4c0..77928f19f0a 100644 --- a/addons/analytic_user_function/i18n/ca.po +++ b/addons/analytic_user_function/i18n/ca.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-10-30 14:54+0000\n" "Last-Translator: Jordi Esteve (www.zikzakmedia.com) " "\n" @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/cs.po b/addons/analytic_user_function/i18n/cs.po index a0beaeb096f..d39970be5c3 100644 --- a/addons/analytic_user_function/i18n/cs.po +++ b/addons/analytic_user_function/i18n/cs.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-10-30 10:06+0000\n" "Last-Translator: Konki \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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/da.po b/addons/analytic_user_function/i18n/da.po index 522bbd3803b..4af1f89d1b9 100644 --- a/addons/analytic_user_function/i18n/da.po +++ b/addons/analytic_user_function/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-01-27 08:33+0000\n" "Last-Translator: FULL NAME \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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/de.po b/addons/analytic_user_function/i18n/de.po index 595cc4bca3e..e6d5a7fac0d 100644 --- a/addons/analytic_user_function/i18n/de.po +++ b/addons/analytic_user_function/i18n/de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-08 11:12+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-09 04:39+0000\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/el.po b/addons/analytic_user_function/i18n/el.po index 02b9ce261fd..03c7f92b20c 100644 --- a/addons/analytic_user_function/i18n/el.po +++ b/addons/analytic_user_function/i18n/el.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-29 13:04+0000\n" "Last-Translator: Dimitris Andavoglou \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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/en_GB.po b/addons/analytic_user_function/i18n/en_GB.po index 532c4f16bc6..54794d188b4 100644 --- a/addons/analytic_user_function/i18n/en_GB.po +++ b/addons/analytic_user_function/i18n/en_GB.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-01-23 13:22+0000\n" "Last-Translator: mrx5682 \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es.po b/addons/analytic_user_function/i18n/es.po index 95a21586cdc..9c52f82759a 100644 --- a/addons/analytic_user_function/i18n/es.po +++ b/addons/analytic_user_function/i18n/es.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 13:06+0000\n" "Last-Translator: Pedro Manuel Baeza \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: 2012-12-12 04:40+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es_AR.po b/addons/analytic_user_function/i18n/es_AR.po index 7364cc28186..eca626b5ba3 100644 --- a/addons/analytic_user_function/i18n/es_AR.po +++ b/addons/analytic_user_function/i18n/es_AR.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-09-16 17:44+0000\n" "Last-Translator: Silvana Herrera \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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es_CR.po b/addons/analytic_user_function/i18n/es_CR.po index 44bb3ff4a1a..43774674907 100644 --- a/addons/analytic_user_function/i18n/es_CR.po +++ b/addons/analytic_user_function/i18n/es_CR.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-15 15:53+0000\n" "Last-Translator: Freddy Gonzalez \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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" "Language: \n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/es_EC.po b/addons/analytic_user_function/i18n/es_EC.po index 25e4108293e..ccee1764ba7 100644 --- a/addons/analytic_user_function/i18n/es_EC.po +++ b/addons/analytic_user_function/i18n/es_EC.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-13 03:54+0000\n" "Last-Translator: Cristian Salamea (Gnuthink) \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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es_PY.po b/addons/analytic_user_function/i18n/es_PY.po index 58a7a2c8d86..15ba19a5a23 100644 --- a/addons/analytic_user_function/i18n/es_PY.po +++ b/addons/analytic_user_function/i18n/es_PY.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-07 23:26+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Paraguay) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/et.po b/addons/analytic_user_function/i18n/et.po index 14aa1bb84b0..3e17be7d763 100644 --- a/addons/analytic_user_function/i18n/et.po +++ b/addons/analytic_user_function/i18n/et.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-10-30 15:57+0000\n" "Last-Translator: Ahti Hinnov \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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/fa.po b/addons/analytic_user_function/i18n/fa.po index 0b74d6b207f..6e39ff8dbe2 100644 --- a/addons/analytic_user_function/i18n/fa.po +++ b/addons/analytic_user_function/i18n/fa.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-12-18 17:03+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/fi.po b/addons/analytic_user_function/i18n/fi.po index 041bc179468..5757e4a30f4 100644 --- a/addons/analytic_user_function/i18n/fi.po +++ b/addons/analytic_user_function/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-06-29 05:53+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/fr.po b/addons/analytic_user_function/i18n/fr.po index 224cb2b632e..2ff47a7883a 100644 --- a/addons/analytic_user_function/i18n/fr.po +++ b/addons/analytic_user_function/i18n/fr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-29 15:23+0000\n" "Last-Translator: Numérigraphe \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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/gl.po b/addons/analytic_user_function/i18n/gl.po index a271d119b57..3a56b39ca1d 100644 --- a/addons/analytic_user_function/i18n/gl.po +++ b/addons/analytic_user_function/i18n/gl.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: analytic-user-function-es\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-02-11 13:07+0000\n" "Last-Translator: Alberto Luengo Cabanillas (Pexego) \n" "Language-Team: Galego \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/gu.po b/addons/analytic_user_function/i18n/gu.po index 4babcc1290b..6aaebe653c0 100644 --- a/addons/analytic_user_function/i18n/gu.po +++ b/addons/analytic_user_function/i18n/gu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-04-18 12:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Gujarati \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/hr.po b/addons/analytic_user_function/i18n/hr.po index 7bb66e39b81..34f843bfa0d 100644 --- a/addons/analytic_user_function/i18n/hr.po +++ b/addons/analytic_user_function/i18n/hr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-12-08 15:51+0000\n" "Last-Translator: Goran Kliska \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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" "Language: hr\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/hu.po b/addons/analytic_user_function/i18n/hu.po index 310c2ff3953..73f61e5651e 100644 --- a/addons/analytic_user_function/i18n/hu.po +++ b/addons/analytic_user_function/i18n/hu.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-02-09 13:28+0000\n" "Last-Translator: Krisztian Eyssen \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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/id.po b/addons/analytic_user_function/i18n/id.po index 7b664f73581..80e5e521ed5 100644 --- a/addons/analytic_user_function/i18n/id.po +++ b/addons/analytic_user_function/i18n/id.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 02:55+0000\n" "Last-Translator: Mantavya Gajjar (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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/it.po b/addons/analytic_user_function/i18n/it.po index 8df85533e55..983ef735cae 100644 --- a/addons/analytic_user_function/i18n/it.po +++ b/addons/analytic_user_function/i18n/it.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 08:02+0000\n" "Last-Translator: Nicola Riolini - Micronaet \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: 2012-12-12 04:40+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ja.po b/addons/analytic_user_function/i18n/ja.po index 5388571d8e2..103039c0cff 100644 --- a/addons/analytic_user_function/i18n/ja.po +++ b/addons/analytic_user_function/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-04-08 05:16+0000\n" "Last-Translator: Masaki Yamaya \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ko.po b/addons/analytic_user_function/i18n/ko.po index 1029a520074..4f101247531 100644 --- a/addons/analytic_user_function/i18n/ko.po +++ b/addons/analytic_user_function/i18n/ko.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 02:55+0000\n" "Last-Translator: Bundo \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/lt.po b/addons/analytic_user_function/i18n/lt.po index e4edc02126b..7aad3d46c68 100644 --- a/addons/analytic_user_function/i18n/lt.po +++ b/addons/analytic_user_function/i18n/lt.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-09-08 16:50+0000\n" "Last-Translator: Giedrius Slavinskas - inovera.lt \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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/mk.po b/addons/analytic_user_function/i18n/mk.po index 99404699242..0b6efb66833 100644 --- a/addons/analytic_user_function/i18n/mk.po +++ b/addons/analytic_user_function/i18n/mk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-20 17:57+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Macedonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/mn.po b/addons/analytic_user_function/i18n/mn.po index f9c90dfe56c..4ac644af9aa 100644 --- a/addons/analytic_user_function/i18n/mn.po +++ b/addons/analytic_user_function/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-11 03:25+0000\n" "Last-Translator: OpenERP Administrators \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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/nb.po b/addons/analytic_user_function/i18n/nb.po index 27af82a0578..60a3c668d2f 100644 --- a/addons/analytic_user_function/i18n/nb.po +++ b/addons/analytic_user_function/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-29 13:16+0000\n" "Last-Translator: Kaare Pettersen \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/nl.po b/addons/analytic_user_function/i18n/nl.po index b47b008217d..b15cc99c9ea 100644 --- a/addons/analytic_user_function/i18n/nl.po +++ b/addons/analytic_user_function/i18n/nl.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-24 21:59+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/nl_BE.po b/addons/analytic_user_function/i18n/nl_BE.po index cac5a110ba9..88e408f2c2f 100644 --- a/addons/analytic_user_function/i18n/nl_BE.po +++ b/addons/analytic_user_function/i18n/nl_BE.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-10-02 07:35+0000\n" "Last-Translator: Els Van Vossel (Agaplan) \n" "Language-Team: Dutch (Belgium) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/oc.po b/addons/analytic_user_function/i18n/oc.po index fab1ca6342f..1821f0c5e90 100644 --- a/addons/analytic_user_function/i18n/oc.po +++ b/addons/analytic_user_function/i18n/oc.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 02:55+0000\n" "Last-Translator: Cédric VALMARY (Tot en òc) \n" "Language-Team: Occitan (post 1500) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/pl.po b/addons/analytic_user_function/i18n/pl.po index 517ccf05e24..eca48795f0f 100644 --- a/addons/analytic_user_function/i18n/pl.po +++ b/addons/analytic_user_function/i18n/pl.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-16 11:16+0000\n" "Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \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: 2012-12-17 04:47+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/pt.po b/addons/analytic_user_function/i18n/pt.po index 7ed8735d5be..985653dda95 100644 --- a/addons/analytic_user_function/i18n/pt.po +++ b/addons/analytic_user_function/i18n/pt.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-12 16:27+0000\n" "Last-Translator: Rui Franco (multibase.pt) \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: 2012-12-13 04:44+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/pt_BR.po b/addons/analytic_user_function/i18n/pt_BR.po index f81a39b09ac..cb3534c8375 100644 --- a/addons/analytic_user_function/i18n/pt_BR.po +++ b/addons/analytic_user_function/i18n/pt_BR.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-16 22:37+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " "\n" @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-17 04:47+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ro.po b/addons/analytic_user_function/i18n/ro.po index f055349a5a4..9c0a7c6000c 100644 --- a/addons/analytic_user_function/i18n/ro.po +++ b/addons/analytic_user_function/i18n/ro.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 02: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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ru.po b/addons/analytic_user_function/i18n/ru.po index 4a48c5f009c..e7d5bdb1330 100644 --- a/addons/analytic_user_function/i18n/ru.po +++ b/addons/analytic_user_function/i18n/ru.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-04-16 13:24+0000\n" "Last-Translator: Nikolay Chesnokov \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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sk.po b/addons/analytic_user_function/i18n/sk.po index d773065897c..e4adcc0fe31 100644 --- a/addons/analytic_user_function/i18n/sk.po +++ b/addons/analytic_user_function/i18n/sk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 02:57+0000\n" "Last-Translator: Peter Kohaut \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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sl.po b/addons/analytic_user_function/i18n/sl.po index 20d20f33b52..6c85662172c 100644 --- a/addons/analytic_user_function/i18n/sl.po +++ b/addons/analytic_user_function/i18n/sl.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-16 18: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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sq.po b/addons/analytic_user_function/i18n/sq.po index ca73ff6b69f..71e553c8889 100644 --- a/addons/analytic_user_function/i18n/sq.po +++ b/addons/analytic_user_function/i18n/sq.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-02 14:39+0000\n" "Last-Translator: FULL NAME \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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sr.po b/addons/analytic_user_function/i18n/sr.po index e647d08dc55..76342e0e0dc 100644 --- a/addons/analytic_user_function/i18n/sr.po +++ b/addons/analytic_user_function/i18n/sr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-10-27 08:09+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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sr@latin.po b/addons/analytic_user_function/i18n/sr@latin.po index 8a41a96f672..3efbb8f27cc 100644 --- a/addons/analytic_user_function/i18n/sr@latin.po +++ b/addons/analytic_user_function/i18n/sr@latin.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-12-27 15:49+0000\n" "Last-Translator: Milan Milosevic \n" "Language-Team: Serbian latin \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sv.po b/addons/analytic_user_function/i18n/sv.po index 0930fa08a51..4f336c19c23 100644 --- a/addons/analytic_user_function/i18n/sv.po +++ b/addons/analytic_user_function/i18n/sv.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.14\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-11-23 09:44+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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/tlh.po b/addons/analytic_user_function/i18n/tlh.po index f2ba26158d2..e1c09cc0c76 100644 --- a/addons/analytic_user_function/i18n/tlh.po +++ b/addons/analytic_user_function/i18n/tlh.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-02-03 06:24+0000\n" "Last-Translator: <>\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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/tr.po b/addons/analytic_user_function/i18n/tr.po index fb4d3f33834..e60c14504ff 100644 --- a/addons/analytic_user_function/i18n/tr.po +++ b/addons/analytic_user_function/i18n/tr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-01-10 23:17+0000\n" "Last-Translator: Ahmet Altınışık \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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/uk.po b/addons/analytic_user_function/i18n/uk.po index 424d80cd42e..f801122e68d 100644 --- a/addons/analytic_user_function/i18n/uk.po +++ b/addons/analytic_user_function/i18n/uk.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-02-03 08: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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/vi.po b/addons/analytic_user_function/i18n/vi.po index ac92764f85a..5e91de67d9e 100644 --- a/addons/analytic_user_function/i18n/vi.po +++ b/addons/analytic_user_function/i18n/vi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-02 14:39+0000\n" "Last-Translator: FULL NAME \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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/zh_CN.po b/addons/analytic_user_function/i18n/zh_CN.po index ed402f1806b..3146314c7cc 100644 --- a/addons/analytic_user_function/i18n/zh_CN.po +++ b/addons/analytic_user_function/i18n/zh_CN.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-29 14:18+0000\n" "Last-Translator: ccdos \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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/zh_TW.po b/addons/analytic_user_function/i18n/zh_TW.po index 28255a7ee1a..2c0264ccf8c 100644 --- a/addons/analytic_user_function/i18n/zh_TW.po +++ b/addons/analytic_user_function/i18n/zh_TW.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-08-20 03:00+0000\n" "Last-Translator: Eric Huang \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: 2012-12-04 05:42+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:51+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/anonymization/anonymization.py b/addons/anonymization/anonymization.py index a455bc835ce..d21b57a901e 100644 --- a/addons/anonymization/anonymization.py +++ b/addons/anonymization/anonymization.py @@ -543,7 +543,7 @@ class ir_model_fields_anonymize_wizard(osv.osv_memory): fixes = group(fixes, ('model_name', 'field_name')) for line in data: - table_name = self.pool.get(line['model_id'])._table + table_name = self.pool.get(line['model_id'])._table if self.pool.get(line['model_id']) else None # check if custom sql exists: key = (line['model_id'], line['field_id']) @@ -551,7 +551,7 @@ class ir_model_fields_anonymize_wizard(osv.osv_memory): if custom_updates: custom_updates.sort(itemgetter('sequence')) queries = [(record['query'], record['query_type']) for record in custom_updates if record['query_type']] - else: + elif table_name: queries = [("update %(table)s set %(field)s = %%(value)s where id = %%(id)s" % { 'table': table_name, 'field': line['field_id'], diff --git a/addons/anonymization/i18n/anonymization.pot b/addons/anonymization/i18n/anonymization.pot index de0b34d8a67..cafebb554b4 100644 --- a/addons/anonymization/i18n/anonymization.pot +++ b/addons/anonymization/i18n/anonymization.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -20,6 +20,11 @@ msgstr "" msgid "ir.model.fields.anonymize.wizard" msgstr "" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -35,6 +40,12 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "The database anonymization is currently in an unstable state. Some fields are anonymized, while some fields are not anonymized. You should try to solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -46,6 +57,11 @@ msgstr "" msgid "Field" msgstr "" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -56,6 +72,12 @@ msgstr "" msgid "ir.model.fields.anonymization" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "Before executing the anonymization process, you should make a backup of your database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -96,8 +118,9 @@ msgid "unknown" msgstr "" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." msgstr "" #. module: anonymization @@ -105,6 +128,11 @@ msgstr "" msgid "File path" msgstr "" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "This is the file created by the anonymization process. It should have the '.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -120,6 +148,12 @@ msgstr "" msgid "Reverse the Database Anonymization" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "Cannot anonymize fields of these types: binary, many2many, many2one, one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -147,6 +181,12 @@ msgstr "" msgid "Clear" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "It is not possible to reverse the anonymization process without supplying the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -157,6 +197,13 @@ msgstr "" msgid "Anonymized Field" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "The database anonymization is currently in an unstable state. Some fields are anonymized, while some fields are not anonymized. You should try to solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -195,8 +242,16 @@ msgid "ir.model.fields.anonymization.history" msgstr "" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 -msgid "This is the file created by the anonymization process. It should have the '.pickle' extention." +#: code:addons/anonymization/anonymization.py:358 +#, python-format +msgid "The database anonymization is currently in an unstable state. Some fields are anonymized, while some fields are not anonymized. You should try to solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -225,6 +280,12 @@ msgstr "" msgid "Started" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/ar.po b/addons/anonymization/i18n/ar.po index e59d38aa906..1e65c914060 100644 --- a/addons/anonymization/i18n/ar.po +++ b/addons/anonymization/i18n/ar.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-01 18:13+0000\n" "Last-Translator: gehad shaat \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: 2012-12-02 04:38+0000\n" -"X-Generator: Launchpad (build 16319)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "نموذج.حقول.معالج" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "كائن" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "اسم الحقل" msgid "Field" msgstr "حقل" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "استيراد" msgid "ir.model.fields.anonymization" msgstr "نموذج.حقول.إخفاء الهوية" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +125,23 @@ msgid "unknown" msgstr "مجهول" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "كائن" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "مسار الملف" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "تصدير" msgid "Reverse the Database Anonymization" msgstr "اعكس تجهيل قاعدة البيانات" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "حقول" msgid "Clear" msgstr "مسح" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "الملخص" msgid "Anonymized Field" msgstr "حقل التجاهل" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "الوحدة.الملفات.التجاهل.السجل" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "تجاهل-> واضح" msgid "Started" msgstr "بدئت" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/bg.po b/addons/anonymization/i18n/bg.po index 952b165dd00..394ae858a7d 100644 --- a/addons/anonymization/i18n/bg.po +++ b/addons/anonymization/i18n/bg.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-02 06:17+0000\n" "Last-Translator: Dimitar Markov \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "ir.model.fields.anonymize.wizard" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Обект" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "Име на поле" msgid "Field" msgstr "Поле" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "Импортиране" msgid "ir.model.fields.anonymization" msgstr "ir.model.fields.anonymization" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +125,23 @@ msgid "unknown" msgstr "неизвестен" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Обект" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Път до файла" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "Експортиране" msgid "Reverse the Database Anonymization" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "Полета" msgid "Clear" msgstr "Изчистване" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "Обобщена информация" msgid "Anonymized Field" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "" msgid "Started" msgstr "Стартирана" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/ca.po b/addons/anonymization/i18n/ca.po index 3aded45a95a..66a9a2e806d 100644 --- a/addons/anonymization/i18n/ca.po +++ b/addons/anonymization/i18n/ca.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-04-09 18:26+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "ir.model.fields.anonymize.wizard" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Objecte" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "Nom del camp" msgid "Field" msgstr "Camp" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "Importa" msgid "ir.model.fields.anonymization" msgstr "ir.model.fields.anonymization" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +125,23 @@ msgid "unknown" msgstr "desconegut" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Objecte" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Ruta del fitxer" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "Exporta" msgid "Reverse the Database Anonymization" msgstr "Reverteix l'anonimat de la base de dades" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "Camps" msgid "Clear" msgstr "Neteja" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "Resum" msgid "Anonymized Field" msgstr "Camp anònim" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "ir.model.fields.anonymization.history" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "Anònim --> A la vista" msgid "Started" msgstr "Iniciat" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/da.po b/addons/anonymization/i18n/da.po index 6d0eb36a5e5..33abbce7d4e 100644 --- a/addons/anonymization/i18n/da.po +++ b/addons/anonymization/i18n/da.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-01-27 08:31+0000\n" "Last-Translator: FULL NAME \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: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "" msgid "Field" msgstr "" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "" msgid "ir.model.fields.anonymization" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,8 +125,9 @@ msgid "unknown" msgstr "" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." msgstr "" #. module: anonymization @@ -107,6 +135,13 @@ msgstr "" msgid "File path" msgstr "" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "" msgid "Reverse the Database Anonymization" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "" msgid "Clear" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "" msgid "Anonymized Field" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "" msgid "Started" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/de.po b/addons/anonymization/i18n/de.po index e92d168d74e..717ff296b48 100644 --- a/addons/anonymization/i18n/de.po +++ b/addons/anonymization/i18n/de.po @@ -7,34 +7,48 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-01-13 19:14+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-18 06:59+0000\n" "Last-Translator: Ferdinand @ Camptocamp \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "ir.model.fields.anonymize.wizard" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Objekt" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" -msgstr "" +msgstr "ir.model.fields.anonymization.migration.fix" #. module: anonymization #: field:ir.model.fields.anonymization.migration.fix,target_version:0 msgid "Target Version" -msgstr "" +msgstr "Ziel Version" #. module: anonymization #: selection:ir.model.fields.anonymization.migration.fix,query_type:0 msgid "sql" +msgstr "SQL" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." msgstr "" #. module: anonymization @@ -48,6 +62,11 @@ msgstr "Feldname" msgid "Field" msgstr "Feld" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,11 +77,19 @@ msgstr "Import" msgid "ir.model.fields.anonymization" msgstr "ir.model.fields.anonymization" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: anonymization #: field:ir.model.fields.anonymization.history,direction:0 @@ -98,15 +125,25 @@ msgid "unknown" msgstr "unbekannt" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Objekt" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Dateipfad" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" +"Diese Datei wurde durch den Anonymisierungsprozess erzeugt und sollte die " +"Endung '.pickle' haben" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +159,14 @@ msgstr "Export" msgid "Reverse the Database Anonymization" msgstr "Mache Datenbankanonymiserung rückgängig" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -135,7 +180,7 @@ msgstr "Anonymisiere Datenbank" #. module: anonymization #: selection:ir.model.fields.anonymization.migration.fix,query_type:0 msgid "python" -msgstr "" +msgstr "python" #. module: anonymization #: view:ir.model.fields.anonymization.history:0 @@ -149,6 +194,14 @@ msgstr "Felder" msgid "Clear" msgstr "Leeren" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +212,16 @@ msgstr "Zusammenfassung" msgid "Anonymized Field" msgstr "Anonymisiertes Feld" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -189,7 +252,7 @@ msgstr "Anonymisierungs Verlauf" #. module: anonymization #: field:ir.model.fields.anonymization.migration.fix,model_name:0 msgid "Model" -msgstr "" +msgstr "Modell" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_history @@ -197,10 +260,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "ir.model.fields.anonymization.history" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -217,7 +289,7 @@ msgstr "Dateiname" #. module: anonymization #: field:ir.model.fields.anonymization.migration.fix,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Sequenz" #. module: anonymization #: selection:ir.model.fields.anonymization.history,direction:0 @@ -229,6 +301,12 @@ msgstr "anonymisiert -> leer" msgid "Started" msgstr "Begonnen" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" @@ -238,7 +316,7 @@ msgstr "Erledigt" #: field:ir.model.fields.anonymization.migration.fix,query:0 #: field:ir.model.fields.anonymization.migration.fix,query_type:0 msgid "Query" -msgstr "" +msgstr "Abfrage" #. module: anonymization #: view:ir.model.fields.anonymization.history:0 diff --git a/addons/anonymization/i18n/es.po b/addons/anonymization/i18n/es.po index bd0434ac337..caded2b5966 100644 --- a/addons/anonymization/i18n/es.po +++ b/addons/anonymization/i18n/es.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-12-11 14:05+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-24 10:02+0000\n" "Last-Translator: Pedro Manuel Baeza \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-25 04:48+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "ir.model.fields.anonymize.wizard" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Objeto" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,18 @@ msgstr "Versión objetivo" msgid "sql" msgstr "sql" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" +"La anonimización de la base de datos está actualmente en un estado " +"inestable. Algunos campos se anonimizan, mientras otros no. Debería intentar " +"resolver este problema antes de crear, escribir o eliminar campos." + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +65,11 @@ msgstr "Nombre de campo" msgid "Field" msgstr "campo" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "Nuevo" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +80,16 @@ msgstr "Importar" msgid "ir.model.fields.anonymization" msgstr "ir.model.fields.anonymization" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" +"Antes de ejecutar el proceso de anonimización, debería realizar una copia de " +"seguridad de su base de datos." + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +130,25 @@ msgid "unknown" msgstr "desconocido" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Objeto" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "El valor anonimizado es \"ninguno\". Esto no debería pasar." #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Ruta de archivo" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" +"Éste es el archivo creado por el proceso de anonimización. Debería tener la " +"extensión '.pickle'." + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +164,16 @@ msgstr "Exportar" msgid "Reverse the Database Anonymization" msgstr "Revertir el hacer anónima la base de datos" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" +"No se pueden anonimizar campos de estos tipos: binarios, many2many, " +"many2one, one2many, referencia." + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +201,16 @@ msgstr "Campos" msgid "Clear" msgstr "A la vista" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" +"No es posible revertir el proceso de anonimización sin proveer el archivo " +"exportado de anonimización." + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +221,19 @@ msgstr "Resumen" msgid "Anonymized Field" msgstr "Campo anónimo" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" +"La anonimización de la base de datos está actualmente en un estado " +"inestable. Algunos campos se anonimizan, mientras otros no. Debería intentar " +"resolver este problema antes de hacer nada." + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,13 +272,23 @@ msgid "ir.model.fields.anonymization.history" msgstr "ir.model.fields.anonymization.history" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." msgstr "" -"Éste es el archivo creado por el proceso de anonimización. Debería tener la " -"extensión '.pickle'." +"La anonimización de la base de datos está actualmente en un estado " +"inestable. Algunos campos se anonimizan, mientras otros no. Debería intentar " +"resolver este problema antes de hacer nada más." + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" +msgstr "¡Error!" #. module: anonymization #: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymize_wizard @@ -231,6 +316,13 @@ msgstr "Anónimo --> A la vista" msgid "Started" msgstr "Iniciado" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" +"La base de datos ya está anonimizada. No puede anonimizarla otra vez." + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/es_CR.po b/addons/anonymization/i18n/es_CR.po index c7bc9913be9..4dbe7f0768c 100644 --- a/addons/anonymization/i18n/es_CR.po +++ b/addons/anonymization/i18n/es_CR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-15 16:17+0000\n" "Last-Translator: Freddy Gonzalez \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" "Language: es\n" #. module: anonymization @@ -23,6 +23,11 @@ msgstr "" msgid "ir.model.fields.anonymize.wizard" msgstr "ir.model.fields.anonymize.wizard" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Objeto" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -38,6 +43,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -49,6 +63,11 @@ msgstr "Nombre de campo" msgid "Field" msgstr "campo" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -59,6 +78,14 @@ msgstr "Importar" msgid "ir.model.fields.anonymization" msgstr "ir.model.fields.anonymization" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -99,15 +126,23 @@ msgid "unknown" msgstr "desconocido" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Objeto" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Ruta de archivo" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -123,6 +158,14 @@ msgstr "Exportar" msgid "Reverse the Database Anonymization" msgstr "Revertir el hacer anónima la base de datos" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -150,6 +193,14 @@ msgstr "Campos" msgid "Clear" msgstr "A la vista" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -160,6 +211,16 @@ msgstr "Resumen" msgid "Anonymized Field" msgstr "Campo anónimo" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -198,10 +259,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "ir.model.fields.anonymization.history" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -230,6 +300,12 @@ msgstr "Anónimo --> A la vista" msgid "Started" msgstr "Iniciado" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/es_EC.po b/addons/anonymization/i18n/es_EC.po index 2befc33e792..25548372830 100644 --- a/addons/anonymization/i18n/es_EC.po +++ b/addons/anonymization/i18n/es_EC.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-02-23 23:34+0000\n" "Last-Translator: Mario Andrés Correa \n" "Language-Team: Spanish (Ecuador) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Objeto" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "Nombre de campo" msgid "Field" msgstr "Campo" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "Importar" msgid "ir.model.fields.anonymization" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +125,23 @@ msgid "unknown" msgstr "desconocido" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Objeto" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Ruta de archivo" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "Exportar" msgid "Reverse the Database Anonymization" msgstr "Revertir el hacer anónima la base de datos" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "Campos" msgid "Clear" msgstr "Limpiar" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "Resumen" msgid "Anonymized Field" msgstr "Campo anónimo" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "" msgid "Started" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/es_PY.po b/addons/anonymization/i18n/es_PY.po index ad6fc8ab550..b6ead437ebf 100644 --- a/addons/anonymization/i18n/es_PY.po +++ b/addons/anonymization/i18n/es_PY.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-07 23:30+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Paraguay) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "ir.model.fields.anonymize.wizard" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Objeto" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "Nombre del Campo" msgid "Field" msgstr "campo" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "Importar" msgid "ir.model.fields.anonymization" msgstr "ir.model.fields.anonymization" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +125,23 @@ msgid "unknown" msgstr "desconocido" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Objeto" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Ruta del archivo" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "Exportar" msgid "Reverse the Database Anonymization" msgstr "Revertir el hacer anónima la base de datos" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "Campos" msgid "Clear" msgstr "Limpiar" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "Resumen" msgid "Anonymized Field" msgstr "Campo anónimo" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "ir.model.fields.anonymization.history" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "Anónimo --> A Limpio" msgid "Started" msgstr "Iniciado" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/et.po b/addons/anonymization/i18n/et.po index ba5e7569b57..f8417e6eb23 100644 --- a/addons/anonymization/i18n/et.po +++ b/addons/anonymization/i18n/et.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-10-11 18:09+0000\n" "Last-Translator: Aare Vesi \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Objekt" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "Välja Nimi:" msgid "Field" msgstr "Väli" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "Import" msgid "ir.model.fields.anonymization" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +125,23 @@ msgid "unknown" msgstr "" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Objekt" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Faili asukoht" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "Eksport" msgid "Reverse the Database Anonymization" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "Väljad" msgid "Clear" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "Kokkuvõte" msgid "Anonymized Field" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "" msgid "Started" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/fa.po b/addons/anonymization/i18n/fa.po index 2861ce61f78..18cda8cb9e9 100644 --- a/addons/anonymization/i18n/fa.po +++ b/addons/anonymization/i18n/fa.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-12-18 17:04+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "" msgid "Field" msgstr "" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "" msgid "ir.model.fields.anonymization" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,8 +125,9 @@ msgid "unknown" msgstr "" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." msgstr "" #. module: anonymization @@ -107,6 +135,13 @@ msgstr "" msgid "File path" msgstr "" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "" msgid "Reverse the Database Anonymization" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "" msgid "Clear" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "" msgid "Anonymized Field" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "" msgid "Started" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/fi.po b/addons/anonymization/i18n/fi.po index 19a0609638e..9ca71edc97e 100644 --- a/addons/anonymization/i18n/fi.po +++ b/addons/anonymization/i18n/fi.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-06-30 09:52+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Objekti" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "Kentän nimi" msgid "Field" msgstr "Kenttä" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "Tuo" msgid "ir.model.fields.anonymization" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +125,23 @@ msgid "unknown" msgstr "Tuntematon" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Objekti" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Tiedoston polku" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "Vie" msgid "Reverse the Database Anonymization" msgstr "Poista tietokannan anonymisointi" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "Kentät" msgid "Clear" msgstr "Tyhjennä" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "Yhteenveto" msgid "Anonymized Field" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "Anonymisoitu -> näkyvä" msgid "Started" msgstr "Käynnistetty" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/fr.po b/addons/anonymization/i18n/fr.po index be734cee849..eb208be4aa5 100644 --- a/addons/anonymization/i18n/fr.po +++ b/addons/anonymization/i18n/fr.po @@ -6,25 +6,30 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2011-02-15 15:37+0000\n" -"Last-Translator: \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-19 15:44+0000\n" +"Last-Translator: Florian Hatat \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: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "ir.model.fields.anonymize.wizard" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Objet" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" -msgstr "" +msgstr "ir.model.fields.anonymization.migration.fix" #. module: anonymization #: field:ir.model.fields.anonymization.migration.fix,target_version:0 @@ -36,6 +41,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -47,6 +61,11 @@ msgstr "Nom du champ" msgid "Field" msgstr "Champ" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -57,11 +76,19 @@ msgstr "Importer" msgid "ir.model.fields.anonymization" msgstr "ir.model.fields.anonymization" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 msgid "Status" -msgstr "" +msgstr "Statut" #. module: anonymization #: field:ir.model.fields.anonymization.history,direction:0 @@ -97,15 +124,23 @@ msgid "unknown" msgstr "Inconnu" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Objet" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Chemin d'accès au fichier" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -121,6 +156,14 @@ msgstr "Exporter" msgid "Reverse the Database Anonymization" msgstr "Démasquage de la base de données" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -134,7 +177,7 @@ msgstr "Masquer la base" #. module: anonymization #: selection:ir.model.fields.anonymization.migration.fix,query_type:0 msgid "python" -msgstr "" +msgstr "python" #. module: anonymization #: view:ir.model.fields.anonymization.history:0 @@ -148,6 +191,14 @@ msgstr "Champs" msgid "Clear" msgstr "Effacer" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -158,6 +209,16 @@ msgstr "Résumé" msgid "Anonymized Field" msgstr "Champ masqué" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -188,7 +249,7 @@ msgstr "Historique du masquage" #. module: anonymization #: field:ir.model.fields.anonymization.migration.fix,model_name:0 msgid "Model" -msgstr "" +msgstr "Modèle" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_history @@ -196,10 +257,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "ir.model.fields.anonymization.history" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -216,7 +286,7 @@ msgstr "Nom du fichier" #. module: anonymization #: field:ir.model.fields.anonymization.migration.fix,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Séquence" #. module: anonymization #: selection:ir.model.fields.anonymization.history,direction:0 @@ -228,6 +298,12 @@ msgstr "masqué --> en clair" msgid "Started" msgstr "Démarré" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/gl.po b/addons/anonymization/i18n/gl.po index fbf125e78bb..6f4baa9215d 100644 --- a/addons/anonymization/i18n/gl.po +++ b/addons/anonymization/i18n/gl.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-02-15 15:53+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "ir.model.fields.anonymize.wizard" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Obxecto" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "Nome do Campo" msgid "Field" msgstr "Campo" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "Importar" msgid "ir.model.fields.anonymization" msgstr "ir.model.fields.anonymization" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +125,23 @@ msgid "unknown" msgstr "descoñecido" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Obxecto" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Ruta do ficheiro" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "Exportar" msgid "Reverse the Database Anonymization" msgstr "Reverti-lo proceso de facer anónima a BD" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "Campos" msgid "Clear" msgstr "Limpar" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "Resumo" msgid "Anonymized Field" msgstr "Campo anónimo" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "ir.model.fields.anonymization.history" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "Feita anónima -> limpar" msgid "Started" msgstr "Comezado" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/hr.po b/addons/anonymization/i18n/hr.po index c618e3c0280..0bdddace900 100644 --- a/addons/anonymization/i18n/hr.po +++ b/addons/anonymization/i18n/hr.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-12-08 15:53+0000\n" "Last-Translator: Goran Kliska \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Objekt" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "Naziv polja" msgid "Field" msgstr "Polje" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "Uvoz" msgid "ir.model.fields.anonymization" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +125,23 @@ msgid "unknown" msgstr "nepoznato" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Objekt" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Putanja datoteke" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "Izvoz" msgid "Reverse the Database Anonymization" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "Polja" msgid "Clear" msgstr "Očisti" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "Sažetak" msgid "Anonymized Field" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "" msgid "Started" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/it.po b/addons/anonymization/i18n/it.po index 5ca704f620d..12042a0a5a9 100644 --- a/addons/anonymization/i18n/it.po +++ b/addons/anonymization/i18n/it.po @@ -7,35 +7,53 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2011-02-15 15:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-12 09:00+0000\n" +"Last-Translator: Nicola Riolini - Micronaet \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2013-01-13 04:38+0000\n" +"X-Generator: Launchpad (build 16420)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "ir.model.fields.anonymize.wizard" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Oggetto" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" -msgstr "" +msgstr "ir.model.fields.anonymization.migration.fix" #. module: anonymization #: field:ir.model.fields.anonymization.migration.fix,target_version:0 msgid "Target Version" -msgstr "" +msgstr "Versione di destinazione" #. module: anonymization #: selection:ir.model.fields.anonymization.migration.fix,query_type:0 msgid "sql" +msgstr "sql" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." msgstr "" +"La trasformazione in forma anonima del database è attualmente in uno stato " +"inutilizzabile. Alcuni campi sono stati resi anonimi, mentre altri campi non " +"sono stati resi anonimi. Bisognrebbe provare a risolvere il problema prima " +"di provare a creare, scrivere o cancellare i campi." #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 @@ -48,6 +66,11 @@ msgstr "Nome campo" msgid "Field" msgstr "Campo" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "Nuovo" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,11 +81,21 @@ msgstr "Importa" msgid "ir.model.fields.anonymization" msgstr "ir.model.fields.anonymization" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" +"Prima di eseguire il processo di anonimizzazione, bisognerebbe eseguire un " +"backup del database." + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 msgid "Status" -msgstr "" +msgstr "Stato" #. module: anonymization #: field:ir.model.fields.anonymization.history,direction:0 @@ -98,15 +131,25 @@ msgid "unknown" msgstr "sconosciuto" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Oggetto" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "Il valore reso anonimo è Nullo (None). Questo non può accadere." #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Percorso file" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" +"Questo è il file creato dal processo di anonimizzazione. Dovrebbe avere " +"l'estensione '.pickle'." + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +165,16 @@ msgstr "Esporta" msgid "Reverse the Database Anonymization" msgstr "Ripristina il database anonimizzato" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" +"Non è possibile rendere in forma anonima i campi di questi tipi: binary, " +"many2many, many2one, one2many, reference." + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -135,7 +188,7 @@ msgstr "Anonimizza database" #. module: anonymization #: selection:ir.model.fields.anonymization.migration.fix,query_type:0 msgid "python" -msgstr "" +msgstr "python" #. module: anonymization #: view:ir.model.fields.anonymization.history:0 @@ -149,6 +202,16 @@ msgstr "Campi" msgid "Clear" msgstr "In chiaro" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" +"Non è possibile invertire il processo di anomizzazione senza fornire il file " +"esportato reso in forma anonima." + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +222,20 @@ msgstr "Riepilogo" msgid "Anonymized Field" msgstr "Campo anonimo" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" +"La trasformazione in forma anonima del database è attualmente in uno stato " +"instabile. Alcuni campi sono stati resi anonimi, mentre altri no. " +"Bisognerebbe provare a risolvere il problema prima di tentare di fare " +"qualsiasi cosa." + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -189,7 +266,7 @@ msgstr "Storico anonimizzazione" #. module: anonymization #: field:ir.model.fields.anonymization.migration.fix,model_name:0 msgid "Model" -msgstr "" +msgstr "Modulo" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_history @@ -197,11 +274,24 @@ msgid "ir.model.fields.anonymization.history" msgstr "ir.model.fields.anonymization.history" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." msgstr "" +"La trasformazione in forma anonima del database è attualmente in uno stato " +"inutilizzabile. Alcuni campi sono stati resi anonimi, mentre altri campi non " +"sono stati resi anonimi. Bisognrebbe provare a risolvere il problema prima " +"di tentare di fare qualsiasi altra cosa." + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" +msgstr "Errore !" #. module: anonymization #: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymize_wizard @@ -217,7 +307,7 @@ msgstr "Nome file" #. module: anonymization #: field:ir.model.fields.anonymization.migration.fix,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Sequenza" #. module: anonymization #: selection:ir.model.fields.anonymization.history,direction:0 @@ -229,6 +319,14 @@ msgstr "anonimizzato -> in chiaro" msgid "Started" msgstr "Iniziato" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" +"Il database attualmente è stato reso anonimo, non si può renderlo anonimo di " +"nuovo." + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" @@ -238,7 +336,7 @@ msgstr "Completato" #: field:ir.model.fields.anonymization.migration.fix,query:0 #: field:ir.model.fields.anonymization.migration.fix,query_type:0 msgid "Query" -msgstr "" +msgstr "Query" #. module: anonymization #: view:ir.model.fields.anonymization.history:0 @@ -253,6 +351,7 @@ msgstr "Messaggio" #, python-format msgid "You cannot have two fields with the same name on the same object!" msgstr "" +"Non è possibile avere due campi con lo stesso nome nello stesso oggetto!" #~ msgid "Database anonymization module" #~ msgstr "Modulo anonimizza database" diff --git a/addons/anonymization/i18n/ja.po b/addons/anonymization/i18n/ja.po index 3dcb8aaea16..3b277c42d9a 100644 --- a/addons/anonymization/i18n/ja.po +++ b/addons/anonymization/i18n/ja.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-16 02:18+0000\n" "Last-Translator: Akira Hiyama \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "オブジェクト" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "項目名" msgid "Field" msgstr "項目" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "インポート" msgid "ir.model.fields.anonymization" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +125,23 @@ msgid "unknown" msgstr "不明" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "オブジェクト" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "ファイルパス" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "エクスポート" msgid "Reverse the Database Anonymization" msgstr "逆データベース匿名化" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "項目" msgid "Clear" msgstr "クリア" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "要約" msgid "Anonymized Field" msgstr "匿名化項目" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "匿名化 -> クリア" msgid "Started" msgstr "開始済" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/lv.po b/addons/anonymization/i18n/lv.po index 7536762bd99..b942b87295a 100644 --- a/addons/anonymization/i18n/lv.po +++ b/addons/anonymization/i18n/lv.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-10-16 20:21+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "ir.model.fields.anonymize.wizard" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Objekts" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "Lauka Nosaukums" msgid "Field" msgstr "Lauks" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "Importēt" msgid "ir.model.fields.anonymization" msgstr "ir.model.fields.anonymization" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +125,23 @@ msgid "unknown" msgstr "nezināms" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Objekts" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Ceļš uz failu" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "Eksportēt" msgid "Reverse the Database Anonymization" msgstr "Atgriezt Datubāzes Anonimizāciju" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "Lauki" msgid "Clear" msgstr "Notīrīt" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "Kopsavilkums" msgid "Anonymized Field" msgstr "Anonimizēts lauks" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "ir.model.fields.anonymization.history" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "anonimizēts -> tīrs" msgid "Started" msgstr "Iesākta" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/mn.po b/addons/anonymization/i18n/mn.po index a231617064b..05dd3111998 100644 --- a/addons/anonymization/i18n/mn.po +++ b/addons/anonymization/i18n/mn.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-10-22 02:35+0000\n" "Last-Translator: FULL NAME \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: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "" msgid "Field" msgstr "" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "" msgid "ir.model.fields.anonymization" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,8 +125,9 @@ msgid "unknown" msgstr "" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." msgstr "" #. module: anonymization @@ -107,6 +135,13 @@ msgstr "" msgid "File path" msgstr "" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "" msgid "Reverse the Database Anonymization" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "" msgid "Clear" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "" msgid "Anonymized Field" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "" msgid "Started" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/nb.po b/addons/anonymization/i18n/nb.po index 3b13e7fd740..a36da99a344 100644 --- a/addons/anonymization/i18n/nb.po +++ b/addons/anonymization/i18n/nb.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 14:09+0000\n" "Last-Translator: Kaare Pettersen \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "ir.modell.felt.anonymisere.veiviseren" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Objekt" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "Mål versjon." msgid "sql" msgstr "Sql." +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "Feltnavn" msgid "Field" msgstr "Felt" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "Importer" msgid "ir.model.fields.anonymization" msgstr "ir.modell.felt.anonymisering" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +125,25 @@ msgid "unknown" msgstr "ukjent" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Objekt" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "filbane" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" +"Dette er filen som er opprettet av anonymisering prosessen. Det bør ha ». " +"Pickle 'forlengelse." + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +159,14 @@ msgstr "Eksporter" msgid "Reverse the Database Anonymization" msgstr "Reversere Database anonymisering" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +194,14 @@ msgstr "Felter" msgid "Clear" msgstr "fjerne" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +212,16 @@ msgstr "Oppsummering" msgid "Anonymized Field" msgstr "Anonymisert Felt" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,13 +260,20 @@ msgid "ir.model.fields.anonymization.history" msgstr "ir.modell.felt.anonymisering.historie" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" -"Dette er filen som er opprettet av anonymisering prosessen. Det bør ha ». " -"Pickle 'forlengelse." #. module: anonymization #: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymize_wizard @@ -231,6 +301,12 @@ msgstr "Anonymisert -> klart" msgid "Started" msgstr "Startet" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/nl.po b/addons/anonymization/i18n/nl.po index de93c717354..5006f3f5f2d 100644 --- a/addons/anonymization/i18n/nl.po +++ b/addons/anonymization/i18n/nl.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-01-18 20:01+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "ir.model.fields.anonymize.wizard" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Object" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "Veldnaam" msgid "Field" msgstr "Veld" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "Importeren" msgid "ir.model.fields.anonymization" msgstr "ir.model.fields.anonymization" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +125,23 @@ msgid "unknown" msgstr "onbekend" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Object" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Bestandspad" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "Exporteren" msgid "Reverse the Database Anonymization" msgstr "De database anonimisatie ongedaan maken" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "Velden" msgid "Clear" msgstr "Zichtbaar" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "Samenvatting" msgid "Anonymized Field" msgstr "Geanonimiseerd veld" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "ir.model.fields.anonymization.history" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "geanonimiseerd -> zichtbaar" msgid "Started" msgstr "Gestart" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/pl.po b/addons/anonymization/i18n/pl.po index a51195a72fd..cbf13c9234c 100644 --- a/addons/anonymization/i18n/pl.po +++ b/addons/anonymization/i18n/pl.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-15 15:33+0000\n" "Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \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: 2012-12-16 04:49+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Obiekt" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "Wersja docelowa" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "Nazwa Pola" msgid "Field" msgstr "Pole" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "Importuj" msgid "ir.model.fields.anonymization" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +125,23 @@ msgid "unknown" msgstr "nieznany" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Obiekt" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Ścieżka pliku" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "Eksportuj" msgid "Reverse the Database Anonymization" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "Pola" msgid "Clear" msgstr "Wyczyść" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "Podsumowanie" msgid "Anonymized Field" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "" msgid "Started" msgstr "Rozpoczęte" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/pt.po b/addons/anonymization/i18n/pt.po index de04192d510..6cdc8e7515f 100644 --- a/addons/anonymization/i18n/pt.po +++ b/addons/anonymization/i18n/pt.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 17:01+0000\n" "Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "ir.model.fields.anonymize.wizard" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Objeto" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "sql" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "Nome do Campo" msgid "Field" msgstr "Campo" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "Importar" msgid "ir.model.fields.anonymization" msgstr "ir.model.fields.anonymization" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +125,23 @@ msgid "unknown" msgstr "Desconhecido" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Objeto" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Localização do ficheiro" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "Exportar" msgid "Reverse the Database Anonymization" msgstr "Inverter a Anonimização da Base de Dados" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "Campos" msgid "Clear" msgstr "Limpar" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "Sumário" msgid "Anonymized Field" msgstr "Campo Anonimizado" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "ir.model.fields.anonymization.history" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "anonimizado -> limpo" msgid "Started" msgstr "Iniciado" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/pt_BR.po b/addons/anonymization/i18n/pt_BR.po index 1d554df77a8..2c609e3ae00 100644 --- a/addons/anonymization/i18n/pt_BR.po +++ b/addons/anonymization/i18n/pt_BR.po @@ -7,22 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-12-16 22:59+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-23 10:29+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " "\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-18 05:02+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-24 04:40+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "ir.model.fields.anonymize.wizard" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Objeto" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -38,6 +43,19 @@ msgstr "Versão Alvo" msgid "sql" msgstr "sql" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" +"O anonimização do banco de dados está atualmente em um estado instável. " +"Alguns campos são anónimos, enquanto alguns campos não são anónimos. Você " +"deve tentar resolver o problema antes de tentar criar, escrever ou apagar " +"campos." + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -49,6 +67,11 @@ msgstr "Nome do Campo" msgid "Field" msgstr "Campo" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "Novo" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -59,6 +82,16 @@ msgstr "Importação" msgid "ir.model.fields.anonymization" msgstr "ir.model.fields.anonymization" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" +"Antes de executar o processo de anonimização, você deve fazer um backup do " +"seu banco de dados." + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -99,15 +132,25 @@ msgid "unknown" msgstr "desconhecido" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Objeto" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "Valor anonimo é Nenhum. Isto não pode acontecer." #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Caminho do arquivo" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" +"Este é o arquivo criado pelo processo de anonimização. Ele deve ter a " +"extensão '.pickle' ." + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -123,6 +166,16 @@ msgstr "Exportar" msgid "Reverse the Database Anonymization" msgstr "Reverter a Anonimização do Banco de dados" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" +"Não pode anonimizar campos desses tipos: binary, many2many, many2one, " +"one2many, reference." + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -150,6 +203,16 @@ msgstr "Campos" msgid "Clear" msgstr "Limpar" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" +"Não é possível reverter o processo de anonimização sem fornecer o arquivo de " +"exportação." + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -160,6 +223,19 @@ msgstr "Resumo" msgid "Anonymized Field" msgstr "Campo Anonimizado" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" +"O anonimização do banco de dados está atualmente em um estado instável. " +"Alguns campos são anónimos, enquanto alguns campos não são anónimos. Você " +"deve tentar resolver o problema antes de tentar fazer qualquer coisa." + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -198,13 +274,23 @@ msgid "ir.model.fields.anonymization.history" msgstr "ir.model.fields.anonymization.history" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." msgstr "" -"Este é o arquivo criado pelo processo de anonimização. Ele deve ter a " -"extensão '.pickle' ." +"O anonimização do banco de dados está atualmente em um estado instável. " +"Alguns campos são anónimos, enquanto alguns campos não são anónimos. Você " +"deve tentar resolver o problema antes de tentar fazer qualquer coisa." + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" +msgstr "Erro!" #. module: anonymization #: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymize_wizard @@ -232,6 +318,14 @@ msgstr "anonimizado -> em branco" msgid "Started" msgstr "Iniciada" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" +"O banco de dados está atualmente anónimos, você não pode anonimizar " +"novamente." + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/ro.po b/addons/anonymization/i18n/ro.po index 49009f9234f..f6ed0284fb4 100644 --- a/addons/anonymization/i18n/ro.po +++ b/addons/anonymization/i18n/ro.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-12-30 11:09+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "ir.wizard.anonimizare.campuri.model" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Obiect" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "Nume camp" msgid "Field" msgstr "Camp" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "Importa" msgid "ir.model.fields.anonymization" msgstr "ir.anonimizare.campuri.model" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +125,23 @@ msgid "unknown" msgstr "necunoscut(a)" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Obiect" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Cale Fiser" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "Exporta" msgid "Reverse the Database Anonymization" msgstr "Anuleaza anonimizarea bazei de date" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "Campuri" msgid "Clear" msgstr "Stergeti" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "Rezumat" msgid "Anonymized Field" msgstr "Camp anonimizat" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "ir.istoric.anonimizare.campuri.model" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "anonimizat -> sterge" msgid "Started" msgstr "Inceput" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/ru.po b/addons/anonymization/i18n/ru.po index cac15c4f743..5925a4db4ac 100644 --- a/addons/anonymization/i18n/ru.po +++ b/addons/anonymization/i18n/ru.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-02-19 11:28+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "ir.model.fields.anonymize.wizard" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Объект" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "Название поля" msgid "Field" msgstr "Поле" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "Импорт" msgid "ir.model.fields.anonymization" msgstr "ir.model.fields.anonymization" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +125,23 @@ msgid "unknown" msgstr "неизвестный" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Объект" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Путь к файлу" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "Экспорт" msgid "Reverse the Database Anonymization" msgstr "Отменить анонимизацию базы данных" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "Поля" msgid "Clear" msgstr "Очистить" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "Итого" msgid "Anonymized Field" msgstr "Анонимизированное поле" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "ir.model.fields.anonymization.history" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "анонимизирован -> очищен" msgid "Started" msgstr "Начато" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/sl.po b/addons/anonymization/i18n/sl.po new file mode 100644 index 00000000000..a11630d21a2 --- /dev/null +++ b/addons/anonymization/i18n/sl.po @@ -0,0 +1,331 @@ +# Slovenian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-26 21:21+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-27 04:36+0000\n" +"X-Generator: Launchpad (build 16451)\n" + +#. module: anonymization +#: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard +msgid "ir.model.fields.anonymize.wizard" +msgstr "ir.model.fields.anonymize.wizard" + +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Predmet" + +#. module: anonymization +#: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix +msgid "ir.model.fields.anonymization.migration.fix" +msgstr "ir.model.fields.anonymization.migration.fix" + +#. module: anonymization +#: field:ir.model.fields.anonymization.migration.fix,target_version:0 +msgid "Target Version" +msgstr "Ciljna različica" + +#. module: anonymization +#: selection:ir.model.fields.anonymization.migration.fix,query_type:0 +msgid "sql" +msgstr "sql" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymization,field_name:0 +msgid "Field Name" +msgstr "Ime polja" + +#. module: anonymization +#: field:ir.model.fields.anonymization,field_id:0 +#: field:ir.model.fields.anonymization.migration.fix,field_name:0 +msgid "Field" +msgstr "Polje" + +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "Novo" + +#. module: anonymization +#: field:ir.model.fields.anonymize.wizard,file_import:0 +msgid "Import" +msgstr "Uvozi" + +#. module: anonymization +#: model:ir.model,name:anonymization.model_ir_model_fields_anonymization +msgid "ir.model.fields.anonymization" +msgstr "ir.model.fields.anonymization" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymization.history,state:0 +#: field:ir.model.fields.anonymize.wizard,state:0 +msgid "Status" +msgstr "Status" + +#. module: anonymization +#: field:ir.model.fields.anonymization.history,direction:0 +msgid "Direction" +msgstr "Smer" + +#. module: anonymization +#: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymization_tree +#: view:ir.model.fields.anonymization:0 +#: model:ir.ui.menu,name:anonymization.menu_administration_anonymization_fields +msgid "Anonymized Fields" +msgstr "" + +#. module: anonymization +#: model:ir.ui.menu,name:anonymization.menu_administration_anonymization +msgid "Database anonymization" +msgstr "" + +#. module: anonymization +#: selection:ir.model.fields.anonymization.history,direction:0 +msgid "clear -> anonymized" +msgstr "" + +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +#: selection:ir.model.fields.anonymize.wizard,state:0 +msgid "Anonymized" +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymization,state:0 +msgid "unknown" +msgstr "neznano" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymization.history,filepath:0 +msgid "File path" +msgstr "Pot do datoteke" + +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymization.history,date:0 +msgid "Date" +msgstr "Datum" + +#. module: anonymization +#: field:ir.model.fields.anonymize.wizard,file_export:0 +msgid "Export" +msgstr "Izvoz" + +#. module: anonymization +#: view:ir.model.fields.anonymize.wizard:0 +msgid "Reverse the Database Anonymization" +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + +#. module: anonymization +#: view:ir.model.fields.anonymize.wizard:0 +msgid "Database Anonymization" +msgstr "" + +#. module: anonymization +#: model:ir.ui.menu,name:anonymization.menu_administration_anonymization_wizard +msgid "Anonymize database" +msgstr "" + +#. module: anonymization +#: selection:ir.model.fields.anonymization.migration.fix,query_type:0 +msgid "python" +msgstr "python" + +#. module: anonymization +#: view:ir.model.fields.anonymization.history:0 +#: field:ir.model.fields.anonymization.history,field_ids:0 +msgid "Fields" +msgstr "Polja" + +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +#: selection:ir.model.fields.anonymize.wizard,state:0 +msgid "Clear" +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymize.wizard,summary:0 +msgid "Summary" +msgstr "Povzetek" + +#. module: anonymization +#: view:ir.model.fields.anonymization:0 +msgid "Anonymized Field" +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + +#. module: anonymization +#: selection:ir.model.fields.anonymize.wizard,state:0 +msgid "Unstable" +msgstr "Nestabilno" + +#. module: anonymization +#: selection:ir.model.fields.anonymization.history,state:0 +msgid "Exception occured" +msgstr "" + +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "Not Existing" +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymization,model_name:0 +msgid "Object Name" +msgstr "Ime predmeta" + +#. module: anonymization +#: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymization_history_tree +#: view:ir.model.fields.anonymization.history:0 +#: model:ir.ui.menu,name:anonymization.menu_administration_anonymization_history +msgid "Anonymization History" +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymization.migration.fix,model_name:0 +msgid "Model" +msgstr "Model" + +#. module: anonymization +#: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_history +msgid "ir.model.fields.anonymization.history" +msgstr "ir.model.fields.anonymization.history" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:358 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" +msgstr "Napaka!" + +#. module: anonymization +#: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymize_wizard +#: view:ir.model.fields.anonymize.wizard:0 +msgid "Anonymize Database" +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymize.wizard,name:0 +msgid "File Name" +msgstr "Ime datoteke" + +#. module: anonymization +#: field:ir.model.fields.anonymization.migration.fix,sequence:0 +msgid "Sequence" +msgstr "Zaporedje" + +#. module: anonymization +#: selection:ir.model.fields.anonymization.history,direction:0 +msgid "anonymized -> clear" +msgstr "" + +#. module: anonymization +#: selection:ir.model.fields.anonymization.history,state:0 +msgid "Started" +msgstr "Začeto" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + +#. module: anonymization +#: selection:ir.model.fields.anonymization.history,state:0 +msgid "Done" +msgstr "Končano" + +#. module: anonymization +#: field:ir.model.fields.anonymization.migration.fix,query:0 +#: field:ir.model.fields.anonymization.migration.fix,query_type:0 +msgid "Query" +msgstr "Query" + +#. module: anonymization +#: view:ir.model.fields.anonymization.history:0 +#: field:ir.model.fields.anonymization.history,msg:0 +#: field:ir.model.fields.anonymize.wizard,msg:0 +msgid "Message" +msgstr "Sporočilo" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:65 +#: sql_constraint:ir.model.fields.anonymization:0 +#, python-format +msgid "You cannot have two fields with the same name on the same object!" +msgstr "" diff --git a/addons/anonymization/i18n/sq.po b/addons/anonymization/i18n/sq.po index e7ed181ecf8..3ba7459f544 100644 --- a/addons/anonymization/i18n/sq.po +++ b/addons/anonymization/i18n/sq.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-28 15:22+0000\n" "Last-Translator: FULL NAME \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: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "" msgid "Field" msgstr "" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "" msgid "ir.model.fields.anonymization" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,8 +125,9 @@ msgid "unknown" msgstr "" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." msgstr "" #. module: anonymization @@ -107,6 +135,13 @@ msgstr "" msgid "File path" msgstr "" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "" msgid "Reverse the Database Anonymization" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "" msgid "Clear" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "" msgid "Anonymized Field" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "" msgid "Started" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/sr@latin.po b/addons/anonymization/i18n/sr@latin.po index 4ff93febd77..88f1d1cfa20 100644 --- a/addons/anonymization/i18n/sr@latin.po +++ b/addons/anonymization/i18n/sr@latin.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-12-28 20:55+0000\n" "Last-Translator: Milan Milosevic \n" "Language-Team: Serbian Latin \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "ir.model.fields.anonymize.wizard" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Stavka" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "Naziv polja" msgid "Field" msgstr "Polje" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "Uvoz" msgid "ir.model.fields.anonymization" msgstr "ir.model.fields.anonymization" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +125,23 @@ msgid "unknown" msgstr "nepoznato" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Stavka" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Putanja datoteke" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "Izvoz" msgid "Reverse the Database Anonymization" msgstr "Poništi anonimizaciju baze podataka" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "Polja" msgid "Clear" msgstr "Očisti" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "Sažetak" msgid "Anonymized Field" msgstr "Anonimizirano polje" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "ir.model.fields.anonymization.history" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "anonimizirano -> očisti" msgid "Started" msgstr "Započet" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/sv.po b/addons/anonymization/i18n/sv.po index ee478c7a22f..0dec41ecfdb 100644 --- a/addons/anonymization/i18n/sv.po +++ b/addons/anonymization/i18n/sv.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-08-02 00:12+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Object" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "Fältnamn" msgid "Field" msgstr "Fält" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "Import" msgid "ir.model.fields.anonymization" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +125,23 @@ msgid "unknown" msgstr "okänd" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Object" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Sökväg" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "Export" msgid "Reverse the Database Anonymization" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "Fält" msgid "Clear" msgstr "Rensa" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "" msgid "Anonymized Field" msgstr "Anonymiserade fält" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "" msgid "Started" msgstr "Påbörjad" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/tr.po b/addons/anonymization/i18n/tr.po index 96ca8c255ea..cdf62e66485 100644 --- a/addons/anonymization/i18n/tr.po +++ b/addons/anonymization/i18n/tr.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-01-10 23:07+0000\n" "Last-Translator: Ahmet Altınışık \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "ir.model.fields.anonymize.wizard" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "Nesne" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "Alan Adı" msgid "Field" msgstr "Alan" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "İçeaktar" msgid "ir.model.fields.anonymization" msgstr "ir.model.fields.anonymization" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +125,23 @@ msgid "unknown" msgstr "bilinmeyen" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "Nesne" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "Dosya yolu" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "Dışaaktar" msgid "Reverse the Database Anonymization" msgstr "Veritabanı Anonimleştirmeyi Tersine Çevir" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "Alanlar" msgid "Clear" msgstr "Temizle" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "Özet" msgid "Anonymized Field" msgstr "Anonim Alan" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "ir.model.fields.anonymization.history" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "anonim -> temizle" msgid "Started" msgstr "Başlamış" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/zh_CN.po b/addons/anonymization/i18n/zh_CN.po index 0ba47de11c4..b9f8ea5e55d 100644 --- a/addons/anonymization/i18n/zh_CN.po +++ b/addons/anonymization/i18n/zh_CN.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-28 06:50+0000\n" "Last-Translator: ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-29 05:15+0000\n" -"X-Generator: Launchpad (build 16319)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "ir.model.fields.anonymize.wizard" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "对象" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "目标版本" msgid "sql" msgstr "sql" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "字段名称" msgid "Field" msgstr "字段" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "导入" msgid "ir.model.fields.anonymization" msgstr "ir.model.fields.anonymization" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +125,23 @@ msgid "unknown" msgstr "状态" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "对象" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "文件路径" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "这个文件有匿名进程创建,他没有 '.pickle' 扩展名" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "导出" msgid "Reverse the Database Anonymization" msgstr "解除数据库隐藏" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "字段" msgid "Clear" msgstr "无隐藏" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "概要" msgid "Anonymized Field" msgstr "隐藏字段" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,11 +258,20 @@ msgid "ir.model.fields.anonymization.history" msgstr "ir.model.fields.anonymization.history" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." -msgstr "这个文件有匿名进程创建,他没有 '.pickle' 扩展名" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" +msgstr "" #. module: anonymization #: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymize_wizard @@ -229,6 +299,12 @@ msgstr "隐藏->无隐藏" msgid "Started" msgstr "已开始" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/anonymization/i18n/zh_TW.po b/addons/anonymization/i18n/zh_TW.po index 3dfa6c9498a..0aeefd714f5 100644 --- a/addons/anonymization/i18n/zh_TW.po +++ b/addons/anonymization/i18n/zh_TW.po @@ -7,21 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-08-29 03:38+0000\n" "Last-Translator: Eric Huang \n" "Language-Team: Chinese (Traditional) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:31+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:05+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard msgid "ir.model.fields.anonymize.wizard" msgstr "ir.model.fields.anonymize.wizard" +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "物件" + #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix msgid "ir.model.fields.anonymization.migration.fix" @@ -37,6 +42,15 @@ msgstr "" msgid "sql" msgstr "" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 msgid "Field Name" @@ -48,6 +62,11 @@ msgstr "欄位名稱" msgid "Field" msgstr "欄位" +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 msgid "Import" @@ -58,6 +77,14 @@ msgstr "匯入" msgid "ir.model.fields.anonymization" msgstr "ir.model.fields.anonymization" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 @@ -98,15 +125,23 @@ msgid "unknown" msgstr "不明" #. module: anonymization -#: field:ir.model.fields.anonymization,model_id:0 -msgid "Object" -msgstr "物件" +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 msgid "File path" msgstr "檔案路徑" +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 msgid "Date" @@ -122,6 +157,14 @@ msgstr "匯出" msgid "Reverse the Database Anonymization" msgstr "回復資料庫匿名" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" @@ -149,6 +192,14 @@ msgstr "欄位" msgid "Clear" msgstr "清除" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" @@ -159,6 +210,16 @@ msgstr "摘要" msgid "Anonymized Field" msgstr "匿名欄位" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Unstable" @@ -197,10 +258,19 @@ msgid "ir.model.fields.anonymization.history" msgstr "ir.model.fields.anonymization.history" #. module: anonymization -#: help:ir.model.fields.anonymize.wizard,file_import:0 +#: code:addons/anonymization/anonymization.py:358 +#, python-format msgid "" -"This is the file created by the anonymization process. It should have the " -"'.pickle' extention." +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" msgstr "" #. module: anonymization @@ -229,6 +299,12 @@ msgstr "匿名->清楚" msgid "Started" msgstr "開始" +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 msgid "Done" diff --git a/addons/audittrail/i18n/ar.po b/addons/audittrail/i18n/ar.po index 72d8b7d71f7..cebd8f6e947 100644 --- a/addons/audittrail/i18n/ar.po +++ b/addons/audittrail/i18n/ar.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-01 18:14+0000\n" "Last-Translator: gehad shaat \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: 2012-12-02 04:38+0000\n" -"X-Generator: Launchpad (build 16319)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/audittrail.pot b/addons/audittrail/i18n/audittrail.pot index e93abf2fd41..c24f9a22ff2 100644 --- a/addons/audittrail/i18n/audittrail.pot +++ b/addons/audittrail/i18n/audittrail.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/bg.po b/addons/audittrail/i18n/bg.po index a4864e11342..1b84cfd753d 100644 --- a/addons/audittrail/i18n/bg.po +++ b/addons/audittrail/i18n/bg.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-02-03 12:45+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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/bs.po b/addons/audittrail/i18n/bs.po index b156dd2137a..9f8410122c8 100644 --- a/addons/audittrail/i18n/bs.po +++ b/addons/audittrail/i18n/bs.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-02-03 12: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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ca.po b/addons/audittrail/i18n/ca.po index e02cc2af0c4..f1f3e7b8522 100644 --- a/addons/audittrail/i18n/ca.po +++ b/addons/audittrail/i18n/ca.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-10-30 10:57+0000\n" "Last-Translator: Jordi Esteve (www.zikzakmedia.com) " "\n" @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/cs.po b/addons/audittrail/i18n/cs.po index 623c38d1e79..823fa32c1c7 100644 --- a/addons/audittrail/i18n/cs.po +++ b/addons/audittrail/i18n/cs.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-09-06 06:48+0000\n" "Last-Translator: Jiří Hajda \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" "X-Poedit-Language: Czech\n" #. module: audittrail diff --git a/addons/audittrail/i18n/da.po b/addons/audittrail/i18n/da.po index ab52726b8a0..15ec3c0794c 100644 --- a/addons/audittrail/i18n/da.po +++ b/addons/audittrail/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-01-27 08:34+0000\n" "Last-Translator: FULL NAME \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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/de.po b/addons/audittrail/i18n/de.po index 4b9235d4846..7133c7375fb 100644 --- a/addons/audittrail/i18n/de.po +++ b/addons/audittrail/i18n/de.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-01-13 19:14+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-18 06:55+0000\n" "Last-Translator: Ferdinand @ Camptocamp \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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 @@ -44,7 +44,7 @@ msgstr "Abonniert" #: code:addons/audittrail/audittrail.py:408 #, python-format msgid "'%s' Model does not exist..." -msgstr "" +msgstr "'%s' Modell exisitiert nicht" #. module: audittrail #: view:audittrail.rule:0 @@ -61,7 +61,7 @@ msgstr "Regel Belegrückverfolgung" #: view:audittrail.rule:0 #: field:audittrail.rule,state:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: audittrail #: view:audittrail.view.log:0 @@ -221,7 +221,7 @@ msgstr "Wähle Objekt für Rückverfolgung" #. module: audittrail #: model:ir.ui.menu,name:audittrail.menu_audit msgid "Audit" -msgstr "" +msgstr "Audit" #. module: audittrail #: field:audittrail.rule,log_workflow:0 @@ -298,7 +298,7 @@ msgstr "Protokoll Löschvorgänge" #: view:audittrail.log:0 #: view:audittrail.rule:0 msgid "Model" -msgstr "" +msgstr "Modell" #. module: audittrail #: field:audittrail.log.line,field_description:0 @@ -339,7 +339,7 @@ msgstr "Neuer Wert" #: code:addons/audittrail/audittrail.py:223 #, python-format msgid "'%s' field does not exist in '%s' model" -msgstr "" +msgstr "Feld '%s' exisitiert nicht in Model '%s'" #. module: audittrail #: view:audittrail.log:0 @@ -392,7 +392,7 @@ msgstr "Protokoll Zeile" #. module: audittrail #: view:audittrail.view.log:0 msgid "or" -msgstr "" +msgstr "oder" #. module: audittrail #: field:audittrail.rule,log_action:0 diff --git a/addons/audittrail/i18n/el.po b/addons/audittrail/i18n/el.po index 9e5397bcc16..87d2d8fa002 100644 --- a/addons/audittrail/i18n/el.po +++ b/addons/audittrail/i18n/el.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-25 17:25+0000\n" "Last-Translator: Dimitris Andavoglou \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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es.po b/addons/audittrail/i18n/es.po index 92df0e569c0..44e5591e083 100644 --- a/addons/audittrail/i18n/es.po +++ b/addons/audittrail/i18n/es.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 14:06+0000\n" "Last-Translator: Pedro Manuel Baeza \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: 2012-12-12 04:40+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_AR.po b/addons/audittrail/i18n/es_AR.po index ba9f7038b0a..fe2ca12c65e 100644 --- a/addons/audittrail/i18n/es_AR.po +++ b/addons/audittrail/i18n/es_AR.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-09-22 14:05+0000\n" "Last-Translator: Silvana Herrera \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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_CR.po b/addons/audittrail/i18n/es_CR.po index e58d19e2ed4..e2c8d1a0cce 100644 --- a/addons/audittrail/i18n/es_CR.po +++ b/addons/audittrail/i18n/es_CR.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-15 16:44+0000\n" "Last-Translator: Freddy Gonzalez \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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" "Language: \n" #. module: audittrail diff --git a/addons/audittrail/i18n/es_EC.po b/addons/audittrail/i18n/es_EC.po index 02f4eb7cc34..894b8991008 100644 --- a/addons/audittrail/i18n/es_EC.po +++ b/addons/audittrail/i18n/es_EC.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-10-18 19:14+0000\n" "Last-Translator: Cristian Salamea (Gnuthink) \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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_PY.po b/addons/audittrail/i18n/es_PY.po index 6d4c5b64fe4..f9bc75face9 100644 --- a/addons/audittrail/i18n/es_PY.po +++ b/addons/audittrail/i18n/es_PY.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-08 00:36+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Paraguay) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/et.po b/addons/audittrail/i18n/et.po index e5f395b18de..5f8983d3882 100644 --- a/addons/audittrail/i18n/et.po +++ b/addons/audittrail/i18n/et.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-11-09 16: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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fa.po b/addons/audittrail/i18n/fa.po index 0155832f73b..8c7d606c851 100644 --- a/addons/audittrail/i18n/fa.po +++ b/addons/audittrail/i18n/fa.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-12-18 19:47+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fa_AF.po b/addons/audittrail/i18n/fa_AF.po new file mode 100644 index 00000000000..f58f56c1a20 --- /dev/null +++ b/addons/audittrail/i18n/fa_AF.po @@ -0,0 +1,401 @@ +# Dari Persian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-17 10:02+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Dari Persian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-18 05:06+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: audittrail +#: view:audittrail.log:0 +msgid "Old Value Text : " +msgstr "" + +#. module: audittrail +#: code:addons/audittrail/audittrail.py:76 +#, python-format +msgid "WARNING: audittrail is not part of the pool" +msgstr "" + +#. module: audittrail +#: field:audittrail.log.line,log_id:0 +msgid "Log" +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +#: selection:audittrail.rule,state:0 +msgid "Subscribed" +msgstr "" + +#. module: audittrail +#: code:addons/audittrail/audittrail.py:260 +#: code:addons/audittrail/audittrail.py:347 +#: code:addons/audittrail/audittrail.py:408 +#, python-format +msgid "'%s' Model does not exist..." +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +msgid "Subscribed Rule" +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +#: model:ir.model,name:audittrail.model_audittrail_rule +msgid "Audittrail Rule" +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +#: field:audittrail.rule,state:0 +msgid "Status" +msgstr "" + +#. module: audittrail +#: view:audittrail.view.log:0 +#: model:ir.actions.act_window,name:audittrail.action_audittrail_log_tree +#: model:ir.ui.menu,name:audittrail.menu_audit_logs +msgid "Audit Logs" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +#: view:audittrail.rule:0 +msgid "Group By..." +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +msgid "_Subscribe" +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +#: selection:audittrail.rule,state:0 +msgid "Draft" +msgstr "" + +#. module: audittrail +#: field:audittrail.log.line,old_value:0 +msgid "Old Value" +msgstr "" + +#. module: audittrail +#: model:ir.actions.act_window,name:audittrail.action_audittrail_view_log +msgid "View log" +msgstr "" + +#. module: audittrail +#: help:audittrail.rule,log_read:0 +msgid "" +"Select this if you want to keep track of read/open on any record of the " +"object of this rule" +msgstr "" + +#. module: audittrail +#: field:audittrail.log,method:0 +msgid "Method" +msgstr "" + +#. module: audittrail +#: field:audittrail.view.log,from:0 +msgid "Log From" +msgstr "" + +#. module: audittrail +#: field:audittrail.log.line,log:0 +msgid "Log ID" +msgstr "" + +#. module: audittrail +#: field:audittrail.log,res_id:0 +msgid "Resource Id" +msgstr "" + +#. module: audittrail +#: help:audittrail.rule,user_id:0 +msgid "if User is not added then it will applicable for all users" +msgstr "" + +#. module: audittrail +#: help:audittrail.rule,log_workflow:0 +msgid "" +"Select this if you want to keep track of workflow on any record of the " +"object of this rule" +msgstr "" + +#. module: audittrail +#: field:audittrail.rule,user_id:0 +msgid "Users" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +msgid "Log Lines" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +#: field:audittrail.log,object_id:0 +#: field:audittrail.rule,object_id:0 +msgid "Object" +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +msgid "AuditTrail Rule" +msgstr "" + +#. module: audittrail +#: field:audittrail.view.log,to:0 +msgid "Log To" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +msgid "New Value Text: " +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +msgid "Search Audittrail Rule" +msgstr "" + +#. module: audittrail +#: model:ir.actions.act_window,name:audittrail.action_audittrail_rule_tree +#: model:ir.ui.menu,name:audittrail.menu_action_audittrail_rule_tree +msgid "Audit Rules" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +msgid "Old Value : " +msgstr "" + +#. module: audittrail +#: field:audittrail.log,name:0 +msgid "Resource Name" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +#: field:audittrail.log,timestamp:0 +msgid "Date" +msgstr "" + +#. module: audittrail +#: help:audittrail.rule,log_write:0 +msgid "" +"Select this if you want to keep track of modification on any record of the " +"object of this rule" +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +msgid "AuditTrail Rules" +msgstr "" + +#. module: audittrail +#: help:audittrail.rule,object_id:0 +msgid "Select object for which you want to generate log." +msgstr "" + +#. module: audittrail +#: model:ir.ui.menu,name:audittrail.menu_audit +msgid "Audit" +msgstr "" + +#. module: audittrail +#: field:audittrail.rule,log_workflow:0 +msgid "Log Workflow" +msgstr "" + +#. module: audittrail +#: field:audittrail.rule,log_read:0 +msgid "Log Reads" +msgstr "" + +#. module: audittrail +#: code:addons/audittrail/audittrail.py:77 +#, python-format +msgid "Change audittrail depends -- Setting rule as DRAFT" +msgstr "" + +#. module: audittrail +#: field:audittrail.log,line_ids:0 +msgid "Log lines" +msgstr "" + +#. module: audittrail +#: field:audittrail.log.line,field_id:0 +msgid "Fields" +msgstr "" + +#. module: audittrail +#: field:audittrail.rule,log_create:0 +msgid "Log Creates" +msgstr "" + +#. module: audittrail +#: help:audittrail.rule,log_unlink:0 +msgid "" +"Select this if you want to keep track of deletion on any record of the " +"object of this rule" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +#: field:audittrail.log,user_id:0 +msgid "User" +msgstr "" + +#. module: audittrail +#: field:audittrail.rule,action_id:0 +msgid "Action ID" +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +msgid "Users (if User is not added then it will applicable for all users)" +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +msgid "UnSubscribe" +msgstr "" + +#. module: audittrail +#: sql_constraint:audittrail.rule:0 +msgid "" +"There is already a rule defined on this object\n" +" You cannot define another: please edit the existing one." +msgstr "" + +#. module: audittrail +#: field:audittrail.rule,log_unlink:0 +msgid "Log Deletes" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +#: view:audittrail.rule:0 +msgid "Model" +msgstr "" + +#. module: audittrail +#: field:audittrail.log.line,field_description:0 +msgid "Field Description" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +msgid "Search Audittrail Log" +msgstr "" + +#. module: audittrail +#: field:audittrail.rule,log_write:0 +msgid "Log Writes" +msgstr "" + +#. module: audittrail +#: view:audittrail.view.log:0 +msgid "Open Logs" +msgstr "" + +#. module: audittrail +#: field:audittrail.log.line,new_value_text:0 +msgid "New value Text" +msgstr "" + +#. module: audittrail +#: field:audittrail.rule,name:0 +msgid "Rule Name" +msgstr "" + +#. module: audittrail +#: field:audittrail.log.line,new_value:0 +msgid "New Value" +msgstr "" + +#. module: audittrail +#: code:addons/audittrail/audittrail.py:223 +#, python-format +msgid "'%s' field does not exist in '%s' model" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +msgid "AuditTrail Logs" +msgstr "" + +#. module: audittrail +#: view:audittrail.rule:0 +msgid "Draft Rule" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +#: model:ir.model,name:audittrail.model_audittrail_log +msgid "Audittrail Log" +msgstr "" + +#. module: audittrail +#: help:audittrail.rule,log_action:0 +msgid "" +"Select this if you want to keep track of actions on the object of this rule" +msgstr "" + +#. module: audittrail +#: view:audittrail.log:0 +msgid "New Value : " +msgstr "" + +#. module: audittrail +#: field:audittrail.log.line,old_value_text:0 +msgid "Old value Text" +msgstr "" + +#. module: audittrail +#: view:audittrail.view.log:0 +msgid "Cancel" +msgstr "" + +#. module: audittrail +#: model:ir.model,name:audittrail.model_audittrail_view_log +msgid "View Log" +msgstr "" + +#. module: audittrail +#: model:ir.model,name:audittrail.model_audittrail_log_line +msgid "Log Line" +msgstr "" + +#. module: audittrail +#: view:audittrail.view.log:0 +msgid "or" +msgstr "" + +#. module: audittrail +#: field:audittrail.rule,log_action:0 +msgid "Log Action" +msgstr "" + +#. module: audittrail +#: help:audittrail.rule,log_create:0 +msgid "" +"Select this if you want to keep track of creation on any record of the " +"object of this rule" +msgstr "" diff --git a/addons/audittrail/i18n/fi.po b/addons/audittrail/i18n/fi.po index 5aa1026a5d9..46e6b0752d6 100644 --- a/addons/audittrail/i18n/fi.po +++ b/addons/audittrail/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-07-27 10:38+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fr.po b/addons/audittrail/i18n/fr.po index 99eb50f6059..d56510d394b 100644 --- a/addons/audittrail/i18n/fr.po +++ b/addons/audittrail/i18n/fr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2011-01-13 06:08+0000\n" -"Last-Translator: Aline (OpenERP) \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-18 23:05+0000\n" +"Last-Translator: Quentin THEURET \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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 @@ -44,7 +44,7 @@ msgstr "S'abonner" #: code:addons/audittrail/audittrail.py:408 #, python-format msgid "'%s' Model does not exist..." -msgstr "" +msgstr "Le modèle '%s' n'existe pas…" #. module: audittrail #: view:audittrail.rule:0 @@ -61,7 +61,7 @@ msgstr "Règle d'audit" #: view:audittrail.rule:0 #: field:audittrail.rule,state:0 msgid "Status" -msgstr "" +msgstr "État" #. module: audittrail #: view:audittrail.view.log:0 @@ -223,7 +223,7 @@ msgstr "Sélectionnez l'objet pour lequel vous voulez générer un historique." #. module: audittrail #: model:ir.ui.menu,name:audittrail.menu_audit msgid "Audit" -msgstr "" +msgstr "Audit" #. module: audittrail #: field:audittrail.rule,log_workflow:0 @@ -309,7 +309,7 @@ msgstr "Enregistrer les suppressions" #: view:audittrail.log:0 #: view:audittrail.rule:0 msgid "Model" -msgstr "" +msgstr "Modèle" #. module: audittrail #: field:audittrail.log.line,field_description:0 @@ -350,7 +350,7 @@ msgstr "Nouvelle valeur" #: code:addons/audittrail/audittrail.py:223 #, python-format msgid "'%s' field does not exist in '%s' model" -msgstr "" +msgstr "Le champ '%s' n'existe pas dans le modèle '%s'" #. module: audittrail #: view:audittrail.log:0 @@ -404,7 +404,7 @@ msgstr "Ligne d'historique" #. module: audittrail #: view:audittrail.view.log:0 msgid "or" -msgstr "" +msgstr "ou" #. module: audittrail #: field:audittrail.rule,log_action:0 diff --git a/addons/audittrail/i18n/gl.po b/addons/audittrail/i18n/gl.po index 2e022678dc5..5d17b92868d 100644 --- a/addons/audittrail/i18n/gl.po +++ b/addons/audittrail/i18n/gl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-02-28 10:45+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/gu.po b/addons/audittrail/i18n/gu.po index 3ff17c2faa6..99d3c5d758d 100644 --- a/addons/audittrail/i18n/gu.po +++ b/addons/audittrail/i18n/gu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-03-06 18:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Gujarati \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/hr.po b/addons/audittrail/i18n/hr.po index b3540543e0a..35e1b131587 100644 --- a/addons/audittrail/i18n/hr.po +++ b/addons/audittrail/i18n/hr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-10 07:37+0000\n" "Last-Translator: Goran Kliska \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: 2012-12-11 04:48+0000\n" -"X-Generator: Launchpad (build 16356)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/hu.po b/addons/audittrail/i18n/hu.po index 63ce7d01617..b44b32552f5 100644 --- a/addons/audittrail/i18n/hu.po +++ b/addons/audittrail/i18n/hu.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-31 12:50+0000\n" "Last-Translator: Krisztian Eyssen \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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/id.po b/addons/audittrail/i18n/id.po index 1719f05eafe..71b61c7a5e8 100644 --- a/addons/audittrail/i18n/id.po +++ b/addons/audittrail/i18n/id.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-11-09 13:45+0000\n" "Last-Translator: <>\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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/it.po b/addons/audittrail/i18n/it.po index ce16615a1ba..d29e72393b0 100644 --- a/addons/audittrail/i18n/it.po +++ b/addons/audittrail/i18n/it.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 08:00+0000\n" "Last-Translator: Nicola Riolini - Micronaet \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: 2012-12-12 04:40+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ja.po b/addons/audittrail/i18n/ja.po index 40b5527121d..5d2fadc29fb 100644 --- a/addons/audittrail/i18n/ja.po +++ b/addons/audittrail/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-06-08 02:18+0000\n" "Last-Translator: Akira Hiyama \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ko.po b/addons/audittrail/i18n/ko.po index 83d7a13ec79..8a48f19ba9a 100644 --- a/addons/audittrail/i18n/ko.po +++ b/addons/audittrail/i18n/ko.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-09-08 13:25+0000\n" "Last-Translator: ekodaq \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/lt.po b/addons/audittrail/i18n/lt.po index ab31489c677..94e9410df08 100644 --- a/addons/audittrail/i18n/lt.po +++ b/addons/audittrail/i18n/lt.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-09-09 07:16+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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/lv.po b/addons/audittrail/i18n/lv.po index 2d31ae18b9b..21eadd565c2 100644 --- a/addons/audittrail/i18n/lv.po +++ b/addons/audittrail/i18n/lv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-13 22:59+0000\n" "Last-Translator: Vladimirs Kuzmins \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/mn.po b/addons/audittrail/i18n/mn.po index 3663c278b11..d9e51ce67d8 100644 --- a/addons/audittrail/i18n/mn.po +++ b/addons/audittrail/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-22 10:32+0000\n" "Last-Translator: OpenERP Administrators \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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nb.po b/addons/audittrail/i18n/nb.po index 702c19f1f79..fcdb0128e6b 100644 --- a/addons/audittrail/i18n/nb.po +++ b/addons/audittrail/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-31 16:31+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nl.po b/addons/audittrail/i18n/nl.po index 91e865b36a2..31d713cfb65 100644 --- a/addons/audittrail/i18n/nl.po +++ b/addons/audittrail/i18n/nl.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-24 18:09+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nl_BE.po b/addons/audittrail/i18n/nl_BE.po index 4b300fe34b6..f458db99045 100644 --- a/addons/audittrail/i18n/nl_BE.po +++ b/addons/audittrail/i18n/nl_BE.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-04-24 15: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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/oc.po b/addons/audittrail/i18n/oc.po index 18bce1a694d..a268098b2dd 100644 --- a/addons/audittrail/i18n/oc.po +++ b/addons/audittrail/i18n/oc.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 00:49+0000\n" "Last-Translator: Cédric VALMARY (Tot en òc) \n" "Language-Team: Occitan (post 1500) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pl.po b/addons/audittrail/i18n/pl.po index b0ae51cf30b..63891fa2900 100644 --- a/addons/audittrail/i18n/pl.po +++ b/addons/audittrail/i18n/pl.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-11-17 08: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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pt.po b/addons/audittrail/i18n/pt.po index b9397792fa3..b3243fce90e 100644 --- a/addons/audittrail/i18n/pt.po +++ b/addons/audittrail/i18n/pt.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-12 16:28+0000\n" "Last-Translator: Rui Franco (multibase.pt) \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: 2012-12-13 04:44+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pt_BR.po b/addons/audittrail/i18n/pt_BR.po index 3352301e1ba..1aa373dd71a 100644 --- a/addons/audittrail/i18n/pt_BR.po +++ b/addons/audittrail/i18n/pt_BR.po @@ -6,16 +6,16 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-07-28 16:36+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-20 11:17+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " "\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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 @@ -45,7 +45,7 @@ msgstr "Inscrito" #: code:addons/audittrail/audittrail.py:408 #, python-format msgid "'%s' Model does not exist..." -msgstr "" +msgstr "Modelo '%s' não existe..." #. module: audittrail #: view:audittrail.rule:0 @@ -62,7 +62,7 @@ msgstr "Regra da Trilha de Auditoria" #: view:audittrail.rule:0 #: field:audittrail.rule,state:0 msgid "Status" -msgstr "" +msgstr "Situação" #. module: audittrail #: view:audittrail.view.log:0 @@ -223,7 +223,7 @@ msgstr "Selecionar objeto para o qual você quer gerar Registro." #. module: audittrail #: model:ir.ui.menu,name:audittrail.menu_audit msgid "Audit" -msgstr "" +msgstr "Auditoria" #. module: audittrail #: field:audittrail.rule,log_workflow:0 @@ -307,7 +307,7 @@ msgstr "Registrar Exclusões" #: view:audittrail.log:0 #: view:audittrail.rule:0 msgid "Model" -msgstr "" +msgstr "Modelo" #. module: audittrail #: field:audittrail.log.line,field_description:0 @@ -348,7 +348,7 @@ msgstr "Novo Valor" #: code:addons/audittrail/audittrail.py:223 #, python-format msgid "'%s' field does not exist in '%s' model" -msgstr "" +msgstr "O campo '%s' não existe no modelo '%s'" #. module: audittrail #: view:audittrail.log:0 @@ -402,7 +402,7 @@ msgstr "Linha do Registro" #. module: audittrail #: view:audittrail.view.log:0 msgid "or" -msgstr "" +msgstr "ou" #. module: audittrail #: field:audittrail.rule,log_action:0 diff --git a/addons/audittrail/i18n/ro.po b/addons/audittrail/i18n/ro.po index 8834b96ceb4..d2d6825d825 100644 --- a/addons/audittrail/i18n/ro.po +++ b/addons/audittrail/i18n/ro.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 00:51+0000\n" "Last-Translator: Lucian Adrian Grijincu \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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ru.po b/addons/audittrail/i18n/ru.po index 6003ac76e79..7dd371f115c 100644 --- a/addons/audittrail/i18n/ru.po +++ b/addons/audittrail/i18n/ru.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-05 09:24+0000\n" "Last-Translator: Эдуард \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: 2012-12-06 04:40+0000\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sl.po b/addons/audittrail/i18n/sl.po index 63cfec5c5d1..01ef4a6d9df 100644 --- a/addons/audittrail/i18n/sl.po +++ b/addons/audittrail/i18n/sl.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-16 17:42+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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sq.po b/addons/audittrail/i18n/sq.po index 3713ac443a2..7eff19d4434 100644 --- a/addons/audittrail/i18n/sq.po +++ b/addons/audittrail/i18n/sq.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-02 14:39+0000\n" "Last-Translator: FULL NAME \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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sr@latin.po b/addons/audittrail/i18n/sr@latin.po index 74dee95858f..a0f4e1aef7e 100644 --- a/addons/audittrail/i18n/sr@latin.po +++ b/addons/audittrail/i18n/sr@latin.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-10 16:12+0000\n" "Last-Translator: Milan Milosevic \n" "Language-Team: Serbian latin \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sv.po b/addons/audittrail/i18n/sv.po index 2cd495ae4fe..3cbc44cb0e0 100644 --- a/addons/audittrail/i18n/sv.po +++ b/addons/audittrail/i18n/sv.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.14\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-23 00: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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/tlh.po b/addons/audittrail/i18n/tlh.po index feac29356c5..5bf78bcfd8c 100644 --- a/addons/audittrail/i18n/tlh.po +++ b/addons/audittrail/i18n/tlh.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-02-03 06:25+0000\n" "Last-Translator: <>\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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/tr.po b/addons/audittrail/i18n/tr.po index 063e2fa1d9e..7b91fe72251 100644 --- a/addons/audittrail/i18n/tr.po +++ b/addons/audittrail/i18n/tr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-09-09 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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/uk.po b/addons/audittrail/i18n/uk.po index a6508cef250..22c6e5c10cf 100644 --- a/addons/audittrail/i18n/uk.po +++ b/addons/audittrail/i18n/uk.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-09-08 12:34+0000\n" "Last-Translator: Eugene Babiy \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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/vi.po b/addons/audittrail/i18n/vi.po index 12d2e7cfe64..2cf80a39ef5 100644 --- a/addons/audittrail/i18n/vi.po +++ b/addons/audittrail/i18n/vi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-09-29 11:23+0000\n" "Last-Translator: OpenERP Administrators \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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/zh_CN.po b/addons/audittrail/i18n/zh_CN.po index 344c8a6bdd9..3d5e5693a7e 100644 --- a/addons/audittrail/i18n/zh_CN.po +++ b/addons/audittrail/i18n/zh_CN.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-28 06:31+0000\n" "Last-Translator: ccdos \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: 2012-11-29 05:15+0000\n" -"X-Generator: Launchpad (build 16319)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/zh_TW.po b/addons/audittrail/i18n/zh_TW.po index 4bf6a250890..38d1bf2babc 100644 --- a/addons/audittrail/i18n/zh_TW.po +++ b/addons/audittrail/i18n/zh_TW.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-08-30 13:46+0000\n" "Last-Translator: Eric Huang \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: 2012-11-25 06:14+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:49+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/base_crypt/__init__.py b/addons/auth_crypt/__init__.py similarity index 95% rename from addons/base_crypt/__init__.py rename to addons/auth_crypt/__init__.py index 2534598a76f..c6086dd9725 100644 --- a/addons/base_crypt/__init__.py +++ b/addons/auth_crypt/__init__.py @@ -18,8 +18,7 @@ # ############################################################################## -from openerp.service import security -import crypt +import auth_crypt # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/auth_crypt/__openerp__.py b/addons/auth_crypt/__openerp__.py new file mode 100644 index 00000000000..f8d5c5bdce7 --- /dev/null +++ b/addons/auth_crypt/__openerp__.py @@ -0,0 +1,43 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2009 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +{ + 'name': 'Password Encryption', + 'version': '1.1', + 'author': ['OpenERP SA', 'FS3'], + 'maintainer': 'OpenERP SA', + 'website': 'http://www.openerp.com', + 'category': 'Tools', + 'description': """ +Ecrypted passwords +================== + +Interaction with LDAP authentication: +------------------------------------- +This module is currently not compatible with the ``user_ldap`` module and +will disable LDAP authentication completely if installed at the same time. +""", + 'depends': ['base'], + 'data': [], + 'auto_install': False, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/auth_crypt/auth_crypt.py b/addons/auth_crypt/auth_crypt.py new file mode 100644 index 00000000000..d0a4fda9632 --- /dev/null +++ b/addons/auth_crypt/auth_crypt.py @@ -0,0 +1,166 @@ +# +# Implements encrypting functions. +# +# Copyright (c) 2008, F S 3 Consulting Inc. +# +# Maintainer: +# Alec Joseph Rivera (agifs3.ph) +# refactored by Antony Lesuisse openerp.com> +# + +import hashlib +import hmac +import logging +from random import sample +from string import ascii_letters, digits + +import openerp +from openerp.osv import fields, osv + +_logger = logging.getLogger(__name__) + +magic_md5 = '$1$' +magic_sha256 = '$5$' + +def gen_salt(length=8, symbols=None): + if symbols is None: + symbols = ascii_letters + digits + return ''.join(sample(symbols, length)) + +def md5crypt( raw_pw, salt, magic=magic_md5 ): + """ md5crypt FreeBSD crypt(3) based on but different from md5 + + The md5crypt is based on Mark Johnson's md5crypt.py, which in turn is + based on FreeBSD src/lib/libcrypt/crypt.c (1.2) by Poul-Henning Kamp. + Mark's port can be found in ActiveState ASPN Python Cookbook. Kudos to + Poul and Mark. -agi + + Original license: + + * "THE BEER-WARE LICENSE" (Revision 42): + * + * wrote this file. As long as you retain this + * notice you can do whatever you want with this stuff. If we meet some + * day, and you think this stuff is worth it, you can buy me a beer in + * return. + * + * Poul-Henning Kamp + """ + raw_pw = raw_pw.encode('utf-8') + salt = salt.encode('utf-8') + hash = hashlib.md5() + hash.update( raw_pw + magic + salt ) + st = hashlib.md5() + st.update( raw_pw + salt + raw_pw) + stretch = st.digest() + + for i in range( 0, len( raw_pw ) ): + hash.update( stretch[i % 16] ) + + i = len( raw_pw ) + + while i: + if i & 1: + hash.update('\x00') + else: + hash.update( raw_pw[0] ) + i >>= 1 + + saltedmd5 = hash.digest() + + for i in range( 1000 ): + hash = hashlib.md5() + + if i & 1: + hash.update( raw_pw ) + else: + hash.update( saltedmd5 ) + + if i % 3: + hash.update( salt ) + if i % 7: + hash.update( raw_pw ) + if i & 1: + hash.update( saltedmd5 ) + else: + hash.update( raw_pw ) + + saltedmd5 = hash.digest() + + itoa64 = './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' + + rearranged = '' + for a, b, c in ((0, 6, 12), (1, 7, 13), (2, 8, 14), (3, 9, 15), (4, 10, 5)): + v = ord( saltedmd5[a] ) << 16 | ord( saltedmd5[b] ) << 8 | ord( saltedmd5[c] ) + + for i in range(4): + rearranged += itoa64[v & 0x3f] + v >>= 6 + + v = ord( saltedmd5[11] ) + + for i in range( 2 ): + rearranged += itoa64[v & 0x3f] + v >>= 6 + + return magic + salt + '$' + rearranged + +def sh256crypt(cls, password, salt, magic=magic_sha256): + iterations = 1000 + # see http://en.wikipedia.org/wiki/PBKDF2 + result = password.encode('utf8') + for i in xrange(cls.iterations): + result = hmac.HMAC(result, salt, hashlib.sha256).digest() # uses HMAC (RFC 2104) to apply salt + result = result.encode('base64') # doesnt seem to be crypt(3) compatible + return '%s%s$%s' % (magic_sha256, salt, result) + +class res_users(osv.osv): + _inherit = "res.users" + + def set_pw(self, cr, uid, id, name, value, args, context): + if value: + encrypted = md5crypt(value, gen_salt()) + cr.execute('update res_users set password_crypt=%s where id=%s', (encrypted, int(id))) + del value + + def get_pw( self, cr, uid, ids, name, args, context ): + cr.execute('select id, password from res_users where id in %s', (tuple(map(int, ids)),)) + stored_pws = cr.fetchall() + res = {} + + for id, stored_pw in stored_pws: + res[id] = stored_pw + + return res + + _columns = { + 'password': fields.function(get_pw, fnct_inv=set_pw, type='char', string='Password', invisible=True, store=True), + 'password_crypt': fields.char(string='Encrypted Password', invisible=True), + } + + def check_credentials(self, cr, uid, password): + # convert to base_crypt if needed + cr.execute('SELECT password, password_crypt FROM res_users WHERE id=%s AND active', (uid,)) + if cr.rowcount: + stored_password, stored_password_crypt = cr.fetchone() + if password and not stored_password_crypt: + salt = gen_salt() + stored_password_crypt = md5crypt(stored_password, salt) + cr.execute("UPDATE res_users SET password='', password_crypt=%s WHERE id=%s", (stored_password_crypt, uid)) + try: + return super(res_users, self).check_credentials(cr, uid, password) + except openerp.exceptions.AccessDenied: + # check md5crypt + if stored_password_crypt[:len(magic_md5)] == magic_md5: + salt = stored_password_crypt[len(magic_md5):11] + if stored_password_crypt == md5crypt(password, salt): + return + elif stored_password_crypt[:len(magic_md5)] == magic_sha256: + salt = stored_password_crypt[len(magic_md5):11] + if stored_password_crypt == md5crypt(password, salt): + return + # Reraise password incorrect + raise + + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_crypt/i18n/ar.po b/addons/auth_crypt/i18n/ar.po similarity index 100% rename from addons/base_crypt/i18n/ar.po rename to addons/auth_crypt/i18n/ar.po diff --git a/addons/auth_crypt/i18n/auth_crypt.pot b/addons/auth_crypt/i18n/auth_crypt.pot new file mode 100644 index 00000000000..268674c8ddb --- /dev/null +++ b/addons/auth_crypt/i18n/auth_crypt.pot @@ -0,0 +1,27 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * auth_crypt +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 7.0alpha\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: auth_crypt +#: field:res.users,password_crypt:0 +msgid "Encrypted Password" +msgstr "" + +#. module: auth_crypt +#: model:ir.model,name:auth_crypt.model_res_users +msgid "Users" +msgstr "" + diff --git a/addons/base_crypt/i18n/base_crypt.pot b/addons/auth_crypt/i18n/base_crypt.pot similarity index 100% rename from addons/base_crypt/i18n/base_crypt.pot rename to addons/auth_crypt/i18n/base_crypt.pot diff --git a/addons/base_crypt/i18n/bg.po b/addons/auth_crypt/i18n/bg.po similarity index 100% rename from addons/base_crypt/i18n/bg.po rename to addons/auth_crypt/i18n/bg.po diff --git a/addons/base_crypt/i18n/ca.po b/addons/auth_crypt/i18n/ca.po similarity index 100% rename from addons/base_crypt/i18n/ca.po rename to addons/auth_crypt/i18n/ca.po diff --git a/addons/base_crypt/i18n/cs.po b/addons/auth_crypt/i18n/cs.po similarity index 100% rename from addons/base_crypt/i18n/cs.po rename to addons/auth_crypt/i18n/cs.po diff --git a/addons/base_crypt/i18n/da.po b/addons/auth_crypt/i18n/da.po similarity index 100% rename from addons/base_crypt/i18n/da.po rename to addons/auth_crypt/i18n/da.po diff --git a/addons/auth_crypt/i18n/de.po b/addons/auth_crypt/i18n/de.po new file mode 100644 index 00000000000..661841221c8 --- /dev/null +++ b/addons/auth_crypt/i18n/de.po @@ -0,0 +1,28 @@ +# German translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-07 23:04+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-09 05:02+0000\n" +"X-Generator: Launchpad (build 16412)\n" + +#. module: auth_crypt +#: field:res.users,password_crypt:0 +msgid "Encrypted Password" +msgstr "Verschlüsseltes Kennwort" + +#. module: auth_crypt +#: model:ir.model,name:auth_crypt.model_res_users +msgid "Users" +msgstr "Benutzer" diff --git a/addons/base_crypt/i18n/el.po b/addons/auth_crypt/i18n/el.po similarity index 100% rename from addons/base_crypt/i18n/el.po rename to addons/auth_crypt/i18n/el.po diff --git a/addons/base_crypt/i18n/en_GB.po b/addons/auth_crypt/i18n/en_GB.po similarity index 100% rename from addons/base_crypt/i18n/en_GB.po rename to addons/auth_crypt/i18n/en_GB.po diff --git a/addons/auth_crypt/i18n/es.po b/addons/auth_crypt/i18n/es.po new file mode 100644 index 00000000000..d2334590cef --- /dev/null +++ b/addons/auth_crypt/i18n/es.po @@ -0,0 +1,28 @@ +# Spanish translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-27 11:38+0000\n" +"Last-Translator: Pedro Manuel Baeza \n" +"Language-Team: Spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-28 05:11+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_crypt +#: field:res.users,password_crypt:0 +msgid "Encrypted Password" +msgstr "Contraseña encriptada" + +#. module: auth_crypt +#: model:ir.model,name:auth_crypt.model_res_users +msgid "Users" +msgstr "Usuarios" diff --git a/addons/base_crypt/i18n/es_CL.po b/addons/auth_crypt/i18n/es_CL.po similarity index 100% rename from addons/base_crypt/i18n/es_CL.po rename to addons/auth_crypt/i18n/es_CL.po diff --git a/addons/base_crypt/i18n/es_CR.po b/addons/auth_crypt/i18n/es_CR.po similarity index 100% rename from addons/base_crypt/i18n/es_CR.po rename to addons/auth_crypt/i18n/es_CR.po diff --git a/addons/base_crypt/i18n/es_MX.po b/addons/auth_crypt/i18n/es_MX.po similarity index 100% rename from addons/base_crypt/i18n/es_MX.po rename to addons/auth_crypt/i18n/es_MX.po diff --git a/addons/base_crypt/i18n/es_PY.po b/addons/auth_crypt/i18n/es_PY.po similarity index 100% rename from addons/base_crypt/i18n/es_PY.po rename to addons/auth_crypt/i18n/es_PY.po diff --git a/addons/base_crypt/i18n/es_VE.po b/addons/auth_crypt/i18n/es_VE.po similarity index 100% rename from addons/base_crypt/i18n/es_VE.po rename to addons/auth_crypt/i18n/es_VE.po diff --git a/addons/base_crypt/i18n/et.po b/addons/auth_crypt/i18n/et.po similarity index 100% rename from addons/base_crypt/i18n/et.po rename to addons/auth_crypt/i18n/et.po diff --git a/addons/base_crypt/i18n/fa.po b/addons/auth_crypt/i18n/fa.po similarity index 100% rename from addons/base_crypt/i18n/fa.po rename to addons/auth_crypt/i18n/fa.po diff --git a/addons/base_crypt/i18n/fi.po b/addons/auth_crypt/i18n/fi.po similarity index 100% rename from addons/base_crypt/i18n/fi.po rename to addons/auth_crypt/i18n/fi.po diff --git a/addons/auth_crypt/i18n/fr.po b/addons/auth_crypt/i18n/fr.po new file mode 100644 index 00000000000..a42413de83b --- /dev/null +++ b/addons/auth_crypt/i18n/fr.po @@ -0,0 +1,28 @@ +# French translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-29 16:07+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-30 05:20+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_crypt +#: field:res.users,password_crypt:0 +msgid "Encrypted Password" +msgstr "" + +#. module: auth_crypt +#: model:ir.model,name:auth_crypt.model_res_users +msgid "Users" +msgstr "" diff --git a/addons/base_crypt/i18n/gl.po b/addons/auth_crypt/i18n/gl.po similarity index 100% rename from addons/base_crypt/i18n/gl.po rename to addons/auth_crypt/i18n/gl.po diff --git a/addons/base_crypt/i18n/gu.po b/addons/auth_crypt/i18n/gu.po similarity index 100% rename from addons/base_crypt/i18n/gu.po rename to addons/auth_crypt/i18n/gu.po diff --git a/addons/auth_crypt/i18n/hr.po b/addons/auth_crypt/i18n/hr.po new file mode 100644 index 00000000000..b04b2f7679f --- /dev/null +++ b/addons/auth_crypt/i18n/hr.po @@ -0,0 +1,28 @@ +# Croatian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-24 12:42+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Croatian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-25 05:24+0000\n" +"X-Generator: Launchpad (build 16445)\n" + +#. module: auth_crypt +#: field:res.users,password_crypt:0 +msgid "Encrypted Password" +msgstr "Kriptirana lozinka" + +#. module: auth_crypt +#: model:ir.model,name:auth_crypt.model_res_users +msgid "Users" +msgstr "Korisnici" diff --git a/addons/base_crypt/i18n/id.po b/addons/auth_crypt/i18n/id.po similarity index 100% rename from addons/base_crypt/i18n/id.po rename to addons/auth_crypt/i18n/id.po diff --git a/addons/auth_crypt/i18n/it.po b/addons/auth_crypt/i18n/it.po new file mode 100644 index 00000000000..e1e7b2c5244 --- /dev/null +++ b/addons/auth_crypt/i18n/it.po @@ -0,0 +1,28 @@ +# Italian translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-27 09:14+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-28 05:11+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_crypt +#: field:res.users,password_crypt:0 +msgid "Encrypted Password" +msgstr "Password Cifrata" + +#. module: auth_crypt +#: model:ir.model,name:auth_crypt.model_res_users +msgid "Users" +msgstr "Utenti" diff --git a/addons/base_crypt/i18n/ja.po b/addons/auth_crypt/i18n/ja.po similarity index 100% rename from addons/base_crypt/i18n/ja.po rename to addons/auth_crypt/i18n/ja.po diff --git a/addons/base_crypt/i18n/lv.po b/addons/auth_crypt/i18n/lv.po similarity index 100% rename from addons/base_crypt/i18n/lv.po rename to addons/auth_crypt/i18n/lv.po diff --git a/addons/base_crypt/i18n/mn.po b/addons/auth_crypt/i18n/mn.po similarity index 100% rename from addons/base_crypt/i18n/mn.po rename to addons/auth_crypt/i18n/mn.po diff --git a/addons/base_crypt/i18n/nb.po b/addons/auth_crypt/i18n/nb.po similarity index 100% rename from addons/base_crypt/i18n/nb.po rename to addons/auth_crypt/i18n/nb.po diff --git a/addons/auth_crypt/i18n/nl.po b/addons/auth_crypt/i18n/nl.po new file mode 100644 index 00000000000..c8ee1702a2c --- /dev/null +++ b/addons/auth_crypt/i18n/nl.po @@ -0,0 +1,28 @@ +# Dutch translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-27 09:14+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-28 05:11+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_crypt +#: field:res.users,password_crypt:0 +msgid "Encrypted Password" +msgstr "Encrypted wachtwoord" + +#. module: auth_crypt +#: model:ir.model,name:auth_crypt.model_res_users +msgid "Users" +msgstr "Gebruikers" diff --git a/addons/base_crypt/i18n/nl_BE.po b/addons/auth_crypt/i18n/nl_BE.po similarity index 100% rename from addons/base_crypt/i18n/nl_BE.po rename to addons/auth_crypt/i18n/nl_BE.po diff --git a/addons/base_crypt/i18n/oc.po b/addons/auth_crypt/i18n/oc.po similarity index 100% rename from addons/base_crypt/i18n/oc.po rename to addons/auth_crypt/i18n/oc.po diff --git a/addons/base_crypt/i18n/pl.po b/addons/auth_crypt/i18n/pl.po similarity index 100% rename from addons/base_crypt/i18n/pl.po rename to addons/auth_crypt/i18n/pl.po diff --git a/addons/auth_crypt/i18n/pt.po b/addons/auth_crypt/i18n/pt.po new file mode 100644 index 00000000000..e2d37fb1a84 --- /dev/null +++ b/addons/auth_crypt/i18n/pt.po @@ -0,0 +1,28 @@ +# Portuguese translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-16 11:12+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-17 04:35+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: auth_crypt +#: field:res.users,password_crypt:0 +msgid "Encrypted Password" +msgstr "Senha encriptada" + +#. module: auth_crypt +#: model:ir.model,name:auth_crypt.model_res_users +msgid "Users" +msgstr "Utilizadores" diff --git a/addons/auth_crypt/i18n/pt_BR.po b/addons/auth_crypt/i18n/pt_BR.po new file mode 100644 index 00000000000..aaec1033100 --- /dev/null +++ b/addons/auth_crypt/i18n/pt_BR.po @@ -0,0 +1,28 @@ +# Brazilian Portuguese translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-02 11:57+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Brazilian Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-03 04:48+0000\n" +"X-Generator: Launchpad (build 16393)\n" + +#. module: auth_crypt +#: field:res.users,password_crypt:0 +msgid "Encrypted Password" +msgstr "Senha Criptografada" + +#. module: auth_crypt +#: model:ir.model,name:auth_crypt.model_res_users +msgid "Users" +msgstr "Usuários" diff --git a/addons/auth_crypt/i18n/ro.po b/addons/auth_crypt/i18n/ro.po new file mode 100644 index 00000000000..4de93b9fa05 --- /dev/null +++ b/addons/auth_crypt/i18n/ro.po @@ -0,0 +1,28 @@ +# Romanian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-13 19:29+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-14 04:36+0000\n" +"X-Generator: Launchpad (build 16420)\n" + +#. module: auth_crypt +#: field:res.users,password_crypt:0 +msgid "Encrypted Password" +msgstr "Parola Criptata" + +#. module: auth_crypt +#: model:ir.model,name:auth_crypt.model_res_users +msgid "Users" +msgstr "Utilizatori" diff --git a/addons/base_crypt/i18n/ru.po b/addons/auth_crypt/i18n/ru.po similarity index 100% rename from addons/base_crypt/i18n/ru.po rename to addons/auth_crypt/i18n/ru.po diff --git a/addons/base_crypt/i18n/sk.po b/addons/auth_crypt/i18n/sk.po similarity index 100% rename from addons/base_crypt/i18n/sk.po rename to addons/auth_crypt/i18n/sk.po diff --git a/addons/auth_crypt/i18n/sl.po b/addons/auth_crypt/i18n/sl.po new file mode 100644 index 00000000000..1c0bc494d64 --- /dev/null +++ b/addons/auth_crypt/i18n/sl.po @@ -0,0 +1,28 @@ +# Slovenian translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-27 09:14+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-28 05:11+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_crypt +#: field:res.users,password_crypt:0 +msgid "Encrypted Password" +msgstr "Kodirano geslo" + +#. module: auth_crypt +#: model:ir.model,name:auth_crypt.model_res_users +msgid "Users" +msgstr "Uporabniki" diff --git a/addons/base_crypt/i18n/sq.po b/addons/auth_crypt/i18n/sq.po similarity index 100% rename from addons/base_crypt/i18n/sq.po rename to addons/auth_crypt/i18n/sq.po diff --git a/addons/base_crypt/i18n/sr@latin.po b/addons/auth_crypt/i18n/sr@latin.po similarity index 100% rename from addons/base_crypt/i18n/sr@latin.po rename to addons/auth_crypt/i18n/sr@latin.po diff --git a/addons/auth_crypt/i18n/sv.po b/addons/auth_crypt/i18n/sv.po new file mode 100644 index 00000000000..9a95fc17c5a --- /dev/null +++ b/addons/auth_crypt/i18n/sv.po @@ -0,0 +1,28 @@ +# Swedish translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-17 23:47+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-19 05:22+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: auth_crypt +#: field:res.users,password_crypt:0 +msgid "Encrypted Password" +msgstr "Krypterat lösenord" + +#. module: auth_crypt +#: model:ir.model,name:auth_crypt.model_res_users +msgid "Users" +msgstr "Användare" diff --git a/addons/base_crypt/i18n/tr.po b/addons/auth_crypt/i18n/tr.po similarity index 100% rename from addons/base_crypt/i18n/tr.po rename to addons/auth_crypt/i18n/tr.po diff --git a/addons/base_crypt/i18n/vi.po b/addons/auth_crypt/i18n/vi.po similarity index 100% rename from addons/base_crypt/i18n/vi.po rename to addons/auth_crypt/i18n/vi.po diff --git a/addons/auth_crypt/i18n/zh_CN.po b/addons/auth_crypt/i18n/zh_CN.po new file mode 100644 index 00000000000..68201c844fe --- /dev/null +++ b/addons/auth_crypt/i18n/zh_CN.po @@ -0,0 +1,28 @@ +# Chinese (Simplified) translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-27 09:14+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Chinese (Simplified) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-28 05:11+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_crypt +#: field:res.users,password_crypt:0 +msgid "Encrypted Password" +msgstr "加密密码" + +#. module: auth_crypt +#: model:ir.model,name:auth_crypt.model_res_users +msgid "Users" +msgstr "用户" diff --git a/addons/base_crypt/i18n/zh_TW.po b/addons/auth_crypt/i18n/zh_TW.po similarity index 100% rename from addons/base_crypt/i18n/zh_TW.po rename to addons/auth_crypt/i18n/zh_TW.po diff --git a/addons/auth_ldap/i18n/ar.po b/addons/auth_ldap/i18n/ar.po index 3c19298da7b..dbab68288c4 100644 --- a/addons/auth_ldap/i18n/ar.po +++ b/addons/auth_ldap/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-01 18:00+0000\n" "Last-Translator: kifcaliph \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: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/auth_ldap.pot b/addons/auth_ldap/i18n/auth_ldap.pot index e6c135ce4a4..e47120b689c 100644 --- a/addons/auth_ldap/i18n/auth_ldap.pot +++ b/addons/auth_ldap/i18n/auth_ldap.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" -"PO-Revision-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auth_ldap/i18n/bg.po b/addons/auth_ldap/i18n/bg.po index 8b985e76fb6..b702fe2ea51 100644 --- a/addons/auth_ldap/i18n/bg.po +++ b/addons/auth_ldap/i18n/bg.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-28 20:23+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ca.po b/addons/auth_ldap/i18n/ca.po index 2298f6a586c..4d86a68dae4 100644 --- a/addons/auth_ldap/i18n/ca.po +++ b/addons/auth_ldap/i18n/ca.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-05 23:46+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/da.po b/addons/auth_ldap/i18n/da.po index b1938e8d3d1..a688db351fd 100644 --- a/addons/auth_ldap/i18n/da.po +++ b/addons/auth_ldap/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-01-27 06:45+0000\n" "Last-Translator: FULL NAME \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: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/de.po b/addons/auth_ldap/i18n/de.po index f5f0940a167..170a1408ca4 100644 --- a/addons/auth_ldap/i18n/de.po +++ b/addons/auth_ldap/i18n/de.po @@ -7,20 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" -"PO-Revision-Date: 2012-01-14 14:56+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-18 06:57+0000\n" "Last-Translator: Ferdinand @ Camptocamp \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 msgid "Template User" -msgstr "" +msgstr "Benutzer Vorlage" #. module: auth_ldap #: help:res.company.ldap,ldap_tls:0 @@ -65,6 +65,8 @@ msgid "" "Automatically create local user accounts for new users authenticating via " "LDAP" msgstr "" +"Erstelle automatisch Benutzer Konten für neue Benutzer, die sich mit LDAP " +"anmelden" #. module: auth_ldap #: field:res.company.ldap,ldap_base:0 @@ -99,7 +101,7 @@ msgstr "res.company.ldap" #. module: auth_ldap #: help:res.company.ldap,user:0 msgid "User to copy when creating new users" -msgstr "" +msgstr "Standard Benutzerkonto, das für neue Benutzer verwendet wird" #. module: auth_ldap #: field:res.company.ldap,ldap_tls:0 @@ -151,7 +153,7 @@ msgstr "" #. module: auth_ldap #: model:ir.model,name:auth_ldap.model_res_users msgid "Users" -msgstr "" +msgstr "Benutzer" #. module: auth_ldap #: field:res.company.ldap,ldap_filter:0 diff --git a/addons/auth_ldap/i18n/es.po b/addons/auth_ldap/i18n/es.po index 18823b5b6d5..1a8c3807fe6 100644 --- a/addons/auth_ldap/i18n/es.po +++ b/addons/auth_ldap/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-10 21:58+0000\n" "Last-Translator: lambdasoftware \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-11 04:49+0000\n" -"X-Generator: Launchpad (build 16356)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/es_CR.po b/addons/auth_ldap/i18n/es_CR.po index 3b84bb3473d..5ba074ad5aa 100644 --- a/addons/auth_ldap/i18n/es_CR.po +++ b/addons/auth_ldap/i18n/es_CR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-20 01:19+0000\n" "Last-Translator: Freddy Gonzalez \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" "Language: es\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/fi.po b/addons/auth_ldap/i18n/fi.po index b34fa64cfe4..863dd9ce177 100644 --- a/addons/auth_ldap/i18n/fi.po +++ b/addons/auth_ldap/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-06-13 09:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/fr.po b/addons/auth_ldap/i18n/fr.po index 28509bba26e..8bffd9504be 100644 --- a/addons/auth_ldap/i18n/fr.po +++ b/addons/auth_ldap/i18n/fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-29 17:08+0000\n" "Last-Translator: Christophe Chauvet - http://www.syleam.fr/ \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/gl.po b/addons/auth_ldap/i18n/gl.po index 8f4f49b5485..594685d6292 100644 --- a/addons/auth_ldap/i18n/gl.po +++ b/addons/auth_ldap/i18n/gl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-05 01:45+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/hr.po b/addons/auth_ldap/i18n/hr.po index 2e9a5081d9a..848db6b27e9 100644 --- a/addons/auth_ldap/i18n/hr.po +++ b/addons/auth_ldap/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-12-21 14:58+0000\n" "Last-Translator: Goran Kliska \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/hu.po b/addons/auth_ldap/i18n/hu.po index 1fe5f342816..4559328950b 100644 --- a/addons/auth_ldap/i18n/hu.po +++ b/addons/auth_ldap/i18n/hu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-27 12:31+0000\n" "Last-Translator: Krisztian Eyssen \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/it.po b/addons/auth_ldap/i18n/it.po index 88c0639973f..f56abe3860b 100644 --- a/addons/auth_ldap/i18n/it.po +++ b/addons/auth_ldap/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 07:56+0000\n" "Last-Translator: Nicola Riolini - Micronaet \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ja.po b/addons/auth_ldap/i18n/ja.po index 4a072ae5d0f..9a5e1f3db89 100644 --- a/addons/auth_ldap/i18n/ja.po +++ b/addons/auth_ldap/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-06-16 22:21+0000\n" "Last-Translator: Akira Hiyama \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/mn.po b/addons/auth_ldap/i18n/mn.po index 26e910d2093..afa20440602 100644 --- a/addons/auth_ldap/i18n/mn.po +++ b/addons/auth_ldap/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-21 13:53+0000\n" "Last-Translator: OpenERP Administrators \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: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/nb.po b/addons/auth_ldap/i18n/nb.po index e54a18e7c2d..a62e5caeaa9 100644 --- a/addons/auth_ldap/i18n/nb.po +++ b/addons/auth_ldap/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-12 10:01+0000\n" "Last-Translator: Kaare Pettersen \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-13 04:44+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/nl.po b/addons/auth_ldap/i18n/nl.po index 2588a4dad46..4cbc91b50e0 100644 --- a/addons/auth_ldap/i18n/nl.po +++ b/addons/auth_ldap/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-24 18:25+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/pl.po b/addons/auth_ldap/i18n/pl.po index c7540ff66fe..94b3a242420 100644 --- a/addons/auth_ldap/i18n/pl.po +++ b/addons/auth_ldap/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-16 11:18+0000\n" "Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \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: 2012-12-17 04:47+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/pt.po b/addons/auth_ldap/i18n/pt.po index 86e97058916..476f99fb87f 100644 --- a/addons/auth_ldap/i18n/pt.po +++ b/addons/auth_ldap/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-12 16:36+0000\n" "Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-13 04:44+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/pt_BR.po b/addons/auth_ldap/i18n/pt_BR.po index 85db8d35f84..1688a8b49e5 100644 --- a/addons/auth_ldap/i18n/pt_BR.po +++ b/addons/auth_ldap/i18n/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-17 00:42+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " "\n" @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-18 05:02+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ro.po b/addons/auth_ldap/i18n/ro.po index 5e8fe12d33b..f28dcdb3458 100644 --- a/addons/auth_ldap/i18n/ro.po +++ b/addons/auth_ldap/i18n/ro.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-01-09 11:12+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ru.po b/addons/auth_ldap/i18n/ru.po index 54b8f84428e..414df40218b 100644 --- a/addons/auth_ldap/i18n/ru.po +++ b/addons/auth_ldap/i18n/ru.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-05-12 20:26+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/sl.po b/addons/auth_ldap/i18n/sl.po new file mode 100644 index 00000000000..875c2170203 --- /dev/null +++ b/addons/auth_ldap/i18n/sl.po @@ -0,0 +1,159 @@ +# Slovenian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-05 16:49+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-06 04:46+0000\n" +"X-Generator: Launchpad (build 16393)\n" + +#. module: auth_ldap +#: field:res.company.ldap,user:0 +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: help:res.company.ldap,ldap_tls:0 +msgid "" +"Request secure TLS/SSL encryption when connecting to the LDAP server. This " +"option requires a server with STARTTLS enabled, otherwise all authentication " +"attempts will fail." +msgstr "" + +#. module: auth_ldap +#: view:res.company:0 +#: view:res.company.ldap:0 +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: field:res.company.ldap,ldap_binddn:0 +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: field:res.company.ldap,company:0 +msgid "Company" +msgstr "Podjetje" + +#. module: auth_ldap +#: field:res.company.ldap,ldap_server:0 +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: field:res.company.ldap,ldap_server_port:0 +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: help:res.company.ldap,create_user:0 +msgid "" +"Automatically create local user accounts for new users authenticating via " +"LDAP" +msgstr "" + +#. module: auth_ldap +#: field:res.company.ldap,ldap_base:0 +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: view:res.company.ldap:0 +msgid "User Information" +msgstr "Informacije o uporabniku" + +#. module: auth_ldap +#: field:res.company.ldap,ldap_password:0 +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Podjetja" + +#. module: auth_ldap +#: view:res.company.ldap:0 +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "res.company.ldap" +msgstr "res.company.ldap" + +#. module: auth_ldap +#: help:res.company.ldap,user:0 +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: field:res.company.ldap,ldap_tls:0 +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: field:res.company.ldap,sequence:0 +msgid "Sequence" +msgstr "Zaporedje" + +#. module: auth_ldap +#: view:res.company.ldap:0 +msgid "Login Information" +msgstr "Podatki za prijavo" + +#. module: auth_ldap +#: view:res.company.ldap:0 +msgid "Server Information" +msgstr "Podrobnosti o strežniku" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: view:res.company:0 +#: field:res.company,ldaps:0 +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: help:res.company.ldap,ldap_password:0 +msgid "" +"The password of the user account on the LDAP server that is used to query " +"the directory." +msgstr "" + +#. module: auth_ldap +#: help:res.company.ldap,ldap_binddn:0 +msgid "" +"The user account on the LDAP server that is used to query the directory. " +"Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Uporabniki" + +#. module: auth_ldap +#: field:res.company.ldap,ldap_filter:0 +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: field:res.company.ldap,create_user:0 +msgid "Create user" +msgstr "Ustvari uporabnika" diff --git a/addons/auth_ldap/i18n/sv.po b/addons/auth_ldap/i18n/sv.po index 117ef88754e..b84d4440e59 100644 --- a/addons/auth_ldap/i18n/sv.po +++ b/addons/auth_ldap/i18n/sv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-06-23 11:22+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/tr.po b/addons/auth_ldap/i18n/tr.po index 99f6717a887..3d7dcd1179c 100644 --- a/addons/auth_ldap/i18n/tr.po +++ b/addons/auth_ldap/i18n/tr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-10 21:12+0000\n" "Last-Translator: Ahmet Altınışık \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/zh_CN.po b/addons/auth_ldap/i18n/zh_CN.po index 65e3f484149..322873edf7c 100644 --- a/addons/auth_ldap/i18n/zh_CN.po +++ b/addons/auth_ldap/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-28 07:07+0000\n" "Last-Translator: ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:04+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_oauth/i18n/ar.po b/addons/auth_oauth/i18n/ar.po index 30d6eda6f50..be6d3f06ea7 100644 --- a/addons/auth_oauth/i18n/ar.po +++ b/addons/auth_oauth/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-01 11:07+0000\n" "Last-Translator: FULL NAME \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: 2012-12-04 05:54+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/auth_oauth.pot b/addons/auth_oauth/i18n/auth_oauth.pot index 87e19da3403..e6219eba41f 100644 --- a/addons/auth_oauth/i18n/auth_oauth.pot +++ b/addons/auth_oauth/i18n/auth_oauth.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" -"PO-Revision-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auth_oauth/i18n/de.po b/addons/auth_oauth/i18n/de.po new file mode 100644 index 00000000000..af29d91b885 --- /dev/null +++ b/addons/auth_oauth/i18n/de.po @@ -0,0 +1,135 @@ +# German translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-19 14:45+0000\n" +"Last-Translator: Ferdinand @ Camptocamp \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_oauth +#: field:auth.oauth.provider,validation_endpoint:0 +msgid "Validation URL" +msgstr "Validierungs URL" + +#. module: auth_oauth +#: field:auth.oauth.provider,auth_endpoint:0 +msgid "Authentication URL" +msgstr "Authorisierungs URL" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_base_config_settings +msgid "base.config.settings" +msgstr "base.config.settings" + +#. module: auth_oauth +#: field:auth.oauth.provider,name:0 +msgid "Provider name" +msgstr "Provider Name" + +#. module: auth_oauth +#: field:auth.oauth.provider,scope:0 +msgid "Scope" +msgstr "Gültigkeitsbereich" + +#. module: auth_oauth +#: field:res.users,oauth_provider_id:0 +msgid "OAuth Provider" +msgstr "OAuth Provider" + +#. module: auth_oauth +#: field:auth.oauth.provider,css_class:0 +msgid "CSS class" +msgstr "CSS Klasse" + +#. module: auth_oauth +#: field:auth.oauth.provider,body:0 +msgid "Body" +msgstr "Nachricht" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Benutzer" + +#. module: auth_oauth +#: field:auth.oauth.provider,sequence:0 +msgid "unknown" +msgstr "unbekannt" + +#. module: auth_oauth +#: field:res.users,oauth_access_token:0 +msgid "OAuth Access Token" +msgstr "OAuth Zugangs Token" + +#. module: auth_oauth +#: field:auth.oauth.provider,client_id:0 +#: field:base.config.settings,auth_oauth_facebook_client_id:0 +#: field:base.config.settings,auth_oauth_google_client_id:0 +msgid "Client ID" +msgstr "Client ID" + +#. module: auth_oauth +#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers +msgid "OAuth Providers" +msgstr "OAuth Providers" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +msgid "OAuth2 provider" +msgstr "OAuth2 provider" + +#. module: auth_oauth +#: field:res.users,oauth_uid:0 +msgid "OAuth User ID" +msgstr "OAuth User ID" + +#. module: auth_oauth +#: field:base.config.settings,auth_oauth_facebook_enabled:0 +msgid "Allow users to sign in with Facebook" +msgstr "Erlaube Benutzer mit Facebook Konto einzuloggen" + +#. module: auth_oauth +#: sql_constraint:res.users:0 +msgid "OAuth UID must be unique per provider" +msgstr "OAuth UID muss je Provider eindeutig sein" + +#. module: auth_oauth +#: help:res.users,oauth_uid:0 +msgid "Oauth Provider user_id" +msgstr "Oauth Provider user_id" + +#. module: auth_oauth +#: field:auth.oauth.provider,data_endpoint:0 +msgid "Data URL" +msgstr "Daten URL" + +#. module: auth_oauth +#: view:auth.oauth.provider:0 +msgid "arch" +msgstr "Arch" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Provider" + +#. module: auth_oauth +#: field:base.config.settings,auth_oauth_google_enabled:0 +msgid "Allow users to sign in with Google" +msgstr "Erlaube Benutzer mit Google Konto einzuloggen" + +#. module: auth_oauth +#: field:auth.oauth.provider,enabled:0 +msgid "Allowed" +msgstr "Erlaubt" diff --git a/addons/auth_oauth/i18n/es.po b/addons/auth_oauth/i18n/es.po index c1d7f1f0d82..2d39a67b3c0 100644 --- a/addons/auth_oauth/i18n/es.po +++ b/addons/auth_oauth/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 14:10+0000\n" "Last-Translator: Pedro Manuel Baeza \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/fr.po b/addons/auth_oauth/i18n/fr.po index af21a721dd1..3f9d009abb3 100644 --- a/addons/auth_oauth/i18n/fr.po +++ b/addons/auth_oauth/i18n/fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-12 09:21+0000\n" "Last-Translator: Numérigraphe \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-13 04:44+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/hr.po b/addons/auth_oauth/i18n/hr.po index 11a48882901..05ab8b96e17 100644 --- a/addons/auth_oauth/i18n/hr.po +++ b/addons/auth_oauth/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-10 07:36+0000\n" "Last-Translator: Goran Kliska \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-11 04:49+0000\n" -"X-Generator: Launchpad (build 16356)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/it.po b/addons/auth_oauth/i18n/it.po new file mode 100644 index 00000000000..aa99f1adab1 --- /dev/null +++ b/addons/auth_oauth/i18n/it.po @@ -0,0 +1,135 @@ +# Italian translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-23 22:02+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-24 04:40+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_oauth +#: field:auth.oauth.provider,validation_endpoint:0 +msgid "Validation URL" +msgstr "URL Validazione" + +#. module: auth_oauth +#: field:auth.oauth.provider,auth_endpoint:0 +msgid "Authentication URL" +msgstr "URL Autenticazione" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_base_config_settings +msgid "base.config.settings" +msgstr "base.config.settings" + +#. module: auth_oauth +#: field:auth.oauth.provider,name:0 +msgid "Provider name" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,scope:0 +msgid "Scope" +msgstr "" + +#. module: auth_oauth +#: field:res.users,oauth_provider_id:0 +msgid "OAuth Provider" +msgstr "Fronitore di OAuth" + +#. module: auth_oauth +#: field:auth.oauth.provider,css_class:0 +msgid "CSS class" +msgstr "Classe CSS" + +#. module: auth_oauth +#: field:auth.oauth.provider,body:0 +msgid "Body" +msgstr "Corpo" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Utenti" + +#. module: auth_oauth +#: field:auth.oauth.provider,sequence:0 +msgid "unknown" +msgstr "sconosciuto" + +#. module: auth_oauth +#: field:res.users,oauth_access_token:0 +msgid "OAuth Access Token" +msgstr "Token Accesso OAuth" + +#. module: auth_oauth +#: field:auth.oauth.provider,client_id:0 +#: field:base.config.settings,auth_oauth_facebook_client_id:0 +#: field:base.config.settings,auth_oauth_google_client_id:0 +msgid "Client ID" +msgstr "" + +#. module: auth_oauth +#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers +msgid "OAuth Providers" +msgstr "Fornitore di OAuth" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +msgid "OAuth2 provider" +msgstr "Fornitore di OAuth2" + +#. module: auth_oauth +#: field:res.users,oauth_uid:0 +msgid "OAuth User ID" +msgstr "ID Utente OAuth" + +#. module: auth_oauth +#: field:base.config.settings,auth_oauth_facebook_enabled:0 +msgid "Allow users to sign in with Facebook" +msgstr "Permetti agli utenti di autenticarsi tramite Facebook" + +#. module: auth_oauth +#: sql_constraint:res.users:0 +msgid "OAuth UID must be unique per provider" +msgstr "" + +#. module: auth_oauth +#: help:res.users,oauth_uid:0 +msgid "Oauth Provider user_id" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,data_endpoint:0 +msgid "Data URL" +msgstr "" + +#. module: auth_oauth +#: view:auth.oauth.provider:0 +msgid "arch" +msgstr "" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "" + +#. module: auth_oauth +#: field:base.config.settings,auth_oauth_google_enabled:0 +msgid "Allow users to sign in with Google" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,enabled:0 +msgid "Allowed" +msgstr "" diff --git a/addons/auth_oauth/i18n/nb.po b/addons/auth_oauth/i18n/nb.po index a83f6902692..5aac36339df 100644 --- a/addons/auth_oauth/i18n/nb.po +++ b/addons/auth_oauth/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-02 20:51+0000\n" "Last-Translator: Kaare Pettersen \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:54+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/nl.po b/addons/auth_oauth/i18n/nl.po index e783d337d01..9ec1f6e4e93 100644 --- a/addons/auth_oauth/i18n/nl.po +++ b/addons/auth_oauth/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-30 19:36+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:54+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/pl.po b/addons/auth_oauth/i18n/pl.po index 800eac166d0..f88c8d520e7 100644 --- a/addons/auth_oauth/i18n/pl.po +++ b/addons/auth_oauth/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-16 11:19+0000\n" "Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \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: 2012-12-17 04:47+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/pt.po b/addons/auth_oauth/i18n/pt.po new file mode 100644 index 00000000000..4510b13ca1a --- /dev/null +++ b/addons/auth_oauth/i18n/pt.po @@ -0,0 +1,135 @@ +# Portuguese translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-08 17:16+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-09 05:01+0000\n" +"X-Generator: Launchpad (build 16412)\n" + +#. module: auth_oauth +#: field:auth.oauth.provider,validation_endpoint:0 +msgid "Validation URL" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,auth_endpoint:0 +msgid "Authentication URL" +msgstr "" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_base_config_settings +msgid "base.config.settings" +msgstr "base.config.settings" + +#. module: auth_oauth +#: field:auth.oauth.provider,name:0 +msgid "Provider name" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,scope:0 +msgid "Scope" +msgstr "" + +#. module: auth_oauth +#: field:res.users,oauth_provider_id:0 +msgid "OAuth Provider" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,css_class:0 +msgid "CSS class" +msgstr "Classe CSS" + +#. module: auth_oauth +#: field:auth.oauth.provider,body:0 +msgid "Body" +msgstr "" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Utilizadores" + +#. module: auth_oauth +#: field:auth.oauth.provider,sequence:0 +msgid "unknown" +msgstr "desconhecido" + +#. module: auth_oauth +#: field:res.users,oauth_access_token:0 +msgid "OAuth Access Token" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,client_id:0 +#: field:base.config.settings,auth_oauth_facebook_client_id:0 +#: field:base.config.settings,auth_oauth_google_client_id:0 +msgid "Client ID" +msgstr "" + +#. module: auth_oauth +#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers +msgid "OAuth Providers" +msgstr "" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +msgid "OAuth2 provider" +msgstr "" + +#. module: auth_oauth +#: field:res.users,oauth_uid:0 +msgid "OAuth User ID" +msgstr "" + +#. module: auth_oauth +#: field:base.config.settings,auth_oauth_facebook_enabled:0 +msgid "Allow users to sign in with Facebook" +msgstr "" + +#. module: auth_oauth +#: sql_constraint:res.users:0 +msgid "OAuth UID must be unique per provider" +msgstr "" + +#. module: auth_oauth +#: help:res.users,oauth_uid:0 +msgid "Oauth Provider user_id" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,data_endpoint:0 +msgid "Data URL" +msgstr "" + +#. module: auth_oauth +#: view:auth.oauth.provider:0 +msgid "arch" +msgstr "" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "" + +#. module: auth_oauth +#: field:base.config.settings,auth_oauth_google_enabled:0 +msgid "Allow users to sign in with Google" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,enabled:0 +msgid "Allowed" +msgstr "" diff --git a/addons/auth_oauth/i18n/pt_BR.po b/addons/auth_oauth/i18n/pt_BR.po index f4340cc322c..79e3ae3d3d8 100644 --- a/addons/auth_oauth/i18n/pt_BR.po +++ b/addons/auth_oauth/i18n/pt_BR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-12 23:41+0000\n" "Last-Translator: Luiz Fernando M.França (Sig Informática) \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-14 05:39+0000\n" -"X-Generator: Launchpad (build 16369)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/ro.po b/addons/auth_oauth/i18n/ro.po new file mode 100644 index 00000000000..6922c7d81a0 --- /dev/null +++ b/addons/auth_oauth/i18n/ro.po @@ -0,0 +1,135 @@ +# Romanian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-14 19:21+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-15 04:47+0000\n" +"X-Generator: Launchpad (build 16420)\n" + +#. module: auth_oauth +#: field:auth.oauth.provider,validation_endpoint:0 +msgid "Validation URL" +msgstr "URL Validare" + +#. module: auth_oauth +#: field:auth.oauth.provider,auth_endpoint:0 +msgid "Authentication URL" +msgstr "URL Autentificare" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_base_config_settings +msgid "base.config.settings" +msgstr "base.config.settings (setari.config.de_baza)" + +#. module: auth_oauth +#: field:auth.oauth.provider,name:0 +msgid "Provider name" +msgstr "Numele furnizorului" + +#. module: auth_oauth +#: field:auth.oauth.provider,scope:0 +msgid "Scope" +msgstr "Scope" + +#. module: auth_oauth +#: field:res.users,oauth_provider_id:0 +msgid "OAuth Provider" +msgstr "Furnizor OAuth" + +#. module: auth_oauth +#: field:auth.oauth.provider,css_class:0 +msgid "CSS class" +msgstr "clasa CSS" + +#. module: auth_oauth +#: field:auth.oauth.provider,body:0 +msgid "Body" +msgstr "Continut" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Utilizatori" + +#. module: auth_oauth +#: field:auth.oauth.provider,sequence:0 +msgid "unknown" +msgstr "necunoscut(a)" + +#. module: auth_oauth +#: field:res.users,oauth_access_token:0 +msgid "OAuth Access Token" +msgstr "Simbol de Acces OAuth" + +#. module: auth_oauth +#: field:auth.oauth.provider,client_id:0 +#: field:base.config.settings,auth_oauth_facebook_client_id:0 +#: field:base.config.settings,auth_oauth_google_client_id:0 +msgid "Client ID" +msgstr "ID Client" + +#. module: auth_oauth +#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers +msgid "OAuth Providers" +msgstr "Furnizori OAuth" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +msgid "OAuth2 provider" +msgstr "Furnizor OAuth2" + +#. module: auth_oauth +#: field:res.users,oauth_uid:0 +msgid "OAuth User ID" +msgstr "ID Utilizator OAuth" + +#. module: auth_oauth +#: field:base.config.settings,auth_oauth_facebook_enabled:0 +msgid "Allow users to sign in with Facebook" +msgstr "Le permite utilizatorilor sa se conecteze cu Facebook" + +#. module: auth_oauth +#: sql_constraint:res.users:0 +msgid "OAuth UID must be unique per provider" +msgstr "UID OAth trebuie sa fie unic pentru fiecare furnizor" + +#. module: auth_oauth +#: help:res.users,oauth_uid:0 +msgid "Oauth Provider user_id" +msgstr "id_utilizator Furnizor Oauth" + +#. module: auth_oauth +#: field:auth.oauth.provider,data_endpoint:0 +msgid "Data URL" +msgstr "URL Date" + +#. module: auth_oauth +#: view:auth.oauth.provider:0 +msgid "arch" +msgstr "arc" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Furnizori" + +#. module: auth_oauth +#: field:base.config.settings,auth_oauth_google_enabled:0 +msgid "Allow users to sign in with Google" +msgstr "Le permite utilizatorilor sa se conecteze cu Google" + +#. module: auth_oauth +#: field:auth.oauth.provider,enabled:0 +msgid "Allowed" +msgstr "Permis" diff --git a/addons/auth_oauth/i18n/sl.po b/addons/auth_oauth/i18n/sl.po new file mode 100644 index 00000000000..15557023fb0 --- /dev/null +++ b/addons/auth_oauth/i18n/sl.po @@ -0,0 +1,135 @@ +# Slovenian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-14 17:09+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-15 04:47+0000\n" +"X-Generator: Launchpad (build 16420)\n" + +#. module: auth_oauth +#: field:auth.oauth.provider,validation_endpoint:0 +msgid "Validation URL" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,auth_endpoint:0 +msgid "Authentication URL" +msgstr "" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_base_config_settings +msgid "base.config.settings" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,name:0 +msgid "Provider name" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,scope:0 +msgid "Scope" +msgstr "" + +#. module: auth_oauth +#: field:res.users,oauth_provider_id:0 +msgid "OAuth Provider" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,css_class:0 +msgid "CSS class" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,body:0 +msgid "Body" +msgstr "" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Uporabniki" + +#. module: auth_oauth +#: field:auth.oauth.provider,sequence:0 +msgid "unknown" +msgstr "neznano" + +#. module: auth_oauth +#: field:res.users,oauth_access_token:0 +msgid "OAuth Access Token" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,client_id:0 +#: field:base.config.settings,auth_oauth_facebook_client_id:0 +#: field:base.config.settings,auth_oauth_google_client_id:0 +msgid "Client ID" +msgstr "" + +#. module: auth_oauth +#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers +msgid "OAuth Providers" +msgstr "" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +msgid "OAuth2 provider" +msgstr "" + +#. module: auth_oauth +#: field:res.users,oauth_uid:0 +msgid "OAuth User ID" +msgstr "" + +#. module: auth_oauth +#: field:base.config.settings,auth_oauth_facebook_enabled:0 +msgid "Allow users to sign in with Facebook" +msgstr "" + +#. module: auth_oauth +#: sql_constraint:res.users:0 +msgid "OAuth UID must be unique per provider" +msgstr "" + +#. module: auth_oauth +#: help:res.users,oauth_uid:0 +msgid "Oauth Provider user_id" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,data_endpoint:0 +msgid "Data URL" +msgstr "" + +#. module: auth_oauth +#: view:auth.oauth.provider:0 +msgid "arch" +msgstr "" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "" + +#. module: auth_oauth +#: field:base.config.settings,auth_oauth_google_enabled:0 +msgid "Allow users to sign in with Google" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,enabled:0 +msgid "Allowed" +msgstr "" diff --git a/addons/auth_oauth/i18n/sv.po b/addons/auth_oauth/i18n/sv.po new file mode 100644 index 00000000000..29baeaebdc2 --- /dev/null +++ b/addons/auth_oauth/i18n/sv.po @@ -0,0 +1,135 @@ +# Swedish translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-19 00:18+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-20 04:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: auth_oauth +#: field:auth.oauth.provider,validation_endpoint:0 +msgid "Validation URL" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,auth_endpoint:0 +msgid "Authentication URL" +msgstr "" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_base_config_settings +msgid "base.config.settings" +msgstr "base.config.settings" + +#. module: auth_oauth +#: field:auth.oauth.provider,name:0 +msgid "Provider name" +msgstr "Leverantörsnamn" + +#. module: auth_oauth +#: field:auth.oauth.provider,scope:0 +msgid "Scope" +msgstr "" + +#. module: auth_oauth +#: field:res.users,oauth_provider_id:0 +msgid "OAuth Provider" +msgstr "OAuth-leverantör" + +#. module: auth_oauth +#: field:auth.oauth.provider,css_class:0 +msgid "CSS class" +msgstr "CSS-klass" + +#. module: auth_oauth +#: field:auth.oauth.provider,body:0 +msgid "Body" +msgstr "" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "Användare" + +#. module: auth_oauth +#: field:auth.oauth.provider,sequence:0 +msgid "unknown" +msgstr "okänd" + +#. module: auth_oauth +#: field:res.users,oauth_access_token:0 +msgid "OAuth Access Token" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,client_id:0 +#: field:base.config.settings,auth_oauth_facebook_client_id:0 +#: field:base.config.settings,auth_oauth_google_client_id:0 +msgid "Client ID" +msgstr "Klient-ID" + +#. module: auth_oauth +#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers +msgid "OAuth Providers" +msgstr "OAuth-leverantörer" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +msgid "OAuth2 provider" +msgstr "OAuth2-leverantör" + +#. module: auth_oauth +#: field:res.users,oauth_uid:0 +msgid "OAuth User ID" +msgstr "OAuth-användar-ID" + +#. module: auth_oauth +#: field:base.config.settings,auth_oauth_facebook_enabled:0 +msgid "Allow users to sign in with Facebook" +msgstr "Tillåt användare att logga in med hjälp av Facebook" + +#. module: auth_oauth +#: sql_constraint:res.users:0 +msgid "OAuth UID must be unique per provider" +msgstr "" + +#. module: auth_oauth +#: help:res.users,oauth_uid:0 +msgid "Oauth Provider user_id" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,data_endpoint:0 +msgid "Data URL" +msgstr "Data-URL" + +#. module: auth_oauth +#: view:auth.oauth.provider:0 +msgid "arch" +msgstr "" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "Leverantörer" + +#. module: auth_oauth +#: field:base.config.settings,auth_oauth_google_enabled:0 +msgid "Allow users to sign in with Google" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,enabled:0 +msgid "Allowed" +msgstr "" diff --git a/addons/auth_oauth/i18n/zh_CN.po b/addons/auth_oauth/i18n/zh_CN.po index a82f8fb2720..8113fd4de2e 100644 --- a/addons/auth_oauth/i18n/zh_CN.po +++ b/addons/auth_oauth/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-28 14:27+0000\n" "Last-Translator: ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:54+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/static/src/js/auth_oauth.js b/addons/auth_oauth/static/src/js/auth_oauth.js index c24dab3d55a..7ee83bd99e9 100644 --- a/addons/auth_oauth/static/src/js/auth_oauth.js +++ b/addons/auth_oauth/static/src/js/auth_oauth.js @@ -28,9 +28,14 @@ openerp.auth_oauth = function(instance) { }, on_oauth_loaded: function(result) { this.oauth_providers = result; - this.$('.oe_oauth_provider_login_button').remove(); - var buttons = QWeb.render("auth_oauth.Login.button",{"widget":this}); - this.$(".oe_login_pane form ul").after(buttons); + var params = $.deparam($.param.querystring()); + if (this.oauth_providers.length === 1 && params.type === 'signup') { + this.do_oauth_sign_in(this.oauth_providers[0]); + } else { + this.$('.oe_oauth_provider_login_button').remove(); + var buttons = QWeb.render("auth_oauth.Login.button",{"widget":this}); + this.$(".oe_login_pane form ul").after(buttons); + } }, on_oauth_sign_in: function(ev) { ev.preventDefault(); diff --git a/addons/auth_oauth_signup/i18n/auth_oauth_signup.pot b/addons/auth_oauth_signup/i18n/auth_oauth_signup.pot new file mode 100644 index 00000000000..d4c0a829a7b --- /dev/null +++ b/addons/auth_oauth_signup/i18n/auth_oauth_signup.pot @@ -0,0 +1,22 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * auth_oauth_signup +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 7.0alpha\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: auth_oauth_signup +#: model:ir.model,name:auth_oauth_signup.model_res_users +msgid "Users" +msgstr "" + diff --git a/addons/auth_oauth_signup/i18n/de.po b/addons/auth_oauth_signup/i18n/de.po new file mode 100644 index 00000000000..a63a3db8de4 --- /dev/null +++ b/addons/auth_oauth_signup/i18n/de.po @@ -0,0 +1,23 @@ +# German translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-27 22:22+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-28 05:11+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_oauth_signup +#: model:ir.model,name:auth_oauth_signup.model_res_users +msgid "Users" +msgstr "" diff --git a/addons/auth_oauth_signup/i18n/es.po b/addons/auth_oauth_signup/i18n/es.po new file mode 100644 index 00000000000..261b45e1da4 --- /dev/null +++ b/addons/auth_oauth_signup/i18n/es.po @@ -0,0 +1,23 @@ +# Spanish translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-27 11:38+0000\n" +"Last-Translator: Pedro Manuel Baeza \n" +"Language-Team: Spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-28 05:11+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_oauth_signup +#: model:ir.model,name:auth_oauth_signup.model_res_users +msgid "Users" +msgstr "Usuarios" diff --git a/addons/auth_oauth_signup/i18n/fr.po b/addons/auth_oauth_signup/i18n/fr.po new file mode 100644 index 00000000000..0153154fcce --- /dev/null +++ b/addons/auth_oauth_signup/i18n/fr.po @@ -0,0 +1,23 @@ +# French translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-29 16:08+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-30 05:20+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_oauth_signup +#: model:ir.model,name:auth_oauth_signup.model_res_users +msgid "Users" +msgstr "" diff --git a/addons/auth_oauth_signup/i18n/hr.po b/addons/auth_oauth_signup/i18n/hr.po new file mode 100644 index 00000000000..3571d43c59c --- /dev/null +++ b/addons/auth_oauth_signup/i18n/hr.po @@ -0,0 +1,23 @@ +# Croatian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-24 12:30+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Croatian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-25 05:24+0000\n" +"X-Generator: Launchpad (build 16445)\n" + +#. module: auth_oauth_signup +#: model:ir.model,name:auth_oauth_signup.model_res_users +msgid "Users" +msgstr "Korisnici" diff --git a/addons/auth_oauth_signup/i18n/it.po b/addons/auth_oauth_signup/i18n/it.po new file mode 100644 index 00000000000..098f170a2a8 --- /dev/null +++ b/addons/auth_oauth_signup/i18n/it.po @@ -0,0 +1,23 @@ +# Italian translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-27 09:12+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-28 05:11+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_oauth_signup +#: model:ir.model,name:auth_oauth_signup.model_res_users +msgid "Users" +msgstr "Utenti" diff --git a/addons/auth_oauth_signup/i18n/nl.po b/addons/auth_oauth_signup/i18n/nl.po new file mode 100644 index 00000000000..2add92691ee --- /dev/null +++ b/addons/auth_oauth_signup/i18n/nl.po @@ -0,0 +1,23 @@ +# Dutch translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-27 09:12+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-28 05:11+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_oauth_signup +#: model:ir.model,name:auth_oauth_signup.model_res_users +msgid "Users" +msgstr "Gebruikers" diff --git a/addons/auth_oauth_signup/i18n/pt.po b/addons/auth_oauth_signup/i18n/pt.po new file mode 100644 index 00000000000..d1e3d1fbc8a --- /dev/null +++ b/addons/auth_oauth_signup/i18n/pt.po @@ -0,0 +1,23 @@ +# Portuguese translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-08 17:56+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-09 05:02+0000\n" +"X-Generator: Launchpad (build 16412)\n" + +#. module: auth_oauth_signup +#: model:ir.model,name:auth_oauth_signup.model_res_users +msgid "Users" +msgstr "Utilizadores" diff --git a/addons/auth_oauth_signup/i18n/pt_BR.po b/addons/auth_oauth_signup/i18n/pt_BR.po new file mode 100644 index 00000000000..9bbee0653f7 --- /dev/null +++ b/addons/auth_oauth_signup/i18n/pt_BR.po @@ -0,0 +1,23 @@ +# Brazilian Portuguese translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-02 11:56+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Brazilian Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-03 04:48+0000\n" +"X-Generator: Launchpad (build 16393)\n" + +#. module: auth_oauth_signup +#: model:ir.model,name:auth_oauth_signup.model_res_users +msgid "Users" +msgstr "Usuários" diff --git a/addons/auth_oauth_signup/i18n/ro.po b/addons/auth_oauth_signup/i18n/ro.po new file mode 100644 index 00000000000..c1ec7b191aa --- /dev/null +++ b/addons/auth_oauth_signup/i18n/ro.po @@ -0,0 +1,23 @@ +# Romanian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-14 19:07+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-15 04:47+0000\n" +"X-Generator: Launchpad (build 16420)\n" + +#. module: auth_oauth_signup +#: model:ir.model,name:auth_oauth_signup.model_res_users +msgid "Users" +msgstr "Utilizatori" diff --git a/addons/auth_oauth_signup/i18n/sl.po b/addons/auth_oauth_signup/i18n/sl.po new file mode 100644 index 00000000000..e5040653d93 --- /dev/null +++ b/addons/auth_oauth_signup/i18n/sl.po @@ -0,0 +1,23 @@ +# Slovenian translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-30 09:36+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-31 04:40+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_oauth_signup +#: model:ir.model,name:auth_oauth_signup.model_res_users +msgid "Users" +msgstr "Uporabniki" diff --git a/addons/auth_oauth_signup/i18n/sv.po b/addons/auth_oauth_signup/i18n/sv.po new file mode 100644 index 00000000000..5ac491cdd05 --- /dev/null +++ b/addons/auth_oauth_signup/i18n/sv.po @@ -0,0 +1,23 @@ +# Swedish translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-17 23:47+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-19 05:22+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: auth_oauth_signup +#: model:ir.model,name:auth_oauth_signup.model_res_users +msgid "Users" +msgstr "Användare" diff --git a/addons/auth_oauth_signup/i18n/zh_CN.po b/addons/auth_oauth_signup/i18n/zh_CN.po new file mode 100644 index 00000000000..372028e04ba --- /dev/null +++ b/addons/auth_oauth_signup/i18n/zh_CN.po @@ -0,0 +1,23 @@ +# Chinese (Simplified) translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-02 10:59+0000\n" +"Last-Translator: Oliver Yuan \n" +"Language-Team: Chinese (Simplified) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-03 04:48+0000\n" +"X-Generator: Launchpad (build 16393)\n" + +#. module: auth_oauth_signup +#: model:ir.model,name:auth_oauth_signup.model_res_users +msgid "Users" +msgstr "用户" diff --git a/addons/auth_openid/controllers/main.py b/addons/auth_openid/controllers/main.py index be59b9ae5b5..1fcc34c82a0 100644 --- a/addons/auth_openid/controllers/main.py +++ b/addons/auth_openid/controllers/main.py @@ -46,7 +46,18 @@ oidutil.log = _logger.debug def get_system_user(): """Return system user info string, such as USERNAME-EUID""" - info = getpass.getuser() + try: + info = getpass.getuser() + except ImportError: + if os.name == 'nt': + # when there is no 'USERNAME' in environment, getpass.getuser() + # fail when trying to import 'pwd' module - which is unix only. + # In that case we have to fallback to real win32 API. + import win32api + info = win32api.GetUserName() + else: + raise + euid = getattr(os, 'geteuid', None) # Non available on some platforms if euid is not None: info = '%s-%d' % (info, euid()) diff --git a/addons/auth_openid/i18n/ar.po b/addons/auth_openid/i18n/ar.po index 22ce0dda9a9..31d0a6bbb94 100644 --- a/addons/auth_openid/i18n/ar.po +++ b/addons/auth_openid/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-01 18:05+0000\n" "Last-Translator: kifcaliph \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: 2012-12-04 05:54+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/auth_openid.pot b/addons/auth_openid/i18n/auth_openid.pot index 5083faea045..74148eaee95 100644 --- a/addons/auth_openid/i18n/auth_openid.pot +++ b/addons/auth_openid/i18n/auth_openid.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" -"PO-Revision-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auth_openid/i18n/de.po b/addons/auth_openid/i18n/de.po index 10330c21691..185b16af477 100644 --- a/addons/auth_openid/i18n/de.po +++ b/addons/auth_openid/i18n/de.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-04 07:24+0000\n" "Last-Translator: Ferdinand @ Camptocamp \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-05 05:20+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/es.po b/addons/auth_openid/i18n/es.po index 78c23035bb4..fd36ca5ef86 100644 --- a/addons/auth_openid/i18n/es.po +++ b/addons/auth_openid/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-10 21:46+0000\n" "Last-Translator: lambdasoftware \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-11 04:49+0000\n" -"X-Generator: Launchpad (build 16356)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/es_CR.po b/addons/auth_openid/i18n/es_CR.po index 5c1dc0de513..9b6b420fdef 100644 --- a/addons/auth_openid/i18n/es_CR.po +++ b/addons/auth_openid/i18n/es_CR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-15 16:48+0000\n" "Last-Translator: Freddy Gonzalez \n" "Language-Team: Spanish (Costa Rica) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:54+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/fi.po b/addons/auth_openid/i18n/fi.po index 1e62d136070..634963db0e6 100644 --- a/addons/auth_openid/i18n/fi.po +++ b/addons/auth_openid/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-03-30 09:57+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:54+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/fr.po b/addons/auth_openid/i18n/fr.po index 700cecf965b..2ff57534f59 100644 --- a/addons/auth_openid/i18n/fr.po +++ b/addons/auth_openid/i18n/fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-04 10:02+0000\n" "Last-Translator: WANTELLET Sylvain \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-05 05:20+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/gu.po b/addons/auth_openid/i18n/gu.po index 7ff4e5e9b1e..891c4f01ca2 100644 --- a/addons/auth_openid/i18n/gu.po +++ b/addons/auth_openid/i18n/gu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-31 11:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Gujarati \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:54+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/hr.po b/addons/auth_openid/i18n/hr.po index 777ad73a39f..e385bb71357 100644 --- a/addons/auth_openid/i18n/hr.po +++ b/addons/auth_openid/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 15:13+0000\n" "Last-Translator: Goran Kliska \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/it.po b/addons/auth_openid/i18n/it.po index 2b4289395d0..b4269d05c8f 100644 --- a/addons/auth_openid/i18n/it.po +++ b/addons/auth_openid/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 07:47+0000\n" "Last-Translator: Nicola Riolini - Micronaet \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/ja.po b/addons/auth_openid/i18n/ja.po index a6d712c1b5a..5c575672a3e 100644 --- a/addons/auth_openid/i18n/ja.po +++ b/addons/auth_openid/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-19 03:56+0000\n" "Last-Translator: Akira Hiyama \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:54+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/nb.po b/addons/auth_openid/i18n/nb.po index 1520a492664..a7701a1a189 100644 --- a/addons/auth_openid/i18n/nb.po +++ b/addons/auth_openid/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-07-25 09:59+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:54+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/nl.po b/addons/auth_openid/i18n/nl.po index ac8eb64a147..950662587e4 100644 --- a/addons/auth_openid/i18n/nl.po +++ b/addons/auth_openid/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-24 18:23+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:54+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/pl.po b/addons/auth_openid/i18n/pl.po index e13ab73efa1..c5cab1c0814 100644 --- a/addons/auth_openid/i18n/pl.po +++ b/addons/auth_openid/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-10-25 17:11+0000\n" "Last-Translator: FULL NAME \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: 2012-12-04 05:54+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/pt.po b/addons/auth_openid/i18n/pt.po index 5ef8e08c809..18ee941a154 100644 --- a/addons/auth_openid/i18n/pt.po +++ b/addons/auth_openid/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 15:30+0000\n" "Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/pt_BR.po b/addons/auth_openid/i18n/pt_BR.po index 4e34e7a3971..59880a2ff92 100644 --- a/addons/auth_openid/i18n/pt_BR.po +++ b/addons/auth_openid/i18n/pt_BR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-10 15:27+0000\n" "Last-Translator: Projetaty Soluções OpenSource \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-11 04:49+0000\n" -"X-Generator: Launchpad (build 16356)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/ro.po b/addons/auth_openid/i18n/ro.po index fca3165a346..229a1eef20a 100644 --- a/addons/auth_openid/i18n/ro.po +++ b/addons/auth_openid/i18n/ro.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" -"PO-Revision-Date: 2012-05-21 17:32+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-18 07:05+0000\n" +"Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:54+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_openid #. openerp-web @@ -94,7 +94,7 @@ msgstr "Google Apps" #. module: auth_openid #: model:ir.model,name:auth_openid.model_res_users msgid "Users" -msgstr "" +msgstr "Utilizatori" #~ msgid "res.users" #~ msgstr "res.utilizatori" diff --git a/addons/auth_openid/i18n/sk.po b/addons/auth_openid/i18n/sk.po index 7c43b7760a4..325b7de2ec9 100644 --- a/addons/auth_openid/i18n/sk.po +++ b/addons/auth_openid/i18n/sk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-06-09 09:35+0000\n" "Last-Translator: FULL NAME \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: 2012-12-04 05:54+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sl.po b/addons/auth_openid/i18n/sl.po new file mode 100644 index 00000000000..c2805fec816 --- /dev/null +++ b/addons/auth_openid/i18n/sl.po @@ -0,0 +1,97 @@ +# Slovenian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-01 22:07+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-02 04:37+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_openid +#. openerp-web +#: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 +#, python-format +msgid "Username" +msgstr "Uporabniško ime" + +#. module: auth_openid +#. openerp-web +#: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 +#: view:res.users:0 +#, python-format +msgid "OpenID" +msgstr "OpenID" + +#. module: auth_openid +#. openerp-web +#: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 +#: field:res.users,openid_url:0 +#, python-format +msgid "OpenID URL" +msgstr "OpenID URL" + +#. module: auth_openid +#. openerp-web +#: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 +#: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 +#, python-format +msgid "Google" +msgstr "Google" + +#. module: auth_openid +#. openerp-web +#: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 +#, python-format +msgid "Launchpad" +msgstr "Launchpad" + +#. module: auth_openid +#: help:res.users,openid_email:0 +msgid "Used for disambiguation in case of a shared OpenID URL" +msgstr "Used for disambiguation in case of a shared OpenID URL" + +#. module: auth_openid +#. openerp-web +#: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 +#, python-format +msgid "Google Apps Domain" +msgstr "Google Apps Domain" + +#. module: auth_openid +#: field:res.users,openid_email:0 +msgid "OpenID Email" +msgstr "OpenID Email" + +#. module: auth_openid +#: field:res.users,openid_key:0 +msgid "OpenID Key" +msgstr "OpenID Key" + +#. module: auth_openid +#. openerp-web +#: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 +#, python-format +msgid "Password" +msgstr "Geslo" + +#. module: auth_openid +#. openerp-web +#: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 +#, python-format +msgid "Google Apps" +msgstr "Google Apps" + +#. module: auth_openid +#: model:ir.model,name:auth_openid.model_res_users +msgid "Users" +msgstr "Uporabniki" diff --git a/addons/auth_openid/i18n/sr@latin.po b/addons/auth_openid/i18n/sr@latin.po index 2d37e6a5539..274740d3a44 100644 --- a/addons/auth_openid/i18n/sr@latin.po +++ b/addons/auth_openid/i18n/sr@latin.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-04-05 15:20+0000\n" "Last-Translator: Milan Milosevic \n" "Language-Team: Serbian Latin \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:54+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sv.po b/addons/auth_openid/i18n/sv.po index e8a34a6ff38..45c887f7e80 100644 --- a/addons/auth_openid/i18n/sv.po +++ b/addons/auth_openid/i18n/sv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-06-04 10:13+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:54+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/tr.po b/addons/auth_openid/i18n/tr.po index 57e7996fb14..d6239e174e2 100644 --- a/addons/auth_openid/i18n/tr.po +++ b/addons/auth_openid/i18n/tr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-27 22:07+0000\n" "Last-Translator: Ahmet Altınışık \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:54+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/zh_CN.po b/addons/auth_openid/i18n/zh_CN.po index 57d2583de4e..f40c927c475 100644 --- a/addons/auth_openid/i18n/zh_CN.po +++ b/addons/auth_openid/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:02+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-24 15:15+0000\n" "Last-Translator: ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:54+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:06+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_signup/i18n/ar.po b/addons/auth_signup/i18n/ar.po index 90814343ae6..a4629cfef16 100644 --- a/addons/auth_signup/i18n/ar.po +++ b/addons/auth_signup/i18n/ar.po @@ -7,15 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-04 14:41+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-01 11:08+0000\n" "Last-Translator: FULL NAME \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: 2012-12-05 05:20+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_signup +#: field:res.partner,signup_type:0 +msgid "Signup Token Type" +msgstr "" #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 @@ -40,7 +45,7 @@ msgid "base.config.settings" msgstr "" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:248 +#: code:addons/auth_signup/res_users.py:252 #, python-format msgid "Cannot send email: user has no email address." msgstr "" @@ -64,7 +69,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 #, python-format msgid "Please enter a password and confirm it." msgstr "" @@ -86,6 +91,12 @@ msgstr "" msgid "New" msgstr "" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:258 +#, python-format +msgid "Mail sent to:" +msgstr "" + #. module: auth_signup #: field:res.users,state:0 msgid "Status" @@ -106,7 +117,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 #, python-format msgid "Please enter a name." msgstr "" @@ -123,7 +134,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 #, python-format msgid "Please enter a username." msgstr "" @@ -133,6 +144,14 @@ msgstr "" msgid "Active" msgstr "" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:256 +#, python-format +msgid "" +"Cannot send email: no outgoing email server configured.\n" +"You can configure it under Settings/General Settings." +msgstr "" + #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 @@ -149,7 +168,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -190,35 +209,35 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Login" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:99 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 #, python-format msgid "Passwords do not match; please retype them." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 #, python-format msgid "No database selected !" msgstr "" diff --git a/addons/auth_signup/i18n/auth_signup.pot b/addons/auth_signup/i18n/auth_signup.pot index bde3b33684e..31d88438373 100644 --- a/addons/auth_signup/i18n/auth_signup.pot +++ b/addons/auth_signup/i18n/auth_signup.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-04 14:41+0000\n" -"PO-Revision-Date: 2012-12-04 14:41+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: auth_signup +#: field:res.partner,signup_type:0 +msgid "Signup Token Type" +msgstr "" + #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 msgid "Allow external users to sign up" @@ -38,7 +43,7 @@ msgid "base.config.settings" msgstr "" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:248 +#: code:addons/auth_signup/res_users.py:252 #, python-format msgid "Cannot send email: user has no email address." msgstr "" @@ -62,7 +67,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 #, python-format msgid "Please enter a password and confirm it." msgstr "" @@ -84,6 +89,12 @@ msgstr "" msgid "New" msgstr "" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:258 +#, python-format +msgid "Mail sent to:" +msgstr "" + #. module: auth_signup #: field:res.users,state:0 msgid "Status" @@ -101,7 +112,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 #, python-format msgid "Please enter a name." msgstr "" @@ -118,7 +129,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 #, python-format msgid "Please enter a username." msgstr "" @@ -128,6 +139,13 @@ msgstr "" msgid "Active" msgstr "" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:256 +#, python-format +msgid "Cannot send email: no outgoing email server configured.\n" +"You can configure it under Settings/General Settings." +msgstr "" + #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 @@ -144,7 +162,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -185,35 +203,35 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Login" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:99 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 #, python-format msgid "Passwords do not match; please retype them." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 #, python-format msgid "No database selected !" msgstr "" diff --git a/addons/auth_signup/i18n/de.po b/addons/auth_signup/i18n/de.po new file mode 100644 index 00000000000..8368274cb1b --- /dev/null +++ b/addons/auth_signup/i18n/de.po @@ -0,0 +1,287 @@ +# German translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-19 14:58+0000\n" +"Last-Translator: Ferdinand @ Camptocamp \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_signup +#: field:res.partner,signup_type:0 +msgid "Signup Token Type" +msgstr "" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_uninvited:0 +msgid "Allow external users to sign up" +msgstr "Erlaube Login von externen Benutzern" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#, python-format +msgid "Confirm Password" +msgstr "Passwort bestätigen" + +#. module: auth_signup +#: help:base.config.settings,auth_signup_uninvited:0 +msgid "If unchecked, only invited users may sign up." +msgstr "Falls leer, dürfen nur eingeladene Benutzer einloggen" + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_base_config_settings +msgid "base.config.settings" +msgstr "base.config.settings" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:252 +#, python-format +msgid "Cannot send email: user has no email address." +msgstr "Kann keine EMail senden, weil der Benutzer keine EMail Adresse hat" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 +#, python-format +msgid "Reset password" +msgstr "Passwort zurücksetzen" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_template_user_id:0 +msgid "Template user for new users created through signup" +msgstr "Vorlage Benutzer für neu Benutzer" + +#. module: auth_signup +#: model:email.template,subject:auth_signup.reset_password_email +msgid "Password reset" +msgstr "Passwort zurücksetzen" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#, python-format +msgid "Please enter a password and confirm it." +msgstr "Bitte ein Passwort eintragen und bestätigen" + +#. module: auth_signup +#: view:res.users:0 +msgid "Send an email to the user to (re)set their password." +msgstr "" +"Sende eine Mail an den Benutzer um das Passwort zu setzen oder zurückzusetzen" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 +#, python-format +msgid "Sign Up" +msgstr "Anmelden" + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "New" +msgstr "Neu" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:258 +#, python-format +msgid "Mail sent to:" +msgstr "" + +#. module: auth_signup +#: field:res.users,state:0 +msgid "Status" +msgstr "Status" + +#. module: auth_signup +#: model:email.template,body_html:auth_signup.reset_password_email +msgid "" +"\n" +"

A password reset was requested for the OpenERP account linked to this " +"email.

\n" +"\n" +"

You may change your password by following this link.

\n" +"\n" +"

Note: If you do not expect this, you can safely ignore this email.

" +msgstr "" +"\n" +"

Ein Zurücksetzen des Passwortes für diese EMail-Adresse wurde verlangt " +".

\n" +"\n" +"

Sie können das Passwort mit diesem Link zurücksetzen.

\n" +"\n" +"

Anmerkung: Wenn Sie dieses Mail nicht erwartet/beantragt habe, könne Sie " +"es einfach ignorieren

" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#, python-format +msgid "Please enter a name." +msgstr "Bitte geben Sie einen Namen ein." + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_res_users +msgid "Users" +msgstr "Benutzer" + +#. module: auth_signup +#: field:res.partner,signup_url:0 +msgid "Signup URL" +msgstr "Registrierungs URL" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#, python-format +msgid "Please enter a username." +msgstr "Bitte Benutzernamen eingeben." + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "Active" +msgstr "Aktiv" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:256 +#, python-format +msgid "" +"Cannot send email: no outgoing email server configured.\n" +"You can configure it under Settings/General Settings." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 +#, python-format +msgid "Username" +msgstr "Benutzername" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:8 +#, python-format +msgid "Name" +msgstr "Name" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 +#, python-format +msgid "Please enter a username or email address." +msgstr "Bitte Benutzername oder EMail Adresse eingeben" + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "Resetting Password" +msgstr "Passwort zurücksetzen" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:13 +#, python-format +msgid "Username (Email)" +msgstr "Benutzername (EMail)" + +#. module: auth_signup +#: field:res.partner,signup_expiration:0 +msgid "Signup Expiration" +msgstr "Ablauf der Registritung" + +#. module: auth_signup +#: help:base.config.settings,auth_signup_reset_password:0 +msgid "This allows users to trigger a password reset from the Login page." +msgstr "Dies erlaubt Benutzern ein Zurücksetzen des Passwortes zu verlangen." + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:21 +#, python-format +msgid "Log in" +msgstr "Login" + +#. module: auth_signup +#: field:res.partner,signup_valid:0 +msgid "Signup Token is Valid" +msgstr "Anmeldungs Token ist gültig" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 +#, python-format +msgid "Login" +msgstr "Login" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:99 +#, python-format +msgid "Invalid signup token" +msgstr "Anmeldungs Token ist ungültig" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#, python-format +msgid "Passwords do not match; please retype them." +msgstr "Passworte stimmen nicht überein, bitte neu eingeben" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#, python-format +msgid "No database selected !" +msgstr "Keine Datenbank ausgewählt-" + +#. module: auth_signup +#: view:res.users:0 +msgid "Reset Password" +msgstr "Passwort zurücksetzen" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_reset_password:0 +msgid "Enable password reset from Login page" +msgstr "Erlaube Passwort zurücksetzen von der Login-Seite" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 +#, python-format +msgid "Back to Login" +msgstr "Zurück zur Anmeldung" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#, python-format +msgid "Sign up" +msgstr "Registrieren" + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: auth_signup +#: field:res.partner,signup_token:0 +msgid "Signup Token" +msgstr "Anmelde Token" diff --git a/addons/auth_signup/i18n/es.po b/addons/auth_signup/i18n/es.po index 247758371ea..0ac808e9e44 100644 --- a/addons/auth_signup/i18n/es.po +++ b/addons/auth_signup/i18n/es.po @@ -7,15 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-04 14:41+0000\n" -"PO-Revision-Date: 2012-12-11 14:32+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-24 10:04+0000\n" "Last-Translator: Pedro Manuel Baeza \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-25 04:48+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_signup +#: field:res.partner,signup_type:0 +msgid "Signup Token Type" +msgstr "Tipo de la palabra de ingreso" #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 @@ -40,7 +45,7 @@ msgid "base.config.settings" msgstr "Parámetros de configuración base" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:248 +#: code:addons/auth_signup/res_users.py:252 #, python-format msgid "Cannot send email: user has no email address." msgstr "" @@ -67,7 +72,7 @@ msgstr "Restablecer contraseña" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 #, python-format msgid "Please enter a password and confirm it." msgstr "Por favor introduzca una contraseña y confírmela." @@ -89,6 +94,12 @@ msgstr "Registro" msgid "New" msgstr "Nuevo" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:258 +#, python-format +msgid "Mail sent to:" +msgstr "Correo enviado a:" + #. module: auth_signup #: field:res.users,state:0 msgid "Status" @@ -118,7 +129,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 #, python-format msgid "Please enter a name." msgstr "Por favor, introduzca un nombre." @@ -135,7 +146,7 @@ msgstr "URL de ingreso" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 #, python-format msgid "Please enter a username." msgstr "Por favor, introduzca un nombre de usuario." @@ -145,6 +156,17 @@ msgstr "Por favor, introduzca un nombre de usuario." msgid "Active" msgstr "Activo" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:256 +#, python-format +msgid "" +"Cannot send email: no outgoing email server configured.\n" +"You can configure it under Settings/General Settings." +msgstr "" +"No se puede enviar el correo electrónico: no se ha configurado servidor de " +"correo saliente.\n" +"Puede configurarlo en Configuración / Configuración general." + #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 @@ -161,7 +183,7 @@ msgstr "Nombre" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -205,35 +227,35 @@ msgstr "La palabra de ingreso es válida" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Login" msgstr "Inicio de sesión" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:99 #, python-format msgid "Invalid signup token" msgstr "Palabra de ingreso no válida" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 #, python-format msgid "Passwords do not match; please retype them." msgstr "Las contraseñas no coinciden. Por favor vuelva a teclearlas." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 #, python-format msgid "No database selected !" msgstr "¡No se ha seleccionado ninguna base de datos!" diff --git a/addons/auth_signup/i18n/fr.po b/addons/auth_signup/i18n/fr.po new file mode 100644 index 00000000000..deb48c21c4c --- /dev/null +++ b/addons/auth_signup/i18n/fr.po @@ -0,0 +1,294 @@ +# French translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 13:39+0000\n" +"Last-Translator: Nicolas JEUDY \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_signup +#: field:res.partner,signup_type:0 +msgid "Signup Token Type" +msgstr "" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_uninvited:0 +msgid "Allow external users to sign up" +msgstr "Autorise les utilisateurs externes à se connecter" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#, python-format +msgid "Confirm Password" +msgstr "Confirmez le mot de passe" + +#. module: auth_signup +#: help:base.config.settings,auth_signup_uninvited:0 +msgid "If unchecked, only invited users may sign up." +msgstr "" +"Si la case est décochée, seules les utilisateurs invités pourront se " +"connecter." + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_base_config_settings +msgid "base.config.settings" +msgstr "base.config.settings" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:252 +#, python-format +msgid "Cannot send email: user has no email address." +msgstr "" +"Impossible d'envoyer l'e-mail : l'utilisateur n'a pas d'adresse e-mail." + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 +#, python-format +msgid "Reset password" +msgstr "Réinitialiser le mot de passe" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_template_user_id:0 +msgid "Template user for new users created through signup" +msgstr "" +"Utilisateur modèle pour les nouveaux utilisateurs créés à travers signup" + +#. module: auth_signup +#: model:email.template,subject:auth_signup.reset_password_email +msgid "Password reset" +msgstr "Réinitialisation du mot de passe" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#, python-format +msgid "Please enter a password and confirm it." +msgstr "Veuillez entrer un mot de passe et le confirmer" + +#. module: auth_signup +#: view:res.users:0 +msgid "Send an email to the user to (re)set their password." +msgstr "" +"Envoyer un e-mail à l'utilisateurs pour (ré-)initialiser son mot de passe." + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 +#, python-format +msgid "Sign Up" +msgstr "S'inscrire" + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "New" +msgstr "Nouveau" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:258 +#, python-format +msgid "Mail sent to:" +msgstr "" + +#. module: auth_signup +#: field:res.users,state:0 +msgid "Status" +msgstr "Statut" + +#. module: auth_signup +#: model:email.template,body_html:auth_signup.reset_password_email +msgid "" +"\n" +"

A password reset was requested for the OpenERP account linked to this " +"email.

\n" +"\n" +"

You may change your password by following this link.

\n" +"\n" +"

Note: If you do not expect this, you can safely ignore this email.

" +msgstr "" +"\n" +"

Une demande de ré-initialisation de mot de passe sur le compte OpenERP " +"associé à cet email.

\n" +"\n" +"

Vous pouvez changer votre mot de passe en utilisant ce lien.

\n" +"\n" +"

Note: vous pouvez ignorer ce mail si vous ne souhaitez pas changer votre " +"mot de passe.

" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#, python-format +msgid "Please enter a name." +msgstr "Veuillez entrer un nom." + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_res_users +msgid "Users" +msgstr "Utilisateurs" + +#. module: auth_signup +#: field:res.partner,signup_url:0 +msgid "Signup URL" +msgstr "Url d'authentification" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#, python-format +msgid "Please enter a username." +msgstr "Merci de saisir votre nom d'utilisateur" + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "Active" +msgstr "Activer" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:256 +#, python-format +msgid "" +"Cannot send email: no outgoing email server configured.\n" +"You can configure it under Settings/General Settings." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 +#, python-format +msgid "Username" +msgstr "Nom d'utilisateur" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:8 +#, python-format +msgid "Name" +msgstr "Nom" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 +#, python-format +msgid "Please enter a username or email address." +msgstr "Merci de saisir votre nom d'utilisateur ou une adresse email" + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "Resetting Password" +msgstr "Réinitialiser le mot de passe" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:13 +#, python-format +msgid "Username (Email)" +msgstr "Utilisateur (Email)" + +#. module: auth_signup +#: field:res.partner,signup_expiration:0 +msgid "Signup Expiration" +msgstr "Expiration de la session de connexion" + +#. module: auth_signup +#: help:base.config.settings,auth_signup_reset_password:0 +msgid "This allows users to trigger a password reset from the Login page." +msgstr "" +"Permet à l'utilisateur de demander un changement de mot de passe depuis la " +"page d'identification." + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:21 +#, python-format +msgid "Log in" +msgstr "Ouverture de session" + +#. module: auth_signup +#: field:res.partner,signup_valid:0 +msgid "Signup Token is Valid" +msgstr "La session d'authentification est valide" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 +#, python-format +msgid "Login" +msgstr "Identifiant" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:99 +#, python-format +msgid "Invalid signup token" +msgstr "La session d'authentification est invalide" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#, python-format +msgid "Passwords do not match; please retype them." +msgstr "Les mot des passes ne correspondent pas; merci de les resaisir." + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#, python-format +msgid "No database selected !" +msgstr "Aucune base de données sélectionnée !" + +#. module: auth_signup +#: view:res.users:0 +msgid "Reset Password" +msgstr "Réinitialiser le mot de passe" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_reset_password:0 +msgid "Enable password reset from Login page" +msgstr "" +"Permettre la réinitialisation du mot de passe depuis la page de connexion" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 +#, python-format +msgid "Back to Login" +msgstr "Retour à la fenêtre de connexion" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#, python-format +msgid "Sign up" +msgstr "S'enregistrer" + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_res_partner +msgid "Partner" +msgstr "Partenaire" + +#. module: auth_signup +#: field:res.partner,signup_token:0 +msgid "Signup Token" +msgstr "Session de connexion" diff --git a/addons/auth_signup/i18n/hr.po b/addons/auth_signup/i18n/hr.po index a95bba3f1c3..968570ac79b 100644 --- a/addons/auth_signup/i18n/hr.po +++ b/addons/auth_signup/i18n/hr.po @@ -7,15 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-04 14:41+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-09 19:58+0000\n" "Last-Translator: Goran Kliska \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-10 04:39+0000\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_signup +#: field:res.partner,signup_type:0 +msgid "Signup Token Type" +msgstr "" #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 @@ -40,7 +45,7 @@ msgid "base.config.settings" msgstr "" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:248 +#: code:addons/auth_signup/res_users.py:252 #, python-format msgid "Cannot send email: user has no email address." msgstr "Korisnik nema e-mail adresu." @@ -64,7 +69,7 @@ msgstr "Promjena lozinke" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 #, python-format msgid "Please enter a password and confirm it." msgstr "Molim upišite lozinku i potvrdu." @@ -86,6 +91,12 @@ msgstr "" msgid "New" msgstr "Nova(i)" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:258 +#, python-format +msgid "Mail sent to:" +msgstr "" + #. module: auth_signup #: field:res.users,state:0 msgid "Status" @@ -106,7 +117,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 #, python-format msgid "Please enter a name." msgstr "Unesite ime" @@ -123,7 +134,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 #, python-format msgid "Please enter a username." msgstr "Upišite korisničko ime" @@ -133,6 +144,14 @@ msgstr "Upišite korisničko ime" msgid "Active" msgstr "Aktivan" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:256 +#, python-format +msgid "" +"Cannot send email: no outgoing email server configured.\n" +"You can configure it under Settings/General Settings." +msgstr "" + #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 @@ -149,7 +168,7 @@ msgstr "Naziv" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Please enter a username or email address." msgstr "Upišite korisničko ime ili email adresu." @@ -190,35 +209,35 @@ msgstr "Token prijave je ispravan" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Login" msgstr "Prijava" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:99 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 #, python-format msgid "Passwords do not match; please retype them." msgstr "Lozinke nisu iste, pokušajte ponovo." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 #, python-format msgid "No database selected !" msgstr "Nije odabrana baza podataka" diff --git a/addons/auth_signup/i18n/hu.po b/addons/auth_signup/i18n/hu.po new file mode 100644 index 00000000000..2dc026b84f9 --- /dev/null +++ b/addons/auth_signup/i18n/hu.po @@ -0,0 +1,277 @@ +# Hungarian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-11 17:36+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Hungarian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-12 04:55+0000\n" +"X-Generator: Launchpad (build 16420)\n" + +#. module: auth_signup +#: field:res.partner,signup_type:0 +msgid "Signup Token Type" +msgstr "" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_uninvited:0 +msgid "Allow external users to sign up" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#, python-format +msgid "Confirm Password" +msgstr "Jelszó megerõsítése" + +#. module: auth_signup +#: help:base.config.settings,auth_signup_uninvited:0 +msgid "If unchecked, only invited users may sign up." +msgstr "" + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_base_config_settings +msgid "base.config.settings" +msgstr "" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:252 +#, python-format +msgid "Cannot send email: user has no email address." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 +#, python-format +msgid "Reset password" +msgstr "Jelszó visszaállítása" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_template_user_id:0 +msgid "Template user for new users created through signup" +msgstr "" + +#. module: auth_signup +#: model:email.template,subject:auth_signup.reset_password_email +msgid "Password reset" +msgstr "Jelszó visszaállítás" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#, python-format +msgid "Please enter a password and confirm it." +msgstr "Kérem adjon meg egy jelszót és erősítse meg." + +#. module: auth_signup +#: view:res.users:0 +msgid "Send an email to the user to (re)set their password." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 +#, python-format +msgid "Sign Up" +msgstr "Regisztrál" + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "New" +msgstr "Új" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:258 +#, python-format +msgid "Mail sent to:" +msgstr "" + +#. module: auth_signup +#: field:res.users,state:0 +msgid "Status" +msgstr "" + +#. module: auth_signup +#: model:email.template,body_html:auth_signup.reset_password_email +msgid "" +"\n" +"

A password reset was requested for the OpenERP account linked to this " +"email.

\n" +"\n" +"

You may change your password by following this link.

\n" +"\n" +"

Note: If you do not expect this, you can safely ignore this email.

" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#, python-format +msgid "Please enter a name." +msgstr "Kérem adjon meg egy nevet." + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_res_users +msgid "Users" +msgstr "Felhasználók" + +#. module: auth_signup +#: field:res.partner,signup_url:0 +msgid "Signup URL" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#, python-format +msgid "Please enter a username." +msgstr "" + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "Active" +msgstr "Aktív" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:256 +#, python-format +msgid "" +"Cannot send email: no outgoing email server configured.\n" +"You can configure it under Settings/General Settings." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 +#, python-format +msgid "Username" +msgstr "Felhasználónév" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:8 +#, python-format +msgid "Name" +msgstr "Név" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 +#, python-format +msgid "Please enter a username or email address." +msgstr "" + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "Resetting Password" +msgstr "Jelszó visszaállítás" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:13 +#, python-format +msgid "Username (Email)" +msgstr "Felhasználónév (Email)" + +#. module: auth_signup +#: field:res.partner,signup_expiration:0 +msgid "Signup Expiration" +msgstr "" + +#. module: auth_signup +#: help:base.config.settings,auth_signup_reset_password:0 +msgid "This allows users to trigger a password reset from the Login page." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:21 +#, python-format +msgid "Log in" +msgstr "Bejelentkezés" + +#. module: auth_signup +#: field:res.partner,signup_valid:0 +msgid "Signup Token is Valid" +msgstr "Regisztrációs token érvényes" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 +#, python-format +msgid "Login" +msgstr "Bejelentkezés" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:99 +#, python-format +msgid "Invalid signup token" +msgstr "Érvénytelen regisztrációs token" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#, python-format +msgid "Passwords do not match; please retype them." +msgstr "A jelszavak nem egyeznek, kérem ismételje meg." + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#, python-format +msgid "No database selected !" +msgstr "Nincs kiválasztott adatbázis!" + +#. module: auth_signup +#: view:res.users:0 +msgid "Reset Password" +msgstr "" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_reset_password:0 +msgid "Enable password reset from Login page" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 +#, python-format +msgid "Back to Login" +msgstr "Vissza a bejelentkezéshez" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#, python-format +msgid "Sign up" +msgstr "Regisztrál" + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: auth_signup +#: field:res.partner,signup_token:0 +msgid "Signup Token" +msgstr "Regisztrációs token" diff --git a/addons/auth_signup/i18n/it.po b/addons/auth_signup/i18n/it.po index 30a935a8f02..f10f710412a 100644 --- a/addons/auth_signup/i18n/it.po +++ b/addons/auth_signup/i18n/it.po @@ -7,15 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-04 14:41+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 11:51+0000\n" "Last-Translator: Nicola Riolini - Micronaet \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_signup +#: field:res.partner,signup_type:0 +msgid "Signup Token Type" +msgstr "" #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 @@ -40,7 +45,7 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:248 +#: code:addons/auth_signup/res_users.py:252 #, python-format msgid "Cannot send email: user has no email address." msgstr "Non è possibile inviare email: l'utente non ha l'indirizzo impostato" @@ -66,7 +71,7 @@ msgstr "Ripristino password" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 #, python-format msgid "Please enter a password and confirm it." msgstr "Prego inserire una password e confermarla" @@ -88,6 +93,12 @@ msgstr "Registrazione" msgid "New" msgstr "Nuovo" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:258 +#, python-format +msgid "Mail sent to:" +msgstr "" + #. module: auth_signup #: field:res.users,state:0 msgid "Status" @@ -117,7 +128,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 #, python-format msgid "Please enter a name." msgstr "Prego inserire un nome" @@ -134,7 +145,7 @@ msgstr "URL registrazione" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 #, python-format msgid "Please enter a username." msgstr "Prego inserire un username" @@ -144,6 +155,14 @@ msgstr "Prego inserire un username" msgid "Active" msgstr "Attivo" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:256 +#, python-format +msgid "" +"Cannot send email: no outgoing email server configured.\n" +"You can configure it under Settings/General Settings." +msgstr "" + #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 @@ -160,7 +179,7 @@ msgstr "Nome" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Please enter a username or email address." msgstr "Prego inserire un nome utente e un indirizzo mail." @@ -203,35 +222,35 @@ msgstr "Il token di registrazione è valido" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Login" msgstr "Login" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:99 #, python-format msgid "Invalid signup token" msgstr "Il token di registrazione non è valido" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 #, python-format msgid "Passwords do not match; please retype them." msgstr "Le password non corrispondono; prego riscriverle." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 #, python-format msgid "No database selected !" msgstr "Nessun database selezionato!" diff --git a/addons/auth_signup/i18n/nb.po b/addons/auth_signup/i18n/nb.po index be66d178c58..54b43129172 100644 --- a/addons/auth_signup/i18n/nb.po +++ b/addons/auth_signup/i18n/nb.po @@ -7,15 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-04 14:41+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-02 20:32+0000\n" "Last-Translator: Kaare Pettersen \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-05 05:20+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_signup +#: field:res.partner,signup_type:0 +msgid "Signup Token Type" +msgstr "" #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 @@ -40,7 +45,7 @@ msgid "base.config.settings" msgstr "Base.Konfigurasjon.Innstillinger." #. module: auth_signup -#: code:addons/auth_signup/res_users.py:248 +#: code:addons/auth_signup/res_users.py:252 #, python-format msgid "Cannot send email: user has no email address." msgstr "" @@ -64,7 +69,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 #, python-format msgid "Please enter a password and confirm it." msgstr "" @@ -86,6 +91,12 @@ msgstr "Registrer deg." msgid "New" msgstr "Ny." +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:258 +#, python-format +msgid "Mail sent to:" +msgstr "" + #. module: auth_signup #: field:res.users,state:0 msgid "Status" @@ -106,7 +117,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 #, python-format msgid "Please enter a name." msgstr "" @@ -123,7 +134,7 @@ msgstr "Regitrer deg URL." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 #, python-format msgid "Please enter a username." msgstr "" @@ -133,6 +144,14 @@ msgstr "" msgid "Active" msgstr "Aktiv." +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:256 +#, python-format +msgid "" +"Cannot send email: no outgoing email server configured.\n" +"You can configure it under Settings/General Settings." +msgstr "" + #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 @@ -149,7 +168,7 @@ msgstr "Navn." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -190,35 +209,35 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Login" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:99 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 #, python-format msgid "Passwords do not match; please retype them." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 #, python-format msgid "No database selected !" msgstr "" diff --git a/addons/auth_signup/i18n/nl.po b/addons/auth_signup/i18n/nl.po index 96bbebd9134..5ed53ba464a 100644 --- a/addons/auth_signup/i18n/nl.po +++ b/addons/auth_signup/i18n/nl.po @@ -7,15 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-04 14:41+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-04 20:16+0000\n" "Last-Translator: Olivier Dony (OpenERP) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-05 05:20+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_signup +#: field:res.partner,signup_type:0 +msgid "Signup Token Type" +msgstr "" #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 @@ -40,7 +45,7 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:248 +#: code:addons/auth_signup/res_users.py:252 #, python-format msgid "Cannot send email: user has no email address." msgstr "" @@ -64,7 +69,7 @@ msgstr "Reset wachtwoord" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 #, python-format msgid "Please enter a password and confirm it." msgstr "" @@ -86,6 +91,12 @@ msgstr "Aanmelden" msgid "New" msgstr "Nieuw" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:258 +#, python-format +msgid "Mail sent to:" +msgstr "" + #. module: auth_signup #: field:res.users,state:0 msgid "Status" @@ -106,7 +117,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 #, python-format msgid "Please enter a name." msgstr "" @@ -123,7 +134,7 @@ msgstr "URL voor aanmelden" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 #, python-format msgid "Please enter a username." msgstr "" @@ -133,6 +144,14 @@ msgstr "" msgid "Active" msgstr "Actief" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:256 +#, python-format +msgid "" +"Cannot send email: no outgoing email server configured.\n" +"You can configure it under Settings/General Settings." +msgstr "" + #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 @@ -149,7 +168,7 @@ msgstr "Naam" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -190,35 +209,35 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Login" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:99 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 #, python-format msgid "Passwords do not match; please retype them." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 #, python-format msgid "No database selected !" msgstr "" diff --git a/addons/auth_signup/i18n/pl.po b/addons/auth_signup/i18n/pl.po index 6bc2fe02c43..bbe87eb269c 100644 --- a/addons/auth_signup/i18n/pl.po +++ b/addons/auth_signup/i18n/pl.po @@ -7,15 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-04 14:41+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-12 18:01+0000\n" "Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \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: 2012-12-13 04:44+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_signup +#: field:res.partner,signup_type:0 +msgid "Signup Token Type" +msgstr "" #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 @@ -41,7 +46,7 @@ msgid "base.config.settings" msgstr "" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:248 +#: code:addons/auth_signup/res_users.py:252 #, python-format msgid "Cannot send email: user has no email address." msgstr "" @@ -65,7 +70,7 @@ msgstr "Reset hasła" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 #, python-format msgid "Please enter a password and confirm it." msgstr "Wprowadź hasło o potwierdź je" @@ -87,6 +92,12 @@ msgstr "Rejestracja" msgid "New" msgstr "Nowy" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:258 +#, python-format +msgid "Mail sent to:" +msgstr "" + #. module: auth_signup #: field:res.users,state:0 msgid "Status" @@ -107,7 +118,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 #, python-format msgid "Please enter a name." msgstr "Wprowadź nazwę" @@ -124,7 +135,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 #, python-format msgid "Please enter a username." msgstr "" @@ -134,6 +145,14 @@ msgstr "" msgid "Active" msgstr "Aktywne" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:256 +#, python-format +msgid "" +"Cannot send email: no outgoing email server configured.\n" +"You can configure it under Settings/General Settings." +msgstr "" + #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 @@ -150,7 +169,7 @@ msgstr "Nazwa" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -191,35 +210,35 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Login" msgstr "Zaloguj się" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:99 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 #, python-format msgid "Passwords do not match; please retype them." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 #, python-format msgid "No database selected !" msgstr "Nie wybrano bazy !" diff --git a/addons/auth_signup/i18n/pt.po b/addons/auth_signup/i18n/pt.po index 9cc1ba2525a..8d6914ded44 100644 --- a/addons/auth_signup/i18n/pt.po +++ b/addons/auth_signup/i18n/pt.po @@ -7,15 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-04 14:41+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-10 18:26+0000\n" "Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-11 04:49+0000\n" -"X-Generator: Launchpad (build 16356)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_signup +#: field:res.partner,signup_type:0 +msgid "Signup Token Type" +msgstr "" #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 @@ -40,7 +45,7 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:248 +#: code:addons/auth_signup/res_users.py:252 #, python-format msgid "Cannot send email: user has no email address." msgstr "" @@ -64,7 +69,7 @@ msgstr "Repor senha" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 #, python-format msgid "Please enter a password and confirm it." msgstr "Por favor indique uma senha e confirme-a" @@ -86,6 +91,12 @@ msgstr "" msgid "New" msgstr "" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:258 +#, python-format +msgid "Mail sent to:" +msgstr "" + #. module: auth_signup #: field:res.users,state:0 msgid "Status" @@ -106,7 +117,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 #, python-format msgid "Please enter a name." msgstr "" @@ -123,7 +134,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 #, python-format msgid "Please enter a username." msgstr "" @@ -133,6 +144,14 @@ msgstr "" msgid "Active" msgstr "" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:256 +#, python-format +msgid "" +"Cannot send email: no outgoing email server configured.\n" +"You can configure it under Settings/General Settings." +msgstr "" + #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 @@ -149,7 +168,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -190,35 +209,35 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Login" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:99 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 #, python-format msgid "Passwords do not match; please retype them." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 #, python-format msgid "No database selected !" msgstr "" diff --git a/addons/auth_signup/i18n/pt_BR.po b/addons/auth_signup/i18n/pt_BR.po index 4fa96cf0535..cee71cac3f7 100644 --- a/addons/auth_signup/i18n/pt_BR.po +++ b/addons/auth_signup/i18n/pt_BR.po @@ -7,15 +7,21 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-04 14:41+0000\n" -"PO-Revision-Date: 2012-12-04 18:30+0000\n" -"Last-Translator: Cristiano Korndörfer \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-23 11:08+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-05 05:20+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-24 04:40+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_signup +#: field:res.partner,signup_type:0 +msgid "Signup Token Type" +msgstr "Tipo de token para Inscrição" #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 @@ -37,10 +43,10 @@ msgstr "Se não marcado, somente usuários convidados poderão inscrever-se" #. module: auth_signup #: model:ir.model,name:auth_signup.model_base_config_settings msgid "base.config.settings" -msgstr "Configurações" +msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:248 +#: code:addons/auth_signup/res_users.py:252 #, python-format msgid "Cannot send email: user has no email address." msgstr "" @@ -65,7 +71,7 @@ msgstr "Redefinir Senha" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 #, python-format msgid "Please enter a password and confirm it." msgstr "Por favor digite uma senha e sua confirmação." @@ -87,6 +93,12 @@ msgstr "Inscreva-se" msgid "New" msgstr "Novo" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:258 +#, python-format +msgid "Mail sent to:" +msgstr "Mensagem enviadas para:" + #. module: auth_signup #: field:res.users,state:0 msgid "Status" @@ -105,21 +117,20 @@ msgid "" "

Note: If you do not expect this, you can safely ignore this email.

" msgstr "" "\n" -"

Uma redefinição de senha foi solicitada para a conta OpenERP associada a " -"este e-mail.

\n" +"

Uma redefinição de senha foi solicitada para a conta do OpenERP associada " +"a este e-mail.

\n" "\n" "

Você pode mudar sua senha acessando este " "endereço.

\n" "\n" -"

Nota: Se esta ação não era esperada, você pode seguramente ignorar este e-" -"mail.

" +"

Nota: Se você não solicitou essa alteração, basta ignorar este e-mail.

" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 #, python-format msgid "Please enter a name." -msgstr "Por favor informe um nome." +msgstr "Por favor, informe o nome" #. module: auth_signup #: model:ir.model,name:auth_signup.model_res_users @@ -133,7 +144,7 @@ msgstr "URL de inscrição" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 #, python-format msgid "Please enter a username." msgstr "Por favor informe um nome de usuário" @@ -143,6 +154,16 @@ msgstr "Por favor informe um nome de usuário" msgid "Active" msgstr "Ativo" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:256 +#, python-format +msgid "" +"Cannot send email: no outgoing email server configured.\n" +"You can configure it under Settings/General Settings." +msgstr "" +"Não é possível enviar email: o servidor de saída não está configurado.\n" +"Você pode configurar em Configurações / Configurações Gerais." + #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 @@ -159,7 +180,7 @@ msgstr "Nome" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Please enter a username or email address." msgstr "Por favor informe um nome de usuário ou endereço de e-mail." @@ -202,35 +223,35 @@ msgstr "Token de Inscrição é Válido" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Login" msgstr "Autenticação" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:99 #, python-format msgid "Invalid signup token" msgstr "Token de inscrição inválido" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 #, python-format msgid "Passwords do not match; please retype them." msgstr "As senhas não combinam; por favor redigite-as." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 #, python-format msgid "No database selected !" msgstr "Nenhuma base de dados selecionada !" diff --git a/addons/auth_signup/i18n/ro.po b/addons/auth_signup/i18n/ro.po new file mode 100644 index 00000000000..5d4233e4476 --- /dev/null +++ b/addons/auth_signup/i18n/ro.po @@ -0,0 +1,293 @@ +# Romanian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-19 11:09+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-20 04:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: auth_signup +#: field:res.partner,signup_type:0 +msgid "Signup Token Type" +msgstr "Inregistrare Tip Simbol" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_uninvited:0 +msgid "Allow external users to sign up" +msgstr "Permite utilizatorilor sa se inregistreze" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#, python-format +msgid "Confirm Password" +msgstr "Confirma Parola" + +#. module: auth_signup +#: help:base.config.settings,auth_signup_uninvited:0 +msgid "If unchecked, only invited users may sign up." +msgstr "" +"Daca nu este selectat, doar utilizatorii invitati pot sa se inregistreze." + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_base_config_settings +msgid "base.config.settings" +msgstr "base.config.settings (setari.config.de_baza)" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:252 +#, python-format +msgid "Cannot send email: user has no email address." +msgstr "" +"Email-ul nu poate fi trimis: utilizatorul nu are nici o adresa de email." + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 +#, python-format +msgid "Reset password" +msgstr "Reseteaza parola" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_template_user_id:0 +msgid "Template user for new users created through signup" +msgstr "" +"Sablon de utilizator pentru utilizatorii noi creati prin inregistrare" + +#. module: auth_signup +#: model:email.template,subject:auth_signup.reset_password_email +msgid "Password reset" +msgstr "Parola resetata" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#, python-format +msgid "Please enter a password and confirm it." +msgstr "Va rugam sa introduceti o parola si sa o confirmati." + +#. module: auth_signup +#: view:res.users:0 +msgid "Send an email to the user to (re)set their password." +msgstr "Trimiteti un email utilizatorului pentru a (re)seta parola." + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 +#, python-format +msgid "Sign Up" +msgstr "Inregistrare" + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "New" +msgstr "Nou(a)" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:258 +#, python-format +msgid "Mail sent to:" +msgstr "Email trimis catre:" + +#. module: auth_signup +#: field:res.users,state:0 +msgid "Status" +msgstr "Stare" + +#. module: auth_signup +#: model:email.template,body_html:auth_signup.reset_password_email +msgid "" +"\n" +"

A password reset was requested for the OpenERP account linked to this " +"email.

\n" +"\n" +"

You may change your password by following this link.

\n" +"\n" +"

Note: If you do not expect this, you can safely ignore this email.

" +msgstr "" +"\n" +"

O resetare a parolei a fost ceruta pentru contul OpenERP asociat acestui " +"email.

\n" +"\n" +"

Va puteti schimba parola urmand this " +"link.

\n" +"\n" +"

Nota: Daca nu asteptati aceasta, puteti ignora acest email.

" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#, python-format +msgid "Please enter a name." +msgstr "Va rugam sa introduceti un nume" + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_res_users +msgid "Users" +msgstr "Utilizatori" + +#. module: auth_signup +#: field:res.partner,signup_url:0 +msgid "Signup URL" +msgstr "URL Inregistrare" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#, python-format +msgid "Please enter a username." +msgstr "Va rugam sa introduceti un nume de utilizator." + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "Active" +msgstr "Activ(a)" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:256 +#, python-format +msgid "" +"Cannot send email: no outgoing email server configured.\n" +"You can configure it under Settings/General Settings." +msgstr "" +"Email-ul nu a putut fi trimis: nu a fost configurat nici un server pentru " +"iesire email-uri.\n" +"Il puteti configura din Setari/Setari Generale." + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 +#, python-format +msgid "Username" +msgstr "Nume de utilizator" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:8 +#, python-format +msgid "Name" +msgstr "Nume" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 +#, python-format +msgid "Please enter a username or email address." +msgstr "Va rugam sa introduceti un nume de utilizator sau o adresa de email." + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "Resetting Password" +msgstr "Resetare Parola" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:13 +#, python-format +msgid "Username (Email)" +msgstr "Nume de utilizator (Email)" + +#. module: auth_signup +#: field:res.partner,signup_expiration:0 +msgid "Signup Expiration" +msgstr "Expirare Inregistrare" + +#. module: auth_signup +#: help:base.config.settings,auth_signup_reset_password:0 +msgid "This allows users to trigger a password reset from the Login page." +msgstr "" +"Le permite utilizatorilor sa declanseze o resetare a parolei din Pagina de " +"autentificare." + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:21 +#, python-format +msgid "Log in" +msgstr "Autentificare" + +#. module: auth_signup +#: field:res.partner,signup_valid:0 +msgid "Signup Token is Valid" +msgstr "Simbolul de inregistrare este Valabil" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 +#, python-format +msgid "Login" +msgstr "Autentificare" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:99 +#, python-format +msgid "Invalid signup token" +msgstr "Simbol de inregistrare nevalid" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#, python-format +msgid "Passwords do not match; please retype them." +msgstr "Parolele nu se potrivesc; va rugam sa le scrieti din nou." + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#, python-format +msgid "No database selected !" +msgstr "Nu a fost selectata nicio baza de date !" + +#. module: auth_signup +#: view:res.users:0 +msgid "Reset Password" +msgstr "Reseteaza Parola" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_reset_password:0 +msgid "Enable password reset from Login page" +msgstr "Activeaza resetarea parolei din pagina de autentificare" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 +#, python-format +msgid "Back to Login" +msgstr "Inapoi la Autentificare" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#, python-format +msgid "Sign up" +msgstr "Inregistrare" + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_res_partner +msgid "Partner" +msgstr "Partener" + +#. module: auth_signup +#: field:res.partner,signup_token:0 +msgid "Signup Token" +msgstr "Simbol Inregistrare" diff --git a/addons/auth_signup/i18n/ru.po b/addons/auth_signup/i18n/ru.po index 1b6295b6e1c..2c4bb9b0ac3 100644 --- a/addons/auth_signup/i18n/ru.po +++ b/addons/auth_signup/i18n/ru.po @@ -7,15 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-04 14:41+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 06:59+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_signup +#: field:res.partner,signup_type:0 +msgid "Signup Token Type" +msgstr "" #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 @@ -40,7 +45,7 @@ msgid "base.config.settings" msgstr "" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:248 +#: code:addons/auth_signup/res_users.py:252 #, python-format msgid "Cannot send email: user has no email address." msgstr "" @@ -64,7 +69,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 #, python-format msgid "Please enter a password and confirm it." msgstr "" @@ -86,6 +91,12 @@ msgstr "" msgid "New" msgstr "" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:258 +#, python-format +msgid "Mail sent to:" +msgstr "" + #. module: auth_signup #: field:res.users,state:0 msgid "Status" @@ -106,7 +117,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 #, python-format msgid "Please enter a name." msgstr "" @@ -123,7 +134,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 #, python-format msgid "Please enter a username." msgstr "" @@ -133,6 +144,14 @@ msgstr "" msgid "Active" msgstr "" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:256 +#, python-format +msgid "" +"Cannot send email: no outgoing email server configured.\n" +"You can configure it under Settings/General Settings." +msgstr "" + #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 @@ -149,7 +168,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -190,35 +209,35 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Login" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:99 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 #, python-format msgid "Passwords do not match; please retype them." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 #, python-format msgid "No database selected !" msgstr "" diff --git a/addons/auth_signup/i18n/sl.po b/addons/auth_signup/i18n/sl.po new file mode 100644 index 00000000000..44a76d7690c --- /dev/null +++ b/addons/auth_signup/i18n/sl.po @@ -0,0 +1,277 @@ +# Slovenian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-05 16:53+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-06 04:46+0000\n" +"X-Generator: Launchpad (build 16393)\n" + +#. module: auth_signup +#: field:res.partner,signup_type:0 +msgid "Signup Token Type" +msgstr "" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_uninvited:0 +msgid "Allow external users to sign up" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#, python-format +msgid "Confirm Password" +msgstr "Potrdite geslo" + +#. module: auth_signup +#: help:base.config.settings,auth_signup_uninvited:0 +msgid "If unchecked, only invited users may sign up." +msgstr "" + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_base_config_settings +msgid "base.config.settings" +msgstr "base.config.settings" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:252 +#, python-format +msgid "Cannot send email: user has no email address." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 +#, python-format +msgid "Reset password" +msgstr "Ponastavi geslo" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_template_user_id:0 +msgid "Template user for new users created through signup" +msgstr "" + +#. module: auth_signup +#: model:email.template,subject:auth_signup.reset_password_email +msgid "Password reset" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#, python-format +msgid "Please enter a password and confirm it." +msgstr "" + +#. module: auth_signup +#: view:res.users:0 +msgid "Send an email to the user to (re)set their password." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 +#, python-format +msgid "Sign Up" +msgstr "Prijava" + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "New" +msgstr "Novo" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:258 +#, python-format +msgid "Mail sent to:" +msgstr "" + +#. module: auth_signup +#: field:res.users,state:0 +msgid "Status" +msgstr "Status" + +#. module: auth_signup +#: model:email.template,body_html:auth_signup.reset_password_email +msgid "" +"\n" +"

A password reset was requested for the OpenERP account linked to this " +"email.

\n" +"\n" +"

You may change your password by following this link.

\n" +"\n" +"

Note: If you do not expect this, you can safely ignore this email.

" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#, python-format +msgid "Please enter a name." +msgstr "Vnesite ime" + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_res_users +msgid "Users" +msgstr "Uporabniki" + +#. module: auth_signup +#: field:res.partner,signup_url:0 +msgid "Signup URL" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#, python-format +msgid "Please enter a username." +msgstr "" + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "Active" +msgstr "Aktivno" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:256 +#, python-format +msgid "" +"Cannot send email: no outgoing email server configured.\n" +"You can configure it under Settings/General Settings." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 +#, python-format +msgid "Username" +msgstr "Uporabniško ime" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:8 +#, python-format +msgid "Name" +msgstr "Ime" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 +#, python-format +msgid "Please enter a username or email address." +msgstr "" + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "Resetting Password" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:13 +#, python-format +msgid "Username (Email)" +msgstr "" + +#. module: auth_signup +#: field:res.partner,signup_expiration:0 +msgid "Signup Expiration" +msgstr "" + +#. module: auth_signup +#: help:base.config.settings,auth_signup_reset_password:0 +msgid "This allows users to trigger a password reset from the Login page." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:21 +#, python-format +msgid "Log in" +msgstr "Prijava" + +#. module: auth_signup +#: field:res.partner,signup_valid:0 +msgid "Signup Token is Valid" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 +#, python-format +msgid "Login" +msgstr "Prijava" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:99 +#, python-format +msgid "Invalid signup token" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#, python-format +msgid "Passwords do not match; please retype them." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#, python-format +msgid "No database selected !" +msgstr "Nobena podatkovna zbirka ni izbrana!" + +#. module: auth_signup +#: view:res.users:0 +msgid "Reset Password" +msgstr "" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_reset_password:0 +msgid "Enable password reset from Login page" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 +#, python-format +msgid "Back to Login" +msgstr "Nazaj na prijavo" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#, python-format +msgid "Sign up" +msgstr "" + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: auth_signup +#: field:res.partner,signup_token:0 +msgid "Signup Token" +msgstr "" diff --git a/addons/auth_signup/i18n/tr.po b/addons/auth_signup/i18n/tr.po index b5b0822191e..2560ff5fb2b 100644 --- a/addons/auth_signup/i18n/tr.po +++ b/addons/auth_signup/i18n/tr.po @@ -7,15 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-04 14:41+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-04 20:16+0000\n" "Last-Translator: Olivier Dony (OpenERP) \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-05 05:20+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_signup +#: field:res.partner,signup_type:0 +msgid "Signup Token Type" +msgstr "" #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 @@ -40,7 +45,7 @@ msgid "base.config.settings" msgstr "" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:248 +#: code:addons/auth_signup/res_users.py:252 #, python-format msgid "Cannot send email: user has no email address." msgstr "" @@ -64,7 +69,7 @@ msgstr "Parola sıfırlandı" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 #, python-format msgid "Please enter a password and confirm it." msgstr "" @@ -86,6 +91,12 @@ msgstr "" msgid "New" msgstr "" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:258 +#, python-format +msgid "Mail sent to:" +msgstr "" + #. module: auth_signup #: field:res.users,state:0 msgid "Status" @@ -106,7 +117,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 #, python-format msgid "Please enter a name." msgstr "" @@ -123,7 +134,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 #, python-format msgid "Please enter a username." msgstr "" @@ -133,6 +144,14 @@ msgstr "" msgid "Active" msgstr "" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:256 +#, python-format +msgid "" +"Cannot send email: no outgoing email server configured.\n" +"You can configure it under Settings/General Settings." +msgstr "" + #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 @@ -149,7 +168,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -190,35 +209,35 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Login" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:99 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 #, python-format msgid "Passwords do not match; please retype them." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 #, python-format msgid "No database selected !" msgstr "" diff --git a/addons/auth_signup/i18n/zh_CN.po b/addons/auth_signup/i18n/zh_CN.po index 813db8acad6..96d5bd6d7ea 100644 --- a/addons/auth_signup/i18n/zh_CN.po +++ b/addons/auth_signup/i18n/zh_CN.po @@ -7,15 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-04 14:41+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-04 20:16+0000\n" "Last-Translator: ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-05 05:20+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: auth_signup +#: field:res.partner,signup_type:0 +msgid "Signup Token Type" +msgstr "" #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 @@ -40,7 +45,7 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:248 +#: code:addons/auth_signup/res_users.py:252 #, python-format msgid "Cannot send email: user has no email address." msgstr "" @@ -64,7 +69,7 @@ msgstr "重置密码" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 #, python-format msgid "Please enter a password and confirm it." msgstr "" @@ -86,6 +91,12 @@ msgstr "注册" msgid "New" msgstr "新建" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:258 +#, python-format +msgid "Mail sent to:" +msgstr "" + #. module: auth_signup #: field:res.users,state:0 msgid "Status" @@ -106,7 +117,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 #, python-format msgid "Please enter a name." msgstr "" @@ -123,7 +134,7 @@ msgstr "注册 URL" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 #, python-format msgid "Please enter a username." msgstr "" @@ -133,6 +144,14 @@ msgstr "" msgid "Active" msgstr "启用" +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:256 +#, python-format +msgid "" +"Cannot send email: no outgoing email server configured.\n" +"You can configure it under Settings/General Settings." +msgstr "" + #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 @@ -149,7 +168,7 @@ msgstr "姓名" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -190,35 +209,35 @@ msgstr "注册令牌( Token )是有效的" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 -#: code:addons/auth_signup/static/src/js/auth_signup.js:160 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:119 +#: code:addons/auth_signup/static/src/js/auth_signup.js:122 +#: code:addons/auth_signup/static/src/js/auth_signup.js:125 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 +#: code:addons/auth_signup/static/src/js/auth_signup.js:165 #, python-format msgid "Login" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:99 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:123 +#: code:addons/auth_signup/static/src/js/auth_signup.js:128 #, python-format msgid "Passwords do not match; please retype them." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#: code:addons/auth_signup/static/src/js/auth_signup.js:157 +#: code:addons/auth_signup/static/src/js/auth_signup.js:116 +#: code:addons/auth_signup/static/src/js/auth_signup.js:162 #, python-format msgid "No database selected !" msgstr "" diff --git a/addons/auth_signup/res_users.py b/addons/auth_signup/res_users.py index cc7c3722540..b35ff274a6d 100644 --- a/addons/auth_signup/res_users.py +++ b/addons/auth_signup/res_users.py @@ -52,7 +52,7 @@ class res_partner(osv.Model): (not partner.signup_expiration or dt <= partner.signup_expiration) return res - def _get_signup_url_for_action(self, cr, uid, ids, action='login', view_type=None, menu_id=None, res_id=None, context=None): + def _get_signup_url_for_action(self, cr, uid, ids, action='login', view_type=None, menu_id=None, res_id=None, model=None, context=None): """ generate a signup url for the given partner ids and action, possibly overriding the url state components (menu_id, id, view_type) """ res = dict.fromkeys(ids, False) @@ -61,10 +61,11 @@ class res_partner(osv.Model): # when required, make sure the partner has a valid signup token if context and context.get('signup_valid') and not partner.user_ids: self.signup_prepare(cr, uid, [partner.id], context=context) + partner.refresh() # the parameters to encode for the query and fragment part of url query = {'db': cr.dbname} - fragment = {'action': action} + fragment = {'action': action, 'type': partner.signup_type} if partner.signup_token: fragment['token'] = partner.signup_token @@ -78,6 +79,8 @@ class res_partner(osv.Model): fragment['view_type'] = view_type if menu_id: fragment['menu_id'] = menu_id + if model: + fragment['model'] = model if res_id: fragment['id'] = res_id @@ -91,6 +94,7 @@ class res_partner(osv.Model): _columns = { 'signup_token': fields.char('Signup Token'), + 'signup_type': fields.char('Signup Token Type'), 'signup_expiration': fields.datetime('Signup Expiration'), 'signup_valid': fields.function(_get_signup_valid, type='boolean', string='Signup Token is Valid'), 'signup_url': fields.function(_get_signup_url, type='char', string='Signup URL'), @@ -99,7 +103,7 @@ class res_partner(osv.Model): def action_signup_prepare(self, cr, uid, ids, context=None): return self.signup_prepare(cr, uid, ids, context=context) - def signup_prepare(self, cr, uid, ids, expiration=False, context=None): + def signup_prepare(self, cr, uid, ids, signup_type="signup", expiration=False, context=None): """ generate a new token for the partners with the given validity, if necessary :param expiration: the expiration datetime of the token (string, optional) """ @@ -108,7 +112,7 @@ class res_partner(osv.Model): token = random_token() while self._signup_retrieve_partner(cr, uid, token, context=context): token = random_token() - partner.write({'signup_token': token, 'signup_expiration': expiration}) + partner.write({'signup_token': token, 'signup_type': signup_type, 'signup_expiration': expiration}) return True def _signup_retrieve_partner(self, cr, uid, token, @@ -182,7 +186,7 @@ class res_users(osv.Model): partner = res_partner._signup_retrieve_partner( cr, uid, token, check_validity=True, raise_exception=True, context=None) # invalidate signup token - partner.write({'signup_token': False, 'signup_expiration': False}) + partner.write({'signup_token': False, 'signup_type': False, 'signup_expiration': False}) partner_user = partner.user_ids and partner.user_ids[0] or False if partner_user: @@ -240,17 +244,30 @@ class res_users(osv.Model): # prepare reset password signup res_partner = self.pool.get('res.partner') partner_ids = [user.partner_id.id for user in self.browse(cr, uid, ids, context)] - res_partner.signup_prepare(cr, uid, partner_ids, expiration=now(days=+1), context=context) + res_partner.signup_prepare(cr, uid, partner_ids, signup_type="reset", expiration=now(days=+1), context=context) # send email to users with their signup url template = self.pool.get('ir.model.data').get_object(cr, uid, 'auth_signup', 'reset_password_email') + mail_obj = self.pool.get('mail.mail') assert template._name == 'email.template' for user in self.browse(cr, uid, ids, context): if not user.email: raise osv.except_osv(_("Cannot send email: user has no email address."), user.name) - self.pool.get('email.template').send_mail(cr, uid, template.id, user.id, context=context) - - return True + mail_id = self.pool.get('email.template').send_mail(cr, uid, template.id, user.id, True, context=context) + mail_state = mail_obj.read(cr, uid, mail_id, ['state'], context=context) + if mail_state and mail_state['state'] == 'exception': + raise osv.except_osv(_("Cannot send email: no outgoing email server configured.\nYou can configure it under Settings/General Settings."), user.name) + else: + return { + 'type': 'ir.actions.client', + 'name': '_(Server Notification)', + 'tag': 'action_notify', + 'params': { + 'title': 'Mail Sent to: %s' % user.name, + 'text': 'You can reset the password by yourself using this link' % user.partner_id.signup_url, + 'sticky': True, + } + } def create(self, cr, uid, values, context=None): # overridden to automatically invite user to sign up diff --git a/addons/auth_signup/res_users_view.xml b/addons/auth_signup/res_users_view.xml index 7f91d970b50..fc163e1b3ed 100644 --- a/addons/auth_signup/res_users_view.xml +++ b/addons/auth_signup/res_users_view.xml @@ -19,16 +19,12 @@ - +
- - - -
diff --git a/addons/auth_signup/static/src/js/auth_signup.js b/addons/auth_signup/static/src/js/auth_signup.js index 1dfcf5fd8f9..6757b9cb69d 100644 --- a/addons/auth_signup/static/src/js/auth_signup.js +++ b/addons/auth_signup/static/src/js/auth_signup.js @@ -6,61 +6,66 @@ openerp.auth_signup = function(instance) { start: function() { var self = this; var d = this._super(); - - self.$(".oe_signup_show").hide(); - // to switch between the signup and regular login form - this.$('a.oe_signup_signup').click(function(ev) { - if (ev) { - ev.preventDefault(); - } - self.$el.addClass("oe_login_signup"); - self.$(".oe_signup_show").show(); - self.$(".oe_signup_hide").hide(); - return false; - }); - this.$('a.oe_signup_back').click(function(ev) { - if (ev) { - ev.preventDefault(); - } - self.$el.removeClass("oe_login_signup"); + d.done(function() { self.$(".oe_signup_show").hide(); - self.$(".oe_signup_hide").show(); - delete self.params.token; - return false; - }); + // to switch between the signup and regular login form + self.$('a.oe_signup_signup').click(function(ev) { + if (ev) { + ev.preventDefault(); + } + self.$el.addClass("oe_login_signup"); + self.$(".oe_signup_show").show(); + self.$(".oe_signup_hide").hide(); + return false; + }); + self.$('a.oe_signup_back').click(function(ev) { + if (ev) { + ev.preventDefault(); + } + self.$el.removeClass("oe_login_signup"); + self.$(".oe_signup_show").hide(); + self.$(".oe_signup_hide").show(); + delete self.params.token; + return false; + }); - // if there is an error message in params, show it then forget it - if (self.params.error_message) { - this.show_error(self.params.error_message); - delete self.params.error_message; - } + var dblist = self.db_list || []; + var dbname = self.params.db || (dblist.length === 1 ? dblist[0] : null); - // in case of a signup, retrieve the user information from the token - if (self.params.db && self.params.token) { - d.done(function() { - self.rpc("/auth_signup/retrieve", {dbname: self.params.db, token: self.params.token}) + // if there is an error message in params, show it then forget it + if (self.params.error_message) { + self.show_error(self.params.error_message); + delete self.params.error_message; + } + + // in case of a signup, retrieve the user information from the token + if (dbname && self.params.token) { + self.rpc("/auth_signup/retrieve", {dbname: dbname, token: self.params.token}) .done(self.on_token_loaded) .fail(self.on_token_failed) - }); - } + } + if (dbname && self.params.login) { + self.$("form input[name=login]").val(self.params.login); + } - // bind reset password link - this.$('a.oe_signup_reset_password').click(this.do_reset_password); + // bind reset password link + self.$('a.oe_signup_reset_password').click(self.do_reset_password); - // make signup link and reset password link visible only when enabled - this.$('a.oe_signup_signup').hide(); - this.$('a.oe_signup_reset_password').hide(); - if (this.params.db) { - this.rpc("/auth_signup/get_config", {dbname: self.params.db}) - .done(function(result) { - if (result.signup) { - self.$('a.oe_signup_signup').show(); - } - if (result.reset_password) { - self.$('a.oe_signup_reset_password').show(); - } - }); - } + // make signup link and reset password link visible only when enabled + self.$('a.oe_signup_signup').hide(); + self.$('a.oe_signup_reset_password').hide(); + if (dbname) { + self.rpc("/auth_signup/get_config", {dbname: dbname}) + .done(function(result) { + if (result.signup) { + self.$('a.oe_signup_signup').show(); + } + if (result.reset_password) { + self.$('a.oe_signup_reset_password').show(); + } + }); + } + }); return d; }, @@ -130,7 +135,7 @@ openerp.auth_signup = function(instance) { login: login, password: password, }; - + var self = this, super_ = this._super; this.rpc('/auth_signup/signup', params) diff --git a/addons/base_action_rule/__init__.py b/addons/base_action_rule/__init__.py index 207ed3cb30f..c8c827aaba2 100644 --- a/addons/base_action_rule/__init__.py +++ b/addons/base_action_rule/__init__.py @@ -20,5 +20,6 @@ ############################################################################## import base_action_rule +import test_models # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_action_rule/base_action_rule.py b/addons/base_action_rule/base_action_rule.py index a7798f40bb1..a3237c1620b 100644 --- a/addons/base_action_rule/base_action_rule.py +++ b/addons/base_action_rule/base_action_rule.py @@ -19,27 +19,30 @@ # ############################################################################## -from datetime import datetime -from datetime import timedelta -import re +from datetime import datetime, timedelta import time +import logging -from openerp.osv import fields, osv, orm -from openerp.tools.translate import _ -from openerp.tools.safe_eval import safe_eval -from openerp.tools import ustr -from openerp import pooler -from openerp import tools +from openerp import SUPERUSER_ID +from openerp.osv import fields, osv +from openerp.tools import DEFAULT_SERVER_DATETIME_FORMAT +_logger = logging.getLogger(__name__) -def get_datetime(date_field): +DATE_RANGE_FUNCTION = { + 'minutes': lambda interval: timedelta(minutes=interval), + 'hour': lambda interval: timedelta(hours=interval), + 'day': lambda interval: timedelta(days=interval), + 'month': lambda interval: timedelta(months=interval), + False: lambda interval: timedelta(0), +} + +def get_datetime(date_str): '''Return a datetime from a date string or a datetime string''' - #complete date time if date_field contains only a date - date_split = date_field.split(' ') - if len(date_split) == 1: - date_field = date_split[0] + " 00:00:00" - - return datetime.strptime(date_field[:19], '%Y-%m-%d %H:%M:%S') + # complete date time if date_str contains only a date + if ' ' not in date_str: + date_str = date_str + " 00:00:00" + return datetime.strptime(date_str, DEFAULT_SERVER_DATETIME_FORMAT) class base_action_rule(osv.osv): @@ -48,320 +51,208 @@ class base_action_rule(osv.osv): _name = 'base.action.rule' _description = 'Action Rules' - def _state_get(self, cr, uid, context=None): - """ Get State """ - return self.state_get(cr, uid, context=context) - - def state_get(self, cr, uid, context=None): - """ Get State """ - return [('', '')] - - def priority_get(self, cr, uid, context=None): - """ Get Priority """ - return [('', '')] - _columns = { 'name': fields.char('Rule Name', size=64, required=True), - 'model_id': fields.many2one('ir.model', 'Related Document Model', required=True, domain=[('osv_memory','=', False)]), + 'model_id': fields.many2one('ir.model', 'Related Document Model', + required=True, domain=[('osv_memory', '=', False)]), 'model': fields.related('model_id', 'model', type="char", size=256, string='Model'), 'create_date': fields.datetime('Create Date', readonly=1), - 'active': fields.boolean('Active', help="If the active field is set to False,\ - it will allow you to hide the rule without removing it."), - 'sequence': fields.integer('Sequence', help="Gives the sequence order \ -when displaying a list of rules."), - 'trg_date_type': fields.selection([ - ('none', 'None'), - ('create', 'Creation Date'), - ('write', 'Last Modified Date'), - ('action_last', 'Last Action Date'), - ('date', 'Date'), - ('deadline', 'Deadline'), - ], 'Trigger Date', size=16), - 'trg_date_range': fields.integer('Delay after trigger date', \ - help="Delay After Trigger Date,\ -specifies you can put a negative number. If you need a delay before the \ -trigger date, like sending a reminder 15 minutes before a meeting."), - 'trg_date_range_type': fields.selection([('minutes', 'Minutes'), ('hour', 'Hours'), \ + 'active': fields.boolean('Active', + help="When unchecked, the rule is hidden and will not be executed."), + 'sequence': fields.integer('Sequence', + help="Gives the sequence order when displaying a list of rules."), + 'trg_date_id': fields.many2one('ir.model.fields', string='Trigger Date', + domain="[('model_id', '=', model_id), ('ttype', 'in', ('date', 'datetime'))]"), + 'trg_date_range': fields.integer('Delay after trigger date', + help="Delay after the trigger date." \ + "You can put a negative number if you need a delay before the" \ + "trigger date, like sending a reminder 15 minutes before a meeting."), + 'trg_date_range_type': fields.selection([('minutes', 'Minutes'), ('hour', 'Hours'), ('day', 'Days'), ('month', 'Months')], 'Delay type'), - 'trg_user_id': fields.many2one('res.users', 'Responsible'), - 'trg_partner_id': fields.many2one('res.partner', 'Partner'), - 'trg_partner_categ_id': fields.many2one('res.partner.category', 'Partner Category'), - 'trg_state_from': fields.selection(_state_get, 'Status', size=16), - 'trg_state_to': fields.selection(_state_get, 'Button Pressed', size=16), - - 'act_user_id': fields.many2one('res.users', 'Set Responsible to'), - 'act_state': fields.selection(_state_get, 'Set State to', size=16), - 'act_followers': fields.many2many("res.partner", string="Set Followers"), - 'regex_name': fields.char('Regex on Resource Name', size=128, help="Regular expression for matching name of the resource\ -\ne.g.: 'urgent.*' will search for records having name starting with the string 'urgent'\ -\nNote: This is case sensitive search."), - 'server_action_ids': fields.one2many('ir.actions.server', 'action_rule_id', 'Server Action', help="Define Server actions.\neg:Email Reminders, Call Object Service, etc.."), #TODO: set domain [('model_id','=',model_id)] - 'filter_id':fields.many2one('ir.filters', 'Filter', required=False), #TODO: set domain [('model_id','=',model_id.model)] + 'act_user_id': fields.many2one('res.users', 'Set Responsible'), + 'act_followers': fields.many2many("res.partner", string="Add Followers"), + 'server_action_ids': fields.many2many('ir.actions.server', string='Server Actions', + domain="[('model_id', '=', model_id)]", + help="Examples: email reminders, call object service, etc."), + 'filter_pre_id': fields.many2one('ir.filters', string='Before Update Filter', + ondelete='restrict', + domain="[('model_id', '=', model_id.model)]", + help="If present, this condition must be satisfied before the update of the record."), + 'filter_id': fields.many2one('ir.filters', string='After Update Filter', + ondelete='restrict', + domain="[('model_id', '=', model_id.model)]", + help="If present, this condition must be satisfied after the update of the record."), 'last_run': fields.datetime('Last Run', readonly=1), } _defaults = { 'active': True, - 'trg_date_type': 'none', 'trg_date_range_type': 'day', } _order = 'sequence' + def _filter(self, cr, uid, action, action_filter, record_ids, context=None): + """ filter the list record_ids that satisfy the action filter """ + if record_ids and action_filter: + assert action.model == action_filter.model_id, "Filter model different from action rule model" + model = self.pool.get(action_filter.model_id) + domain = [('id', 'in', record_ids)] + eval(action_filter.domain) + ctx = dict(context or {}) + ctx.update(eval(action_filter.context)) + record_ids = model.search(cr, uid, domain, context=ctx) + return record_ids + + def _process(self, cr, uid, action, record_ids, context=None): + """ process the given action on the records """ + # execute server actions + model = self.pool.get(action.model_id.model) + if action.server_action_ids: + server_action_ids = map(int, action.server_action_ids) + for record in model.browse(cr, uid, record_ids, context): + action_server_obj = self.pool.get('ir.actions.server') + ctx = dict(context, active_model=model._name, active_ids=[record.id], active_id=record.id) + action_server_obj.run(cr, uid, server_action_ids, context=ctx) + + # modify records + values = {} + if 'date_action_last' in model._all_columns: + values['date_action_last'] = time.strftime(DEFAULT_SERVER_DATETIME_FORMAT) + if action.act_user_id and 'user_id' in model._all_columns: + values['user_id'] = action.act_user_id.id + if values: + model.write(cr, uid, record_ids, values, context=context) + + if action.act_followers and hasattr(model, 'message_subscribe'): + follower_ids = map(int, action.act_followers) + model.message_subscribe(cr, uid, record_ids, follower_ids, context=context) - def post_action(self, cr, uid, ids, model, context=None): - # Searching for action rules - cr.execute("SELECT model.model, rule.id FROM base_action_rule rule \ - LEFT JOIN ir_model model on (model.id = rule.model_id) \ - WHERE active and model = %s", (model,)) - res = cr.fetchall() - # Check if any rule matching with current object - for obj_name, rule_id in res: - obj = self.pool.get(obj_name) - # If the rule doesn't involve a time condition, run it immediately - # Otherwise we let the scheduler run the action - if self.browse(cr, uid, rule_id, context=context).trg_date_type == 'none': - self._action(cr, uid, [rule_id], obj.browse(cr, uid, ids, context=context), context=context) return True - def _create(self, old_create, model, context=None): + def _wrap_create(self, old_create, model): + """ Return a wrapper around `old_create` calling both `old_create` and + `_process`, in that order. """ - Return a wrapper around `old_create` calling both `old_create` and - `post_action`, in that order. - """ - def wrapper(cr, uid, vals, context=context): - if context is None: - context = {} + def wrapper(cr, uid, vals, context=None): + # avoid loops or cascading actions + if context and context.get('action'): + return old_create(cr, uid, vals, context=context) + + context = dict(context or {}, action=True) new_id = old_create(cr, uid, vals, context=context) - if not context.get('action'): - self.post_action(cr, uid, [new_id], model, context=context) + + # as it is a new record, we do not consider the actions that have a prefilter + action_dom = [('model', '=', model), ('trg_date_id', '=', False), ('filter_pre_id', '=', False)] + action_ids = self.search(cr, uid, action_dom, context=context) + + # check postconditions, and execute actions on the records that satisfy them + for action in self.browse(cr, uid, action_ids, context=context): + if self._filter(cr, uid, action, action.filter_id, [new_id], context=context): + self._process(cr, uid, action, [new_id], context=context) return new_id + return wrapper - def _write(self, old_write, model, context=None): + def _wrap_write(self, old_write, model): + """ Return a wrapper around `old_write` calling both `old_write` and + `_process`, in that order. """ - Return a wrapper around `old_write` calling both `old_write` and - `post_action`, in that order. - """ - def wrapper(cr, uid, ids, vals, context=context): - if context is None: - context = {} - if isinstance(ids, (str, int, long)): - ids = [ids] + def wrapper(cr, uid, ids, vals, context=None): + # avoid loops or cascading actions + if context and context.get('action'): + return old_write(cr, uid, ids, vals, context=context) + + context = dict(context or {}, action=True) + ids = [ids] if isinstance(ids, (int, long, str)) else ids + + # retrieve the action rules to possibly execute + action_dom = [('model', '=', model), ('trg_date_id', '=', False)] + action_ids = self.search(cr, uid, action_dom, context=context) + actions = self.browse(cr, uid, action_ids, context=context) + + # check preconditions + pre_ids = {} + for action in actions: + pre_ids[action] = self._filter(cr, uid, action, action.filter_pre_id, ids, context=context) + + # execute write old_write(cr, uid, ids, vals, context=context) - if not context.get('action'): - self.post_action(cr, uid, ids, model, context=context) + + # check postconditions, and execute actions on the records that satisfy them + for action in actions: + post_ids = self._filter(cr, uid, action, action.filter_id, pre_ids[action], context=context) + if post_ids: + self._process(cr, uid, action, post_ids, context=context) return True + return wrapper - def _register_hook(self, cr, uid, ids, context=None): + def _register_hook(self, cr, ids=None): + """ Wrap the methods `create` and `write` of the models specified by + the rules given by `ids` (or all existing rules if `ids` is `None`.) """ - Wrap every `create` and `write` methods of the models specified by - the rules (given by `ids`). - """ - for action_rule in self.browse(cr, uid, ids, context=context): + if ids is None: + ids = self.search(cr, SUPERUSER_ID, []) + for action_rule in self.browse(cr, SUPERUSER_ID, ids): model = action_rule.model_id.model - obj_pool = self.pool.get(model) - 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 - + model_obj = self.pool.get(model) + if not hasattr(model_obj, 'base_action_ruled'): + model_obj.create = self._wrap_create(model_obj.create, model) + model_obj.write = self._wrap_write(model_obj.write, model) + model_obj.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=context) - self._register_hook(cr, uid, [res_id], context=context) + self._register_hook(cr, [res_id]) return res_id def write(self, cr, uid, ids, vals, context=None): + if isinstance(ids, (int, long)): + ids = [ids] super(base_action_rule, self).write(cr, uid, ids, vals, context=context) - self._register_hook(cr, uid, ids, context=context) + self._register_hook(cr, ids) return True - def _check(self, cr, uid, automatic=False, use_new_cursor=False, \ - context=None): - """ - This Function is call by scheduler. - """ - rule_ids = self.search(cr, uid, [], context=context) - self._register_hook(cr, uid, rule_ids, context=context) - if context is None: - context = {} - for rule in self.browse(cr, uid, rule_ids, context=context): - model = rule.model_id.model - model_pool = self.pool.get(model) - last_run = False - if rule.last_run: - last_run = get_datetime(rule.last_run) + def _check(self, cr, uid, automatic=False, use_new_cursor=False, context=None): + """ This Function is called by scheduler. """ + context = context or {} + # retrieve all the action rules that have a trg_date_id and no precondition + action_dom = [('trg_date_id', '!=', False), ('filter_pre_id', '=', False)] + action_ids = self.search(cr, uid, action_dom, context=context) + for action in self.browse(cr, uid, action_ids, context=context): now = datetime.now() - ctx = dict(context) - if rule.filter_id and rule.model_id.model == rule.filter_id.model_id: - ctx.update(eval(rule.filter_id.context)) - obj_ids = model_pool.search(cr, uid, eval(rule.filter_id.domain), context=ctx) - else: - obj_ids = model_pool.search(cr, uid, [], context=ctx) - for obj in model_pool.browse(cr, uid, obj_ids, context=ctx): - # Calculate when this action should next occur for this object - base = False - if rule.trg_date_type=='create' and hasattr(obj, 'create_date'): - base = obj.create_date - elif rule.trg_date_type=='write' and hasattr(obj, 'write_date'): - base = obj.write_date - elif (rule.trg_date_type=='action_last' - and hasattr(obj, 'create_date')): - if hasattr(obj, 'date_action_last') and obj.date_action_last: - base = obj.date_action_last - else: - base = obj.create_date - elif (rule.trg_date_type=='deadline' - and hasattr(obj, 'date_deadline') - and obj.date_deadline): - base = obj.date_deadline - elif (rule.trg_date_type=='date' - and hasattr(obj, 'date') - and obj.date): - base = obj.date - if base: - fnct = { - 'minutes': lambda interval: timedelta(minutes=interval), - 'day': lambda interval: timedelta(days=interval), - 'hour': lambda interval: timedelta(hours=interval), - 'month': lambda interval: timedelta(months=interval), - } - base = get_datetime(base) - delay = fnct[rule.trg_date_range_type](rule.trg_date_range) - action_date = base + delay - if (not last_run or (last_run <= action_date < now)): - try: - self._action(cr, uid, [rule.id], obj, context=ctx) - self.write(cr, uid, [rule.id], {'last_run': now}, context=context) - except Exception, e: - import traceback - print traceback.format_exc() - - + last_run = get_datetime(action.last_run) if action.last_run else False - def do_check(self, cr, uid, action, obj, context=None): - """ check Action """ - if context is None: - context = {} - ok = True - if action.filter_id and action.model_id.model == action.filter_id.model_id: + # retrieve all the records that satisfy the action's condition + model = self.pool.get(action.model_id.model) + domain = [] ctx = dict(context) - ctx.update(eval(action.filter_id.context)) - obj_ids = self.pool.get(action.model_id.model).search(cr, uid, eval(action.filter_id.domain), context=ctx) - ok = ok and obj.id in obj_ids - if getattr(obj, 'user_id', False): - ok = ok and (not action.trg_user_id.id or action.trg_user_id.id==obj.user_id.id) - if getattr(obj, 'partner_id', False): - ok = ok and (not action.trg_partner_id.id or action.trg_partner_id.id==obj.partner_id.id) - ok = ok and ( - not action.trg_partner_categ_id.id or - ( - obj.partner_id.id and - (action.trg_partner_categ_id.id in map(lambda x: x.id, obj.partner_id.category_id or [])) - ) - ) - state_to = context.get('state_to', False) - state = getattr(obj, 'state', False) - if state: - ok = ok and (not action.trg_state_from or action.trg_state_from==state) - if state_to: - ok = ok and (not action.trg_state_to or action.trg_state_to==state_to) - elif action.trg_state_to: - ok = False - reg_name = action.regex_name - result_name = True - if reg_name: - ptrn = re.compile(ustr(reg_name)) - _result = ptrn.search(ustr(obj.name)) - if not _result: - result_name = False - regex_n = not reg_name or result_name - ok = ok and regex_n - return ok + if action.filter_id: + domain = eval(action.filter_id.domain) + ctx.update(eval(action.filter_id.context)) + record_ids = model.search(cr, uid, domain, context=ctx) - def do_action(self, cr, uid, action, obj, context=None): - """ Do Action """ - if context is None: - context = {} - ctx = dict(context) - model_obj = self.pool.get(action.model_id.model) - action_server_obj = self.pool.get('ir.actions.server') - if action.server_action_ids: - ctx.update({'active_model': action.model_id.model, 'active_id':obj.id, 'active_ids':[obj.id]}) - action_server_obj.run(cr, uid, [x.id for x in action.server_action_ids], context=ctx) + # determine when action should occur for the records + date_field = action.trg_date_id.name + if date_field == 'date_action_last' and 'create_date' in model._all_columns: + get_record_dt = lambda record: record[date_field] or record.create_date + else: + get_record_dt = lambda record: record[date_field] - write = {} - if hasattr(obj, 'user_id') and action.act_user_id: - write['user_id'] = action.act_user_id.id - if hasattr(obj, 'date_action_last'): - write['date_action_last'] = time.strftime('%Y-%m-%d %H:%M:%S') - if hasattr(obj, 'state') and action.act_state: - write['state'] = action.act_state + delay = DATE_RANGE_FUNCTION[action.trg_date_range_type](action.trg_date_range) - model_obj.write(cr, uid, [obj.id], write, context) - if hasattr(obj, 'state') and hasattr(obj, 'message_post') and action.act_state: - model_obj.message_post(cr, uid, [obj], _(action.act_state), context=context) - - if hasattr(obj, 'message_subscribe') and action.act_followers: - exits_followers = [x.id for x in obj.message_follower_ids] - new_followers = [x.id for x in action.act_followers if x.id not in exits_followers] - if new_followers: - model_obj.message_subscribe(cr, uid, [obj.id], new_followers, context=context) - return True + # process action on the records that should be executed + for record in model.browse(cr, uid, record_ids, context=context): + record_dt = get_record_dt(record) + if not record_dt: + continue + action_dt = get_datetime(record_dt) + delay + if last_run and (last_run <= action_dt < now) or (action_dt < now): + try: + self._process(cr, uid, action, [record.id], context=context) + except Exception: + import traceback + _logger.error(traceback.format_exc()) - def _action(self, cr, uid, ids, objects, scrit=None, context=None): - """ Do Action """ - if context is None: - context = {} - - context.update({'action': True}) - if not scrit: - scrit = [] - if not isinstance(objects, list): - objects = [objects] - for action in self.browse(cr, uid, ids, context=context): - for obj in objects: - if self.do_check(cr, uid, action, obj, context=context): - self.do_action(cr, uid, action, obj, context=context) - - context.update({'action': False}) - return True - -base_action_rule() - -class actions_server(osv.osv): - _inherit = 'ir.actions.server' - _columns = { - 'action_rule_id': fields.many2one("base.action.rule", string="Action Rule") - } -actions_server() - -class ir_cron(osv.osv): - _inherit = 'ir.cron' - _init_done = False - - def _poolJobs(self, db_name, check=False): - if not self._init_done: - self._init_done = True - try: - db = pooler.get_db(db_name) - except: - return False - cr = db.cursor() - try: - next = datetime.now().strftime('%Y-%m-%d %H:00:00') - # Putting nextcall always less than current time in order to call it every time - cr.execute('UPDATE ir_cron set nextcall = \'%s\' where numbercall<>0 and active and model=\'base.action.rule\' ' % (next)) - finally: - cr.commit() - cr.close() - - super(ir_cron, self)._poolJobs(db_name, check=check) - -ir_cron() - - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: + action.write({'last_run': now.strftime(DEFAULT_SERVER_DATETIME_FORMAT)}) diff --git a/addons/base_action_rule/base_action_rule_view.xml b/addons/base_action_rule/base_action_rule_view.xml index bb711be9928..25ea4048bad 100644 --- a/addons/base_action_rule/base_action_rule_view.xml +++ b/addons/base_action_rule/base_action_rule_view.xml @@ -4,57 +4,55 @@ - - - base.action.rule.form + + + base.action.rule.form base.action.rule
- - - - - - - +
-
+
- - - - base.action.rule.tree + + + base.action.rule.tree base.action.rule - + - - - + + Automated Actions base.action.rule @@ -109,6 +104,5 @@ - diff --git a/addons/base_action_rule/i18n/ar.po b/addons/base_action_rule/i18n/ar.po index 49fe92e2b9a..3c025f56667 100644 --- a/addons/base_action_rule/i18n/ar.po +++ b/addons/base_action_rule/i18n/ar.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-01 18:30+0000\n" "Last-Translator: gehad shaat \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: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" -msgstr "عين التابعين" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" +msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "قواعد الاجراء" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "مسئول" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "ملاحظة" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "فئة الشريك" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,48 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "تأخير بعد تاريخ تريجر" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "اذا عُيين الحقل النشط الى خطأ, سيسمح لك بإخفاء القاعدة بدون ازالتها." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "الشروط" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "الحالة" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "قاعدة الاجراء" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "حقول للتغيير" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "تم الضغط على الزر" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "تاريخ اخر اجراء" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -115,36 +140,15 @@ msgid "Hours" msgstr "ساعات" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "ضع حالة لـ" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"يحدد تأخير بعد تاريخ تريجر, يمكنك وضع عدد سلبي. اذا كنت تريد التأخير قبل " -"تاريخ تريجر, كإرسال تذكير قبل الاجتماع ب15 دقيقة." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "كرون" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "تاريخ" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "نشط" #. module: base_action_rule #: view:base.action.rule:0 @@ -152,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "تأخير بعد تاريخ تريجر" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "عيين مؤول عن" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "لا شئ" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "شهور" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "اسم القاعدة" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -172,55 +188,45 @@ msgstr "شهور" msgid "Automated Actions" msgstr "الإجراءات التلقائية" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "ويعطي امر التسلسل عند عرض قائمة من القواعد." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "الشروط على حقول النموذج" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "إجراء الخادم" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "شهور" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "أيام" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "تأخير النوع" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "مُرشِّح" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "نشط" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "رجإكس على اسم المصدر" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" -msgstr "تاريخ آخر تعديل" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" +msgstr "" #. module: base_action_rule #: field:base.action.rule,model:0 @@ -238,38 +244,21 @@ msgid "Minutes" msgstr "دقائق" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" msgstr "" -"التعبير العادي لتوفيق الاسم من المصدر\n" -"مثال: سيبحث ‘طاري.*‘ على التسجيلات شاملة على بداية الاسم مع السللسلة " -"‘طاريء‘\n" -"لاحظ: انها تكون بحث مكثف للحالة." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "الشروط على التوقيت" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "اسم القاعدة" +#: help:base.action.rule,filter_pre_id:0 +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "مسلسل" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "الشروط على الشريك النموذجي" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -292,39 +281,43 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "تاريخ الإنشاء" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "انشيء سجل" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "الموعد النهائي" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "شريك" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "تاريخ تريجر" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "إجراءات الخادم" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "Object" #~ msgstr "كائن" +#~ msgid "Partner Category" +#~ msgstr "فئة الشريك" + #, python-format #~ msgid "Error!" #~ msgstr "خطأ!" @@ -332,12 +325,36 @@ msgstr "إجراءات الخادم" #~ msgid "Reply-To" #~ msgstr "رد على" +#~ msgid "Deadline" +#~ msgstr "الموعد النهائي" + +#~ msgid "Creation Date" +#~ msgstr "تاريخ الإنشاء" + #~ msgid "State" #~ msgstr "الحالة" +#~ msgid "None" +#~ msgstr "لا شئ" + #~ msgid "Invalid arguments" #~ msgstr "معطيات غير سليمة" +#~ msgid "Note" +#~ msgstr "ملاحظة" + +#~ msgid "Date" +#~ msgstr "تاريخ" + +#~ msgid "Filter" +#~ msgstr "مُرشِّح" + +#~ msgid "Server Action" +#~ msgstr "إجراء الخادم" + +#~ msgid "Button Pressed" +#~ msgstr "تم الضغط على الزر" + #~ msgid "Mail to Watchers (CC)" #~ msgstr "ارسل بريد للمراقبين" @@ -352,6 +369,9 @@ msgstr "إجراءات الخادم" #~ msgid "Mail to these Emails" #~ msgstr "ارسل بريد الى البريد الالكتروني" +#~ msgid "Set State to" +#~ msgstr "ضع حالة لـ" + #~ msgid "Remind Partner" #~ msgstr "قم بتذكير الشريك" @@ -367,12 +387,18 @@ msgstr "إجراءات الخادم" #~ msgid "Email Reminders" #~ msgstr "تذكيرات البريد الالكتروني" +#~ msgid "Conditions on Model Partner" +#~ msgstr "الشروط على الشريك النموذجي" + #~ msgid "" #~ "Check this if you want the rule to send a reminder by email to the partner." #~ msgstr "" #~ "تحقق من هذا اذا كنت تريد القاعدة لارسال تذكير بواسطة البريد الالكتروني الى " #~ "الشريك." +#~ msgid "Last Action Date" +#~ msgstr "تاريخ اخر اجراء" + #~ msgid "" #~ "Use a python expression to specify the right field on which one than we will " #~ "use for the 'To' field of the header" @@ -380,6 +406,9 @@ msgstr "إجراءات الخادم" #~ "استخدم تعبير بايثون لتحدد الحقل الصحيح من اي واحد منهم عن ماسيستخدم إلى " #~ "الحقل الرأسي" +#~ msgid "Set Responsible to" +#~ msgstr "عيين مؤول عن" + #~ msgid "" #~ "The rule uses the AND operator. The model must match all non-empty fields so " #~ "that the rule executes the action described in the 'Actions' tab." @@ -428,6 +457,14 @@ msgstr "إجراءات الخادم" #~ msgid "Call Object Method" #~ msgstr "إستدعاء اسلوب الهدف" +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "يحدد تأخير بعد تاريخ تريجر, يمكنك وضع عدد سلبي. اذا كنت تريد التأخير قبل " +#~ "تاريخ تريجر, كإرسال تذكير قبل الاجتماع ب15 دقيقة." + #~ msgid "%(partner_email)s = Partner Email" #~ msgstr "%(الشريك_البريد الالكتروني) = البريد الالكتروني للشريك" @@ -450,6 +487,9 @@ msgstr "إجراءات الخادم" #~ "توصف اسم الاجراء.\n" #~ "مثال: على اي هدف سيأخذ الاجراء على اساس اي شرط" +#~ msgid "ir.cron" +#~ msgstr "كرون" + #~ msgid "Mail body" #~ msgstr "هيئة البريد" @@ -459,6 +499,9 @@ msgstr "إجراءات الخادم" #~ msgid "%(object_date)s = Creation date" #~ msgstr "%(الهدف_التاريخ) = تاريخ الانشاء" +#~ msgid "Regex on Resource Name" +#~ msgstr "رجإكس على اسم المصدر" + #~ msgid "Server Action to be Triggered" #~ msgstr "اجراء الخدمة لتكون تريجرد" @@ -475,6 +518,9 @@ msgstr "إجراءات الخادم" #~ "تحقق من هذا إذا كنت تريد أن ترفق جميع المستندات المرفقة للهدف للبريد " #~ "الالكتروني المذكر المرسل." +#~ msgid "Conditions on Model Fields" +#~ msgstr "الشروط على حقول النموذج" + #~ msgid "" #~ "Check this if you want the rule to send a reminder by email to the user." #~ msgstr "" @@ -487,6 +533,14 @@ msgstr "إجراءات الخادم" #~ msgid "%(object_user)s = Responsible name" #~ msgstr "%(الهدف_المستخدم) = اسم المسئول" +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "اذا عُيين الحقل النشط الى خطأ, سيسمح لك بإخفاء القاعدة بدون ازالتها." + +#~ msgid "Conditions on Timing" +#~ msgstr "الشروط على التوقيت" + #~ msgid "" #~ "These people will receive a copy of the future communication between partner " #~ "and users by email" @@ -500,6 +554,17 @@ msgstr "إجراءات الخادم" #~ msgid "Error: The mail is not well formated" #~ msgstr "خطأ: لم يتم إعداد الرسالة جيداً" +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "التعبير العادي لتوفيق الاسم من المصدر\n" +#~ "مثال: سيبحث ‘طاري.*‘ على التسجيلات شاملة على بداية الاسم مع السللسلة " +#~ "‘طاريء‘\n" +#~ "لاحظ: انها تكون بحث مكثف للحالة." + #~ msgid "" #~ "Use automated actions to automatically trigger actions for various screens. " #~ "Example: a lead created by a specific user may be automatically set to a " diff --git a/addons/base_action_rule/i18n/base_action_rule.pot b/addons/base_action_rule/i18n/base_action_rule.pot index 871fc453be0..1970e2bf814 100644 --- a/addons/base_action_rule/i18n/base_action_rule.pot +++ b/addons/base_action_rule/i18n/base_action_rule.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,13 +16,13 @@ msgstr "" "Plural-Forms: \n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 -msgid "The rule uses the AND operator. The model must match all non-empty fields so that the rule executes the action described in the 'Actions' tab." +msgid "- In this same \"Search\" view, select the menu \"Save Current Filter\", enter the name (Ex: Create the 01/01/2012) and add the option \"Share with all users\"" msgstr "" #. module: base_action_rule @@ -31,28 +31,48 @@ msgid "Action Rules" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Server Actions to be Triggered (eg. Email Reminder, Call Object Method, etc...)" +#: help:base.action.rule,trg_date_range:0 +msgid "Delay after the trigger date.You can put a negative number if you need a delay before thetrigger date, like sending a reminder 15 minutes before a meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -60,45 +80,49 @@ msgstr "" msgid "Delay after trigger date" msgstr "" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "If the active field is set to False, it will allow you to hide the rule without removing it." -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" msgstr "" #. module: base_action_rule @@ -107,29 +131,14 @@ msgid "Hours" msgstr "" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." -msgstr "" - -#. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "Delay After Trigger Date,specifies you can put a negative number. If you need a delay before the trigger date, like sending a reminder 15 minutes before a meeting." -msgstr "" - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" msgstr "" #. module: base_action_rule @@ -138,18 +147,23 @@ msgid "Delay After Trigger Date" msgstr "" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" +#: view:base.action.rule:0 +msgid "An action rule is checked when you create or modify the \"Related Document Model\". The precondition filter is checked right before the modification while the postcondition filter is checked after the modification. A precondition filter will therefore not work during a creation." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" +#: view:base.action.rule:0 +msgid "Filter Condition" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" +#: view:base.action.rule:0 +msgid "- Go to your \"Related Document Model\" page and set the filter parameters in the \"Search\" view (Example of filter based on Leads/Opportunities: Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" msgstr "" #. module: base_action_rule @@ -158,24 +172,14 @@ msgstr "" msgid "Automated Actions" msgstr "" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" msgstr "" #. module: base_action_rule @@ -183,29 +187,29 @@ msgstr "" msgid "Days" msgstr "" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" +#: view:base.action.rule:0 +msgid "Server actions to run" msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -224,20 +228,13 @@ msgid "Minutes" msgstr "" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the string 'urgent'\n" -"Note: This is case sensitive search." +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" +#: help:base.action.rule,filter_pre_id:0 +msgid "If present, this condition must be satisfied before the update of the record." msgstr "" #. module: base_action_rule @@ -245,11 +242,6 @@ msgstr "" msgid "Sequence" msgstr "" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -269,33 +261,34 @@ msgid "

\n" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + diff --git a/addons/base_action_rule/i18n/bg.po b/addons/base_action_rule/i18n/bg.po index ea61b3be582..6ade6bd99f3 100644 --- a/addons/base_action_rule/i18n/bg.po +++ b/addons/base_action_rule/i18n/bg.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-21 10:58+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Отговорник" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Бележка" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Категория на контрагент" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,48 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Условия" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Дата на последно действие" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -115,34 +140,15 @@ msgid "Hours" msgstr "Часове" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." -msgstr "" - -#. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Дата" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Активен" #. module: base_action_rule #: view:base.action.rule:0 @@ -150,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Няма" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Месеци" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Име на правило" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -170,54 +188,44 @@ msgstr "Месеци" msgid "Automated Actions" msgstr "" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Действия на сървъра" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Месеци" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Дни" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Тип на забавяне" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Филтър" - -#. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Активен" - -#. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" +#: view:base.action.rule:0 +msgid "Server actions to run" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -236,34 +244,21 @@ msgid "Minutes" msgstr "Минути" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" +msgstr "" + +#. module: base_action_rule +#: help:base.action.rule,filter_pre_id:0 msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +"If present, this condition must be satisfied before the update of the record." msgstr "" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Име на правило" - #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Последователност" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -286,45 +281,52 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Дата на създаване" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Създаване на дата" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Краен срок" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Контрагент" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Дата на изпълнение" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "Email From" #~ msgstr "Имейл от" #~ msgid "Object" #~ msgstr "Обект" +#~ msgid "Partner Category" +#~ msgstr "Категория на контрагент" + #~ msgid "Email Body" #~ msgstr "Тяло на имейл" +#~ msgid "Deadline" +#~ msgstr "Краен срок" + #, python-format #~ msgid "Error!" #~ msgstr "Грешка!" @@ -335,9 +337,30 @@ msgstr "" #~ msgid "State" #~ msgstr "Състояние" +#~ msgid "Creation Date" +#~ msgstr "Дата на създаване" + +#~ msgid "None" +#~ msgstr "Няма" + #~ msgid "Invalid arguments" #~ msgstr "Невалидни аргументи" +#~ msgid "Note" +#~ msgstr "Бележка" + +#~ msgid "Filter" +#~ msgstr "Филтър" + +#~ msgid "Date" +#~ msgstr "Дата" + +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + +#~ msgid "Server Action" +#~ msgstr "Действия на сървъра" + #~ msgid "" #~ "Check this if you want the rule to send a reminder by email to the partner." #~ msgstr "" @@ -346,6 +369,9 @@ msgstr "" #~ msgid "Email Reminders" #~ msgstr "Напомняниея по имейл" +#~ msgid "Last Action Date" +#~ msgstr "Дата на последно действие" + #~ msgid "Remind with Attachment" #~ msgstr "Напомняне с прикрепен файл" diff --git a/addons/base_action_rule/i18n/bs.po b/addons/base_action_rule/i18n/bs.po index d80bf51e577..2479e4f6168 100644 --- a/addons/base_action_rule/i18n/bs.po +++ b/addons/base_action_rule/i18n/bs.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:18+0000\n" "Last-Translator: Raphael Collet (OpenERP) \n" "Language-Team: Bosnian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "Pravila radnje" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Odgovoran" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Bilješka" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Kategorija partnera" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,50 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "Odgodi nakon datuma okidanja" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"Ukoliko je aktivno polje postavljeno na False, omogućiti će vam da sakrijete " -"pravilo bez uklanjanja." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Uvjeti" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Pravilo radnje" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Polja za izmijeniti" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Pritisnuto dugme" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Datum zadnje radnje" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -117,37 +140,15 @@ msgid "Hours" msgstr "Sati" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Postavi stanje na" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"'Odgodi nakon datuma okidanja' specificira da možete staviti negativan bro, " -"ako trebate odgodu prije datuma okidanja, npr. slanje podsjetnika 15 minuta " -"prije sastanka." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Datum" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Aktivan" #. module: base_action_rule #: view:base.action.rule:0 @@ -155,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "Odgodi nakon datuma okidanja" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Postavi za odgovornu osobu" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Ništa" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Mjeseci" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Naziv pravila" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -175,54 +188,44 @@ msgstr "Mjeseci" msgid "Automated Actions" msgstr "Automatizirane radnje" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "Daje sekvencu kod prikaza liste pravila." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "Uvjeti za polja modela" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Serverska radnja" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Mjeseci" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Dana" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Vrsta odgode" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Filter" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Aktivan" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "Reg.izr. nad nazivom resursa" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -241,38 +244,21 @@ msgid "Minutes" msgstr "Minute" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" msgstr "" -"Regularni izraz za pronalaženje naziva resursa\n" -"npr.; 'urgent.*' će naći zapise koji imaju naziv koji počinje nizom " -"'urgent'\n" -"Napomena: Pretraga razlikuje velika i mala slova." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Uvjeti vremena" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Naziv pravila" +#: help:base.action.rule,filter_pre_id:0 +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Sekvenca" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Uvjeti partnera modela" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -295,36 +281,37 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Datum kreiranja" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Datum unosa" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Rok izvršenja" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Partner" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Datum okidanja" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "" #~ "Check this if you want the rule to send an email to the responsible person." #~ msgstr "Označite ukoliko želite da pravilo šalje email odgovornoj osobi." @@ -332,6 +319,15 @@ msgstr "" #~ msgid "Remind Partner" #~ msgstr "Podsjeti partnera" +#~ msgid "Partner Category" +#~ msgstr "Kategorija partnera" + +#~ msgid "Set State to" +#~ msgstr "Postavi stanje na" + +#~ msgid "Button Pressed" +#~ msgstr "Pritisnuto dugme" + #~ msgid "Object" #~ msgstr "Objekat" @@ -356,6 +352,12 @@ msgstr "" #~ msgid "Email Reminders" #~ msgstr "Email podsjetnici" +#~ msgid "Conditions on Model Partner" +#~ msgstr "Uvjeti partnera modela" + +#~ msgid "Deadline" +#~ msgstr "Rok izvršenja" + #~ msgid "%(object_subject)s = Object subject" #~ msgstr "%(object_subject)s = Naslov objekta" @@ -368,6 +370,18 @@ msgstr "" #~ msgid "Email-id of the persons whom mail is to be sent" #~ msgstr "Email-id osoba kojima treba poslati email" +#~ msgid "Creation Date" +#~ msgstr "Datum kreiranja" + +#~ msgid "Last Action Date" +#~ msgstr "Datum zadnje radnje" + +#~ msgid "Set Responsible to" +#~ msgstr "Postavi za odgovornu osobu" + +#~ msgid "None" +#~ msgstr "Ništa" + #~ msgid "%(object_user_phone)s = Responsible phone" #~ msgstr "%(object_user_phone)s = Telefon odg. osobe" @@ -380,6 +394,20 @@ msgstr "" #~ msgid "Invalid arguments" #~ msgstr "Neispravni argumenti" +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "Regularni izraz za pronalaženje naziva resursa\n" +#~ "npr.; 'urgent.*' će naći zapise koji imaju naziv koji počinje nizom " +#~ "'urgent'\n" +#~ "Napomena: Pretraga razlikuje velika i mala slova." + +#~ msgid "Note" +#~ msgstr "Bilješka" + #~ msgid "" #~ "Check this if you want the rule to mark CC(mail to any other person defined " #~ "in actions)." @@ -390,6 +418,15 @@ msgstr "" #~ msgid "Call Object Method" #~ msgstr "Pozovi metodu objekta" +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "'Odgodi nakon datuma okidanja' specificira da možete staviti negativan bro, " +#~ "ako trebate odgodu prije datuma okidanja, npr. slanje podsjetnika 15 minuta " +#~ "prije sastanka." + #~ msgid "%(object_description)s = Object description" #~ msgstr "%(object_description)s = Opis objekta" @@ -400,6 +437,12 @@ msgstr "" #~ "Opisuje naziv radnje.\n" #~ "npr.: nad kojim objektima se provodi koja radnja na osnovu kojeg uvjeta" +#~ msgid "Filter" +#~ msgstr "Filter" + +#~ msgid "Date" +#~ msgstr "Datum" + #~ msgid "Remind Responsible" #~ msgstr "Napomeni odg. osobu" @@ -435,6 +478,9 @@ msgstr "" #~ msgid "Mail to Watchers (CC)" #~ msgstr "Email za nadzor (CC)" +#~ msgid "Conditions on Timing" +#~ msgstr "Uvjeti vremena" + #~ msgid "Server Action to be Triggered" #~ msgstr "Akcija servera koju treba okinut." @@ -444,6 +490,15 @@ msgstr "" #~ msgid "Add Watchers (Cc)" #~ msgstr "Dodaj nadzor (CC)" +#~ msgid "Conditions on Model Fields" +#~ msgstr "Uvjeti za polja modela" + +#~ msgid "Server Action" +#~ msgstr "Serverska radnja" + +#~ msgid "Regex on Resource Name" +#~ msgstr "Reg.izr. nad nazivom resursa" + #~ msgid "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." @@ -456,3 +511,10 @@ msgstr "" #~ msgid "%(object_user)s = Responsible name" #~ msgstr "%(object_user)s = Ime odg. osobe" + +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "Ukoliko je aktivno polje postavljeno na False, omogućiti će vam da sakrijete " +#~ "pravilo bez uklanjanja." diff --git a/addons/base_action_rule/i18n/ca.po b/addons/base_action_rule/i18n/ca.po index cecbd4b9ef2..744d227feee 100644 --- a/addons/base_action_rule/i18n/ca.po +++ b/addons/base_action_rule/i18n/ca.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:40+0000\n" "Last-Translator: Raphael Collet (OpenERP) \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "Regles d'acció" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Responsable" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Nota" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Categoria de l'empresa" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,49 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "Retard després de la data d'activació" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"Si el camp actiu es desmarca, permet ocultar la regla sense eliminar-la." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Condicions" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Regla d'acció" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Camps a canviar" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Botó pressionat" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Data última acció" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -116,37 +140,15 @@ msgid "Hours" msgstr "Hores" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Fixa estat a" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"Retard després data de llançament. Podeu posar un número negatiu si " -"necessiteu un retard abans de la data de llançament, com enviar un " -"recordatori 15 minuts abans d'una reunió." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Data" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Actiu" #. module: base_action_rule #: view:base.action.rule:0 @@ -154,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "Retard després de la data de llançament" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Fixa responsable a" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Sense" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Mesos" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Nom de la regla" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -174,54 +188,44 @@ msgstr "Mesos" msgid "Automated Actions" msgstr "Accions automatitzades" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "Indiqueu l'ordre de seqüència quan es mostra una llista de regles." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "Condicions en els camps del model" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Acció servidor" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Mesos" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Dies" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Tipus de retard" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Filtre" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Actiu" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "Regex sobre nom del recurs" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -240,38 +244,21 @@ msgid "Minutes" msgstr "Minuts" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" msgstr "" -"Expressió regular per concordar amb el nom del recurs.\n" -"Per exemple: 'urgent.' cercarà els registres que el seu nom comencin amb el " -"text 'urgent'\n" -"Nota: Aquesta recerca distingeix majúscules de minúscules." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Condicions sobre temporització" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Nom de la regla" +#: help:base.action.rule,filter_pre_id:0 +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Seqüència" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Condicions en el model empresa" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -294,36 +281,37 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Data de creació" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Data de creació" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Data límit" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Empresa" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Data d'activació" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "Mail to Watchers (CC)" #~ msgstr "Envia correu als observadors (CC)" @@ -336,28 +324,43 @@ msgstr "" #~ msgid "Mail to these Emails" #~ msgstr "Envia correu a aquests emails" +#~ msgid "Set State to" +#~ msgstr "Fixa estat a" + #~ msgid "Object" #~ msgstr "Objecte" #~ msgid "Remind Partner" #~ msgstr "Recorda empresa" +#~ msgid "Partner Category" +#~ msgstr "Categoria de l'empresa" + #, python-format #~ msgid "Error!" #~ msgstr "Error!" +#~ msgid "Conditions on Model Partner" +#~ msgstr "Condicions en el model empresa" + #~ msgid "" #~ "Check this if you want the rule to send a reminder by email to the partner." #~ msgstr "" #~ "Marqueu aquesta opció si voleu que la regla enviï un recordatori per correu " #~ "electrònic a l'empresa." +#~ msgid "Deadline" +#~ msgstr "Data límit" + #~ msgid "%(object_subject)s = Object subject" #~ msgstr "%(object_subject)s = Assumpte objecte" #~ msgid "State" #~ msgstr "Estat" +#~ msgid "Creation Date" +#~ msgstr "Data de creació" + #~ msgid "" #~ "Use automated actions to automatically trigger actions for various screens. " #~ "Example: a lead created by a specific user may be automatically set to a " @@ -378,6 +381,12 @@ msgstr "" #~ "ID de l'email de les persones a els qui el correu electrònic ha de ser " #~ "enviat." +#~ msgid "Last Action Date" +#~ msgstr "Data última acció" + +#~ msgid "Set Responsible to" +#~ msgstr "Fixa responsable a" + #~ msgid "%(object_user_phone)s = Responsible phone" #~ msgstr "%(object_user_phone)s = Telèfon responsable" @@ -387,6 +396,17 @@ msgstr "" #~ msgid "%(object_id)s = Object ID" #~ msgstr "%(object_id)s = ID objete" +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "Expressió regular per concordar amb el nom del recurs.\n" +#~ "Per exemple: 'urgent.' cercarà els registres que el seu nom comencin amb el " +#~ "text 'urgent'\n" +#~ "Nota: Aquesta recerca distingeix majúscules de minúscules." + #~ msgid "" #~ "The rule uses the AND operator. The model must match all non-empty fields so " #~ "that the rule executes the action described in the 'Actions' tab." @@ -395,6 +415,9 @@ msgstr "" #~ "camps no-buits perquè la regla executi l'acció descrita en la pestanya " #~ "\"Accions\"." +#~ msgid "Note" +#~ msgstr "Nota" + #~ msgid "%(partner)s = Partner name" #~ msgstr "%(partner)s = Nom empresa" @@ -408,6 +431,12 @@ msgstr "" #~ msgid "Call Object Method" #~ msgstr "Mètode per cridar l'objecte" +#~ msgid "Date" +#~ msgstr "Data" + +#~ msgid "Filter" +#~ msgstr "Filtre" + #~ msgid "Remind Responsible" #~ msgstr "Recorda responsable" @@ -419,6 +448,15 @@ msgstr "" #~ msgid "No E-Mail ID Found for your Company address!" #~ msgstr "No s'ha trobat Email en l'adreça de la seva companyia!" +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "Retard després data de llançament. Podeu posar un número negatiu si " +#~ "necessiteu un retard abans de la data de llançament, com enviar un " +#~ "recordatori 15 minuts abans d'una reunió." + #~ msgid "Email Information" #~ msgstr "Informació email" @@ -442,6 +480,9 @@ msgstr "" #~ "Per exemple: Sobre quin objecte quina acció ha d'executar-se sobre la base " #~ "de quina condició." +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + #~ msgid "%(partner_email)s = Partner Email" #~ msgstr "%(partner_email)s = Email empresa" @@ -460,6 +501,12 @@ msgstr "" #~ msgid "Add Watchers (Cc)" #~ msgstr "Afegeix observadors (CC)" +#~ msgid "Conditions on Model Fields" +#~ msgstr "Condicions en els camps del model" + +#~ msgid "Server Action" +#~ msgstr "Acció servidor" + #~ msgid "" #~ "Check this if you want the rule to send a reminder by email to the user." #~ msgstr "" @@ -472,6 +519,18 @@ msgstr "" #~ msgid "%(object_user)s = Responsible name" #~ msgstr "%(object_user)s = Nom del responsable" +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "Si el camp actiu es desmarca, permet ocultar la regla sense eliminar-la." + +#~ msgid "Conditions on Timing" +#~ msgstr "Condicions sobre temporització" + +#~ msgid "Regex on Resource Name" +#~ msgstr "Regex sobre nom del recurs" + #~ msgid "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." @@ -482,6 +541,9 @@ msgstr "" #~ msgid "Email From" #~ msgstr "Email de" +#~ msgid "Button Pressed" +#~ msgstr "Botó pressionat" + #~ msgid "Email Body" #~ msgstr "Missatje del email" @@ -506,6 +568,9 @@ msgstr "" #~ "contingut del qual, s'utilitzarà per al camp \"Per\" de la capçalera del " #~ "correu." +#~ msgid "None" +#~ msgstr "Sense" + #~ msgid "Invalid arguments" #~ msgstr "Arguments invàlids" diff --git a/addons/base_action_rule/i18n/da.po b/addons/base_action_rule/i18n/da.po index 597f6839b49..add7189be8e 100644 --- a/addons/base_action_rule/i18n/da.po +++ b/addons/base_action_rule/i18n/da.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-11-08 22:29+0000\n" "Last-Translator: OpenERP Danmark / Henning Dinsen \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: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,47 +88,50 @@ msgstr "" msgid "Delay after trigger date" msgstr "" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" msgstr "" #. module: base_action_rule @@ -115,34 +140,15 @@ msgid "Hours" msgstr "Timer" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." -msgstr "" - -#. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Dato" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Aktiv" #. module: base_action_rule #: view:base.action.rule:0 @@ -150,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" +#: view:base.action.rule:0 +msgid "Filter Condition" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Måneder" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Regel Navn" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -170,54 +188,44 @@ msgstr "Måneder" msgid "Automated Actions" msgstr "" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Måneder" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Dage" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Filter" - -#. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Aktiv" - -#. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" +#: view:base.action.rule:0 +msgid "Server actions to run" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -236,34 +244,21 @@ msgid "Minutes" msgstr "Minutter" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" +msgstr "" + +#. module: base_action_rule +#: help:base.action.rule,filter_pre_id:0 msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +"If present, this condition must be satisfied before the update of the record." msgstr "" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Regel Navn" - #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -286,36 +281,37 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Deadline" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "Email From" #~ msgstr "E-mail fra" @@ -326,6 +322,15 @@ msgstr "" #~ msgid "Reply-To" #~ msgstr "Svar til" +#~ msgid "Deadline" +#~ msgstr "Deadline" + +#~ msgid "Filter" +#~ msgstr "Filter" + +#~ msgid "Date" +#~ msgstr "Dato" + #~ msgid "Object" #~ msgstr "Objekt" diff --git a/addons/base_action_rule/i18n/de.po b/addons/base_action_rule/i18n/de.po index a48c2ac39ee..e2b07467c70 100644 --- a/addons/base_action_rule/i18n/de.po +++ b/addons/base_action_rule/i18n/de.po @@ -6,31 +6,29 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-12-17 21:56+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-19 20:29+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-18 05:02+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" -"Diese Regel benutzt den AND Operator. Das Datenmodell sollte alle nicht " -"leeren Felder zuweisen, so daß dieses Regel die Aktion auslöst, die auf dem " -"'Aktion' Tabulator hinterlegt wurde." #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule @@ -38,83 +36,103 @@ msgid "Action Rules" msgstr "Regeln zur Auslösung v. Aktionen" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Verantwortlicher" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Hinweis" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Partner Kategorie" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" -"Auszuführende Serveraktionen (z.B. Email Reminder, Call Object Methode " -"etc.... )" #. module: base_action_rule #: field:base.action.rule,trg_date_range:0 msgid "Delay after trigger date" msgstr "Zeitspanne nach Auslösetermin" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"Durch Deaktivierung des Feldes 'Aktiv' kann die einmal definierte Regel " -"nicht mehr angezeigt werden und muss somit nicht zwingend gelöscht werden." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Bedingungen" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "Status" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Regel für Aktion" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Zu ändernde Felder" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Button Bestätigt" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" -msgstr "Bedingungen des Status" +msgid "The filter must therefore be available in this page." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Datum letzte Aktion" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -122,39 +140,15 @@ msgid "Hours" msgstr "Stunden" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Definiere Status" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" -"Definieren Sie Server Actions:\n" -"(z.B. Email Erinnerungen, CallObject Service)" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"In das Feld Zeitspanne nach Auslösetermin, kann auch ein negativer Wert " -"eingetragen werden. Sinnvoll kann dieses zum Beispiel zur Erinnerung im " -"Vorfeld eines bestimmten Meetings eingesetzt werden." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Datum" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Aktiv" #. module: base_action_rule #: view:base.action.rule:0 @@ -162,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "Zeitspanne nach Auslösedatum" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Definiere Verantwortlichen" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Keine" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Monate" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Bezeichnung Regel" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -182,55 +188,45 @@ msgstr "Monate" msgid "Automated Actions" msgstr "Automatische Aktion" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "verbundenes Datenmodell" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "Reihenfolge für die Anzeige der Regeln" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "Bedingungen zu Datenfeldern" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Server Aktion" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Monate" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Tage" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Typ Zeitverzug" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Filter" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Aktiv" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "RegEx für Ress. Bez." - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" -msgstr "Letztes Änderungsdatum" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" +msgstr "" #. module: base_action_rule #: field:base.action.rule,model:0 @@ -248,38 +244,21 @@ msgid "Minutes" msgstr "Minuten" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" +msgstr "verbundenes Datenmodell" + +#. module: base_action_rule +#: help:base.action.rule,filter_pre_id:0 msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +"If present, this condition must be satisfied before the update of the record." msgstr "" -"Suchausdruck zur Suche nach passenden Bezeichnungen der \n" -"entsprechenden Ressource. Zum Beispiel 'urgent.*' sucht alle Daten, die mit " -"dem Textstring 'urgent' beginnen. \n" -"Hinweis: Die Suche erfolgt aus dem jeweiligen Kontext." - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Bedingungen Terminierung" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Bezeichnung Regel" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Reihenfolge" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Bedingungen Partner Daten" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -301,11 +280,18 @@ msgid "" "

\n" " " msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Datum Erstellung" +"Klicken Sie zur Erstellung einer neuen automatischen Abfolge Regel.\n" +"\n" +"Benutzen Sie automatische Abfolge Regeln um diverse Voränge verschiedener " +"Formulare \n" +"für verschiedene Ansichten auszulösen. Zum Beispiel: Ein Interessent, der " +"durch einen\n" +"speziellen Benutzer angelegt wurde, wird einem bestimmten Team zugewiesen, " +"oder ein Vorgang\n" +"der nach 14 Tagen immer noch den Status Wiedervorlage ausweist, löst eine " +"automatisch E-Mail \n" +"Erinnerung aus.\n" +" " #. module: base_action_rule #: field:base.action.rule,create_date:0 @@ -313,23 +299,29 @@ msgid "Create Date" msgstr "Datum Erstellung" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Frist" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Partner" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Auslösetermin" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" +msgstr "Server-Aktion" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" msgstr "" #~ msgid "" @@ -341,17 +333,26 @@ msgstr "" #~ msgid "Remind Partner" #~ msgstr "Erinnerung an Partner" +#~ msgid "Partner Category" +#~ msgstr "Partner Kategorie" + #~ msgid "" #~ "Check this if you want the rule to send a reminder by email to the user." #~ msgstr "" #~ "Aktiviere Feld, wenn diese Regel eine EMail an den Benutzer senden soll." +#~ msgid "Button Pressed" +#~ msgstr "Button Bestätigt" + #~ msgid "Object" #~ msgstr "Objekt" #~ msgid "Mail to these Emails" #~ msgstr "Sende an Emailempfänger" +#~ msgid "Set State to" +#~ msgstr "Definiere Status" + #~ msgid "Email Body" #~ msgstr "EMail Haupttext" @@ -377,6 +378,12 @@ msgstr "" #~ msgid "Email Reminders" #~ msgstr "EMail Erinnerung" +#~ msgid "Conditions on Model Partner" +#~ msgstr "Bedingungen Partner Daten" + +#~ msgid "Deadline" +#~ msgstr "Frist" + #~ msgid "%(object_subject)s = Object subject" #~ msgstr "%(object_subject)s = Objekt Subjekt" @@ -389,6 +396,12 @@ msgstr "" #~ msgid "Email-id of the persons whom mail is to be sent" #~ msgstr "Email Adressen der Empfänger" +#~ msgid "Creation Date" +#~ msgstr "Datum Erstellung" + +#~ msgid "Last Action Date" +#~ msgstr "Datum letzte Aktion" + #~ msgid "%(object_id)s = Object ID" #~ msgstr "%(object_id)s = Objekt ID" @@ -398,6 +411,12 @@ msgstr "" #~ msgid "Invalid arguments" #~ msgstr "Fehlerhafte Bedingungen" +#~ msgid "Set Responsible to" +#~ msgstr "Definiere Verantwortlichen" + +#~ msgid "None" +#~ msgstr "Keine" + #~ msgid "%(object_user_phone)s = Responsible phone" #~ msgstr "%(object_user_phone)s = Telefon Verantwortl." @@ -422,6 +441,18 @@ msgstr "" #~ msgid "%(partner)s = Partner name" #~ msgstr "%(partner)s = Partner Bezeichnung" +#~ msgid "Note" +#~ msgstr "Hinweis" + +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "In das Feld Zeitspanne nach Auslösetermin, kann auch ein negativer Wert " +#~ "eingetragen werden. Sinnvoll kann dieses zum Beispiel zur Erinnerung im " +#~ "Vorfeld eines bestimmten Meetings eingesetzt werden." + #, python-format #~ msgid "No E-Mail ID Found for your Company address!" #~ msgstr "EMail Daten fehlen bei den Adressdaten Ihrer Firma!" @@ -434,6 +465,12 @@ msgstr "" #~ "Dieses Modul ermöglicht die Definition von Regeln für bestimmte Aktionen von " #~ "beliebigen Objekten" +#~ msgid "Filter" +#~ msgstr "Filter" + +#~ msgid "Date" +#~ msgstr "Datum" + #~ msgid "" #~ "Describes the action name.\n" #~ "eg:on which object which action to be taken on basis of which condition" @@ -478,6 +515,12 @@ msgstr "" #~ msgid "Add Watchers (Cc)" #~ msgstr "Hinzufügen Kopieempf. (CC)" +#~ msgid "Conditions on Model Fields" +#~ msgstr "Bedingungen zu Datenfeldern" + +#~ msgid "Server Action" +#~ msgstr "Server Aktion" + #~ msgid "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." @@ -485,6 +528,16 @@ msgstr "" #~ "Aktiviere diese Option, um alle angehängten Dokumente als Anhang zur " #~ "Erinnerungsemail mitzuversenden." +#~ msgid "Conditions on Timing" +#~ msgstr "Bedingungen Terminierung" + +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "Durch Deaktivierung des Feldes 'Aktiv' kann die einmal definierte Regel " +#~ "nicht mehr angezeigt werden und muss somit nicht zwingend gelöscht werden." + #~ msgid "%(object_user)s = Responsible name" #~ msgstr "%(object_user)s = Name Verantwortlicher" @@ -501,6 +554,17 @@ msgstr "" #~ "Benutze Python Ausdruck zur Spezifizierung des richtigen Datenfeldes für das " #~ "'An' Feld im Emailkopf." +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "Suchausdruck zur Suche nach passenden Bezeichnungen der \n" +#~ "entsprechenden Ressource. Zum Beispiel 'urgent.*' sucht alle Daten, die mit " +#~ "dem Textstring 'urgent' beginnen. \n" +#~ "Hinweis: Die Suche erfolgt aus dem jeweiligen Kontext." + #~ msgid "Email To" #~ msgstr "Email an" @@ -511,9 +575,15 @@ msgstr "" #~ "Benutze Python Ausdruck zur Spezifizierung des richtigen Datenfeldes für das " #~ "'Von' Feld im Emailkopf." +#~ msgid "Regex on Resource Name" +#~ msgstr "RegEx für Ress. Bez." + #~ msgid "Error: The mail is not well formated" #~ msgstr "Fehler: Email wurde nicht ausreichend konfiguriert" +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + #~ msgid "" #~ "Use automated actions to automatically trigger actions for various screens. " #~ "Example: a lead created by a specific user may be automatically set to a " diff --git a/addons/base_action_rule/i18n/el.po b/addons/base_action_rule/i18n/el.po index 193afd25a9a..43947be2e42 100644 --- a/addons/base_action_rule/i18n/el.po +++ b/addons/base_action_rule/i18n/el.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 18:04+0000\n" "Last-Translator: Dimitris Andavoglou \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: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Υπεύθυνος" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Σημείωση" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Κατηγορία Συνεργάτη" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,48 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "Καθυστέρηση μετά την ημερομηνίας εναύσματος" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Συνθήκες" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Κανόνας Ενέργειας" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Πεδία προς Αλλαγή" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Το Κουμπί Πατήθηκε" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Τελευταία Ημερομηνία Ενέργειας" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -115,34 +140,15 @@ msgid "Hours" msgstr "Ώρες" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Θέσε την κατάσταση σε" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Ημερομηνία" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Ενεργό" #. module: base_action_rule #: view:base.action.rule:0 @@ -150,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "Καθυστέρηση Μετά την Ημερομηνία Εναύσματος" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Κανένας" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Μήνες" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Όνομα Κανόνα" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -170,54 +188,44 @@ msgstr "Μήνες" msgid "Automated Actions" msgstr "Αυτοματοποιημένες ενέργειες" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Ενέργεια Διακομιστή" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Μήνες" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Ημέρες" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Τύπος καθυστέρησης" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Φίλτρο" - -#. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Ενεργό" - -#. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" +#: view:base.action.rule:0 +msgid "Server actions to run" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -236,34 +244,21 @@ msgid "Minutes" msgstr "Λεπτά" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" +msgstr "" + +#. module: base_action_rule +#: help:base.action.rule,filter_pre_id:0 msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +"If present, this condition must be satisfied before the update of the record." msgstr "" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Όνομα Κανόνα" - #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Ακολουθία" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -286,36 +281,37 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Ημερομηνία Δημιουργίας" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Ημερομηνία Δημιουργίας" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Προσθεσμία" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Συνεργάτης" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Ημερομηνία Εναύσματος" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "Email From" #~ msgstr "Email Από" @@ -327,12 +323,21 @@ msgstr "" #~ msgid "Mail to these Emails" #~ msgstr "Αποστολή σε αυτά τα Emails" +#~ msgid "Set State to" +#~ msgstr "Θέσε την κατάσταση σε" + +#~ msgid "Button Pressed" +#~ msgstr "Το Κουμπί Πατήθηκε" + #~ msgid "Object" #~ msgstr "Αντικείμενο" #~ msgid "Remind Partner" #~ msgstr "Υπενθύμιση Συνεργάτη" +#~ msgid "Partner Category" +#~ msgstr "Κατηγορία Συνεργάτη" + #~ msgid "Email Body" #~ msgstr "Σώμα Email" @@ -343,18 +348,42 @@ msgstr "" #~ msgid "Reply-To" #~ msgstr "Απάντηση-Σε" +#~ msgid "Deadline" +#~ msgstr "Προσθεσμία" + #~ msgid "State" #~ msgstr "Κατάσταση" +#~ msgid "Creation Date" +#~ msgstr "Ημερομηνία Δημιουργίας" + +#~ msgid "None" +#~ msgstr "Κανένας" + #~ msgid "Invalid arguments" #~ msgstr "Μη έγκυρες παράμετροι" +#~ msgid "Note" +#~ msgstr "Σημείωση" + +#~ msgid "Filter" +#~ msgstr "Φίλτρο" + +#~ msgid "Date" +#~ msgstr "Ημερομηνία" + #~ msgid "Error: The mail is not well formated" #~ msgstr "Σφάλμα:Το email δεν είναι σωστά διαμορφωμένο" #~ msgid "Mail body" #~ msgstr "Σώμα Mail" +#~ msgid "Server Action" +#~ msgstr "Ενέργεια Διακομιστή" + +#~ msgid "Last Action Date" +#~ msgstr "Τελευταία Ημερομηνία Ενέργειας" + #~ msgid "%(object_id)s = Object ID" #~ msgstr "%(object_id)s = Object ID" diff --git a/addons/base_action_rule/i18n/es.po b/addons/base_action_rule/i18n/es.po index e9225670cb5..740825edbea 100644 --- a/addons/base_action_rule/i18n/es.po +++ b/addons/base_action_rule/i18n/es.po @@ -7,30 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-12-11 12:47+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-24 10:13+0000\n" "Last-Translator: Pedro Manuel Baeza \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-25 04:48+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" -msgstr "Establecer seguidores" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" +msgstr "En proceso" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" -"Las reglas usan el operador lógico AND. El modelo debe coincidir todos los " -"campos no vacíos para que la regla ejecuta la acción configurada en la " -"pestaña 'Acciones'." +"- En la misma vista \"Búsqueda\", seleccione el menú \"Guardar filtro " +"actual\", introduzca el nombre (por ejemplo, 'Creado el 01/01/2012') y " +"marque la opción \"Compartir con todos los usuarios\"" #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule @@ -38,82 +39,110 @@ msgid "Action Rules" msgstr "Reglas acción" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "Seleccione un filtro o un temporizador como condición." + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Responsable" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" -msgstr "Acciones del servidor" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Nota" - -#. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Categoría empresa" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" -"Acciones del servidor a ser lanzadas (por ejemplo, enviar correos de " -"recordatorio, llamar método de objetos, etc...)" +"Ejemplos: recordatorios de correo electrónico, llamadas a servicios de " +"objeto, etc." + +#. module: base_action_rule +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "Añadir seguidores" + +#. module: base_action_rule +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "Establecer responsable" + +#. module: base_action_rule +#: help:base.action.rule,trg_date_range:0 +msgid "" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" +"Retraso después de la fecha de lanzamiento. Puede poner un número negativo " +"si necesita un adelanto antes de la fecha de lanzamiento, como enviar un " +"recordatorio 15 minutos antes de una reunión." + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "Test de regla de iniciativa" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "Cerrado" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" +msgstr "Nuevo" #. module: base_action_rule #: field:base.action.rule,trg_date_range:0 msgid "Delay after trigger date" msgstr "Retraso después fecha de disparo" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"Si el campo activo se desmarca, permite ocultar la regla sin eliminarla." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Condiciones" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "Pendiente" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "Estado" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "Filtro para antes de la actualización" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Regla acción" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" +"Si se encuentra presente, esta condición debe satisfacerse después de la " +"actualización del registro." + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Campos a cambiar" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Botón pulsado" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" -msgstr "Condiciones sobre el estado" +msgid "The filter must therefore be available in this page." +msgstr "El filtro debe estar por lo tanto disponible en esta página." #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Fecha última acción" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "Filtro para después de la actualización" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -121,39 +150,15 @@ msgid "Hours" msgstr "Horas" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Fijar estado a" +#: view:base.action.rule:0 +msgid "To create a new filter:" +msgstr "Para crear un nuevo filtro:" #. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." -msgstr "" -"Definir acciones de servidor.\n" -"Por ejemplo: correos de recordatorio, llamar a servicios de objeto, etc..." - -#. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"Retraso después fecha de disparo. Puede poner un número negativo si necesita " -"un retraso antes de la fecha de disparo, como enviar un recordatorio 15 " -"minutos antes de una reunión." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Fecha" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Activo" #. module: base_action_rule #: view:base.action.rule:0 @@ -161,19 +166,39 @@ msgid "Delay After Trigger Date" msgstr "Retraso después fecha de disparo" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Fijar responsable a" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" +"Las reglas de acción se comprueban cuando se crea o se modifica el \"Modelo " +"de documento relacionado\". El filtro de precondición se comprueba justo " +"antes de la modificación, mientras que el filtro de post-condición se hace " +"después de la modificación. El filtro de precondición no funcionará por lo " +"tanto durante una creación." #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Ninguno" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "Condición de filtro" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Meses" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" +"- Vaya a la página del \"Modelo de documento relacionado\" y establezca los " +"parámetros del filtro en la vista \"Búsqueda\" (Ejemplo de filtro basado en " +"Iniciativas/Oportunidades: Fecha de creación \"es igual a\" 01/01/2012)" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Nombre regla" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -181,55 +206,45 @@ msgstr "Meses" msgid "Automated Actions" msgstr "Acciones automatizadas" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "Modelo de documento relacionado" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "Indica el orden de secuencia cuando se muestra una lista de reglas." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "Condiciones en campos de modelo" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Acción servidor" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Meses" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Días" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "Temporizador" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Tipo retraso" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Filtro" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "Acciones de servidor a ejecutar" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Activo" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "Si no está marcado, la regla está oculta y no se ejecutará." #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "Regex sobre nombre recurso" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" -msgstr "Fecha de última modificación" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" +msgstr "Cancelado" #. module: base_action_rule #: field:base.action.rule,model:0 @@ -247,38 +262,23 @@ msgid "Minutes" msgstr "Minutos" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" +msgstr "Modelo de documento relacionado" + +#. module: base_action_rule +#: help:base.action.rule,filter_pre_id:0 msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +"If present, this condition must be satisfied before the update of the record." msgstr "" -"Expresión regular para concordar con el nombre del recurso.\n" -"Por ejemplo: 'urgente.*' buscará los registros que su nombre empiecen con el " -"texto 'urgente'\n" -"Nota: Esta búsqueda distingue mayúsculas de minúsculas." - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Condiciones en tiempo" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Nombre regla" +"Si está presente, esta condición debe satisfacerse antes de la actualización " +"del registro." #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Secuencia" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Condiciones en el modelo empresa" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -311,36 +311,37 @@ msgstr "" "

\n" " " -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Fecha creación" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Fecha creación" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Fecha límite" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "Última acción" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Empresa" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Fecha activación" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "Acciones de servidor" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "Asunto" + #~ msgid "" #~ "Check this if you want the rule to send an email to the responsible person." #~ msgstr "" @@ -350,6 +351,12 @@ msgstr "Acciones de servidor" #~ msgid "Mail to these Emails" #~ msgstr "Enviar correo a estos emails" +#~ msgid "Set State to" +#~ msgstr "Fijar estado a" + +#~ msgid "Button Pressed" +#~ msgstr "Botón pulsado" + #~ msgid "Object" #~ msgstr "Objeto" @@ -362,6 +369,9 @@ msgstr "Acciones de servidor" #~ msgid "Remind Partner" #~ msgstr "Recordar empresa" +#~ msgid "Partner Category" +#~ msgstr "Categoría empresa" + #~ msgid "" #~ "These people will receive a copy of the future communication between partner " #~ "and users by email" @@ -376,12 +386,18 @@ msgstr "Acciones de servidor" #~ msgid "Reply-To" #~ msgstr "Responder a" +#~ msgid "Conditions on Model Partner" +#~ msgstr "Condiciones en el modelo empresa" + #~ msgid "" #~ "Check this if you want the rule to send a reminder by email to the partner." #~ msgstr "" #~ "Seleccione esta opción si desea que la regla envíe un recordatorio por " #~ "correo electrónico a la empresa." +#~ msgid "Deadline" +#~ msgstr "Fecha límite" + #~ msgid "Email Body" #~ msgstr "Mensaje email" @@ -393,6 +409,12 @@ msgstr "Acciones de servidor" #~ "ID del email de las personas a quienes el correo electrónico debe ser " #~ "enviado." +#~ msgid "Creation Date" +#~ msgstr "Fecha creación" + +#~ msgid "Last Action Date" +#~ msgstr "Fecha última acción" + #~ msgid "State" #~ msgstr "Estado" @@ -402,6 +424,12 @@ msgstr "Acciones de servidor" #~ msgid "Email Reminders" #~ msgstr "Recordatorios email" +#~ msgid "Set Responsible to" +#~ msgstr "Fijar responsable a" + +#~ msgid "None" +#~ msgstr "Ninguno" + #~ msgid "%(object_user_phone)s = Responsible phone" #~ msgstr "%(object_user_phone)s = Teléfono responsable" @@ -439,6 +467,9 @@ msgstr "Acciones de servidor" #~ "Marque esta opción si desea que la regla use CC (envíe correo a otras " #~ "personas definidas en las acciones)." +#~ msgid "Note" +#~ msgstr "Nota" + #~ msgid "%(partner)s = Partner name" #~ msgstr "%(partner)s = Nombre empresa" @@ -452,6 +483,9 @@ msgstr "Acciones de servidor" #~ "Utilice una expresión Python para especificar el campo apropiado cuyo " #~ "contenido se utilizará para el campo \"Para\" de la cabecera del correo." +#~ msgid "Filter" +#~ msgstr "Filtro" + #~ msgid "Remind Responsible" #~ msgstr "Recordar responsable" @@ -464,6 +498,15 @@ msgstr "Acciones de servidor" #~ msgstr "" #~ "¡No se ha encontrado un ID de email para su dirección de la compañía!" +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "Retraso después fecha de disparo. Puede poner un número negativo si necesita " +#~ "un retraso antes de la fecha de disparo, como enviar un recordatorio 15 " +#~ "minutos antes de una reunión." + #~ msgid "Email Information" #~ msgstr "Información email" @@ -481,6 +524,12 @@ msgstr "Acciones de servidor" #~ "Por ejemplo: Sobre que objeto que acción debe ejecutarse en base a que " #~ "condición." +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + +#~ msgid "Date" +#~ msgstr "Fecha" + #~ msgid "Content of mail" #~ msgstr "Contenido del correo." @@ -499,12 +548,41 @@ msgstr "Acciones de servidor" #~ msgid "Add Watchers (Cc)" #~ msgstr "Añadir observadores (CC)" +#~ msgid "Conditions on Model Fields" +#~ msgstr "Condiciones en campos de modelo" + +#~ msgid "Server Action" +#~ msgstr "Acción servidor" + #~ msgid "Conditions on States" #~ msgstr "Condiciones en estados" #~ msgid "%(object_user)s = Responsible name" #~ msgstr "%(object_user)s = Nombre responsable" +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "Si el campo activo se desmarca, permite ocultar la regla sin eliminarla." + +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "Expresión regular para concordar con el nombre del recurso.\n" +#~ "Por ejemplo: 'urgente.*' buscará los registros que su nombre empiecen con el " +#~ "texto 'urgente'\n" +#~ "Nota: Esta búsqueda distingue mayúsculas de minúsculas." + +#~ msgid "Conditions on Timing" +#~ msgstr "Condiciones en tiempo" + +#~ msgid "Regex on Resource Name" +#~ msgstr "Regex sobre nombre recurso" + #~ msgid "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." diff --git a/addons/base_action_rule/i18n/es_CR.po b/addons/base_action_rule/i18n/es_CR.po index 4a8a00594b2..77deb4822b0 100644 --- a/addons/base_action_rule/i18n/es_CR.po +++ b/addons/base_action_rule/i18n/es_CR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-13 19:03+0000\n" "Last-Translator: Carlos Vásquez (CLEARCORP) " "\n" @@ -15,20 +15,21 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" "Language: es\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -37,30 +38,51 @@ msgid "Action Rules" msgstr "Reglas acción" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Responsable" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Nota" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Categoría empresa" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -68,49 +90,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "Retraso después fecha de disparo" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"Si el campo activo se desmarca, permite ocultar la regla sin eliminarla." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Condiciones" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Regla acción" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Campos a cambiar" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Botón pulsado" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Fecha última acción" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -118,37 +142,15 @@ msgid "Hours" msgstr "Horas" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Fijar estado a" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"Retraso después fecha de disparo. Puede poner un número negativo si necesita " -"un retraso antes de la fecha de disparo, como enviar un recordatorio 15 " -"minutos antes de una reunión." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Fecha" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Activo" #. module: base_action_rule #: view:base.action.rule:0 @@ -156,19 +158,31 @@ msgid "Delay After Trigger Date" msgstr "Retraso después fecha de disparo" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Fijar responsable a" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Ninguno" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Meses" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Nombre regla" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -176,54 +190,44 @@ msgstr "Meses" msgid "Automated Actions" msgstr "Acciones automatizadas" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "Indica el orden de secuencia cuando se muestra una lista de reglas." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "Condiciones en campos de modelo" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Acción servidor" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Meses" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Días" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Tipo retraso" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Filtro" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Activo" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "Regex sobre nombre recurso" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -242,38 +246,21 @@ msgid "Minutes" msgstr "Minutos" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" msgstr "" -"Expresión regular para concordar con el nombre del recurso.\n" -"Por ejemplo: 'urgente.*' buscará los registros que su nombre empiecen con el " -"texto 'urgente'\n" -"Nota: Esta búsqueda distingue mayúsculas de minúsculas." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Condiciones en tiempo" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Nombre regla" +#: help:base.action.rule,filter_pre_id:0 +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Secuencia" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Condiciones en el modelo empresa" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -296,36 +283,37 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Fecha creación" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Fecha creación" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Fecha límite" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Empresa" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Fecha activación" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "" #~ "Check this if you want the rule to send an email to the responsible person." #~ msgstr "" @@ -335,15 +323,24 @@ msgstr "" #~ msgid "Remind Partner" #~ msgstr "Recordar empresa" +#~ msgid "Partner Category" +#~ msgstr "Categoría empresa" + #~ msgid "Mail to Watchers (CC)" #~ msgstr "Enviar correo a observadores (CC)" +#~ msgid "Button Pressed" +#~ msgstr "Botón pulsado" + #~ msgid "Object" #~ msgstr "Objeto" #~ msgid "Mail to these Emails" #~ msgstr "Enviar correo a estos emails" +#~ msgid "Set State to" +#~ msgstr "Fijar estado a" + #~ msgid "Email From" #~ msgstr "Email de" @@ -370,6 +367,12 @@ msgstr "" #~ "Seleccione esta opción si desea que la regla envíe un recordatorio por " #~ "correo electrónico a la empresa." +#~ msgid "Conditions on Model Partner" +#~ msgstr "Condiciones en el modelo empresa" + +#~ msgid "Deadline" +#~ msgstr "Fecha límite" + #~ msgid "%(object_subject)s = Object subject" #~ msgstr "%(object_subject)s = Asunto objeto" @@ -399,6 +402,12 @@ msgstr "" #~ "ID del email de las personas a quienes el correo electrónico debe ser " #~ "enviado." +#~ msgid "Creation Date" +#~ msgstr "Fecha creación" + +#~ msgid "Last Action Date" +#~ msgstr "Fecha última acción" + #~ msgid "%(object_id)s = Object ID" #~ msgstr "%(object_id)s = ID objeto" @@ -408,6 +417,12 @@ msgstr "" #~ msgid "Invalid arguments" #~ msgstr "Argumentos no válidos" +#~ msgid "Set Responsible to" +#~ msgstr "Fijar responsable a" + +#~ msgid "None" +#~ msgstr "Ninguno" + #~ msgid "" #~ "Use a python expression to specify the right field on which one than we will " #~ "use for the 'To' field of the header" @@ -426,6 +441,17 @@ msgstr "" #~ "campos no-vacíos para que la regla ejecute la acción descrita en la pestaña " #~ "\"Acciones\"." +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "Expresión regular para concordar con el nombre del recurso.\n" +#~ "Por ejemplo: 'urgente.*' buscará los registros que su nombre empiecen con el " +#~ "texto 'urgente'\n" +#~ "Nota: Esta búsqueda distingue mayúsculas de minúsculas." + #~ msgid "Call Object Method" #~ msgstr "Llamar método objeto" @@ -442,6 +468,9 @@ msgstr "" #~ msgid "%(partner)s = Partner name" #~ msgstr "%(partner)s = Nombre empresa" +#~ msgid "Note" +#~ msgstr "Nota" + #~ msgid "" #~ "Use a python expression to specify the right field on which one than we will " #~ "use for the 'From' field of the header" @@ -449,6 +478,15 @@ msgstr "" #~ "Utilice una expresión Python para especificar el campo apropiado cuyo " #~ "contenido se utilizará para el campo \"Desde\" de la cabecera del correo." +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "Retraso después fecha de disparo. Puede poner un número negativo si necesita " +#~ "un retraso antes de la fecha de disparo, como enviar un recordatorio 15 " +#~ "minutos antes de una reunión." + #, python-format #~ msgid "No E-Mail ID Found for your Company address!" #~ msgstr "" @@ -457,6 +495,12 @@ msgstr "" #~ msgid "Remind Responsible" #~ msgstr "Recordar responsable" +#~ msgid "Filter" +#~ msgstr "Filtro" + +#~ msgid "Date" +#~ msgstr "Fecha" + #~ msgid "" #~ "Describes the action name.\n" #~ "eg:on which object which action to be taken on basis of which condition" @@ -465,6 +509,9 @@ msgstr "" #~ "Por ejemplo: Sobre que objeto que acción debe ejecutarse en base a que " #~ "condición." +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + #~ msgid "%(object_description)s = Object description" #~ msgstr "%(object_description)s = Descripción objeto" @@ -507,6 +554,15 @@ msgstr "" #~ msgid "Add Watchers (Cc)" #~ msgstr "Añadir observadores (CC)" +#~ msgid "Conditions on Model Fields" +#~ msgstr "Condiciones en campos de modelo" + +#~ msgid "Server Action" +#~ msgstr "Acción servidor" + +#~ msgid "Regex on Resource Name" +#~ msgstr "Regex sobre nombre recurso" + #~ msgid "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." @@ -514,6 +570,15 @@ msgstr "" #~ "Marque esta opción si desea que todos los documentos adjuntos al objeto sean " #~ "adjuntados al correo de recordatorio enviado." +#~ msgid "Conditions on Timing" +#~ msgstr "Condiciones en tiempo" + +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "Si el campo activo se desmarca, permite ocultar la regla sin eliminarla." + #~ msgid "%(object_user)s = Responsible name" #~ msgstr "%(object_user)s = Nombre responsable" diff --git a/addons/base_action_rule/i18n/es_EC.po b/addons/base_action_rule/i18n/es_EC.po index 65f12799534..1f380e477f1 100644 --- a/addons/base_action_rule/i18n/es_EC.po +++ b/addons/base_action_rule/i18n/es_EC.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-28 14:14+0000\n" "Last-Translator: Cristian Salamea (Gnuthink) \n" "Language-Team: Spanish (Ecuador) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,47 +88,50 @@ msgstr "" msgid "Delay after trigger date" msgstr "" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Botón presionado" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" msgstr "" #. module: base_action_rule @@ -115,33 +140,14 @@ msgid "Hours" msgstr "" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Fijar estado a" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" msgstr "" #. module: base_action_rule @@ -150,44 +156,46 @@ msgid "Delay After Trigger Date" msgstr "" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" +#: view:base.action.rule:0 +msgid "Filter Condition" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Nombre de regla" + #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act #: model:ir.ui.menu,name:base_action_rule.menu_base_action_rule_form msgid "Automated Actions" msgstr "" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" msgstr "" #. module: base_action_rule @@ -195,29 +203,29 @@ msgstr "" msgid "Days" msgstr "" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" +#: view:base.action.rule:0 +msgid "Server actions to run" msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -236,34 +244,21 @@ msgid "Minutes" msgstr "" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" +msgstr "" + +#. module: base_action_rule +#: help:base.action.rule,filter_pre_id:0 msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +"If present, this condition must be satisfied before the update of the record." msgstr "" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Nombre de regla" - #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Condiciones en el modelo empresa" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -286,39 +281,43 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "Email From" #~ msgstr "Correo desde" +#~ msgid "Button Pressed" +#~ msgstr "Botón presionado" + #~ msgid "%(object_subject)s = Object subject" #~ msgstr "%(object_subject)s = Asunto objeto" @@ -337,6 +336,12 @@ msgstr "" #~ "oportunidad que todaviía esté pendiente tras 14 días puede lanzar un e-mail " #~ "recordatorio automáticamente." +#~ msgid "Conditions on Model Partner" +#~ msgstr "Condiciones en el modelo empresa" + +#~ msgid "Set State to" +#~ msgstr "Fijar estado a" + #~ msgid "Remind Partner" #~ msgstr "Recordar empresa" diff --git a/addons/base_action_rule/i18n/es_PY.po b/addons/base_action_rule/i18n/es_PY.po index 794db3f5358..07f0e79e0d4 100644 --- a/addons/base_action_rule/i18n/es_PY.po +++ b/addons/base_action_rule/i18n/es_PY.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-08 00:42+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Paraguay) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "Reglas de acciones" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Responsable" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Nota" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Categoría de socio" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,49 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "Retraso después fecha de disparo" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"Si el campo activo se desmarca, permite ocultar la regla sin eliminarla." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Condiciones" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Regla acción" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Campos a cambiar" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Botón pulsado" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Fecha última acción" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -116,37 +140,15 @@ msgid "Hours" msgstr "Horas" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Fijar estado a" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"Retraso después fecha de disparo. Puede poner un número negativo si necesita " -"un retraso antes de la fecha de disparo, como enviar un recordatorio 15 " -"minutos antes de una reunión." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Fecha" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Activo" #. module: base_action_rule #: view:base.action.rule:0 @@ -154,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "Retraso después fecha de disparo" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Fijar responsable a" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Ninguno" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Meses" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Nombre de la regla" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -174,54 +188,44 @@ msgstr "Meses" msgid "Automated Actions" msgstr "Acciones automatizadas" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "Indica el orden de secuencia cuando se muestra una lista de reglas." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "Condiciones en campos de modelo" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Acción servidor" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Meses" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Días" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Tipo retraso" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Filtro" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Activo" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "Regex sobre nombre recurso" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -240,38 +244,21 @@ msgid "Minutes" msgstr "Minutos" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" msgstr "" -"Expresión regular para concordar con el nombre del recurso.\n" -"Por ejemplo: 'urgente.*' buscará los registros que su nombre empiecen con el " -"texto 'urgente'\n" -"Nota: Esta búsqueda distingue mayúsculas de minúsculas." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Condiciones en tiempo" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Nombre de la regla" +#: help:base.action.rule,filter_pre_id:0 +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Secuencia" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Condiciones en el modelo empresa" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -294,36 +281,37 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Fecha creación" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Fecha de creación" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Fecha límite" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Socio" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Fecha activación" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "Mail to Watchers (CC)" #~ msgstr "Enviar correo a observadores (CC)" @@ -339,12 +327,21 @@ msgstr "" #~ msgid "Mail to these Emails" #~ msgstr "Enviar correo a estos emails" +#~ msgid "Set State to" +#~ msgstr "Fijar estado a" + +#~ msgid "Button Pressed" +#~ msgstr "Botón pulsado" + #~ msgid "Object" #~ msgstr "Objeto" #~ msgid "Remind Partner" #~ msgstr "Recordar socio" +#~ msgid "Partner Category" +#~ msgstr "Categoría de socio" + #~ msgid "Email Body" #~ msgstr "Mensaje email" @@ -362,12 +359,18 @@ msgstr "" #~ msgid "Reply-To" #~ msgstr "Responder a" +#~ msgid "Conditions on Model Partner" +#~ msgstr "Condiciones en el modelo empresa" + #~ msgid "" #~ "Check this if you want the rule to send a reminder by email to the partner." #~ msgstr "" #~ "Seleccione esta opción si desea que la regla envíe un recordatorio por " #~ "correo electrónico a la empresa." +#~ msgid "Deadline" +#~ msgstr "Fecha límite" + #~ msgid "%(object_subject)s = Object subject" #~ msgstr "%(object_subject)s = Asunto objeto" @@ -382,6 +385,9 @@ msgstr "" #~ "ID del email de las personas a quienes el correo electrónico debe ser " #~ "enviado." +#~ msgid "Creation Date" +#~ msgstr "Fecha creación" + #~ msgid "" #~ "Use automated actions to automatically trigger actions for various screens. " #~ "Example: a lead created by a specific user may be automatically set to a " @@ -397,6 +403,9 @@ msgstr "" #~ msgid "Email Reminders" #~ msgstr "Recordatorios email" +#~ msgid "Last Action Date" +#~ msgstr "Fecha última acción" + #~ msgid "" #~ "Use a python expression to specify the right field on which one than we will " #~ "use for the 'To' field of the header" @@ -404,6 +413,9 @@ msgstr "" #~ "Utilice una expresión Python para especificar el campo apropiado cuyo " #~ "contenido se utilizará para el campo \"Para\" de la cabecera del correo." +#~ msgid "None" +#~ msgstr "Ninguno" + #~ msgid "%(object_user_phone)s = Responsible phone" #~ msgstr "%(object_user_phone)s = Teléfono responsable" @@ -416,6 +428,9 @@ msgstr "" #~ msgid "Invalid arguments" #~ msgstr "Argumentos no válidos" +#~ msgid "Set Responsible to" +#~ msgstr "Fijar responsable a" + #~ msgid "Email To" #~ msgstr "Para" @@ -426,6 +441,20 @@ msgstr "" #~ "Utilice una expresión Python para especificar el campo apropiado cuyo " #~ "contenido se utilizará para el campo \"Desde\" de la cabecera del correo." +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "Expresión regular para concordar con el nombre del recurso.\n" +#~ "Por ejemplo: 'urgente.*' buscará los registros que su nombre empiecen con el " +#~ "texto 'urgente'\n" +#~ "Nota: Esta búsqueda distingue mayúsculas de minúsculas." + +#~ msgid "Note" +#~ msgstr "Nota" + #~ msgid "%(partner)s = Partner name" #~ msgstr "%(partner)s = Nombre empresa" @@ -439,6 +468,12 @@ msgstr "" #~ msgid "Call Object Method" #~ msgstr "Llamar método objeto" +#~ msgid "Filter" +#~ msgstr "Filtro" + +#~ msgid "Date" +#~ msgstr "Fecha" + #~ msgid "Remind Responsible" #~ msgstr "Recordar responsable" @@ -451,6 +486,15 @@ msgstr "" #~ msgstr "" #~ "¡No se ha encontrado un ID de email para su dirección de la compañía!" +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "Retraso después fecha de disparo. Puede poner un número negativo si necesita " +#~ "un retraso antes de la fecha de disparo, como enviar un recordatorio 15 " +#~ "minutos antes de una reunión." + #~ msgid "%(partner_email)s = Partner Email" #~ msgstr "%(partner_email)s = Email empresa" @@ -474,6 +518,9 @@ msgstr "" #~ "Por ejemplo: Sobre que objeto que acción debe ejecutarse en base a que " #~ "condición." +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + #~ msgid "Email Information" #~ msgstr "Información email" @@ -495,6 +542,12 @@ msgstr "" #~ msgid "Add Watchers (Cc)" #~ msgstr "Añadir observadores (CC)" +#~ msgid "Conditions on Model Fields" +#~ msgstr "Condiciones en campos de modelo" + +#~ msgid "Server Action" +#~ msgstr "Acción servidor" + #~ msgid "" #~ "Check this if you want the rule to send a reminder by email to the user." #~ msgstr "" @@ -507,6 +560,18 @@ msgstr "" #~ msgid "%(object_user)s = Responsible name" #~ msgstr "%(object_user)s = Nombre responsable" +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "Si el campo activo se desmarca, permite ocultar la regla sin eliminarla." + +#~ msgid "Conditions on Timing" +#~ msgstr "Condiciones en tiempo" + +#~ msgid "Regex on Resource Name" +#~ msgstr "Regex sobre nombre recurso" + #~ msgid "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." diff --git a/addons/base_action_rule/i18n/fa.po b/addons/base_action_rule/i18n/fa.po index b9ebf479cb8..88b038abb94 100644 --- a/addons/base_action_rule/i18n/fa.po +++ b/addons/base_action_rule/i18n/fa.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-12-18 19:48+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,47 +88,50 @@ msgstr "" msgid "Delay after trigger date" msgstr "" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" msgstr "" #. module: base_action_rule @@ -115,33 +140,14 @@ msgid "Hours" msgstr "" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." -msgstr "" - -#. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" msgstr "" #. module: base_action_rule @@ -150,18 +156,30 @@ msgid "Delay After Trigger Date" msgstr "" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" +#: view:base.action.rule:0 +msgid "Filter Condition" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" msgstr "" #. module: base_action_rule @@ -170,24 +188,14 @@ msgstr "" msgid "Automated Actions" msgstr "" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" msgstr "" #. module: base_action_rule @@ -195,29 +203,29 @@ msgstr "" msgid "Days" msgstr "" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" +#: view:base.action.rule:0 +msgid "Server actions to run" msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -236,22 +244,14 @@ msgid "Minutes" msgstr "" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" +msgstr "" + +#. module: base_action_rule +#: help:base.action.rule,filter_pre_id:0 msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" +"If present, this condition must be satisfied before the update of the record." msgstr "" #. module: base_action_rule @@ -259,11 +259,6 @@ msgstr "" msgid "Sequence" msgstr "" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -286,32 +281,33 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" diff --git a/addons/base_action_rule/i18n/fi.po b/addons/base_action_rule/i18n/fi.po index cce8e5f575e..3bf3faa9699 100644 --- a/addons/base_action_rule/i18n/fi.po +++ b/addons/base_action_rule/i18n/fi.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:59+0000\n" "Last-Translator: Raphael Collet (OpenERP) \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: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "Toimintosäännöt" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Vastuuhenkilö" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Huomautus" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Kumppanin katerogia" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,50 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "Viive ajastetun päivämäärän jälkeen" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"Jos aktiivisen kentän tilaksi asetetaan epätosi (false), se mahdollistaa " -"säännön piilottamisen poistamatta sitä." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Ehdot" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Toimintosääntö" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Muutettavat kentät" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Painiketta painettu" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Viimeisen toiminnon päivämäärä" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -117,34 +140,15 @@ msgid "Hours" msgstr "Tunnit" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Aseta tilaksi" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Päiväys" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Aktiivinen" #. module: base_action_rule #: view:base.action.rule:0 @@ -152,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "Viive liipaisupäivän jälkeen" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Aseta vastuuhenkilöksi" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Ei mitään" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Kuukaudet" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Säännön nimi" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -172,54 +188,44 @@ msgstr "Kuukaudet" msgid "Automated Actions" msgstr "Automatisoidut Toiminnot" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "Antaa järjestyksen sääntölistaa näytettäessä." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Palvelintoiminto" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Kuukaudet" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Päivät" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Viivästyksen tyyppi" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Suodin" - -#. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Aktiivinen" - -#. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" +#: view:base.action.rule:0 +msgid "Server actions to run" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -238,34 +244,21 @@ msgid "Minutes" msgstr "Minuutit" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Ajastuksen tilat" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Säännön nimi" +#: help:base.action.rule,filter_pre_id:0 +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Sekvenssi" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Mallikumppanin ehdot" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -288,36 +281,40 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Luontipäivämäärä" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Luontipäivä" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Määräaika" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Kumppani" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Liipaisupäivämäärä" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + +#~ msgid "Button Pressed" +#~ msgstr "Painiketta painettu" + #~ msgid "Remind Partner" #~ msgstr "Muistuta Kumppania" @@ -331,6 +328,15 @@ msgstr "" #~ "Valitse tämä, jos haluat, että kumppanille lähetetään muistutus " #~ "sähköpostilla." +#~ msgid "Deadline" +#~ msgstr "Määräaika" + +#~ msgid "Creation Date" +#~ msgstr "Luontipäivämäärä" + +#~ msgid "Note" +#~ msgstr "Huomautus" + #~ msgid "" #~ "Check this if you want the rule to send a reminder by email to the user." #~ msgstr "" @@ -351,12 +357,18 @@ msgstr "" #~ msgid "Mail to these Emails" #~ msgstr "Lähetä sähköpostia näihin osoitteisiin" +#~ msgid "Set State to" +#~ msgstr "Aseta tilaksi" + #~ msgid "Object" #~ msgstr "Objekti" #~ msgid "Email Body" #~ msgstr "Sähköpostin runko" +#~ msgid "Partner Category" +#~ msgstr "Kumppanin katerogia" + #~ msgid "State" #~ msgstr "Tila" @@ -388,6 +400,18 @@ msgstr "" #~ msgid "Email Reminders" #~ msgstr "Sähköposti muistuttimiet" +#~ msgid "Conditions on Model Partner" +#~ msgstr "Mallikumppanin ehdot" + +#~ msgid "Last Action Date" +#~ msgstr "Viimeisen toiminnon päivämäärä" + +#~ msgid "Set Responsible to" +#~ msgstr "Aseta vastuuhenkilöksi" + +#~ msgid "None" +#~ msgstr "Ei mitään" + #~ msgid "Remind with Attachment" #~ msgstr "Muistuta liitteen kanssa" @@ -418,6 +442,12 @@ msgstr "" #~ msgid "Call Object Method" #~ msgstr "Kutsu objektia" +#~ msgid "Filter" +#~ msgstr "Suodin" + +#~ msgid "Date" +#~ msgstr "Päiväys" + #~ msgid "Remind Responsible" #~ msgstr "Muistuta vastuuhenkilöä" @@ -444,9 +474,19 @@ msgstr "" #~ msgid "Mail body" #~ msgstr "Viestirunko" +#~ msgid "Conditions on Timing" +#~ msgstr "Ajastuksen tilat" + #~ msgid "Conditions on States" #~ msgstr "Tilojen asemat" +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "Jos aktiivisen kentän tilaksi asetetaan epätosi (false), se mahdollistaa " +#~ "säännön piilottamisen poistamatta sitä." + #~ msgid "Server Action to be Triggered" #~ msgstr "Liipaistava palvelintoiminto" @@ -455,3 +495,6 @@ msgstr "" #~ msgid "Add Watchers (Cc)" #~ msgstr "Lisää seuraajia (Cc)" + +#~ msgid "Server Action" +#~ msgstr "Palvelintoiminto" diff --git a/addons/base_action_rule/i18n/fr.po b/addons/base_action_rule/i18n/fr.po index 56acc074640..c8924bfd803 100644 --- a/addons/base_action_rule/i18n/fr.po +++ b/addons/base_action_rule/i18n/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:52+0000\n" "Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " "\n" @@ -14,19 +14,20 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "Règles d'action" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Responsable" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Remarque" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Catégorie de partenaire" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,50 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "Délai après la date de déclenchement" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"Si ce champ est à \"Faux\", cela vous permet de cacher la règle sans la " -"supprimer." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Conditions" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Règle d'action" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Champs à modifier" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Bouton pressé" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Date de la dernière action" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -117,37 +140,15 @@ msgid "Hours" msgstr "Heures" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Changer l'état en" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"Délai après la date de déclenchement. Ce nombre peut être négatif si vous " -"avez besoin d'un délai avant la date de déclenchement, par exemple envoyer " -"un rappel 15 minutes avant une réunion." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Date" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Actif" #. module: base_action_rule #: view:base.action.rule:0 @@ -155,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "Délai après la date de déclenchement" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Attribuer la responsabilité à" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Aucun(e)" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Mois" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Nom de la règle" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -175,11 +188,6 @@ msgstr "Mois" msgid "Automated Actions" msgstr "Actions automatisées" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." @@ -187,43 +195,38 @@ msgstr "" "Donne l'ordre de la séquence lors de l'affichage d'une liste de règles." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "Conditions sur les champs du Modèle" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Action du serveur" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Mois" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Jours" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Type de délai" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Filtrer" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Actif" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "Expression régulière sur le nom de la ressource" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -242,38 +245,21 @@ msgid "Minutes" msgstr "Minutes" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" msgstr "" -"Expression régulière pour identifier le nom de la ressource\n" -"Par exemple : \"urgent.*\" va chercher des enregistrements dont le nom " -"commence par la chaine de caractères \"urgent\"\n" -"Remarque : cette recherche tient compte de la casse." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Conditions sur le temps d'exécution" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Nom de la règle" +#: help:base.action.rule,filter_pre_id:0 +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Séquence" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Conditions sur le partenaire du modèle" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -296,36 +282,37 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Date de création" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Date de création" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Echéance" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Partenaire" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Date de déclenchement" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "Object" #~ msgstr "Objet" @@ -338,6 +325,9 @@ msgstr "" #~ msgid "Remind Partner" #~ msgstr "Envoyer un rappel au partenaire" +#~ msgid "Partner Category" +#~ msgstr "Catégorie de partenaire" + #, python-format #~ msgid "Error!" #~ msgstr "Erreur !" @@ -345,9 +335,21 @@ msgstr "" #~ msgid "Reply-To" #~ msgstr "Répondre à" +#~ msgid "Deadline" +#~ msgstr "Echéance" + +#~ msgid "Creation Date" +#~ msgstr "Date de création" + +#~ msgid "Note" +#~ msgstr "Remarque" + #~ msgid "Call Object Method" #~ msgstr "Appel de la Méthode Objet" +#~ msgid "Filter" +#~ msgstr "Filtrer" + #~ msgid "Remind Responsible" #~ msgstr "Envoyer un rappel au Responsable" @@ -356,18 +358,48 @@ msgstr "" #~ "Ce module permet de mettre en place des régles d'action pour n'importe quel " #~ "objet." +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "Délai après la date de déclenchement. Ce nombre peut être négatif si vous " +#~ "avez besoin d'un délai avant la date de déclenchement, par exemple envoyer " +#~ "un rappel 15 minutes avant une réunion." + +#~ msgid "Date" +#~ msgstr "Date" + +#~ msgid "Conditions on Model Fields" +#~ msgstr "Conditions sur les champs du Modèle" + +#~ msgid "Regex on Resource Name" +#~ msgstr "Expression régulière sur le nom de la ressource" + #~ msgid "" #~ "Check this if you want the rule to send an email to the responsible person." #~ msgstr "" #~ "Cochez cette case si vous voulez que cette règle déclenche l'envoi d'un " #~ "courriel au responsable." +#~ msgid "Set State to" +#~ msgstr "Changer l'état en" + +#~ msgid "Button Pressed" +#~ msgstr "Bouton pressé" + +#~ msgid "Conditions on Model Partner" +#~ msgstr "Conditions sur le partenaire du modèle" + #~ msgid "Special Keywords to Be Used in The Body" #~ msgstr "Mots-clés spéciaux à utiliser dans le corps du texte" #~ msgid "Email-id of the persons whom mail is to be sent" #~ msgstr "Identité courriel de la personne à qui le message va être envoyé" +#~ msgid "Last Action Date" +#~ msgstr "Date de la dernière action" + #~ msgid "" #~ "Use a python expression to specify the right field on which one than we will " #~ "use for the 'To' field of the header" @@ -375,6 +407,23 @@ msgstr "" #~ "Utilisez une expression Python pour définir le champ qui sera utilisé en " #~ "tant que destinataire (champ \"À\" de l'entête)" +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "Expression régulière pour identifier le nom de la ressource\n" +#~ "Par exemple : \"urgent.*\" va chercher des enregistrements dont le nom " +#~ "commence par la chaine de caractères \"urgent\"\n" +#~ "Remarque : cette recherche tient compte de la casse." + +#~ msgid "Set Responsible to" +#~ msgstr "Attribuer la responsabilité à" + +#~ msgid "None" +#~ msgstr "Aucun(e)" + #~ msgid "Remind with Attachment" #~ msgstr "Envoyer un rappel avec pièce jointe" @@ -415,6 +464,9 @@ msgstr "" #~ msgid "%(object_user)s = Responsible name" #~ msgstr "%(object_user)s = Responsible name" +#~ msgid "Conditions on Timing" +#~ msgstr "Conditions sur le temps d'exécution" + #~ msgid "" #~ "These people will receive a copy of the future communication between partner " #~ "and users by email" @@ -451,6 +503,9 @@ msgstr "" #~ msgid "Email Information" #~ msgstr "Information de courriel" +#~ msgid "Server Action" +#~ msgstr "Action du serveur" + #~ msgid "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." @@ -472,6 +527,13 @@ msgstr "" #~ msgid "Conditions on States" #~ msgstr "Conditions sur les états" +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "Si ce champ est à \"Faux\", cela vous permet de cacher la règle sans la " +#~ "supprimer." + #~ msgid "Email To" #~ msgstr "Envoyer un courriel à" @@ -482,6 +544,9 @@ msgstr "" #~ "Cochez cette case si vous voulez que la règle envoie un courriel en copie à " #~ "toutes les autres personnes définies dans Actions." +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + #~ msgid "%(object_date)s = Creation date" #~ msgstr "%(object_date)s = Date de création" diff --git a/addons/base_action_rule/i18n/gl.po b/addons/base_action_rule/i18n/gl.po index 1edf087483b..63a41e9152a 100644 --- a/addons/base_action_rule/i18n/gl.po +++ b/addons/base_action_rule/i18n/gl.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:32+0000\n" "Last-Translator: Raphael Collet (OpenERP) \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "Regras das accións" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Responsable" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Nota" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Categoría Empresa" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,49 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "Atraso despois da data do disparo" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"Se se desmarca o campo activo, permite ocultar a regra sen eliminala." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Condicións" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Regra acción" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Campos a cambiar" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Botón premido" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Data da última acción" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -116,37 +140,15 @@ msgid "Hours" msgstr "Horas" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Establecer estado a" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"Atraso despois da data de disparo. Pode poñer un número negativo se necesita " -"un atraso antes da data de disparo, como enviar un recordatorio 15 minutos " -"antes dunha reunión." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Data" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Activo" #. module: base_action_rule #: view:base.action.rule:0 @@ -154,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "Atraso despois da data de disparo" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Fixar responsable a" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Ningún" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Meses" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Nome da regra" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -174,54 +188,44 @@ msgstr "Meses" msgid "Automated Actions" msgstr "Accións automáticas" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "Indica a orde da secuencia cando se amosa unha lista de regras." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "Condicións en campos de modelo" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Acción do servidor" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Meses" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Días" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Tipo de atraso" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Filtro" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Activo" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "Regex sobre nome recurso" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -240,37 +244,21 @@ msgid "Minutes" msgstr "Minutos" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" msgstr "" -"Expresión regular para concordar co nome do recurso. Por exemplo: " -"\"urxente.*\" buscará os rexistros cuxo nome comece co texto \"urxente\". " -"Nota: Esta busca distingue maiúsculas de minúsculas." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Condicións sobre temporización" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Nome da regra" +#: help:base.action.rule,filter_pre_id:0 +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Secuencia" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Condicións no modelo empresa" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -293,36 +281,37 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Data de creación" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Crear data" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Data límite" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Socio" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Data de activación" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "Mail to Watchers (CC)" #~ msgstr "Enviar correo ós observadores (CC)" @@ -338,12 +327,21 @@ msgstr "" #~ msgid "Mail to these Emails" #~ msgstr "Enviar correo a estes emails" +#~ msgid "Set State to" +#~ msgstr "Establecer estado a" + +#~ msgid "Button Pressed" +#~ msgstr "Botón premido" + #~ msgid "Object" #~ msgstr "Obxecto" #~ msgid "Remind Partner" #~ msgstr "Recordar empresa" +#~ msgid "Partner Category" +#~ msgstr "Categoría Empresa" + #~ msgid "Email Body" #~ msgstr "Corpo do email" @@ -361,12 +359,18 @@ msgstr "" #~ msgid "Reply-To" #~ msgstr "Responder a" +#~ msgid "Conditions on Model Partner" +#~ msgstr "Condicións no modelo empresa" + #~ msgid "" #~ "Check this if you want the rule to send a reminder by email to the partner." #~ msgstr "" #~ "Prema esta opción se desexa que a regra envíe un recordatorio por correo " #~ "electrónico á empresa." +#~ msgid "Deadline" +#~ msgstr "Data límite" + #~ msgid "%(object_subject)s = Object subject" #~ msgstr "%(object_subject)s = Asunto obxecto" @@ -376,6 +380,9 @@ msgstr "" #~ msgid "Special Keywords to Be Used in The Body" #~ msgstr "Palabras chave especiais para ser empregadas no corpo da mensaxe" +#~ msgid "Creation Date" +#~ msgstr "Data de creación" + #~ msgid "" #~ "Use automated actions to automatically trigger actions for various screens. " #~ "Example: a lead created by a specific user may be automatically set to a " @@ -394,6 +401,9 @@ msgstr "" #~ msgid "Email Reminders" #~ msgstr "Recordatorios email" +#~ msgid "Last Action Date" +#~ msgstr "Data da última acción" + #~ msgid "" #~ "Use a python expression to specify the right field on which one than we will " #~ "use for the 'To' field of the header" @@ -401,6 +411,12 @@ msgstr "" #~ "Utilice unha expresión Python para especificar o campo apropiado, o contido " #~ "do cal utilizarase para o campo \"Para\" da cabeceira do correo." +#~ msgid "Set Responsible to" +#~ msgstr "Fixar responsable a" + +#~ msgid "None" +#~ msgstr "Ningún" + #~ msgid "%(object_id)s = Object ID" #~ msgstr "%(object_id)s = ID obxecto" @@ -416,6 +432,16 @@ msgstr "" #~ msgid "Email To" #~ msgstr "Para" +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "Expresión regular para concordar co nome do recurso. Por exemplo: " +#~ "\"urxente.*\" buscará os rexistros cuxo nome comece co texto \"urxente\". " +#~ "Nota: Esta busca distingue maiúsculas de minúsculas." + #~ msgid "" #~ "The rule uses the AND operator. The model must match all non-empty fields so " #~ "that the rule executes the action described in the 'Actions' tab." @@ -431,6 +457,9 @@ msgstr "" #~ "Utilice unha expresión Python para especificar o campo apropiado, o contido " #~ "do cal se utilizará para o campo \"Desde\" da cabeceira do correo." +#~ msgid "Note" +#~ msgstr "Nota" + #~ msgid "%(partner)s = Partner name" #~ msgstr "%(partner)s = Nome da empresa" @@ -444,6 +473,12 @@ msgstr "" #~ msgid "Call Object Method" #~ msgstr "Método chamada ó obxecto" +#~ msgid "Filter" +#~ msgstr "Filtro" + +#~ msgid "Date" +#~ msgstr "Data" + #~ msgid "Remind Responsible" #~ msgstr "Recordar responsable" @@ -455,6 +490,15 @@ msgstr "" #~ msgid "No E-Mail ID Found for your Company address!" #~ msgstr "Non se atopou ningún ID de email para o enderezo da súa compañía!" +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "Atraso despois da data de disparo. Pode poñer un número negativo se necesita " +#~ "un atraso antes da data de disparo, como enviar un recordatorio 15 minutos " +#~ "antes dunha reunión." + #~ msgid "%(partner_email)s = Partner Email" #~ msgstr "%(partner_email)s = Email empresa" @@ -480,6 +524,9 @@ msgstr "" #~ "Describe o nome da acción. Por exemplo: Sobre que obxecto, que acción debe " #~ "executarse, en base a que condición." +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + #~ msgid "Mail body" #~ msgstr "Corpo da mensaxe" @@ -498,6 +545,12 @@ msgstr "" #~ msgid "Mail to Responsible" #~ msgstr "Enviar correo ó responsable" +#~ msgid "Conditions on Model Fields" +#~ msgstr "Condicións en campos de modelo" + +#~ msgid "Server Action" +#~ msgstr "Acción do servidor" + #~ msgid "" #~ "Check this if you want the rule to send a reminder by email to the user." #~ msgstr "" @@ -510,6 +563,18 @@ msgstr "" #~ msgid "%(object_user)s = Responsible name" #~ msgstr "%(object_user)s = Nome do responsable" +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "Se se desmarca o campo activo, permite ocultar a regra sen eliminala." + +#~ msgid "Conditions on Timing" +#~ msgstr "Condicións sobre temporización" + +#~ msgid "Regex on Resource Name" +#~ msgstr "Regex sobre nome recurso" + #~ msgid "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." diff --git a/addons/base_action_rule/i18n/gu.po b/addons/base_action_rule/i18n/gu.po index 028099dac49..e29c922af42 100644 --- a/addons/base_action_rule/i18n/gu.po +++ b/addons/base_action_rule/i18n/gu.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-03-06 18:15+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Gujarati \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "નોંધ" - -#. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" + +#. module: base_action_rule +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,47 +88,50 @@ msgstr "" msgid "Delay after trigger date" msgstr "" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "શરતો" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" msgstr "" #. module: base_action_rule @@ -115,34 +140,15 @@ msgid "Hours" msgstr "કલાક" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." -msgstr "" - -#. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "તારીખ" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "કાર્યશીલ" #. module: base_action_rule #: view:base.action.rule:0 @@ -150,18 +156,30 @@ msgid "Delay After Trigger Date" msgstr "" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "કંઇ નહિં" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" msgstr "" #. module: base_action_rule @@ -170,24 +188,14 @@ msgstr "" msgid "Automated Actions" msgstr "સ્વયંચાલિતકાર્યો(એકશન્સ)" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" msgstr "" #. module: base_action_rule @@ -195,29 +203,29 @@ msgstr "" msgid "Days" msgstr "દિવસો" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "ફિલ્ટર" - -#. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "કાર્યશીલ" - -#. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" +#: view:base.action.rule:0 +msgid "Server actions to run" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -236,22 +244,14 @@ msgid "Minutes" msgstr "મિનીટો" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" +msgstr "" + +#. module: base_action_rule +#: help:base.action.rule,filter_pre_id:0 msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" +"If present, this condition must be satisfied before the update of the record." msgstr "" #. module: base_action_rule @@ -259,11 +259,6 @@ msgstr "" msgid "Sequence" msgstr "ક્રમ" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -286,36 +281,37 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "Object" #~ msgstr "વસ્તુ" @@ -325,5 +321,17 @@ msgstr "" #~ msgid "State" #~ msgstr "સ્થિતિ" +#~ msgid "None" +#~ msgstr "કંઇ નહિં" + #~ msgid "Invalid arguments" #~ msgstr "અયોગ્ય દલીલો" + +#~ msgid "Note" +#~ msgstr "નોંધ" + +#~ msgid "Filter" +#~ msgstr "ફિલ્ટર" + +#~ msgid "Date" +#~ msgstr "તારીખ" diff --git a/addons/base_action_rule/i18n/hr.po b/addons/base_action_rule/i18n/hr.po index 360fee4c7be..6dea9825e6f 100644 --- a/addons/base_action_rule/i18n/hr.po +++ b/addons/base_action_rule/i18n/hr.po @@ -6,26 +6,27 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-10 08:00+0000\n" "Last-Translator: Goran Kliska \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: 2012-12-11 04:49+0000\n" -"X-Generator: Launchpad (build 16356)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -34,30 +35,51 @@ msgid "Action Rules" msgstr "Action Rules" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Odgovoran" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Bilješka" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Kategorija partnera" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -65,50 +87,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "Delay after trigger date" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Uvjeti" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "Status" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Action Rule" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Fields to Change" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Button Pressed" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Datum zadnje akcije" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -116,37 +139,15 @@ msgid "Hours" msgstr "Sati" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Set State to" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Datum" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Aktivan" #. module: base_action_rule #: view:base.action.rule:0 @@ -154,19 +155,31 @@ msgid "Delay After Trigger Date" msgstr "Delay After Trigger Date" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Set Responsible to" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Ništa" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Months" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Naziv pravila" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -174,55 +187,45 @@ msgstr "Months" msgid "Automated Actions" msgstr "Automatske akcije" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "Gives the sequence order when displaying a list of rules." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "Conditions on Model Fields" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Serverske akcije" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Months" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Days" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Delay type" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Filter" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Aktivan" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "Regex na naziv resursa" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" -msgstr "Datum zadnje promjene" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" +msgstr "" #. module: base_action_rule #: field:base.action.rule,model:0 @@ -240,38 +243,21 @@ msgid "Minutes" msgstr "Minute" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" msgstr "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Conditions on Timing" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Naziv pravila" +#: help:base.action.rule,filter_pre_id:0 +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Sekvenca" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Uvjeti na model Partner" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -294,36 +280,37 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Datum kreiranja" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Kreiraj datum" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Krajnji rok" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Partner" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Datum okidača" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "" #~ "Check this if you want the rule to send an email to the responsible person." #~ msgstr "" @@ -332,15 +319,24 @@ msgstr "" #~ msgid "Remind Partner" #~ msgstr "Remind Partner" +#~ msgid "Partner Category" +#~ msgstr "Kategorija partnera" + #~ msgid "Mail to Watchers (CC)" #~ msgstr "Mail to Watchers (CC)" +#~ msgid "Button Pressed" +#~ msgstr "Button Pressed" + #~ msgid "Object" #~ msgstr "Object" #~ msgid "Mail to these Emails" #~ msgstr "Mail to these Emails" +#~ msgid "Set State to" +#~ msgstr "Set State to" + #~ msgid "Email From" #~ msgstr "E-mail od" @@ -362,6 +358,12 @@ msgstr "" #~ msgstr "" #~ "Check this if you want the rule to send a reminder by email to the partner." +#~ msgid "Conditions on Model Partner" +#~ msgstr "Uvjeti na model Partner" + +#~ msgid "Deadline" +#~ msgstr "Krajnji rok" + #~ msgid "%(object_subject)s = Object subject" #~ msgstr "%(object_subject)s = Object subject" @@ -388,6 +390,12 @@ msgstr "" #~ msgid "Email-id of the persons whom mail is to be sent" #~ msgstr "Email-id of the persons whom mail is to be sent" +#~ msgid "Creation Date" +#~ msgstr "Datum kreiranja" + +#~ msgid "Last Action Date" +#~ msgstr "Datum zadnje akcije" + #~ msgid "%(object_id)s = Object ID" #~ msgstr "%(object_id)s = Object ID" @@ -397,6 +405,12 @@ msgstr "" #~ msgid "Invalid arguments" #~ msgstr "Neispravni argumenti" +#~ msgid "Set Responsible to" +#~ msgstr "Set Responsible to" + +#~ msgid "None" +#~ msgstr "Ništa" + #~ msgid "" #~ "Use a python expression to specify the right field on which one than we will " #~ "use for the 'To' field of the header" @@ -414,6 +428,17 @@ msgstr "" #~ "Pravilo koristi AND operator. Model se mora poklapati sa svim ne praznim " #~ "poljima, tako da pravilo izvrši akciju opisanoj u tabu 'Akcije'." +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." + #~ msgid "Call Object Method" #~ msgstr "Call Object Method" @@ -430,6 +455,9 @@ msgstr "" #~ msgid "%(partner)s = Partner name" #~ msgstr "%(partner)s = Naziv partnera" +#~ msgid "Note" +#~ msgstr "Bilješka" + #~ msgid "" #~ "Use a python expression to specify the right field on which one than we will " #~ "use for the 'From' field of the header" @@ -437,9 +465,24 @@ msgstr "" #~ "Use a python expression to specify the right field on which one than we will " #~ "use for the 'From' field of the header" +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." + #~ msgid "Remind Responsible" #~ msgstr "Remind Responsible" +#~ msgid "Filter" +#~ msgstr "Filter" + +#~ msgid "Date" +#~ msgstr "Datum" + #~ msgid "" #~ "Describes the action name.\n" #~ "eg:on which object which action to be taken on basis of which condition" @@ -447,6 +490,9 @@ msgstr "" #~ "Describes the action name.\n" #~ "eg:on which object which action to be taken on basis of which condition" +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + #~ msgid "%(object_description)s = Object description" #~ msgstr "%(object_description)s = Opis objekta" @@ -488,6 +534,15 @@ msgstr "" #~ msgid "Add Watchers (Cc)" #~ msgstr "Add Watchers (Cc)" +#~ msgid "Conditions on Model Fields" +#~ msgstr "Conditions on Model Fields" + +#~ msgid "Server Action" +#~ msgstr "Serverske akcije" + +#~ msgid "Regex on Resource Name" +#~ msgstr "Regex na naziv resursa" + #~ msgid "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." @@ -495,6 +550,16 @@ msgstr "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." +#~ msgid "Conditions on Timing" +#~ msgstr "Conditions on Timing" + +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." + #~ msgid "%(object_user)s = Responsible name" #~ msgstr "%(object_user)s = Odgovorna osoba" diff --git a/addons/base_action_rule/i18n/hu.po b/addons/base_action_rule/i18n/hu.po index 0e8282051d6..5cc67a2bcb8 100644 --- a/addons/base_action_rule/i18n/hu.po +++ b/addons/base_action_rule/i18n/hu.po @@ -6,26 +6,27 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:23+0000\n" "Last-Translator: Krisztian Eyssen \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: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -34,30 +35,51 @@ msgid "Action Rules" msgstr "Műveleti előírások" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Felelős" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Megjegyzés" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Partner kategória" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -65,50 +87,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "Késedelem az indítás dátuma után" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"Ha az aktív mező Hamisra van állítva, az lehetővé teszi Önnek az előírás " -"elrejtését annak törlése nélkül." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Feltételek" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Műveleti előírások" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Mezők módosítása" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Gomb megnyomva" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Utolsó művelet dátuma" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -116,37 +139,15 @@ msgid "Hours" msgstr "Órák" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Állapot beállítása" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"Késedelem az indítás dátuma után, előírja, hogy megadhat negatív számot. Ha " -"Önnek szüksége van késedelemre az indítás dátuma előtt, kérheti emlékeztető " -"küldését a találkozás előtt 15 perccel." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Dátum" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "aktív" #. module: base_action_rule #: view:base.action.rule:0 @@ -154,19 +155,31 @@ msgid "Delay After Trigger Date" msgstr "Késedelem az indítás dátuma után" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Felelős beállítása" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Nincs" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Hónapok" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Előírás neve" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -174,11 +187,6 @@ msgstr "Hónapok" msgid "Automated Actions" msgstr "Automatizált műveletek" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." @@ -186,43 +194,38 @@ msgstr "" "Adja meg a rendezési szempontot a szabályok listájának megjelenítésekor." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "Feltételek a Modell Mezőknél" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Szerverművelet" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Hónapok" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Napok" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Késedelem típusa" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Szűrő" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "aktív" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "Reguláris kifejezés az Erőforrás nevéhez" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -241,38 +244,21 @@ msgid "Minutes" msgstr "Percek" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" msgstr "" -"Szabályos kifejezések az erőforrás nevének összehasonlításához\n" -"pl.: 'sürgős.*' megkeresi azokat a rekordokat, amelyeknek a neve a 'sürgős' " -"sztringgel kezdődik\n" -"Megjegyzés: Ez kis- és nagybetűket megkülönböztető keresés." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Ütemezés feltételei" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Előírás neve" +#: help:base.action.rule,filter_pre_id:0 +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Sorrend" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Feltételek a Modell Partnernél" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -295,36 +281,37 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Létrehozás dátuma" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Dátum létrehozása" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Határidő" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Partner" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Indítás dátuma" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "" #~ "Check this if you want the rule to send an email to the responsible person." #~ msgstr "" @@ -334,9 +321,18 @@ msgstr "" #~ msgid "Remind Partner" #~ msgstr "Partner emlékeztetése" +#~ msgid "Partner Category" +#~ msgstr "Partner kategória" + +#~ msgid "Button Pressed" +#~ msgstr "Gomb megnyomva" + #~ msgid "Mail to these Emails" #~ msgstr "Levelek küldése" +#~ msgid "Set State to" +#~ msgstr "Állapot beállítása" + #, python-format #~ msgid "Error!" #~ msgstr "Hiba!" @@ -351,18 +347,36 @@ msgstr "" #~ "Ezek az emberek kapni fognak a parner és a felhasználók közötti jövőbeni " #~ "kommunikációról egy másolatot emailben" +#~ msgid "Conditions on Model Partner" +#~ msgstr "Feltételek a Modell Partnernél" + +#~ msgid "Deadline" +#~ msgstr "Határidő" + #~ msgid "%(object_subject)s = Object subject" #~ msgstr "%(object_subject)s = Objektum tárgy" #~ msgid "State" #~ msgstr "Állam" +#~ msgid "Creation Date" +#~ msgstr "Létrehozás dátuma" + +#~ msgid "Last Action Date" +#~ msgstr "Utolsó művelet dátuma" + #~ msgid "%(object_id)s = Object ID" #~ msgstr "%(object_id)s = Objektum ID" #~ msgid "Invalid arguments" #~ msgstr "Érvénytelen argumentumok" +#~ msgid "Set Responsible to" +#~ msgstr "Felelős beállítása" + +#~ msgid "None" +#~ msgstr "Nincs" + #~ msgid "" #~ "Use a python expression to specify the right field on which one than we will " #~ "use for the 'To' field of the header" @@ -381,15 +395,35 @@ msgstr "" #~ "üres mezővel azért, hogy a szabály végrehajtsa a 'Műveletek' fülön leírt " #~ "műveletet." +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "Szabályos kifejezések az erőforrás nevének összehasonlításához\n" +#~ "pl.: 'sürgős.*' megkeresi azokat a rekordokat, amelyeknek a neve a 'sürgős' " +#~ "sztringgel kezdődik\n" +#~ "Megjegyzés: Ez kis- és nagybetűket megkülönböztető keresés." + #~ msgid "Call Object Method" #~ msgstr "Objektum behívási mód" #~ msgid "%(partner)s = Partner name" #~ msgstr "%(partner)s = Partner neve" +#~ msgid "Note" +#~ msgstr "Megjegyzés" + #~ msgid "Remind Responsible" #~ msgstr "Felelős emlékeztetése" +#~ msgid "Filter" +#~ msgstr "Szűrő" + +#~ msgid "Date" +#~ msgstr "Dátum" + #~ msgid "" #~ "Describes the action name.\n" #~ "eg:on which object which action to be taken on basis of which condition" @@ -397,6 +431,9 @@ msgstr "" #~ "Leírja a művelet nevét.\n" #~ "pl: melyik objektumon melyik alkalmazás melyik feltétel alapján történik" +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + #~ msgid "%(object_description)s = Object description" #~ msgstr "%(object_description)s = Objektum leírása" @@ -409,6 +446,12 @@ msgstr "" #~ msgid "Add Watchers (Cc)" #~ msgstr "Másolatok hozzáadása (Cc)" +#~ msgid "Conditions on Model Fields" +#~ msgstr "Feltételek a Modell Mezőknél" + +#~ msgid "Regex on Resource Name" +#~ msgstr "Reguláris kifejezés az Erőforrás nevéhez" + #~ msgid "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." @@ -416,6 +459,16 @@ msgstr "" #~ "Jelölje be, ha azt szeretné, hogy az ügyhöz csatolt összes dokumentumot " #~ "csatolja az emlékeztető email küldésénél." +#~ msgid "Conditions on Timing" +#~ msgstr "Ütemezés feltételei" + +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "Ha az aktív mező Hamisra van állítva, az lehetővé teszi Önnek az előírás " +#~ "elrejtését annak törlése nélkül." + #~ msgid "%(object_user)s = Responsible name" #~ msgstr "%(object_user)s = Felelős neve" @@ -469,6 +522,15 @@ msgstr "" #~ "Használjon python kifejezést, hogy meghatározza a megfelelő mezőt, amelyet a " #~ "fejléc 'Kitől' mezőjének fogunk használni" +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "Késedelem az indítás dátuma után, előírja, hogy megadhat negatív számot. Ha " +#~ "Önnek szüksége van késedelemre az indítás dátuma előtt, kérheti emlékeztető " +#~ "küldését a találkozás előtt 15 perccel." + #, python-format #~ msgid "No E-Mail ID Found for your Company address!" #~ msgstr "Nem található e-mail ID az Ön válallatának címéhez!" @@ -505,5 +567,8 @@ msgstr "" #~ msgid "Server Action to be Triggered" #~ msgstr "Szerverművelet elindítva" +#~ msgid "Server Action" +#~ msgstr "Szerverművelet" + #~ msgid "%(object_date)s = Creation date" #~ msgstr "%(object_date)s = Létrehozás dátuma" diff --git a/addons/base_action_rule/i18n/it.po b/addons/base_action_rule/i18n/it.po index c43eaf67bca..3da106635b4 100644 --- a/addons/base_action_rule/i18n/it.po +++ b/addons/base_action_rule/i18n/it.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-12-11 12:28+0000\n" -"Last-Translator: Nicola Riolini - Micronaet \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-19 21:06+0000\n" +"Last-Translator: Sergio Corato \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" -msgstr "Imposta followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" +msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "Regole Azione" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Responsabile" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" -msgstr "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Nota" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Categoria Partner" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,50 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "Ritardo dopo Data Programmata" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"Se il campo attivo è impostato a Falso, ti permetterà di nascondere la " -"regola senza rimuoverla." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Condizioni" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "Stato" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Regola Azione" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Campi da cambiare" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Pulsante premuto" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Data ultima azione" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -117,37 +140,15 @@ msgid "Hours" msgstr "Ore" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Imposta lo Stato per" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"Ritardo dopo la data programmata, puoi mettere un numero negativo. Se " -"necessiti un lasso di tempo prima della data programmata, come inviare un " -"promemoria 15 minuti prima del meeting." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Data" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Attivo" #. module: base_action_rule #: view:base.action.rule:0 @@ -155,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "Ritardo dopo la data programmata" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Imposta il responsabile a" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Nessuno" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Mesi" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Nome della Regola" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -175,11 +188,6 @@ msgstr "Mesi" msgid "Automated Actions" msgstr "Azioni automatiche" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "Modello documento relativo" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." @@ -187,44 +195,39 @@ msgstr "" "Fornisce l'ordine alla sequenza quando si visualizza una lista di regole" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "Condizioni sui campi del modello" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Azione Server" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Mesi" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Giorni" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Tipo Ritardo" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Filtro" - -#. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Attivo" - -#. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" +#: view:base.action.rule:0 +msgid "Server actions to run" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" -msgstr "Data ultima modifica" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" +msgstr "" #. module: base_action_rule #: field:base.action.rule,model:0 @@ -242,38 +245,21 @@ msgid "Minutes" msgstr "Minuti" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" +msgstr "Modello documento relativo" + +#. module: base_action_rule +#: help:base.action.rule,filter_pre_id:0 msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +"If present, this condition must be satisfied before the update of the record." msgstr "" -"Espressione regolare per rintracciare il nome della risorsa\n" -"es.: \"urgente.*\" cercherà i record che hanno il nome che comincia per la " -"stringa: \"urgente\"\n" -"Nota: La ricerca è sensibile alle maiuscole/minuscole" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Condizioni sulla temporizzazione" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Nome della Regola" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Sequenza" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Condizioni sul Modello Partner" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -296,42 +282,49 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Data di Creazione" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Data di creazione" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Termine" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Partner" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Data Programmata" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "Azioni Server" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + +#~ msgid "Set State to" +#~ msgstr "Imposta lo Stato per" + #~ msgid "" #~ "Check this if you want the rule to send an email to the responsible person." #~ msgstr "" #~ "Spunta questo se desideri la regola per inviare una e-mail alla persona " #~ "responsabile." +#~ msgid "Button Pressed" +#~ msgstr "Pulsante premuto" + #~ msgid "Object" #~ msgstr "Oggetto" @@ -344,9 +337,15 @@ msgstr "Azioni Server" #~ msgid "Remind Partner" #~ msgstr "Promemoria Partner" +#~ msgid "Partner Category" +#~ msgstr "Categoria Partner" + #~ msgid "Email Body" #~ msgstr "Corpo Mail" +#~ msgid "Conditions on Model Partner" +#~ msgstr "Condizioni sul Modello Partner" + #~ msgid "" #~ "These people will receive a copy of the future communication between partner " #~ "and users by email" @@ -364,6 +363,9 @@ msgstr "Azioni Server" #~ msgid "Email Reminders" #~ msgstr "Promemoria Email" +#~ msgid "Deadline" +#~ msgstr "Termine" + #~ msgid "%(object_subject)s = Object subject" #~ msgstr "%(object_subject)s = Oggetto Soggetto" @@ -376,6 +378,18 @@ msgstr "Azioni Server" #~ msgid "Email-id of the persons whom mail is to be sent" #~ msgstr "ID Email della persona a cui le mail vanno spedite" +#~ msgid "Creation Date" +#~ msgstr "Data di Creazione" + +#~ msgid "Last Action Date" +#~ msgstr "Data ultima azione" + +#~ msgid "Set Responsible to" +#~ msgstr "Imposta il responsabile a" + +#~ msgid "None" +#~ msgstr "Nessuno" + #~ msgid "%(object_user_phone)s = Responsible phone" #~ msgstr "%(object_user_phone)s = Telefono responsabile" @@ -388,6 +402,9 @@ msgstr "Azioni Server" #~ msgid "%(object_id)s = Object ID" #~ msgstr "%(object_id)s = ID Oggetto" +#~ msgid "Note" +#~ msgstr "Nota" + #~ msgid "%(partner)s = Partner name" #~ msgstr "%(partner)s = Nome Partner" @@ -401,6 +418,15 @@ msgstr "Azioni Server" #~ msgid "Call Object Method" #~ msgstr "Metodo Chiamata Oggetto" +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "Ritardo dopo la data programmata, puoi mettere un numero negativo. Se " +#~ "necessiti un lasso di tempo prima della data programmata, come inviare un " +#~ "promemoria 15 minuti prima del meeting." + #~ msgid "%(object_description)s = Object description" #~ msgstr "%(object_description)s = Descrizione oggetto" @@ -412,6 +438,15 @@ msgstr "Azioni Server" #~ "es.: su quale oggetto quale azione deve essere presa sulle basi di quale " #~ "condizione" +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + +#~ msgid "Filter" +#~ msgstr "Filtro" + +#~ msgid "Date" +#~ msgstr "Data" + #~ msgid "Remind Responsible" #~ msgstr "Promemoria Responsabile" @@ -443,6 +478,9 @@ msgstr "Azioni Server" #~ msgid "Mail to Watchers (CC)" #~ msgstr "Mail agli osservatori (Campo CC)" +#~ msgid "Conditions on Timing" +#~ msgstr "Condizioni sulla temporizzazione" + #~ msgid "Server Action to be Triggered" #~ msgstr "Azione server che deve essere programmata" @@ -452,6 +490,9 @@ msgstr "Azioni Server" #~ msgid "Add Watchers (Cc)" #~ msgstr "Aggiungi Osservatori (CC)" +#~ msgid "Server Action" +#~ msgstr "Azione Server" + #~ msgid "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." @@ -473,9 +514,30 @@ msgstr "Azioni Server" #~ msgid "Conditions on States" #~ msgstr "Condizioni sugli stati" +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "Se il campo attivo è impostato a Falso, ti permetterà di nascondere la " +#~ "regola senza rimuoverla." + +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "Espressione regolare per rintracciare il nome della risorsa\n" +#~ "es.: \"urgente.*\" cercherà i record che hanno il nome che comincia per la " +#~ "stringa: \"urgente\"\n" +#~ "Nota: La ricerca è sensibile alle maiuscole/minuscole" + #~ msgid "Mail to these Emails" #~ msgstr "Invia mail a questi indirizzi" +#~ msgid "Regex on Resource Name" +#~ msgstr "Regex sul nome risorsa" + #~ msgid "Email To" #~ msgstr "Email per" @@ -486,6 +548,9 @@ msgstr "Azioni Server" #~ msgid "No E-Mail ID Found for your Company address!" #~ msgstr "Nessun Email ID trovato per l'indirizzo della tua azienda" +#~ msgid "Conditions on Model Fields" +#~ msgstr "Condizioni sui campi del modello" + #~ msgid "" #~ "Check this if you want the rule to send a reminder by email to the partner." #~ msgstr "" diff --git a/addons/base_action_rule/i18n/ja.po b/addons/base_action_rule/i18n/ja.po index b6917f10c6f..95db5a3a2cb 100644 --- a/addons/base_action_rule/i18n/ja.po +++ b/addons/base_action_rule/i18n/ja.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-07-07 21:07+0000\n" "Last-Translator: Akira Hiyama \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "アクションルール" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "責任者" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "注記" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "パートナ分類" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,48 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "トリガー日後の遅延" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "アクティブ項目がFalseに設定された場合、ルールを削除することなく非表示にできます。" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "条件" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "アクションルール" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "変更する項目" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "ボタンが押されました。" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "最新実行日" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -115,34 +140,15 @@ msgid "Hours" msgstr "時間" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "状態を設定:" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "ミーティングの15分前に通知を送信したいといったトリガー日前の遅延が必要な場合には、トリガー日後の遅延は負の数値を定義できます。" - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "日付" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "アクティブ" #. module: base_action_rule #: view:base.action.rule:0 @@ -150,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "トリガー日後の遅延" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "責任者の設定" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "なし" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "月" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "ルール名" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -170,54 +188,44 @@ msgstr "月" msgid "Automated Actions" msgstr "自動的なアクション" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "ルールのリストを表示する時には、並び順を指定します。" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "モデル項目の条件" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "サーバアクション" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "月" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "日" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "遅延タイプ" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "フィルタ" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "アクティブ" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "リソース名の正規表現" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -236,37 +244,21 @@ msgid "Minutes" msgstr "分" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" msgstr "" -"リソースの名前を一致させる正規表現\n" -"例:\"urgent.*\" は文字列 \"urgent\" で始まる名前を持つレコードが検索されます.\n" -"注記:この検索は大文字と小文字を区別します。" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "タイミングの条件" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "ルール名" +#: help:base.action.rule,filter_pre_id:0 +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "順序" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "モデルパートナとしての条件" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -289,36 +281,40 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "作成日" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "作成日" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "期限" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "パートナ" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "トリガー日" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + +#~ msgid "Set State to" +#~ msgstr "状態を設定:" + #~ msgid "Email From" #~ msgstr "Eメールフォーム" @@ -329,9 +325,15 @@ msgstr "" #~ msgid "Mail to these Emails" #~ msgstr "これらのEメールへのメール" +#~ msgid "Button Pressed" +#~ msgstr "ボタンが押されました。" + #~ msgid "Object" #~ msgstr "オブジェクト" +#~ msgid "Conditions on Model Partner" +#~ msgstr "モデルパートナとしての条件" + #~ msgid "" #~ "These people will receive a copy of the future communication between partner " #~ "and users by email" @@ -360,14 +362,26 @@ msgstr "" #~ msgid "Email-id of the persons whom mail is to be sent" #~ msgstr "メールを送信した人のEメールID" +#~ msgid "Creation Date" +#~ msgstr "作成日" + #~ msgid "Email Reminders" #~ msgstr "Eメールの通知" +#~ msgid "Last Action Date" +#~ msgstr "最新実行日" + #~ msgid "" #~ "Use a python expression to specify the right field on which one than we will " #~ "use for the 'To' field of the header" #~ msgstr "ヘッダーのTo項目を使用するよりも正しい項目を定義するにはPython表現を使用して下さい。" +#~ msgid "Set Responsible to" +#~ msgstr "責任者の設定" + +#~ msgid "None" +#~ msgstr "なし" + #~ msgid "%(object_user_phone)s = Responsible phone" #~ msgstr "%(object_user_phone)s = 連絡先電話" @@ -383,6 +397,16 @@ msgstr "" #~ msgid "Email To" #~ msgstr "Eメール宛先" +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "リソースの名前を一致させる正規表現\n" +#~ "例:\"urgent.*\" は文字列 \"urgent\" で始まる名前を持つレコードが検索されます.\n" +#~ "注記:この検索は大文字と小文字を区別します。" + #~ msgid "" #~ "The rule uses the AND operator. The model must match all non-empty fields so " #~ "that the rule executes the action described in the 'Actions' tab." @@ -397,6 +421,9 @@ msgstr "" #~ msgid "Call Object Method" #~ msgstr "オブジェクトメソッドの呼び出し" +#~ msgid "Note" +#~ msgstr "注記" + #~ msgid "%(partner)s = Partner name" #~ msgstr "%(partner)s = パートナ名" @@ -416,9 +443,21 @@ msgstr "" #~ "アクション名を記述して下さい:\n" #~ "例:どのオブジェクトがどの条件に基づきどのアクションを実行するか" +#~ msgid "Filter" +#~ msgstr "フィルタ" + +#~ msgid "Date" +#~ msgstr "日付" + #~ msgid "Remind Responsible" #~ msgstr "責任者への通知" +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "ミーティングの15分前に通知を送信したいといったトリガー日前の遅延が必要な場合には、トリガー日後の遅延は負の数値を定義できます。" + #~ msgid "%(partner_email)s = Partner Email" #~ msgstr "%(partner_email)s = パートナEメール" @@ -458,10 +497,27 @@ msgstr "" #~ msgid "Mail to Responsible" #~ msgstr "責任者へのメール" +#~ msgid "Conditions on Model Fields" +#~ msgstr "モデル項目の条件" + +#~ msgid "Server Action" +#~ msgstr "サーバアクション" + +#~ msgid "Regex on Resource Name" +#~ msgstr "リソース名の正規表現" + #~ msgid "" #~ "Check this if you want the rule to send a reminder by email to the user." #~ msgstr "ユーザにEメールによって通知を送信するルールを希望する場合、ここをチェックして下さい。" +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "アクティブ項目がFalseに設定された場合、ルールを削除することなく非表示にできます。" + +#~ msgid "Conditions on Timing" +#~ msgstr "タイミングの条件" + #~ msgid "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." @@ -473,9 +529,15 @@ msgstr "" #~ msgid "%(object_user)s = Responsible name" #~ msgstr "%(object_user)s = 責任者名" +#~ msgid "Deadline" +#~ msgstr "期限" + #~ msgid "Remind Partner" #~ msgstr "パートナを思い出させる" +#~ msgid "Partner Category" +#~ msgstr "パートナ分類" + #~ msgid "" #~ "Use automated actions to automatically trigger actions for various screens. " #~ "Example: a lead created by a specific user may be automatically set to a " diff --git a/addons/base_action_rule/i18n/lt.po b/addons/base_action_rule/i18n/lt.po index dd2bd0ff7ad..a531ae1e99f 100644 --- a/addons/base_action_rule/i18n/lt.po +++ b/addons/base_action_rule/i18n/lt.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:58+0000\n" "Last-Translator: Paulius Sladkevičius \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "Veiksmo taisyklės" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Atsakingas" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Pastabos" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Partnerio kategorija" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,50 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "Atidėti po datos" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"Jeigu šiam laukui yra panaikintas žymėjimas, tai leis jums išjungti šią " -"taisyklę be jos ištrinimo." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Sąlygos" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Veiksmo taisyklė" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Laukų nustatymas" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Nuspaustas mygtukas" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Paskutinė veiksmo data" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -117,37 +140,15 @@ msgid "Hours" msgstr "Valandos" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Nustatyti būseną" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"Delsa po iškvietimo datos,nurodo, kad galite įterpti neigiamą skaičių. Jei " -"Jums reikia delsos prieš iškvietimo datą, pavyzdžiui siųsti priminimą 15 " -"min. prieš susitikimą." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Data" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Aktyvus" #. module: base_action_rule #: view:base.action.rule:0 @@ -155,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "Atidėti po įvykio datos" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Nustatyti atsakingą asmenį" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Nieko" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Mėnesiai" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Taisyklės pavadinimas" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -175,54 +188,44 @@ msgstr "Mėnesiai" msgid "Automated Actions" msgstr "Automatiniai veiksmai" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "Suteikia eilės tvarką, pagal kurį atvaizduojamas taisyklių sąrašas" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "Laukų sąlygos" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Serverio veiksmai" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Mėnesiai" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Dienos" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Uždelsimo tipas" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Filtras" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Aktyvus" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "Reguliarusis reiškinys pavadinimui" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -241,38 +244,21 @@ msgid "Minutes" msgstr "Minutės" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" msgstr "" -"reguliarusis reiškinys atitinkantis pavadinimą\n" -"pvz.: 'svarb.*' ieškos visų įrašų, kurie turi pavadinimą prasidedanti " -"'svarb'\n" -"Pastaba: paieška jautri raidžių dydžiui" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Laiko sąlygos" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Taisyklės pavadinimas" +#: help:base.action.rule,filter_pre_id:0 +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Seka" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Partnerio sąlygos" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -295,42 +281,46 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Sukūrimo data" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Sukūrimo data" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Galutinis terminas" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Partneris" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Įvykio data" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "Object" #~ msgstr "Objektas" #~ msgid "Remind Partner" #~ msgstr "Priminti partneriui" +#~ msgid "Partner Category" +#~ msgstr "Partnerio kategorija" + #, python-format #~ msgid "Error!" #~ msgstr "Klaida!" @@ -341,9 +331,21 @@ msgstr "" #~ msgid "Special Keywords to Be Used in The Body" #~ msgstr "Specialūs raktažodžiai naudojami tekste" +#~ msgid "Creation Date" +#~ msgstr "Sukūrimo data" + +#~ msgid "Last Action Date" +#~ msgstr "Paskutinė veiksmo data" + +#~ msgid "None" +#~ msgstr "Nieko" + #~ msgid "Invalid arguments" #~ msgstr "Blogi argumentai" +#~ msgid "Note" +#~ msgstr "Pastabos" + #~ msgid "%(partner)s = Partner name" #~ msgstr "%(partner)s = Partnerio pavadinimas" @@ -354,9 +356,18 @@ msgstr "" #~ msgid "No E-Mail ID Found for your Company address!" #~ msgstr "Jūsų kompanijos adrese nerastas el. pašto ID!" +#~ msgid "Filter" +#~ msgstr "Filtras" + +#~ msgid "Date" +#~ msgstr "Data" + #~ msgid "Mail body" #~ msgstr "El. laiško tekstas" +#~ msgid "Server Action" +#~ msgstr "Serverio veiksmai" + #~ msgid "" #~ "Check this if you want the rule to send a reminder by email to the user." #~ msgstr "" @@ -366,9 +377,18 @@ msgstr "" #~ msgid "Conditions on States" #~ msgstr "Būsenų sąlygos" +#~ msgid "Conditions on Timing" +#~ msgstr "Laiko sąlygos" + #~ msgid "Reply-To" #~ msgstr "Atsakyti (kam)" +#~ msgid "Button Pressed" +#~ msgstr "Nuspaustas mygtukas" + +#~ msgid "Deadline" +#~ msgstr "Galutinis terminas" + #~ msgid "" #~ "Check this if you want the rule to send an email to the responsible person." #~ msgstr "" @@ -381,6 +401,9 @@ msgstr "" #~ msgid "Mail to these Emails" #~ msgstr "Siųsti šiems el. pašto adresams" +#~ msgid "Set State to" +#~ msgstr "Nustatyti būseną" + #~ msgid "Email From" #~ msgstr "El. laiškas nuo" @@ -400,6 +423,9 @@ msgstr "" #~ "Pažymėkite, jeigu norite, kad taisyklė išsiųstų priminimą partneriui el. " #~ "paštu." +#~ msgid "Conditions on Model Partner" +#~ msgstr "Partnerio sąlygos" + #~ msgid "%(object_subject)s = Object subject" #~ msgstr "%(case_subject)s = Įvykio tema" @@ -412,6 +438,9 @@ msgstr "" #~ msgid "Remind with Attachment" #~ msgstr "Priminti su priedais" +#~ msgid "Set Responsible to" +#~ msgstr "Nustatyti atsakingą asmenį" + #~ msgid "%(object_user_phone)s = Responsible phone" #~ msgstr "%(case_user_phone)s = Atsakingo asmens telefonas" @@ -422,6 +451,17 @@ msgstr "" #~ "Taisyklė naudoja IR operatoriu. Objekto modelis turi atitikti visus " #~ "netuščius laukus, tada taisyklė įvykdo veiksmą nurodytą 'Veiksmai' kortelėje." +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "reguliarusis reiškinys atitinkantis pavadinimą\n" +#~ "pvz.: 'svarb.*' ieškos visų įrašų, kurie turi pavadinimą prasidedanti " +#~ "'svarb'\n" +#~ "Pastaba: paieška jautri raidžių dydžiui" + #~ msgid "Email To" #~ msgstr "El. laiškas kam" @@ -473,6 +513,12 @@ msgstr "" #~ msgid "Add Watchers (Cc)" #~ msgstr "Pridėti stebėtojus (Cc)" +#~ msgid "Conditions on Model Fields" +#~ msgstr "Laukų sąlygos" + +#~ msgid "Regex on Resource Name" +#~ msgstr "Reguliarusis reiškinys pavadinimui" + #~ msgid "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." @@ -480,6 +526,13 @@ msgstr "" #~ "Pažymėkite, jei jūs norite, kad visi prie įvykio prisegti dokumentai, būtų " #~ "prisegti prie priminimo el. laiško." +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "Jeigu šiam laukui yra panaikintas žymėjimas, tai leis jums išjungti šią " +#~ "taisyklę be jos ištrinimo." + #~ msgid "%(object_user)s = Responsible name" #~ msgstr "%(case_user)s = Atsakingo asmens vardas" @@ -511,3 +564,12 @@ msgstr "" #~ msgstr "" #~ "Naudokite Python išraišką teisingo laukelio nurodymui, kuris bus naudojamas " #~ "antraštės \"Nuo\" laukeliui." + +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "Delsa po iškvietimo datos,nurodo, kad galite įterpti neigiamą skaičių. Jei " +#~ "Jums reikia delsos prieš iškvietimo datą, pavyzdžiui siųsti priminimą 15 " +#~ "min. prieš susitikimą." diff --git a/addons/base_action_rule/i18n/lv.po b/addons/base_action_rule/i18n/lv.po index 16b7d576300..2dd6c965ece 100644 --- a/addons/base_action_rule/i18n/lv.po +++ b/addons/base_action_rule/i18n/lv.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:37+0000\n" "Last-Translator: Raphael Collet (OpenERP) \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "Darbību noteikumi" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Atbildīgais" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Piezīme" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Partnera Kategorija" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,48 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "Aizkave pēc trigger datuma" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Nosacījumi" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Darbības noteikums" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Lauki izmaiņām" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Poga nospiesta" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Pēdējas darbības datums" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -115,34 +140,15 @@ msgid "Hours" msgstr "Stundas" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Uzstādīt stāvokli" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Datums" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Aktīvs" #. module: base_action_rule #: view:base.action.rule:0 @@ -150,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "Aizkave pēc trigger datuma" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Ielikt par atbildīgo" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Nav" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Mēneši" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Noteikuma nosaukums" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -170,54 +188,44 @@ msgstr "Mēneši" msgid "Automated Actions" msgstr "Automatizētas darbības" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Servera Darbība" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Mēneši" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Dienas" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Aizkaves tips" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Filtrs" - -#. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Aktīvs" - -#. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" +#: view:base.action.rule:0 +msgid "Server actions to run" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -236,34 +244,21 @@ msgid "Minutes" msgstr "Minūtes" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Nosacījumi uz laiku" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Noteikuma nosaukums" +#: help:base.action.rule,filter_pre_id:0 +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Secība" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -286,48 +281,58 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Izveidošanas datums" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Izveidošanas datums" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Termiņš" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Partneris" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Datums, kad tiks Izpildīts" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "Mail to Watchers (CC)" #~ msgstr "E-pastu sekotājiem (CC)" +#~ msgid "Set State to" +#~ msgstr "Uzstādīt stāvokli" + #~ msgid "Mail to these Emails" #~ msgstr "E-pastu uz šim adresēm" +#~ msgid "Button Pressed" +#~ msgstr "Poga nospiesta" + #~ msgid "Object" #~ msgstr "Objekts" #~ msgid "Remind Partner" #~ msgstr "Atgādināt partnerim" +#~ msgid "Partner Category" +#~ msgstr "Partnera Kategorija" + #~ msgid "Email Body" #~ msgstr "E-pasta teksts" @@ -338,6 +343,9 @@ msgstr "" #~ msgid "Reply-To" #~ msgstr "Atbildēt uz" +#~ msgid "Deadline" +#~ msgstr "Termiņš" + #~ msgid "%(object_subject)s = Object subject" #~ msgstr "%(object_subject)s = Objekta subjekts" @@ -347,9 +355,21 @@ msgstr "" #~ msgid "Special Keywords to Be Used in The Body" #~ msgstr "Speciāli atslēgas vārdi, kas tiks izmantoti tekstā" +#~ msgid "Creation Date" +#~ msgstr "Izveidošanas datums" + +#~ msgid "Last Action Date" +#~ msgstr "Pēdējas darbības datums" + #~ msgid "Email Reminders" #~ msgstr "E-pasta atgādinājumi" +#~ msgid "Set Responsible to" +#~ msgstr "Ielikt par atbildīgo" + +#~ msgid "None" +#~ msgstr "Nav" + #~ msgid "%(object_user_phone)s = Responsible phone" #~ msgstr "%(object_user_phone)s = Atbildīgā tālrunis" @@ -365,12 +385,21 @@ msgstr "" #~ msgid "Email To" #~ msgstr "E-pastu" +#~ msgid "Note" +#~ msgstr "Piezīme" + #~ msgid "%(partner)s = Partner name" #~ msgstr "%(partner)s = Partnera nosaukums" #~ msgid "Call Object Method" #~ msgstr "Izsaukt objekta metodi" +#~ msgid "Filter" +#~ msgstr "Filtrs" + +#~ msgid "Date" +#~ msgstr "Datums" + #~ msgid "Remind Responsible" #~ msgstr "Atgādināt atbildīgajam" @@ -395,6 +424,9 @@ msgstr "" #~ msgid "Email Actions" #~ msgstr "E-pasta darbības" +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + #~ msgid "Mail body" #~ msgstr "E-pasta teksts" @@ -407,8 +439,14 @@ msgstr "" #~ msgid "Add Watchers (Cc)" #~ msgstr "Pievienot sekotājus (CC)" +#~ msgid "Server Action" +#~ msgstr "Servera Darbība" + #~ msgid "Conditions on States" #~ msgstr "Stāvokļu nosacījumi" +#~ msgid "Conditions on Timing" +#~ msgstr "Nosacījumi uz laiku" + #~ msgid "Email From" #~ msgstr "E-pasts no" diff --git a/addons/base_action_rule/i18n/mn.po b/addons/base_action_rule/i18n/mn.po index 3c1f1f8d65b..d7dc9d222d2 100644 --- a/addons/base_action_rule/i18n/mn.po +++ b/addons/base_action_rule/i18n/mn.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:22+0000\n" "Last-Translator: Raphael Collet (OpenERP) \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: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "Үйл ажиллагааны дүрэм" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Хариуцлагатай" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Тэмдэглэл" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Харилцагчийн ангилал" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,49 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "Саатсаны дараах гарааны огноо" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"Хэрэв актив талбар худал байвал дүрэм журмыг устгалгүй далдлах нь зүйтэй." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Нөхцөл" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Үйл ажиллаагааны дүрэм" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Солих утгууд" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Дарсан товчлуур" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Сүүлийн үйл ажиллагааны огноо" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -116,37 +140,15 @@ msgid "Hours" msgstr "Цаг" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Ноороглох" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"Delay After Trigger Date,specifies you can put a negative number. Хэрэв та " -"гол огнооны өмнө зогсох хэргтэй бол, уулзалтаас 15 минутын өмнө анхааруулга " -"илгээж байна." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Огноо" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Идэвхитэй" #. module: base_action_rule #: view:base.action.rule:0 @@ -154,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "Саатлын дараах гарааны огноо" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Хариуцуулах" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Хоосон" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Сарууд" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Дүрмийн нэр" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -174,54 +188,44 @@ msgstr "Сарууд" msgid "Automated Actions" msgstr "Үйл ажиллагааны автоматжуулалт" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "Дэлгэцэнд дүрмийн жагсаалт харагдахад захиалгын дарааллыг өгнө." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "Модел талбарууд дахь нөхцөл" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Үйлдвэр үйлчилгээ" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Сарууд" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Өдөр" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Саатлын төрөл" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Шүүлтүүр" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Идэвхитэй" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "Нөөцийн нэр дээрх Regex" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -240,37 +244,21 @@ msgid "Minutes" msgstr "Минут" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" msgstr "" -"Нөөцийн нэрийг тулгах Regular expression\n" -"ө.х.: 'urgent.*' нь 'urgent'-р эхэлсэн бичлэгүүдийг хайна\n" -"Анхаарах нь: Энэ нь том жижиг үсэг ялгадаг хайлт." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Үйл явдлын дараалал дахь нөхцөл" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Дүрмийн нэр" +#: help:base.action.rule,filter_pre_id:0 +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Дараалал" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Эцэг модел дээрх нөхцөл" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -293,42 +281,61 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Үүсгэсэн Огноо" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Үүссэн Огноо" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Товлосон хугацаа" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Харилцагч" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Гарааны огноо" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + +#~ msgid "Partner Category" +#~ msgstr "Харилцагчийн ангилал" + #~ msgid "Object" #~ msgstr "Объект" +#~ msgid "Deadline" +#~ msgstr "Товлосон хугацаа" + #~ msgid "State" #~ msgstr "Төлөв" +#~ msgid "Creation Date" +#~ msgstr "Үүсгэсэн Огноо" + +#~ msgid "Note" +#~ msgstr "Тэмдэглэл" + +#~ msgid "Date" +#~ msgstr "Огноо" + +#~ msgid "Button Pressed" +#~ msgstr "Дарсан товчлуур" + #~ msgid "Email Body" #~ msgstr "Имэйлийн гол утга" @@ -342,6 +349,9 @@ msgstr "" #~ msgid "Email Reminders" #~ msgstr "Имэйл сануулагууд" +#~ msgid "Last Action Date" +#~ msgstr "Сүүлийн үйл ажиллагааны огноо" + #~ msgid "%(object_id)s = Object ID" #~ msgstr "%(object_id)s=Объектын дугаар" @@ -351,6 +361,9 @@ msgstr "" #~ msgid "Invalid arguments" #~ msgstr "Алдаатай аргумент" +#~ msgid "None" +#~ msgstr "Хоосон" + #~ msgid "%(object_user_phone)s = Responsible phone" #~ msgstr "%(object_user_phone)s = Хариуцлагатай утас" @@ -363,6 +376,9 @@ msgstr "" #~ msgid "Remind Responsible" #~ msgstr "Хариуцлага тооцох" +#~ msgid "Filter" +#~ msgstr "Шүүлтүүр" + #~ msgid "Email Actions" #~ msgstr "Имэйл үйл ажиллагаанууд" @@ -384,6 +400,18 @@ msgstr "" #~ msgid "Add Watchers (Cc)" #~ msgstr "Сонирхогч нэмэх" +#~ msgid "Server Action" +#~ msgstr "Үйлдвэр үйлчилгээ" + +#~ msgid "Conditions on Timing" +#~ msgstr "Үйл явдлын дараалал дахь нөхцөл" + +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "Хэрэв актив талбар худал байвал дүрэм журмыг устгалгүй далдлах нь зүйтэй." + #~ msgid "%(object_user)s = Responsible name" #~ msgstr "%(object_user)s = Хариуцлагын нэр" @@ -405,6 +433,9 @@ msgstr "" #~ msgid "Email To" #~ msgstr "Э-мэйлрүү" +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + #, python-format #~ msgid "No E-Mail ID Found for your Company address!" #~ msgstr "Таны компаны хаягийн санд Э-мэйл ID байхгүй байна!" @@ -431,15 +462,33 @@ msgstr "" #~ msgid "Mail to these Emails" #~ msgstr "Эдгээр хаягуудруу илгээх" +#~ msgid "Set State to" +#~ msgstr "Ноороглох" + #~ msgid "Email From" #~ msgstr "Э-мэйлээс" +#~ msgid "Conditions on Model Partner" +#~ msgstr "Эцэг модел дээрх нөхцөл" + #~ msgid "%(object_subject)s = Object subject" #~ msgstr "%(object_subject)s = Объектын гарчиг" #~ msgid "Special Keywords to Be Used in The Body" #~ msgstr "Их биенд тусгай түлхүүр үгсийг хэрэглэсэн байх" +#~ msgid "Set Responsible to" +#~ msgstr "Хариуцуулах" + +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "Delay After Trigger Date,specifies you can put a negative number. Хэрэв та " +#~ "гол огнооны өмнө зогсох хэргтэй бол, уулзалтаас 15 минутын өмнө анхааруулга " +#~ "илгээж байна." + #~ msgid "" #~ "Describes the action name.\n" #~ "eg:on which object which action to be taken on basis of which condition" @@ -456,6 +505,9 @@ msgstr "" #~ msgid "Mail body" #~ msgstr "Э-мэйлийн гол утга" +#~ msgid "Conditions on Model Fields" +#~ msgstr "Модел талбарууд дахь нөхцөл" + #~ msgid "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." @@ -478,6 +530,9 @@ msgstr "" #~ msgid "Error: The mail is not well formated" #~ msgstr "Алдаа: Мэйл сайн форматтай биш байна" +#~ msgid "Regex on Resource Name" +#~ msgstr "Нөөцийн нэр дээрх Regex" + #~ msgid "" #~ "Use a python expression to specify the right field on which one than we will " #~ "use for the 'To' field of the header" @@ -485,6 +540,16 @@ msgstr "" #~ "Толгойны 'Хэнд' талбар дээр хэрэглэх зөв талбарыг зааж өгөх Python " #~ "илэрхийллэг ашигла" +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "Нөөцийн нэрийг тулгах Regular expression\n" +#~ "ө.х.: 'urgent.*' нь 'urgent'-р эхэлсэн бичлэгүүдийг хайна\n" +#~ "Анхаарах нь: Энэ нь том жижиг үсэг ялгадаг хайлт." + #~ msgid "" #~ "Check this if you want the rule to mark CC(mail to any other person defined " #~ "in actions)." diff --git a/addons/base_action_rule/i18n/nb.po b/addons/base_action_rule/i18n/nb.po index 7e0f4387503..19c38cb7133 100644 --- a/addons/base_action_rule/i18n/nb.po +++ b/addons/base_action_rule/i18n/nb.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-09-03 16:43+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "Handlingsregler" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Ansvarlig" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Notat" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Partner Kategori" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,50 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "Forsinkelse etter triggerdato" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"Hvis det aktive feltet er satt til False, vil det tillate deg å skjule " -"regelen uten å fjerne den." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Betingelser" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Handling regel" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Felter å endre" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Knapp trykket" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Siste handlingsdato" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -117,37 +140,15 @@ msgid "Hours" msgstr "Timer" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Still stat til" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"Forsinkelse Etter utløser Dato, spesifiserer du kan sette et negativt tall. " -"Hvis du trenger en forsinkelse før avtrekkeren dato, som å sende en " -"påminnelse 15 minutter før et møte." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.actions.actions" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Dato" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Aktiv" #. module: base_action_rule #: view:base.action.rule:0 @@ -155,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "Forsinkelse Etter utløser Dato" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Satt Ansvarlig for å" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Ingen" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Måneder" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Regelnavn" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -175,54 +188,44 @@ msgstr "Måneder" msgid "Automated Actions" msgstr "Automatiserte handinger" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "Gir sekvens ordre når du viser en liste over regler." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "Forholdene på Modell Felter" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Tjenerhandling" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Måneder" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Dager" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "forsinkelse typen" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Filtrer" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Aktiv" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "Regex på Ressursnavn" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -241,38 +244,21 @@ msgid "Minutes" msgstr "Minutter" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" msgstr "" -"Regulært uttrykk for matchende navnet på ressursen\n" -"f.eks: \". haster * 'vil søke etter poster som har navn som starter med " -"strengen\" haster \"\n" -"Merk: Dette er små bokstaver søk." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Vilkår for timing" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Regelnavn" +#: help:base.action.rule,filter_pre_id:0 +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Sekvens" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Forholdene på Modell Partner" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -295,36 +281,37 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Opprettelsesdato" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Opprettet dato" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Frist" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Partner" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Uttløser dato" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "Mail to Watchers (CC)" #~ msgstr "Post til overvåkere (CC)" @@ -339,15 +326,27 @@ msgstr "" #~ msgid "Mail to these Emails" #~ msgstr "Send mail til disse e-postene" +#~ msgid "Set State to" +#~ msgstr "Still stat til" + +#~ msgid "Button Pressed" +#~ msgstr "Knapp trykket" + #~ msgid "Object" #~ msgstr "Objekt" #~ msgid "Remind Partner" #~ msgstr "Påminn partner" +#~ msgid "Partner Category" +#~ msgstr "Partner Kategori" + #~ msgid "Email Body" #~ msgstr "E-post kropp" +#~ msgid "Conditions on Model Partner" +#~ msgstr "Forholdene på Modell Partner" + #~ msgid "" #~ "These people will receive a copy of the future communication between partner " #~ "and users by email" @@ -368,6 +367,9 @@ msgstr "" #~ "Sjekk dette hvis du vil at regelen skal sende en påminnelse via e-post til " #~ "partneren." +#~ msgid "Deadline" +#~ msgstr "Frist" + #~ msgid "%(object_subject)s = Object subject" #~ msgstr "%(object_subject)s = Object subject" @@ -377,6 +379,9 @@ msgstr "" #~ msgid "Special Keywords to Be Used in The Body" #~ msgstr "Spesielle nøkkelord for bruk i meldingsinnhold" +#~ msgid "Creation Date" +#~ msgstr "Opprettelsesdato" + #~ msgid "" #~ "Use automated actions to automatically trigger actions for various screens. " #~ "Example: a lead created by a specific user may be automatically set to a " @@ -394,6 +399,9 @@ msgstr "" #~ msgid "Email Reminders" #~ msgstr "E-post påminnelser" +#~ msgid "Last Action Date" +#~ msgstr "Siste handlingsdato" + #~ msgid "" #~ "Use a python expression to specify the right field on which one than we will " #~ "use for the 'To' field of the header" @@ -401,6 +409,12 @@ msgstr "" #~ "Bruk en python uttrykk for å angi høyre feltet på hvilken enn vi vil bruke " #~ "for Til-feltet på header." +#~ msgid "Set Responsible to" +#~ msgstr "Satt Ansvarlig for å" + +#~ msgid "None" +#~ msgstr "Ingen" + #~ msgid "%(object_user_phone)s = Responsible phone" #~ msgstr "% (object_bruker_telefonen) s = Ansvarlig telefon" @@ -419,6 +433,17 @@ msgstr "" #~ msgid "Email To" #~ msgstr "E-post til." +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "Regulært uttrykk for matchende navnet på ressursen\n" +#~ "f.eks: \". haster * 'vil søke etter poster som har navn som starter med " +#~ "strengen\" haster \"\n" +#~ "Merk: Dette er små bokstaver søk." + #~ msgid "" #~ "The rule uses the AND operator. The model must match all non-empty fields so " #~ "that the rule executes the action described in the 'Actions' tab." @@ -433,6 +458,9 @@ msgstr "" #~ "Bruk en python uttrykk for å angi høyre feltet på hvilken enn vi vil bruke " #~ "for Fra-feltet på overskriften" +#~ msgid "Note" +#~ msgstr "Notat" + #~ msgid "" #~ "Check this if you want the rule to mark CC(mail to any other person defined " #~ "in actions)." @@ -451,6 +479,12 @@ msgstr "" #~ "f.eks: på hvilket objekt som tiltak som skal iverksettes på grunnlag av " #~ "hvilken tilstand" +#~ msgid "Filter" +#~ msgstr "Filtrer" + +#~ msgid "Date" +#~ msgstr "Dato" + #~ msgid "Remind Responsible" #~ msgstr "Minn Ansvarlig" @@ -458,6 +492,15 @@ msgstr "" #~ msgid "No E-Mail ID Found for your Company address!" #~ msgstr "Ingen E-post ID funnet for din firmaadresse!" +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "Forsinkelse Etter utløser Dato, spesifiserer du kan sette et negativt tall. " +#~ "Hvis du trenger en forsinkelse før avtrekkeren dato, som å sende en " +#~ "påminnelse 15 minutter før et møte." + #~ msgid "%(object_date)s = Creation date" #~ msgstr "%(object_dato)s = opprettelsesdato" @@ -473,6 +516,9 @@ msgstr "" #~ msgid "Email Actions" #~ msgstr "E-post handlinger" +#~ msgid "ir.cron" +#~ msgstr "ir.actions.actions" + #~ msgid "Content of mail" #~ msgstr "Innholdet av post" @@ -482,6 +528,9 @@ msgstr "" #~ msgid "Mail body" #~ msgstr "Mail kropp" +#~ msgid "Server Action" +#~ msgstr "Tjenerhandling" + #~ msgid "%(object_user_email)s = Responsible Email" #~ msgstr "% (object_brukerens_e-post) s = Ansvarlig e-post" @@ -494,6 +543,12 @@ msgstr "" #~ msgid "Add Watchers (Cc)" #~ msgstr "Legg til overvåkere (Cc)" +#~ msgid "Conditions on Model Fields" +#~ msgstr "Forholdene på Modell Felter" + +#~ msgid "Regex on Resource Name" +#~ msgstr "Regex på Ressursnavn" + #~ msgid "" #~ "Check this if you want the rule to send a reminder by email to the user." #~ msgstr "" @@ -503,9 +558,19 @@ msgstr "" #~ msgid "Conditions on States" #~ msgstr "Vilkår for tilstander" +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "Hvis det aktive feltet er satt til False, vil det tillate deg å skjule " +#~ "regelen uten å fjerne den." + #~ msgid "%(object_user)s = Responsible name" #~ msgstr "% (object_bruker) s = Ansvarlig navn" +#~ msgid "Conditions on Timing" +#~ msgstr "Vilkår for timing" + #~ msgid "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." diff --git a/addons/base_action_rule/i18n/nl.po b/addons/base_action_rule/i18n/nl.po index f00d5fd44fb..db947c433b0 100644 --- a/addons/base_action_rule/i18n/nl.po +++ b/addons/base_action_rule/i18n/nl.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-12 20:36+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-13 04:44+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" -msgstr "Volgers instellen" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" +msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,83 +36,103 @@ msgid "Action Rules" msgstr "Actieregels" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Verantwoordelijke" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" -msgstr "ir.actions.server" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Notitie" - -#. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Relatiecategorie" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" + +#. module: base_action_rule +#: help:base.action.rule,trg_date_range:0 +msgid "" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" -"Serveractie welke wordt getriggerd (bijv. E-mail reminder, Call Object " -"Method, etc...)" #. module: base_action_rule #: field:base.action.rule,trg_date_range:0 msgid "Delay after trigger date" msgstr "Vertraging na activeerdatum" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"Als het actief veld uitzet, kunt u de regel verbergen zonder haar te " -"verwijderen." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Voorwaarden" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "Status" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Actieregel" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Te veranderen velden" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Knop ingedrukt" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Laatste actiedatum" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -119,39 +140,15 @@ msgid "Hours" msgstr "Uren" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Zet status op" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" -"Definieer server actiies.\n" -"Bijv: E-mail herinneringen, Call Object Service, etc." #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"Vertraging na activeerdatum, specificeert dat u een negatief getal kunt " -"invoeren als u vertraging vóór de activeerdatum wilt, zoals een herinnering " -"15 minuten voor een vergadering versturen." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Datum" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Actief" #. module: base_action_rule #: view:base.action.rule:0 @@ -159,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "Vertraging na Activeerdatum" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Zet verantwoordelijke op" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Geen" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Maanden" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Regelnaam" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -179,55 +188,45 @@ msgstr "Maanden" msgid "Automated Actions" msgstr "Geautomatiseerde acties" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "Gerelateerde document model" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "Geeft de volgorde aan waarin de lijst van regels wordt weergegeven." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "Voorwaarden op Model velden" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Server-actie" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Maanden" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Dagen" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Soort vertraging" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Filter" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Actief" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "Regex op bronnaam" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" -msgstr "datum laatst aangepast" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" +msgstr "" #. module: base_action_rule #: field:base.action.rule,model:0 @@ -245,38 +244,21 @@ msgid "Minutes" msgstr "Minuten" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" +msgstr "Gerelateerde document model" + +#. module: base_action_rule +#: help:base.action.rule,filter_pre_id:0 msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +"If present, this condition must be satisfied before the update of the record." msgstr "" -"Reguliere expressie voor overeenkomende naam van de bron; \n" -"i.e.: 'urgent.*' zal zoeken naar records met de naam beginnend met de tekst " -"'urgent'\n" -"Opmerking: dit zoeken is hoofdletter gevoelig." - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Voorwaarden op timing" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Regelnaam" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Volgnummer" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Voorwaarden op relatiemodel" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -299,42 +281,49 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Aanmaakdatum" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Aanmaakdatum" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Uiterste datum" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Relatie" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Activeerdatum" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "Server acties" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "Email Body" #~ msgstr "Email bericht" #~ msgid "Mail to these Emails" #~ msgstr "Mail naar deze emails" +#~ msgid "Set State to" +#~ msgstr "Zet status op" + +#~ msgid "Button Pressed" +#~ msgstr "Knop ingedrukt" + #~ msgid "Object" #~ msgstr "Object" @@ -363,6 +352,12 @@ msgstr "Server acties" #~ msgid "Special Keywords to Be Used in The Body" #~ msgstr "Speciale sleutelwoorden die in het bericht kunnen worden gebruikt" +#~ msgid "Creation Date" +#~ msgstr "Aanmaakdatum" + +#~ msgid "None" +#~ msgstr "Geen" + #~ msgid "%(object_user_phone)s = Responsible phone" #~ msgstr "%(object_user_phone)s = Telefoon verantwoordelijke" @@ -372,6 +367,9 @@ msgstr "Server acties" #~ msgid "Invalid arguments" #~ msgstr "Ongeldige argumenten" +#~ msgid "Note" +#~ msgstr "Notitie" + #~ msgid "%(partner)s = Partner name" #~ msgstr "%(partner)s = Naam relatie" @@ -395,6 +393,15 @@ msgstr "Server acties" #~ "Beschrijft de actie naam.\n" #~ "ie: op welk object welke actie wordt uitgevoerd onder welke conditie" +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + +#~ msgid "Filter" +#~ msgstr "Filter" + +#~ msgid "Date" +#~ msgstr "Datum" + #~ msgid "%(partner_email)s = Partner Email" #~ msgstr "%(partner_email)s = Relatie email" @@ -413,6 +420,9 @@ msgstr "Server acties" #~ msgid "Add Watchers (Cc)" #~ msgstr "Toevoegen toeschouwers (Cc)" +#~ msgid "Server Action" +#~ msgstr "Server-actie" + #~ msgid "%(object_user)s = Responsible name" #~ msgstr "%(object_user)s = Naam verantwoordelijke" @@ -428,6 +438,9 @@ msgstr "Server acties" #~ "Vink dit aan wanneer u wilt dat de regel de gebruiker via de mail een " #~ "herinnering stuurt." +#~ msgid "Partner Category" +#~ msgstr "Relatiecategorie" + #~ msgid "" #~ "These people will receive a copy of the future communication between partner " #~ "and users by email" @@ -438,9 +451,21 @@ msgstr "Server acties" #~ msgid "Reply-To" #~ msgstr "Antwoord naar" +#~ msgid "Conditions on Model Partner" +#~ msgstr "Voorwaarden op relatiemodel" + +#~ msgid "Deadline" +#~ msgstr "Uiterste datum" + #~ msgid "Email-id of the persons whom mail is to be sent" #~ msgstr "Email-id van de personen waarvan de mail wordt verstuurd" +#~ msgid "Last Action Date" +#~ msgstr "Laatste actiedatum" + +#~ msgid "Set Responsible to" +#~ msgstr "Zet verantwoordelijke op" + #~ msgid "" #~ "The rule uses the AND operator. The model must match all non-empty fields so " #~ "that the rule executes the action described in the 'Actions' tab." @@ -452,6 +477,26 @@ msgstr "Server acties" #~ msgid "Remind with Attachment" #~ msgstr "Herinneren met bijlage" +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "Reguliere expressie voor overeenkomende naam van de bron; \n" +#~ "i.e.: 'urgent.*' zal zoeken naar records met de naam beginnend met de tekst " +#~ "'urgent'\n" +#~ "Opmerking: dit zoeken is hoofdletter gevoelig." + +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "Vertraging na activeerdatum, specificeert dat u een negatief getal kunt " +#~ "invoeren als u vertraging vóór de activeerdatum wilt, zoals een herinnering " +#~ "15 minuten voor een vergadering versturen." + #~ msgid "Remind Responsible" #~ msgstr "Herinneren verantwoordelijke" @@ -471,12 +516,21 @@ msgstr "Server acties" #~ msgid "Mail to Watchers (CC)" #~ msgstr "E-mail naar toeschouwers (CC)" +#~ msgid "Conditions on Timing" +#~ msgstr "Voorwaarden op timing" + #~ msgid "Server Action to be Triggered" #~ msgstr "Server actie om te activeren" #~ msgid "Mail to Responsible" #~ msgstr "E-mail naar verantwoordelijke" +#~ msgid "Conditions on Model Fields" +#~ msgstr "Voorwaarden op Model velden" + +#~ msgid "Regex on Resource Name" +#~ msgstr "Regex op bronnaam" + #~ msgid "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." @@ -487,6 +541,13 @@ msgstr "Server acties" #~ msgid "Conditions on States" #~ msgstr "Voorwaarden op status" +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "Als het actief veld uitzet, kunt u de regel verbergen zonder haar te " +#~ "verwijderen." + #~ msgid "" #~ "Use a python expression to specify the right field on which one than we will " #~ "use for the 'To' field of the header" diff --git a/addons/base_action_rule/i18n/pl.po b/addons/base_action_rule/i18n/pl.po index c058ae6d6cf..dffcc2ab702 100644 --- a/addons/base_action_rule/i18n/pl.po +++ b/addons/base_action_rule/i18n/pl.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:24+0000\n" "Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \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: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Uwaga" - -#. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" + +#. module: base_action_rule +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,48 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "Opóźnienie po dacie wyzwolenia" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Warunki" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Pola do zmiany" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Data ostatniej akcji" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -115,34 +140,15 @@ msgid "Hours" msgstr "Godziny" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." -msgstr "" - -#. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Data" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Aktywne" #. module: base_action_rule #: view:base.action.rule:0 @@ -150,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Ustaw odpowiedzialnego na" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Brak" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Miesiące" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Nazwa reguły" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -170,54 +188,44 @@ msgstr "Miesiące" msgid "Automated Actions" msgstr "" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Miesiące" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Dni" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Typ opóźnienia" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Filtr" - -#. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Aktywne" - -#. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" +#: view:base.action.rule:0 +msgid "Server actions to run" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -236,34 +244,21 @@ msgid "Minutes" msgstr "Minuty" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" +msgstr "" + +#. module: base_action_rule +#: help:base.action.rule,filter_pre_id:0 msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +"If present, this condition must be satisfied before the update of the record." msgstr "" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Nazwa reguły" - #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -286,36 +281,37 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Data utworzenia" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Termin" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #, python-format #~ msgid "Error!" #~ msgstr "Błąd!" @@ -328,21 +324,45 @@ msgstr "" #~ msgstr "" #~ "Zaznacz, jeśli chcesz, aby reguła wysyłała przypomnienie mailem do partnera." +#~ msgid "Deadline" +#~ msgstr "Termin" + #~ msgid "State" #~ msgstr "Stan" #~ msgid "Special Keywords to Be Used in The Body" #~ msgstr "Specjalne słowa kluczowe do zastosowania w treści" +#~ msgid "Creation Date" +#~ msgstr "Data utworzenia" + +#~ msgid "Last Action Date" +#~ msgstr "Data ostatniej akcji" + +#~ msgid "Set Responsible to" +#~ msgstr "Ustaw odpowiedzialnego na" + +#~ msgid "None" +#~ msgstr "Brak" + #~ msgid "Invalid arguments" #~ msgstr "Niepoprawne argumenty" +#~ msgid "Note" +#~ msgstr "Uwaga" + #~ msgid "%(partner)s = Partner name" #~ msgstr "%(partner)s = Nazwa partnera" #~ msgid "Call Object Method" #~ msgstr "Metoda wywołania obiektu" +#~ msgid "Date" +#~ msgstr "Data" + +#~ msgid "Filter" +#~ msgstr "Filtr" + #, python-format #~ msgid "No E-Mail ID Found for your Company address!" #~ msgstr "Brak ID email dla adresu twojej firmy !" diff --git a/addons/base_action_rule/i18n/pt.po b/addons/base_action_rule/i18n/pt.po index b85fc3e037b..cba6f1d24ba 100644 --- a/addons/base_action_rule/i18n/pt.po +++ b/addons/base_action_rule/i18n/pt.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 15:50+0000\n" "Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "Regras de ação" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Responsável" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" -msgstr "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Nota" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Categoria de Parceiros" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,50 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "Atraso após a data de limite" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"Se o campo ativo é definido como Falso, ele permitirá que se oculte a regra " -"sem a remover." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Condições" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Regra de ação" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Campos a mudar" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Botão Pressionado" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Data da ação mais recente" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -117,37 +140,15 @@ msgid "Hours" msgstr "Horas" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Alterar o estado para" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"Após atraso Data de Limite, especifica que pode colocar um número negativo. " -"Se precisar de um atraso antes da data limite, como o envio de um lembrete " -"15 minutos antes de uma reunião." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Data" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Ativo" #. module: base_action_rule #: view:base.action.rule:0 @@ -155,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "Após atraso Data Gatilho" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Responsável por definir" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Nenhum" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Meses" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Nome da Regra" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -175,55 +188,45 @@ msgstr "Meses" msgid "Automated Actions" msgstr "Ações Automáticas" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "Modelo de documento relacionado" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "Dá a ordem da sequência ao exibir uma lista de regras." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "Condições em campos Modelo" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Ação do servidor" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Meses" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Dias" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Tipo de atraso" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Filtro" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Ativo" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "Regex em Nome do Recurso" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" -msgstr "Data da modificação mais recente" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" +msgstr "" #. module: base_action_rule #: field:base.action.rule,model:0 @@ -241,38 +244,21 @@ msgid "Minutes" msgstr "Minutos" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" +msgstr "Modelo de documento relacionado" + +#. module: base_action_rule +#: help:base.action.rule,filter_pre_id:0 msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +"If present, this condition must be satisfied before the update of the record." msgstr "" -"Expressão regular para nome correspondente do recurso \n" -"por exemplo: \"urgente .* 'irá procurar registos ter o nome começando com a " -"string 'urgente' \n" -"Nota: Esta busca é sensível a maiúsculas e minúsculas." - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Condições de sincronismo" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Nome da Regra" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Sequência" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Condições de Parceiro Modelo" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -295,45 +281,64 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Data de criação" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Data de criação" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Prazo Limite" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Parceiro" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Data Limite" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + +#~ msgid "Set State to" +#~ msgstr "Alterar o estado para" + #~ msgid "Object" #~ msgstr "Objeto" #~ msgid "Invalid arguments" #~ msgstr "Argumentos inválidos" +#~ msgid "Date" +#~ msgstr "Data" + +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + +#~ msgid "Server Action" +#~ msgstr "Ação do servidor" + #~ msgid "State" #~ msgstr "Estado" +#~ msgid "Creation Date" +#~ msgstr "Data de criação" + +#~ msgid "Last Action Date" +#~ msgstr "Data da ação mais recente" + #~ msgid "Email Body" #~ msgstr "Conteúdo da mensagem" @@ -355,6 +360,15 @@ msgstr "" #~ msgid "Call Object Method" #~ msgstr "Chamar o método do objeto" +#~ msgid "None" +#~ msgstr "Nenhum" + +#~ msgid "Filter" +#~ msgstr "Filtro" + +#~ msgid "Note" +#~ msgstr "Nota" + #~ msgid "Mail to Watchers (CC)" #~ msgstr "E-mail para Vigilantes(CC)" @@ -377,6 +391,9 @@ msgstr "" #~ "Marque esta opção se quiser que a regra envie um lembrete por e-mail para o " #~ "parceiro." +#~ msgid "Conditions on Model Partner" +#~ msgstr "Condições de Parceiro Modelo" + #~ msgid "Special Keywords to Be Used in The Body" #~ msgstr "Palavras-chave especial para ser usado no corpo" @@ -386,6 +403,9 @@ msgstr "" #~ msgid "Remind with Attachment" #~ msgstr "Relembre com o Anexo" +#~ msgid "Set Responsible to" +#~ msgstr "Responsável por definir" + #~ msgid "" #~ "Use a python expression to specify the right field on which one than we will " #~ "use for the 'To' field of the header" @@ -396,6 +416,17 @@ msgstr "" #~ msgid "%(object_user_phone)s = Responsible phone" #~ msgstr "%(object_user_phone)s = Telefone responsável" +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "Expressão regular para nome correspondente do recurso \n" +#~ "por exemplo: \"urgente .* 'irá procurar registos ter o nome começando com a " +#~ "string 'urgente' \n" +#~ "Nota: Esta busca é sensível a maiúsculas e minúsculas." + #~ msgid "Email To" #~ msgstr "Email Para" @@ -441,6 +472,15 @@ msgstr "" #~ msgid "Mail to Responsible" #~ msgstr "Email para Responsável" +#~ msgid "Conditions on Model Fields" +#~ msgstr "Condições em campos Modelo" + +#~ msgid "Regex on Resource Name" +#~ msgstr "Regex em Nome do Recurso" + +#~ msgid "Conditions on Timing" +#~ msgstr "Condições de sincronismo" + #~ msgid "%(object_user)s = Responsible name" #~ msgstr "%(object_user)s = Nome Responsável" @@ -453,13 +493,22 @@ msgstr "" #~ "Marque esta opção se quiser que a regra envie um e-mail para a pessoa " #~ "responsável." +#~ msgid "Button Pressed" +#~ msgstr "Botão Pressionado" + #~ msgid "Remind Partner" #~ msgstr "Alertar Parceiro" +#~ msgid "Partner Category" +#~ msgstr "Categoria de Parceiros" + #, python-format #~ msgid "Error!" #~ msgstr "Erro !" +#~ msgid "Deadline" +#~ msgstr "Prazo Limite" + #~ msgid "%(object_subject)s = Object subject" #~ msgstr "%(object_subject)s = Sujeito Objeto" @@ -499,6 +548,15 @@ msgstr "" #~ "Descreve o nome da ação. \n" #~ " eg: em qual objeto, que ação a ser tomada com base em qual condição" +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "Após atraso Data de Limite, especifica que pode colocar um número negativo. " +#~ "Se precisar de um atraso antes da data limite, como o envio de um lembrete " +#~ "15 minutos antes de uma reunião." + #~ msgid "%(object_description)s = Object description" #~ msgstr "%(object_description)s = Descrição Objeto" @@ -511,6 +569,13 @@ msgstr "" #~ msgid "Add Watchers (Cc)" #~ msgstr "Adicionar visualizadores (Cc)" +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "Se o campo ativo é definido como Falso, ele permitirá que se oculte a regra " +#~ "sem a remover." + #~ msgid "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." diff --git a/addons/base_action_rule/i18n/pt_BR.po b/addons/base_action_rule/i18n/pt_BR.po index 54f1663d8b1..9e7ad47feb6 100644 --- a/addons/base_action_rule/i18n/pt_BR.po +++ b/addons/base_action_rule/i18n/pt_BR.po @@ -7,30 +7,32 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-12-16 23:22+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-23 11:29+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " "\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-18 05:02+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-24 04:40+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" -msgstr "Definir Seguidores" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" +msgstr "Em Andamento" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" -"A regra usa o operador AND. O modelo deve corresponder a todos os campos não " -"vazios de modo que a regra executa a ação descrita na aba 'Ações'." +"- Nesta mesma \"Pesquisa\", selecione o menu \"Salvar Filtro Atual\", digite " +"o nome (Ex: Criar o 01/01/2012) e adicione a opção \"Compartilhar com todos " +"os usuários\"" #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule @@ -38,47 +40,60 @@ msgid "Action Rules" msgstr "Regras da Ação" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "Escolha um filtro ou condição de tempo." + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Responsável" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" -msgstr "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." +msgstr "Exemplos: lembretes de e-mail, serviço de objeto de chamada, etc" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Nota" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "Adicionar Seguidores" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Categoria do Parceiro" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "Definir Responsável" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." msgstr "" -"Ações de servidor a serem disparadas(ex: Emails, chamar métodos de objetos, " -"etc...)" +"Atraso após a data de disparo. Você pode colocar um número negativo se você " +"precisa de um atraso antes da data de disparo, como o envio de um lembrete " +"15 minutos antes de uma reunião." + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "base.action.rule.lead.test" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "Fechado" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" +msgstr "Novo" #. module: base_action_rule #: field:base.action.rule,trg_date_range:0 msgid "Delay after trigger date" -msgstr "Atraso após a data do disparador" - -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"Se o campo ativo é definido como False, ele permitirá que você esconda a " -"regra sem removê-lo." +msgstr "Atraso após a data de disparo" #. module: base_action_rule #: view:base.action.rule:0 @@ -86,35 +101,46 @@ msgid "Conditions" msgstr "Condições" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "Pendente" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "Situação" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "Antes de Atualizar o Filtro" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Ações Automáticas" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" +"Se marcado, esta condição deve ser satisfeita após a atualização do registro." + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Campos para Mudar" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Botão Pressionado" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" -msgstr "Condições na Situação" +msgid "The filter must therefore be available in this page." +msgstr "O filtro deve estar disponível nesta página." #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Data da Última Ação" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "Após Atualização do Filtro" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -122,39 +148,15 @@ msgid "Hours" msgstr "Horas" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Mudar Situação para" +#: view:base.action.rule:0 +msgid "To create a new filter:" +msgstr "Para criar um novo filtro:" #. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." -msgstr "" -"Define ações de servidor.\n" -"Ex: Emails, Chamar serviço de objeto, etc..." - -#. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"Atraso depois da Data de Disparo, você pode colocar um número negativo. Se " -"você precisar de um atraso antes da data de disparo, como o envio de um " -"lembrete 15 minutos antes de uma reunião." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Data" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Ativa" #. module: base_action_rule #: view:base.action.rule:0 @@ -162,19 +164,39 @@ msgid "Delay After Trigger Date" msgstr "Atraso depois da Data de Disparo" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Mudar Responsável para" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" +"Uma regra de ação é verificado quando você criar ou modificar o \"Modelo de " +"Documentos Relacionados\". O filtro pré-condição é verificado logo antes da " +"modificação, enquanto o filtro de pós-condição é verificado após a " +"modificação. Um filtro de pré-condição, portanto, não funciona durante uma " +"criação." #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Nenhum" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "Condição do Filtro" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Meses" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" +"- Vá para a página de \"Modelo de Documento Relacionado\" e defina os " +"parâmetros do filtro na visão \"Procurar\" (Exemplo de filtro com base em " +"Prospectos / Oportunidades: Data da Criação \" é igual a \" 01/01/2012)" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Nome da Regra" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -182,55 +204,45 @@ msgstr "Meses" msgid "Automated Actions" msgstr "Ações Automatizadas" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "Modelo de Documento Relacionado" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." -msgstr "Define a ordem de sequência para mostrar a lista de regras." +msgstr "Define a sequência ao exibir a lista de regras." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "Condições no Campo de Modelo" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Ação de Servidor" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Meses" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Dias" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "Contador" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Tipo de atraso" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Filtrar" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "Ações do servidor a serem executadas" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Ativa" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "Quando desmarcado, esta regra é oculta e não será executada." #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "Regex no Nome do Recurso" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" -msgstr "Data da ultima alteração" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" +msgstr "Cancelado" #. module: base_action_rule #: field:base.action.rule,model:0 @@ -248,38 +260,23 @@ msgid "Minutes" msgstr "Minutos" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" +msgstr "Modelo de Documento Relacionado" + +#. module: base_action_rule +#: help:base.action.rule,filter_pre_id:0 msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +"If present, this condition must be satisfied before the update of the record." msgstr "" -"Expressão Regular para encontrar o nome do recurso\n" -"Ex.: 'urgente.*' irá procurar pelos registros que tem o nome começando com " -"'urgente'\n" -"Obs.: Esta procura diferencia maiúsculo e minúsculo." - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Condições de Tempo" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Nome da Regra" +"Se presente, esta condição precisa ser satisfeita antes da atualização do " +"registro." #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Sequência" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Condições no Modelo de Parceiro" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -305,48 +302,52 @@ msgstr "" " Clique para configurar uma nova regra de ação automatizada. " "\n" "

\n" -" Use ações automáticas para criar gatilhos de ações para " +" Use ações automáticas para criar disparos de ações para " "várias telas.\n" " Exemplo: um prospecto criado por um determinado usuário " "poderá ser atribuído\n" -" automáticamente para uma equipe de vendas específica, ou " +" automaticamente para uma equipe de vendas específica, ou " "uma\n" -" oportunidade na qual continua a situação pendente após 14 " +" oportunidade na qual a situação continua pendente após 14 " "dias e seja interessante enviar um e-mail\n" " automático de lembrete.\n" "

\n" " " -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Data de Criação" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Criar Data" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Prazo Final" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "Última Ação" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Parceiro" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Data de Disparo" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "Ações no Servidor" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "Assunto" + +#~ msgid "Button Pressed" +#~ msgstr "Botão Pressionado" + #~ msgid "Email From" #~ msgstr "Email de" @@ -356,6 +357,9 @@ msgstr "Ações no Servidor" #~ msgid "Remind Partner" #~ msgstr "Lembrar Parceiro" +#~ msgid "Partner Category" +#~ msgstr "Categoria do Parceiro" + #, python-format #~ msgid "Error!" #~ msgstr "Erro!" @@ -363,9 +367,27 @@ msgstr "Ações no Servidor" #~ msgid "Reply-To" #~ msgstr "Responder-Para" +#~ msgid "Creation Date" +#~ msgstr "Data de Criação" + +#~ msgid "Last Action Date" +#~ msgstr "Data da Última Ação" + +#~ msgid "None" +#~ msgstr "Nenhum" + +#~ msgid "Note" +#~ msgstr "Nota" + +#~ msgid "Date" +#~ msgstr "Data" + #~ msgid "Mail body" #~ msgstr "Corpo da mensagem" +#~ msgid "Server Action" +#~ msgstr "Ação de Servidor" + #~ msgid "" #~ "Check this if you want the rule to send a reminder by email to the user." #~ msgstr "" @@ -397,6 +419,9 @@ msgstr "Ações no Servidor" #~ "Use uma expressão python para especificar o campo correto que será usado " #~ "para o campo 'Para' do cabeçalho" +#~ msgid "Set Responsible to" +#~ msgstr "Mudar Responsável para" + #~ msgid "%(object_id)s = Object ID" #~ msgstr "%(object_id)s = Objeto ID" @@ -465,6 +490,9 @@ msgstr "Ações no Servidor" #~ "Descreve o nome da ação.\n" #~ "Ex.: Em qual objeto qual ação será tomada com base em qual condição" +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + #~ msgid "Remind Responsible" #~ msgstr "Responsável pelo Lembrete" @@ -500,9 +528,15 @@ msgstr "Ações no Servidor" #~ msgid "Mail to Watchers (CC)" #~ msgstr "Email para Observadores (CC)" +#~ msgid "Conditions on Model Partner" +#~ msgstr "Condições no Modelo de Parceiro" + #~ msgid "Mail to these Emails" #~ msgstr "Enviar para estes Emails" +#~ msgid "Set State to" +#~ msgstr "Mudar Situação para" + #~ msgid "Special Keywords to Be Used in The Body" #~ msgstr "Palavras-chave especiais a serem utilizadas no corpo" @@ -521,6 +555,31 @@ msgstr "Ações no Servidor" #~ "oportunidade que ainda está pendente após 14 dias pode enviar um e-mail de " #~ "lembrete automáticamente." +#~ msgid "Conditions on Timing" +#~ msgstr "Condições de Tempo" + +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "Se o campo ativo é definido como False, ele permitirá que você esconda a " +#~ "regra sem removê-lo." + +#~ msgid "Conditions on Model Fields" +#~ msgstr "Condições no Campo de Modelo" + +#~ msgid "Regex on Resource Name" +#~ msgstr "Regex no Nome do Recurso" + +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "Atraso depois da Data de Disparo, você pode colocar um número negativo. Se " +#~ "você precisar de um atraso antes da data de disparo, como o envio de um " +#~ "lembrete 15 minutos antes de uma reunião." + #~ msgid "Conditions on States" #~ msgstr "Condições nas Situações" @@ -533,8 +592,25 @@ msgstr "Ações no Servidor" #~ "Selecione aqui se quiser a regra para enviar um aviso por e-mail para o " #~ "parceiro." +#~ msgid "Deadline" +#~ msgstr "Prazo Final" + #~ msgid "%(object_subject)s = Object subject" #~ msgstr "%(object_subject)s = Assunto do Objeto" #~ msgid "State" #~ msgstr "Situação" + +#~ msgid "Filter" +#~ msgstr "Filtrar" + +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "Expressão Regular para encontrar o nome do recurso\n" +#~ "Ex.: 'urgente.*' irá procurar pelos registros que tem o nome começando com " +#~ "'urgente'\n" +#~ "Obs.: Esta procura diferencia maiúsculo e minúsculo." diff --git a/addons/base_action_rule/i18n/ro.po b/addons/base_action_rule/i18n/ro.po index d0e424986f7..adb69d0ea7e 100644 --- a/addons/base_action_rule/i18n/ro.po +++ b/addons/base_action_rule/i18n/ro.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:13+0000\n" "Last-Translator: Raphael Collet (OpenERP) \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "Reguli de actiune" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Responsabil" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Nota" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Categorie Partener" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,50 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "Intarziere dupa data declansarii" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"Daca campul activ este setat pe Fals, va va permite sa ascundeti regula fara " -"a o sterge." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Conditii" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Regula actiunii" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Campuri care vor fi schimbate" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Buton apasat" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Data ultimei actiuni" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -117,37 +140,15 @@ msgid "Hours" msgstr "Ore" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Setati Starea pe" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"Intarziere dupa data declansarii, specifica faptul ca puteti sa introduceti " -"un numar negativ. Daca doriti o intarziere inainte de data declansarii, " -"precum trimiterea unui memento cu 15 minute inaintea unei intalniri." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Data" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Activ(a)" #. module: base_action_rule #: view:base.action.rule:0 @@ -155,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "Intarziere dupa data declansarii" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Setare responsabil" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Niciunul" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Luni de zile" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Numele regulii" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -175,54 +188,44 @@ msgstr "Luni de zile" msgid "Automated Actions" msgstr "Actiuni automate" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "Da ordinea secventei atunci cand afiseaza o lista de reguli." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "Conditii in Campurile model" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Actiune Server" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Luni de zile" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Zile" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Tip intarziere" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Filtru" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Activ(a)" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "Regex in Numele resursei" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -241,38 +244,21 @@ msgid "Minutes" msgstr "Minute" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" msgstr "" -"Expresia obisnuita pentru potrivirea numelui resursei \n" -"de exemplu: 'urgent.*' va cauta inregistrari al caror nume incepe cu sirul " -"'urgent' \n" -"Nota: Aceasta este o cautare sensibla la caractere" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Conditii privind Sincronizarea" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Numele regulii" +#: help:base.action.rule,filter_pre_id:0 +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Secventa" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Conditii pe Partener Model" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -295,36 +281,37 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Data crearii" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Data Crearii" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Termen limita" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Partener" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Data declansarii" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "Object" #~ msgstr "Obiect" @@ -338,9 +325,15 @@ msgstr "" #~ msgid "%(partner)s = Partner name" #~ msgstr "%(partener)i = Numele partenerului" +#~ msgid "Filter" +#~ msgstr "Filtru" + #~ msgid "Error: The mail is not well formated" #~ msgstr "Eroare: e-mail-ul nu este bine formatat" +#~ msgid "Server Action" +#~ msgstr "Actiune Server" + #~ msgid "Email From" #~ msgstr "E-mail de la" @@ -351,6 +344,9 @@ msgstr "" #~ "Acesti oameni vor primi o copie a comunicarii viitoare dintre partener si " #~ "utilizatori prin email" +#~ msgid "Set State to" +#~ msgstr "Setati Starea pe" + #~ msgid "Remind Partner" #~ msgstr "Memento Partener" @@ -363,6 +359,9 @@ msgstr "" #~ msgid "%(object_subject)s = Object subject" #~ msgstr "%(obiect_subiect) = Obiect subiect" +#~ msgid "Last Action Date" +#~ msgstr "Data ultimei actiuni" + #~ msgid "" #~ "Use automated actions to automatically trigger actions for various screens. " #~ "Example: a lead created by a specific user may be automatically set to a " @@ -381,6 +380,9 @@ msgstr "" #~ msgid "Email Reminders" #~ msgstr "Memento-uri prin email" +#~ msgid "Conditions on Model Partner" +#~ msgstr "Conditii pe Partener Model" + #~ msgid "Email To" #~ msgstr "Email catre" @@ -391,6 +393,17 @@ msgstr "" #~ "Folositi o expresie python pentru a specifica campul corect pe care il vom " #~ "folosi pentru campul 'Catre' al antetului." +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "Expresia obisnuita pentru potrivirea numelui resursei \n" +#~ "de exemplu: 'urgent.*' va cauta inregistrari al caror nume incepe cu sirul " +#~ "'urgent' \n" +#~ "Nota: Aceasta este o cautare sensibla la caractere" + #~ msgid "" #~ "The rule uses the AND operator. The model must match all non-empty fields so " #~ "that the rule executes the action described in the 'Actions' tab." @@ -402,6 +415,12 @@ msgstr "" #~ msgid "Remind with Attachment" #~ msgstr "Memento cu Atasament" +#~ msgid "Set Responsible to" +#~ msgstr "Setare responsabil" + +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + #~ msgid "" #~ "Describes the action name.\n" #~ "eg:on which object which action to be taken on basis of which condition" @@ -457,12 +476,25 @@ msgstr "" #~ msgid "%(object_user)s = Responsible name" #~ msgstr "%(obiect_utilizator) = Nume responsabil" +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "Daca campul activ este setat pe Fals, va va permite sa ascundeti regula fara " +#~ "a o sterge." + #~ msgid "Mail to Responsible" #~ msgstr "Mail catre Responsabil" #~ msgid "Add Watchers (Cc)" #~ msgstr "Adauga observatori (Cc)" +#~ msgid "Conditions on Model Fields" +#~ msgstr "Conditii in Campurile model" + +#~ msgid "Regex on Resource Name" +#~ msgstr "Regex in Numele resursei" + #~ msgid "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." @@ -479,6 +511,12 @@ msgstr "" #~ "Bifati aici daca doriti ca regula sa trimita un e-mail persoanei " #~ "responsabile." +#~ msgid "Button Pressed" +#~ msgstr "Buton apasat" + +#~ msgid "Partner Category" +#~ msgstr "Categorie Partener" + #~ msgid "Reply-To" #~ msgstr "Raspunde" @@ -488,23 +526,47 @@ msgstr "" #~ "Bifati aici daca doriti ca regula sa trimita un memento prin e-mail " #~ "partenerului." +#~ msgid "Deadline" +#~ msgstr "Termen limita" + #~ msgid "Special Keywords to Be Used in The Body" #~ msgstr "Cuvinte cheie speciale pentru a fi utilizate in corpul mesajului" +#~ msgid "Creation Date" +#~ msgstr "Data crearii" + +#~ msgid "None" +#~ msgstr "Niciunul" + #~ msgid "%(object_user_phone)s = Responsible phone" #~ msgstr "%(obiect_telefon_utilizator) = Responsabil telefon" #~ msgid "Invalid arguments" #~ msgstr "Argumente nevalide" +#~ msgid "Note" +#~ msgstr "Nota" + #~ msgid "Call Object Method" #~ msgstr "Metoda de apel a obiectului" +#~ msgid "Date" +#~ msgstr "Data" + #, python-format #~ msgid "No E-Mail ID Found for your Company address!" #~ msgstr "" #~ "Nu a fost gasit nici un ID de email pentru Adresa companiei dumneavoastra!" +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "Intarziere dupa data declansarii, specifica faptul ca puteti sa introduceti " +#~ "un numar negativ. Daca doriti o intarziere inainte de data declansarii, " +#~ "precum trimiterea unui memento cu 15 minute inaintea unei intalniri." + #~ msgid "" #~ "Check this if you want the rule to send a reminder by email to the user." #~ msgstr "" @@ -513,6 +575,9 @@ msgstr "" #~ msgid "Conditions on States" #~ msgstr "Conditii privind Starile" +#~ msgid "Conditions on Timing" +#~ msgstr "Conditii privind Sincronizarea" + #~ msgid "Mail to these Emails" #~ msgstr "Mesaj la aceste e-mail-uri" diff --git a/addons/base_action_rule/i18n/ru.po b/addons/base_action_rule/i18n/ru.po index 3683a1fbafe..567a845f876 100644 --- a/addons/base_action_rule/i18n/ru.po +++ b/addons/base_action_rule/i18n/ru.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 18:17+0000\n" "Last-Translator: Raphael Collet (OpenERP) \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "Правила действий" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Ответственный" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Примечание" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Категория партнера" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,50 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "Задержка после даты активации" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"если поле \"Активно\" установлено в \"ложь\", то это позволит вам скрыть " -"правило без его удаления." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Условия" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Правило действия" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Поля для изменения" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Кнопка нажата" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Дата последнего действия" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -117,37 +140,15 @@ msgid "Hours" msgstr "Часы" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Уснатовить состояние в" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"Задержка после даты активации может быть отрицательным числом. Если вы " -"хотите предупреждение до события. Например, предупреждение за 15 минут перед " -"совещанием." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Дата" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Активен" #. module: base_action_rule #: view:base.action.rule:0 @@ -155,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "Задержка после даты активации" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Установить ответственного по" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Ничего" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Месяцы" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Название правила" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -175,54 +188,44 @@ msgstr "Месяцы" msgid "Automated Actions" msgstr "Автоматизированные действия" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "Упорядочивает по полю последовательности при выводе списка правил." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "Условия для полей модели" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Действие сервера" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Месяцы" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Дней" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Тип задержки" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Фильтр" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Активен" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "Регулярное выражение для названия ресурса" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -241,37 +244,21 @@ msgid "Minutes" msgstr "Минуты" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" msgstr "" -"Регулярное выражение для проверки названия ресурса\n" -"напр. 'urgent.*' соответствует записям, начинающимся со строки 'urgent'.\n" -"Прим.: поиск чувствителен к регистру." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Условия по времени" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Название правила" +#: help:base.action.rule,filter_pre_id:0 +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Последовательность" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Условия для модели контрагента" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -294,36 +281,40 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Дата создания" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Дата создания" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Срок" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Контрагент" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Дата активации" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + +#~ msgid "Set State to" +#~ msgstr "Уснатовить состояние в" + #~ msgid "Email From" #~ msgstr "Форма эл. письма" @@ -336,6 +327,9 @@ msgstr "" #~ msgid "Mail to these Emails" #~ msgstr "Отправить письма по этим эл. адресам" +#~ msgid "Button Pressed" +#~ msgstr "Кнопка нажата" + #~ msgid "Object" #~ msgstr "Объект" @@ -348,6 +342,9 @@ msgstr "" #~ msgid "Remind Partner" #~ msgstr "Напомнить партнеру" +#~ msgid "Partner Category" +#~ msgstr "Категория партнера" + #~ msgid "" #~ "These people will receive a copy of the future communication between partner " #~ "and users by email" @@ -367,15 +364,30 @@ msgstr "" #~ msgstr "" #~ "Отметьте, если вы хотите иметь правило напоминания партнеру по эл. почте." +#~ msgid "Deadline" +#~ msgstr "Срок" + #~ msgid "Email Body" #~ msgstr "Тело эл. письма" #~ msgid "State" #~ msgstr "Состояние" +#~ msgid "Creation Date" +#~ msgstr "Дата создания" + +#~ msgid "Last Action Date" +#~ msgstr "Дата последнего действия" + #~ msgid "Email Reminders" #~ msgstr "Напоминания по эп. почте" +#~ msgid "Set Responsible to" +#~ msgstr "Установить ответственного по" + +#~ msgid "None" +#~ msgstr "Ничего" + #~ msgid "%(object_user_phone)s = Responsible phone" #~ msgstr "%(object_user_phone)s = телефон ответственного" @@ -402,6 +414,9 @@ msgstr "" #~ msgid "Call Object Method" #~ msgstr "Вызов метода объекта" +#~ msgid "Filter" +#~ msgstr "Фильтр" + #~ msgid "Remind Responsible" #~ msgstr "Напомнить ответственным" @@ -409,6 +424,15 @@ msgstr "" #~ msgstr "" #~ "Этот модуль позволяет устанавливать правила действий по всем объектам." +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "Задержка после даты активации может быть отрицательным числом. Если вы " +#~ "хотите предупреждение до события. Например, предупреждение за 15 минут перед " +#~ "совещанием." + #~ msgid "Email Information" #~ msgstr "Информация эл. почты" @@ -429,6 +453,9 @@ msgstr "" #~ "прим.: при каком условии какое действие и по какому объекту должно быть " #~ "выполнено" +#~ msgid "Date" +#~ msgstr "Дата" + #~ msgid "Mail to Watchers (CC)" #~ msgstr "Получатели копий (CC)" @@ -450,15 +477,28 @@ msgstr "" #~ msgid "Add Watchers (Cc)" #~ msgstr "Копии (CC)" +#~ msgid "Server Action" +#~ msgstr "Действие сервера" + #~ msgid "Conditions on States" #~ msgstr "Условия по продажам" +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "если поле \"Активно\" установлено в \"ложь\", то это позволит вам скрыть " +#~ "правило без его удаления." + #~ msgid "%(object_user)s = Responsible name" #~ msgstr "%(object_user)s = Имя ответственного" #~ msgid "Special Keywords to Be Used in The Body" #~ msgstr "Специальные ключевые слова используемые в тексте" +#~ msgid "Note" +#~ msgstr "Примечание" + #~ msgid "%(partner)s = Partner name" #~ msgstr "%(partner)s = Название партнера" @@ -469,6 +509,15 @@ msgstr "" #~ "Отметьте, если вы хотите иметь правило для маркировки CC(послать эл. письмо " #~ "другим получателям, определенным в действии)" +#~ msgid "Conditions on Timing" +#~ msgstr "Условия по времени" + +#~ msgid "Conditions on Model Fields" +#~ msgstr "Условия для полей модели" + +#~ msgid "Regex on Resource Name" +#~ msgstr "Регулярное выражение для названия ресурса" + #~ msgid "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." @@ -476,6 +525,9 @@ msgstr "" #~ "Отметьте, если вы хотите чтобы все вложенные в объект документы были вложены " #~ "в отсылаемое напоминание." +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + #, python-format #~ msgid "No E-Mail ID Found for your Company address!" #~ msgstr "Нет ID эл. почты в адресе вашей компании!" @@ -511,9 +563,22 @@ msgstr "" #~ "Используйте выражение на Python для указания поля, которое будет " #~ "использовано в качестве поля заголовка «Кому»" +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "Регулярное выражение для проверки названия ресурса\n" +#~ "напр. 'urgent.*' соответствует записям, начинающимся со строки 'urgent'.\n" +#~ "Прим.: поиск чувствителен к регистру." + #~ msgid "" #~ "Use a python expression to specify the right field on which one than we will " #~ "use for the 'From' field of the header" #~ msgstr "" #~ "Используйте выражение на Python для указания поля, которое будет " #~ "использовано в качестве поля заголовка «От кого»" + +#~ msgid "Conditions on Model Partner" +#~ msgstr "Условия для модели контрагента" diff --git a/addons/base_action_rule/i18n/sl.po b/addons/base_action_rule/i18n/sl.po index 74a7cd90811..0c69d60fb2e 100644 --- a/addons/base_action_rule/i18n/sl.po +++ b/addons/base_action_rule/i18n/sl.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-09-15 06:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Kategorija partnerja" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,47 +88,50 @@ msgstr "" msgid "Delay after trigger date" msgstr "" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Pritisnjeni gumb" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" msgstr "" #. module: base_action_rule @@ -115,33 +140,14 @@ msgid "Hours" msgstr "" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Nastavi stanje na" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" msgstr "" #. module: base_action_rule @@ -150,44 +156,46 @@ msgid "Delay After Trigger Date" msgstr "" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" +#: view:base.action.rule:0 +msgid "Filter Condition" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Ime pravila" + #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act #: model:ir.ui.menu,name:base_action_rule.menu_base_action_rule_form msgid "Automated Actions" msgstr "" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" msgstr "" #. module: base_action_rule @@ -195,29 +203,29 @@ msgstr "" msgid "Days" msgstr "Dnevi" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" +#: view:base.action.rule:0 +msgid "Server actions to run" msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -236,34 +244,21 @@ msgid "Minutes" msgstr "Minute" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" +msgstr "" + +#. module: base_action_rule +#: help:base.action.rule,filter_pre_id:0 msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +"If present, this condition must be satisfied before the update of the record." msgstr "" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Ime pravila" - #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -286,48 +281,58 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Ustvarjeno dne" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Rok" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Stranka" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "Mail to these Emails" #~ msgstr "Sporočila na te e-pošte" #~ msgid "Email From" #~ msgstr "E-pošta od" +#~ msgid "Set State to" +#~ msgstr "Nastavi stanje na" + +#~ msgid "Button Pressed" +#~ msgstr "Pritisnjeni gumb" + #~ msgid "Object" #~ msgstr "Predmet" #~ msgid "Remind Partner" #~ msgstr "Opomni partnerja" +#~ msgid "Partner Category" +#~ msgstr "Kategorija partnerja" + #~ msgid "Email Body" #~ msgstr "Vsebina e-pošte" @@ -349,3 +354,9 @@ msgstr "" #~ "Check this if you want the rule to send a reminder by email to the partner." #~ msgstr "" #~ "Označite to, če želite da pravilo pošlje opomnik po e-pošti partnerju." + +#~ msgid "Deadline" +#~ msgstr "Rok" + +#~ msgid "Creation Date" +#~ msgstr "Ustvarjeno dne" diff --git a/addons/base_action_rule/i18n/sq.po b/addons/base_action_rule/i18n/sq.po index 6a3dc74a5e6..4e1e39350b1 100644 --- a/addons/base_action_rule/i18n/sq.po +++ b/addons/base_action_rule/i18n/sq.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-28 15:24+0000\n" "Last-Translator: FULL NAME \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: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,47 +88,50 @@ msgstr "" msgid "Delay after trigger date" msgstr "" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" msgstr "" #. module: base_action_rule @@ -115,33 +140,14 @@ msgid "Hours" msgstr "" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." -msgstr "" - -#. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" msgstr "" #. module: base_action_rule @@ -150,18 +156,30 @@ msgid "Delay After Trigger Date" msgstr "" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" +#: view:base.action.rule:0 +msgid "Filter Condition" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" msgstr "" #. module: base_action_rule @@ -170,24 +188,14 @@ msgstr "" msgid "Automated Actions" msgstr "" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" msgstr "" #. module: base_action_rule @@ -195,29 +203,29 @@ msgstr "" msgid "Days" msgstr "" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" +#: view:base.action.rule:0 +msgid "Server actions to run" msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -236,22 +244,14 @@ msgid "Minutes" msgstr "" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" +msgstr "" + +#. module: base_action_rule +#: help:base.action.rule,filter_pre_id:0 msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." -msgstr "" - -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" +"If present, this condition must be satisfied before the update of the record." msgstr "" #. module: base_action_rule @@ -259,11 +259,6 @@ msgstr "" msgid "Sequence" msgstr "" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -286,32 +281,33 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" diff --git a/addons/base_action_rule/i18n/sr.po b/addons/base_action_rule/i18n/sr.po index 05411f9c876..55ecfa98985 100644 --- a/addons/base_action_rule/i18n/sr.po +++ b/addons/base_action_rule/i18n/sr.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:29+0000\n" "Last-Translator: Raphael Collet (OpenERP) \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: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "Pravila Akcije" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Odgovoran" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Napomena" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Kategorija partnera" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,50 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "Kasnjenje nakon datuma okidaca" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"Ako je aktivno polje postavljeno na NEISTINA, omogucava ti da sakrijes " -"pravilo bez uklanjanja istog." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Uslovi" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Pravilo Akcije" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Polja za Menjanje" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Pritisnuto dugme" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Datum poslednje akcije" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -117,37 +140,15 @@ msgid "Hours" msgstr "Sati" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Postavi stanje na" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"Kasnjenje nakon datuma okidaca, specificira da mozes postaviti i negativni " -"broj. Ako trebas kasnjenje pre datuma okidaca, kao npr slanje podsetnika 15 " -"minuta pre sastanka." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Datum" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Aktivan" #. module: base_action_rule #: view:base.action.rule:0 @@ -155,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "Kasnjenje nakon datuma okidaca" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Postavi odgovornost na" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "NIjedan" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Meseci" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Naziv pravila" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -175,54 +188,44 @@ msgstr "Meseci" msgid "Automated Actions" msgstr "Automatske Akcije" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "Daje redosled sekvenci pri prikazu liste pravila" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "Uslovi na poljima modela" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Akcije Servera" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Meseci" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Dana" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Tip Kasnjenja" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Filter" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Aktivan" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "Regex na Imenu Resursa" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -241,37 +244,21 @@ msgid "Minutes" msgstr "Minute" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" msgstr "" -"Regularna expresija za podudarnost imena resursa\n" -"npr: 'hitno.*' ce traziti zapise koji pocinju sa 'hitno'\n" -"Napomena: Ovo pretrazivanje je osetljivo na velicinu slova." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Uslovi vezani za Vreme" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Naziv pravila" +#: help:base.action.rule,filter_pre_id:0 +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Sekvence" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Uslovi za Model Partnera" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -294,36 +281,37 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Datum kreiranja" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Datum Kreiranja" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Krajnji Rok" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Partner" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Datum Okidanja" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "Mail to these Emails" #~ msgstr "Email za Ostale Emailove" @@ -331,6 +319,12 @@ msgstr "" #~ "Check this if you want the rule to send an email to the responsible person." #~ msgstr "Označite ukoliko želite da pravilo šalje email odgovornoj osobi." +#~ msgid "Set State to" +#~ msgstr "Postavi stanje na" + +#~ msgid "Button Pressed" +#~ msgstr "Pritisnuto dugme" + #~ msgid "Object" #~ msgstr "Objekat" @@ -341,6 +335,9 @@ msgstr "" #~ msgid "Remind Partner" #~ msgstr "Podseti partnera" +#~ msgid "Partner Category" +#~ msgstr "Kategorija partnera" + #~ msgid "Email Body" #~ msgstr "Email Sadrzaj" @@ -361,10 +358,16 @@ msgstr "" #~ msgid "Email Reminders" #~ msgstr "Email podsetnici" +#~ msgid "Conditions on Model Partner" +#~ msgstr "Uslovi za Model Partnera" + #~ msgid "" #~ "Check this if you want the rule to send a reminder by email to the partner." #~ msgstr "oznaci ovde ako zelis da pravilo posalje Email podsetnik partnerima" +#~ msgid "Deadline" +#~ msgstr "Krajnji Rok" + #~ msgid "%(object_subject)s = Object subject" #~ msgstr "%(object_subject)s = Objekt subject" @@ -377,6 +380,12 @@ msgstr "" #~ msgid "Email-id of the persons whom mail is to be sent" #~ msgstr "Email-id osoba kojima treba poslati email" +#~ msgid "Creation Date" +#~ msgstr "Datum kreiranja" + +#~ msgid "Last Action Date" +#~ msgstr "Datum poslednje akcije" + #~ msgid "" #~ "Use a python expression to specify the right field on which one than we will " #~ "use for the 'To' field of the header" @@ -387,6 +396,9 @@ msgstr "" #~ msgid "Email From" #~ msgstr "Email Od" +#~ msgid "Set Responsible to" +#~ msgstr "Postavi odgovornost na" + #~ msgid "%(object_user_phone)s = Responsible phone" #~ msgstr "%(object_user_phone)s = Dezurni telefon" @@ -399,9 +411,22 @@ msgstr "" #~ msgid "Invalid arguments" #~ msgstr "Neispravni argumenti" +#~ msgid "None" +#~ msgstr "NIjedan" + #~ msgid "Email To" #~ msgstr "Email ZA" +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "Regularna expresija za podudarnost imena resursa\n" +#~ "npr: 'hitno.*' ce traziti zapise koji pocinju sa 'hitno'\n" +#~ "Napomena: Ovo pretrazivanje je osetljivo na velicinu slova." + #~ msgid "" #~ "The rule uses the AND operator. The model must match all non-empty fields so " #~ "that the rule executes the action described in the 'Actions' tab." @@ -416,6 +441,9 @@ msgstr "" #~ "Koristi python expresiju da specificiras pravo polje koje ce mo na dalje " #~ "koristiti za \" OD\" polje zaglavlja" +#~ msgid "Note" +#~ msgstr "Napomena" + #~ msgid "%(partner)s = Partner name" #~ msgstr "Copy text \t %(partner)s = Partnerovo Ime" @@ -429,6 +457,9 @@ msgstr "" #~ msgid "Call Object Method" #~ msgstr "Pozovi Metod Objekta" +#~ msgid "Filter" +#~ msgstr "Filter" + #~ msgid "Remind Responsible" #~ msgstr "Odgovorni Podsetnik" @@ -440,6 +471,15 @@ msgstr "" #~ msgid "No E-Mail ID Found for your Company address!" #~ msgstr "NIje nadjena sifra Emaila adrese tvog Preduzeca" +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "Kasnjenje nakon datuma okidaca, specificira da mozes postaviti i negativni " +#~ "broj. Ako trebas kasnjenje pre datuma okidaca, kao npr slanje podsetnika 15 " +#~ "minuta pre sastanka." + #~ msgid "Email Information" #~ msgstr "Informacije Email-a" @@ -460,6 +500,12 @@ msgstr "" #~ "npr: sa kojim objektom koja se akcija treba prvo preduzeti i pod kojim " #~ "uslovima" +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + +#~ msgid "Date" +#~ msgstr "Datum" + #~ msgid "Mail to Watchers (CC)" #~ msgstr "Posalji pratiocima(CC)" @@ -481,12 +527,31 @@ msgstr "" #~ msgid "Add Watchers (Cc)" #~ msgstr "Dodaj Pratioce (Cc)" +#~ msgid "Conditions on Model Fields" +#~ msgstr "Uslovi na poljima modela" + +#~ msgid "Server Action" +#~ msgstr "Akcije Servera" + +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "Ako je aktivno polje postavljeno na NEISTINA, omogucava ti da sakrijes " +#~ "pravilo bez uklanjanja istog." + #~ msgid "Conditions on States" #~ msgstr "Uslovi vezani za Stanja" #~ msgid "%(object_user)s = Responsible name" #~ msgstr "%(object_user)s = Ime Odgovornog" +#~ msgid "Conditions on Timing" +#~ msgstr "Uslovi vezani za Vreme" + +#~ msgid "Regex on Resource Name" +#~ msgstr "Regex na Imenu Resursa" + #~ msgid "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." diff --git a/addons/base_action_rule/i18n/sr@latin.po b/addons/base_action_rule/i18n/sr@latin.po index ce219b1d5ec..e06f6d0cec0 100644 --- a/addons/base_action_rule/i18n/sr@latin.po +++ b/addons/base_action_rule/i18n/sr@latin.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:43+0000\n" "Last-Translator: Raphael Collet (OpenERP) \n" "Language-Team: Serbian latin \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "Pravila Akcije" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Odgovoran" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Napomena" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Kategorija partnera" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,50 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "Kasnjenje nakon datuma okidaca" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"Ako je aktivno polje postavljeno na NEISTINA, omogucava ti da sakrijes " -"pravilo bez uklanjanja istog." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Uslovi" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Pravilo Akcije" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Polja za Menjanje" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Pritisnuto dugme" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Datum poslednje akcije" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -117,37 +140,15 @@ msgid "Hours" msgstr "Sati" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Postavi stanje na" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"Kasnjenje nakon datuma okidaca, specificira da mozes postaviti i negativni " -"broj. Ako trebas kasnjenje pre datuma okidaca, kao npr slanje podsetnika 15 " -"minuta pre sastanka." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Datum" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Aktivan" #. module: base_action_rule #: view:base.action.rule:0 @@ -155,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "Kasnjenje nakon datuma okidaca" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Postavi odgovornost na" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "NIjedan" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Meseci" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Naziv pravila" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -175,54 +188,44 @@ msgstr "Meseci" msgid "Automated Actions" msgstr "Automatske Akcije" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "Daje redosled sekvenci pri prikazu liste pravila" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "Uslovi na poljima modela" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Akcije Servera" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Meseci" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Dana" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Tip Kasnjenja" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Filter" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Aktivan" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "Regex na Imenu Resursa" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -241,37 +244,21 @@ msgid "Minutes" msgstr "Minute" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" msgstr "" -"Regularna expresija za podudarnost imena resursa\n" -"npr: 'hitno.*' ce traziti zapise koji pocinju sa 'hitno'\n" -"Napomena: Ovo pretrazivanje je osetljivo na velicinu slova." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Uslovi vezani za Vreme" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Naziv pravila" +#: help:base.action.rule,filter_pre_id:0 +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Sekvence" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Uslovi za Model Partnera" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -294,36 +281,37 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Datum kreiranja" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Datum Kreiranja" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Krajnji Rok" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Partner" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Datum Okidanja" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "" #~ "Check this if you want the rule to send an email to the responsible person." #~ msgstr "Označite ukoliko želite da pravilo šalje email odgovornoj osobi." @@ -331,16 +319,25 @@ msgstr "" #~ msgid "Remind Partner" #~ msgstr "Podseti partnera" +#~ msgid "Partner Category" +#~ msgstr "Kategorija partnera" + #~ msgid "" #~ "Check this if you want the rule to send a reminder by email to the user." #~ msgstr "Označite ukoliko želite da pravilo šalje podsjetnik korisniku." +#~ msgid "Button Pressed" +#~ msgstr "Pritisnuto dugme" + #~ msgid "Object" #~ msgstr "Objekat" #~ msgid "Mail to these Emails" #~ msgstr "Email za Ostale Emailove" +#~ msgid "Set State to" +#~ msgstr "Postavi stanje na" + #~ msgid "Email From" #~ msgstr "Email Od" @@ -365,6 +362,12 @@ msgstr "" #~ "Check this if you want the rule to send a reminder by email to the partner." #~ msgstr "oznaci ovde ako zelis da pravilo posalje Email podsetnik partnerima" +#~ msgid "Conditions on Model Partner" +#~ msgstr "Uslovi za Model Partnera" + +#~ msgid "Deadline" +#~ msgstr "Krajnji Rok" + #~ msgid "%(object_subject)s = Object subject" #~ msgstr "%(object_subject)s = Objekt subject" @@ -380,6 +383,12 @@ msgstr "" #~ msgid "Email-id of the persons whom mail is to be sent" #~ msgstr "Email-id osoba kojima treba poslati email" +#~ msgid "Creation Date" +#~ msgstr "Datum kreiranja" + +#~ msgid "Last Action Date" +#~ msgstr "Datum poslednje akcije" + #~ msgid "%(object_id)s = Object ID" #~ msgstr "%(object_id)s = Object ID" @@ -389,6 +398,12 @@ msgstr "" #~ msgid "Invalid arguments" #~ msgstr "Neispravni argumenti" +#~ msgid "Set Responsible to" +#~ msgstr "Postavi odgovornost na" + +#~ msgid "None" +#~ msgstr "NIjedan" + #~ msgid "" #~ "Use a python expression to specify the right field on which one than we will " #~ "use for the 'To' field of the header" @@ -406,6 +421,16 @@ msgstr "" #~ "Pravilo koristi AND operator. Modul mora da potvrdi sva prazna polja tako da " #~ "pravilo izvrsi akciju opisanoj u tabu ' Akcije'." +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "Regularna expresija za podudarnost imena resursa\n" +#~ "npr: 'hitno.*' ce traziti zapise koji pocinju sa 'hitno'\n" +#~ "Napomena: Ovo pretrazivanje je osetljivo na velicinu slova." + #~ msgid "Call Object Method" #~ msgstr "Pozovi Metod Objekta" @@ -422,6 +447,9 @@ msgstr "" #~ msgid "%(partner)s = Partner name" #~ msgstr "Copy text \t %(partner)s = Partnerovo Ime" +#~ msgid "Note" +#~ msgstr "Napomena" + #~ msgid "" #~ "Use a python expression to specify the right field on which one than we will " #~ "use for the 'From' field of the header" @@ -429,6 +457,15 @@ msgstr "" #~ "Koristi python expresiju da specificiras pravo polje koje ce mo na dalje " #~ "koristiti za \" OD\" polje zaglavlja" +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "Kasnjenje nakon datuma okidaca, specificira da mozes postaviti i negativni " +#~ "broj. Ako trebas kasnjenje pre datuma okidaca, kao npr slanje podsetnika 15 " +#~ "minuta pre sastanka." + #, python-format #~ msgid "No E-Mail ID Found for your Company address!" #~ msgstr "NIje nadjena sifra Emaila adrese tvog Preduzeca" @@ -440,6 +477,12 @@ msgstr "" #~ msgstr "" #~ "Ovaj modul omogucava implementiranje pravila akcija za svaki objekat." +#~ msgid "Filter" +#~ msgstr "Filter" + +#~ msgid "Date" +#~ msgstr "Datum" + #~ msgid "" #~ "Describes the action name.\n" #~ "eg:on which object which action to be taken on basis of which condition" @@ -448,6 +491,9 @@ msgstr "" #~ "npr: sa kojim objektom koja se akcija treba prvo preduzeti i pod kojim " #~ "uslovima" +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + #~ msgid "%(object_description)s = Object description" #~ msgstr "%(object_description)s = Opis Objekta" @@ -481,6 +527,15 @@ msgstr "" #~ msgid "Add Watchers (Cc)" #~ msgstr "Dodaj Pratioce (Cc)" +#~ msgid "Conditions on Model Fields" +#~ msgstr "Uslovi na poljima modela" + +#~ msgid "Server Action" +#~ msgstr "Akcije Servera" + +#~ msgid "Regex on Resource Name" +#~ msgstr "Regex na Imenu Resursa" + #~ msgid "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." @@ -488,6 +543,16 @@ msgstr "" #~ "Cekiraj ovde ako zelis da svi dokumenti pridodati objektu budu pridodani " #~ "podsetniku za slanje Emailova" +#~ msgid "Conditions on Timing" +#~ msgstr "Uslovi vezani za Vreme" + +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "Ako je aktivno polje postavljeno na NEISTINA, omogucava ti da sakrijes " +#~ "pravilo bez uklanjanja istog." + #~ msgid "%(object_user)s = Responsible name" #~ msgstr "%(object_user)s = Ime Odgovornog" diff --git a/addons/base_action_rule/i18n/sv.po b/addons/base_action_rule/i18n/sv.po index 188bc8c22a0..9520bb584b7 100644 --- a/addons/base_action_rule/i18n/sv.po +++ b/addons/base_action_rule/i18n/sv.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-07-16 15:31+0000\n" "Last-Translator: Anders Wallenquist \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Ansvarig" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Anteckning" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Partnerkategori" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,48 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Villkor" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Fält att ändra" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Knappen intryckt" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Senaste uppdatering" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -115,34 +140,15 @@ msgid "Hours" msgstr "Timmar" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Sätt status till" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Datum" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Aktiv" #. module: base_action_rule #: view:base.action.rule:0 @@ -150,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "Ledtid efter utlösningsdatum" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Sätt ansvarig till" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Inga" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Månader" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Regelnamn" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -170,54 +188,44 @@ msgstr "Månader" msgid "Automated Actions" msgstr "Automatiserade händelser" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Månader" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Dagar" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Filtrera" - -#. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Aktiv" - -#. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" +#: view:base.action.rule:0 +msgid "Server actions to run" msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -236,34 +244,21 @@ msgid "Minutes" msgstr "Minuter" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" +msgstr "" + +#. module: base_action_rule +#: help:base.action.rule,filter_pre_id:0 msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +"If present, this condition must be satisfied before the update of the record." msgstr "" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Regelnamn" - #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Sekvens" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -286,42 +281,49 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Skapad datum" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Skapat datum" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Tidsfrist" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Företag" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + +#~ msgid "Set State to" +#~ msgstr "Sätt status till" + #~ msgid "Object" #~ msgstr "Objekt" #~ msgid "Remind Partner" #~ msgstr "Påminn partner" +#~ msgid "Partner Category" +#~ msgstr "Partnerkategori" + #, python-format #~ msgid "Error!" #~ msgstr "Fel!" @@ -329,12 +331,33 @@ msgstr "" #~ msgid "Reply-To" #~ msgstr "Svara till" +#~ msgid "Button Pressed" +#~ msgstr "Knappen intryckt" + #~ msgid "%(object_subject)s = Object subject" #~ msgstr "%(object_subject) = Objekt ämnen" +#~ msgid "Creation Date" +#~ msgstr "Skapad datum" + +#~ msgid "None" +#~ msgstr "Inga" + #~ msgid "Invalid arguments" #~ msgstr "Ogiltiga argument" +#~ msgid "Note" +#~ msgstr "Anteckning" + +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + +#~ msgid "Filter" +#~ msgstr "Filtrera" + +#~ msgid "Date" +#~ msgstr "Datum" + #~ msgid "Add Watchers (Cc)" #~ msgstr "Lägg till bevakare (CC)" @@ -350,9 +373,18 @@ msgstr "" #~ msgid "State" #~ msgstr "Status" +#~ msgid "Last Action Date" +#~ msgstr "Senaste uppdatering" + +#~ msgid "Deadline" +#~ msgstr "Tidsfrist" + #~ msgid "Mail to these Emails" #~ msgstr "Skicka till dessa e-postadresser" +#~ msgid "Set Responsible to" +#~ msgstr "Sätt ansvarig till" + #~ msgid "Special Keywords to Be Used in The Body" #~ msgstr "Speciella nyckelord att använda i brödtexten" diff --git a/addons/base_action_rule/i18n/tr.po b/addons/base_action_rule/i18n/tr.po index 07a64405c2e..279cf68af84 100644 --- a/addons/base_action_rule/i18n/tr.po +++ b/addons/base_action_rule/i18n/tr.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:41+0000\n" "Last-Translator: Raphael Collet (OpenERP) \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "Eylem Kuralları" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "Sorumlu" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "Not" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "Paydaş Kategorisi" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,50 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "Tetikleme Tarihi sonrası Gecikme" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" -"Eğer etkin alanı Yanlış olarak işaretli ise, kuralı silmeden gizlemenizi " -"sağlar." - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "Koşullar" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "Eylem Kuralı" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "Değiştirilecek Alanlar" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "Düğmeye Basıldı" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "Son Eylem Tarihi" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -117,37 +140,15 @@ msgid "Hours" msgstr "Saatler" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "Durumu şuna Ayarla" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" -"Tetikleme Sonrası Gecikme, burada negatif sayı kullanabilirsiniz. Eğer " -"tetikleme tarihinden önce, örneğin toplantıdan 15 dakika önce anımsatma " -"gönder gibi, bir gecikmeye gerek duyarsanız." - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "Tarih" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "Etkin" #. module: base_action_rule #: view:base.action.rule:0 @@ -155,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "Tetikleme Tarihi sonrası Gecikme" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "Sorumluyu şuna Ayarla" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "Hiçbiri" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "Aylar" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Kural Adı" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -175,54 +188,44 @@ msgstr "Aylar" msgid "Automated Actions" msgstr "Otomatik Eylemler" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "Kural listesini görüntülerken diziliş sırasını verir." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "Model Alanları Koşulları" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "Sunucu Eylemi" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Aylar" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "Günler" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "Gecikme türü" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "Süzgeç" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "Etkin" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "Kaynak Adı için Kurallı İfade" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -241,37 +244,21 @@ msgid "Minutes" msgstr "Dakikalar" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" msgstr "" -"Kaynak adına uygun kural ifadesi\n" -"ör.: 'acil.*' 'acil' dizesi ile başlayan bütün kayıtları arıyacaktır\n" -"Not: Harf durumu duyarlı bir aramadır." #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "Zamanlama Koşulları" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "Kural Adı" +#: help:base.action.rule,filter_pre_id:0 +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "Diziliş" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "Model Paydaş için Koşullar" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -294,42 +281,52 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "Oluşturulma Tarihi" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "Tarih Oluştur" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "Bitiş tarihi" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "Paydaş" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "Tetikleme Tarihi" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + +#~ msgid "Set State to" +#~ msgstr "Durumu şuna Ayarla" + +#~ msgid "Button Pressed" +#~ msgstr "Düğmeye Basıldı" + #~ msgid "Object" #~ msgstr "Nesne" #~ msgid "Remind Partner" #~ msgstr "Paydaşa Anımsat" +#~ msgid "Partner Category" +#~ msgstr "Paydaş Kategorisi" + #~ msgid "Email Body" #~ msgstr "Eposta Gövdesi" @@ -347,18 +344,33 @@ msgstr "" #~ msgid "Reply-To" #~ msgstr "Yanıtla" +#~ msgid "Conditions on Model Partner" +#~ msgstr "Model Paydaş için Koşullar" + +#~ msgid "Deadline" +#~ msgstr "Bitiş tarihi" + #~ msgid "Special Keywords to Be Used in The Body" #~ msgstr "Gövdede Kullanılacak Özel Anahtar Kelimeler" #~ msgid "Email-id of the persons whom mail is to be sent" #~ msgstr "Eposta gönderilecek kişinin Eposta kimliği" +#~ msgid "Creation Date" +#~ msgstr "Oluşturulma Tarihi" + #~ msgid "State" #~ msgstr "Durum" #~ msgid "Email Reminders" #~ msgstr "Eposta Anımsatıcıları" +#~ msgid "Last Action Date" +#~ msgstr "Son Eylem Tarihi" + +#~ msgid "None" +#~ msgstr "Hiçbiri" + #~ msgid "%(object_user_phone)s = Responsible phone" #~ msgstr "%(nesne_kullanıcı_telefon)lar = Sorumlu telefonu" @@ -371,9 +383,21 @@ msgstr "" #~ msgid "Invalid arguments" #~ msgstr "Geçersiz parametreler" +#~ msgid "Set Responsible to" +#~ msgstr "Sorumluyu şuna Ayarla" + #~ msgid "Email To" #~ msgstr "Şuna Eposta Gönder" +#~ msgid "Note" +#~ msgstr "Not" + +#~ msgid "Filter" +#~ msgstr "Süzgeç" + +#~ msgid "Date" +#~ msgstr "Tarih" + #~ msgid "Remind Responsible" #~ msgstr "Sorumluya Hatırlat" @@ -399,6 +423,9 @@ msgstr "" #~ "Eylem adını belirtir.\n" #~ "ör:koşula uygun olarak hangi nesne için hangi eylem ele alınır" +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + #~ msgid "Mail body" #~ msgstr "Posta gövdesi" @@ -417,6 +444,12 @@ msgstr "" #~ msgid "Add Watchers (Cc)" #~ msgstr "İzleyici Ekle (Cc)" +#~ msgid "Conditions on Model Fields" +#~ msgstr "Model Alanları Koşulları" + +#~ msgid "Server Action" +#~ msgstr "Sunucu Eylemi" + #~ msgid "" #~ "Check this if you want the rule to send a reminder by email to the user." #~ msgstr "" @@ -429,6 +462,16 @@ msgstr "" #~ msgid "%(object_user)s = Responsible name" #~ msgstr "%(nesne_kullanıcı)lar = Sorumlu adı" +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "" +#~ "Eğer etkin alanı Yanlış olarak işaretli ise, kuralı silmeden gizlemenizi " +#~ "sağlar." + +#~ msgid "Conditions on Timing" +#~ msgstr "Zamanlama Koşulları" + #~ msgid "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." @@ -470,6 +513,16 @@ msgstr "" #~ "Başlıkta 'Kime' için kullanılacak doğru alanı belirlemek için bir python " #~ "ifadesi kullanın" +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "Kaynak adına uygun kural ifadesi\n" +#~ "ör.: 'acil.*' 'acil' dizesi ile başlayan bütün kayıtları arıyacaktır\n" +#~ "Not: Harf durumu duyarlı bir aramadır." + #~ msgid "" #~ "The rule uses the AND operator. The model must match all non-empty fields so " #~ "that the rule executes the action described in the 'Actions' tab." @@ -505,9 +558,21 @@ msgstr "" #~ msgid "No E-Mail ID Found for your Company address!" #~ msgstr "Firma adresinizde bir Eposta Kimliği yok!" +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "" +#~ "Tetikleme Sonrası Gecikme, burada negatif sayı kullanabilirsiniz. Eğer " +#~ "tetikleme tarihinden önce, örneğin toplantıdan 15 dakika önce anımsatma " +#~ "gönder gibi, bir gecikmeye gerek duyarsanız." + #~ msgid "Email Information" #~ msgstr "Eposta Bilgisi" +#~ msgid "Regex on Resource Name" +#~ msgstr "Kaynak Adı için Kurallı İfade" + #~ msgid "Mail to Watchers (CC)" #~ msgstr "İzleyicilere Postala (CC)" diff --git a/addons/base_action_rule/i18n/zh_CN.po b/addons/base_action_rule/i18n/zh_CN.po index 24a52a78e29..06117523edd 100644 --- a/addons/base_action_rule/i18n/zh_CN.po +++ b/addons/base_action_rule/i18n/zh_CN.po @@ -7,27 +7,28 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-30 04:40+0000\n" "Last-Translator: ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" -msgstr "设置关注者" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" +msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." -msgstr "这条规则用了AND 操作符。这个模型必须匹配所有非空字段,这样这条规则执行在“动作”便签里说明的动作" +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" +msgstr "" #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "动作规则" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "负责人" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" -msgstr "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "备注" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "业务伙伴分类" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,48 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "触发日期后的延迟" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "如果有效字段不选择,你可以隐藏它而无需删除。" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "条件" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "动作规则" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "会更改的字段" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "按下按钮" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "最后动作日期" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -115,36 +140,15 @@ msgid "Hours" msgstr "时" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" -msgstr "设置状态为" - -#. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" -"定义服务器动作。\n" -"例如:Emaik 提醒,调用Object Service,等" #. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "你可以填一个负数来推迟触发日期,例如你在开会前要推迟15分钟触发" - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "日期" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "激活" #. module: base_action_rule #: view:base.action.rule:0 @@ -152,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "触发日期后的延迟" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" -msgstr "设置负责人" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "无" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "月" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "规则名称" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -172,54 +188,44 @@ msgstr "月" msgid "Automated Actions" msgstr "自动动作" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "为规则列表添加序号" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "作用于模型字段上的条件" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "服务器动作" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "月" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "天数" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "延迟类型" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" -msgstr "筛选" +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "激活" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." +msgstr "" #. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" -msgstr "正则表达式对资源名称" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -238,37 +244,21 @@ msgid "Minutes" msgstr "分" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 -msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" msgstr "" -"正则表达式匹配的资源名称\n" -"如:“紧急.*'将搜索字符串”紧急“的名称开始记录\n" -"注:这是区分大小写的搜索。" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "时间条件" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "规则名称" +#: help:base.action.rule,filter_pre_id:0 +msgid "" +"If present, this condition must be satisfied before the update of the record." +msgstr "" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "序号" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "业务伙伴模型的条件" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -291,45 +281,52 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "创建日期" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "创建时间" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "截止日期" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "业务伙伴" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "触发日期" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "Mail to Watchers (CC)" #~ msgstr "抄送" +#~ msgid "Set State to" +#~ msgstr "设置状态为" + #~ msgid "Email From" #~ msgstr "发件人" #~ msgid "Mail to these Emails" #~ msgstr "要发邮件的地址" +#~ msgid "Button Pressed" +#~ msgstr "按下按钮" + #~ msgid "Object" #~ msgstr "对象" @@ -350,15 +347,27 @@ msgstr "" #~ "Check this if you want the rule to send a reminder by email to the partner." #~ msgstr "如果您希望该规则发送提醒邮件给业务伙伴的话请选中此项。" +#~ msgid "Deadline" +#~ msgstr "截止日期" + #~ msgid "State" #~ msgstr "状态" #~ msgid "Special Keywords to Be Used in The Body" #~ msgstr "指定正文里的关键字" +#~ msgid "Creation Date" +#~ msgstr "创建日期" + #~ msgid "Email Reminders" #~ msgstr "电子邮件提醒" +#~ msgid "Last Action Date" +#~ msgstr "最后动作日期" + +#~ msgid "None" +#~ msgstr "无" + #~ msgid "%(object_user_phone)s = Responsible phone" #~ msgstr "%(object_user_phone)s = 责任人电话" @@ -371,12 +380,18 @@ msgstr "" #~ msgid "Email To" #~ msgstr "邮件至" +#~ msgid "Note" +#~ msgstr "备注" + #~ msgid "%(partner)s = Partner name" #~ msgstr "%(partner)s = 业务伙伴名称" #~ msgid "Call Object Method" #~ msgstr "调用对象方法" +#~ msgid "Date" +#~ msgstr "日期" + #~ msgid "Remind Responsible" #~ msgstr "提醒责任人" @@ -415,9 +430,18 @@ msgstr "" #~ msgid "Add Watchers (Cc)" #~ msgstr "添加抄送人" +#~ msgid "Conditions on Model Fields" +#~ msgstr "作用于模型字段上的条件" + +#~ msgid "Server Action" +#~ msgstr "服务器动作" + #~ msgid "Conditions on States" #~ msgstr "状态条件" +#~ msgid "Conditions on Timing" +#~ msgstr "时间条件" + #~ msgid "" #~ "Check this if you want the rule to send an email to the responsible person." #~ msgstr "如果您希望发送邮件给负责人的话请选中此处" @@ -437,6 +461,19 @@ msgstr "" #~ "使用自动操作,自动触发各种屏幕的行动。例:一个特定的用户创建了一个线索可能被自动归为一个特定的销售队伍,或商机仍然保持状态,可能待14天之后会触发自动电子" #~ "邮件提醒。" +#~ msgid "" +#~ "Regular expression for matching name of the resource\n" +#~ "e.g.: 'urgent.*' will search for records having name starting with the " +#~ "string 'urgent'\n" +#~ "Note: This is case sensitive search." +#~ msgstr "" +#~ "正则表达式匹配的资源名称\n" +#~ "如:“紧急.*'将搜索字符串”紧急“的名称开始记录\n" +#~ "注:这是区分大小写的搜索。" + +#~ msgid "Set Responsible to" +#~ msgstr "设置负责人" + #~ msgid "" #~ "The rule uses the AND operator. The model must match all non-empty fields so " #~ "that the rule executes the action described in the 'Actions' tab." @@ -484,6 +521,12 @@ msgstr "" #~ "描述动作的名称。\n" #~ "例如:哪些对象在哪些条件的基础上应采取的行动" +#~ msgid "ir.cron" +#~ msgstr "ir.cron" + +#~ msgid "Regex on Resource Name" +#~ msgstr "正则表达式对资源名称" + #~ msgid "This module allows to implement action rules for any object." #~ msgstr "这个模块允许任何对象实现的行动规则。" @@ -491,3 +534,23 @@ msgstr "" #~ "Check this if you want that all documents attached to the object be attached " #~ "to the reminder email sent." #~ msgstr "如果你想作为附件添加对象的所有文件到一个提醒邮件,勾选这" + +#~ msgid "" +#~ "Delay After Trigger Date,specifies you can put a negative number. If you " +#~ "need a delay before the trigger date, like sending a reminder 15 minutes " +#~ "before a meeting." +#~ msgstr "你可以填一个负数来推迟触发日期,例如你在开会前要推迟15分钟触发" + +#~ msgid "Partner Category" +#~ msgstr "业务伙伴分类" + +#~ msgid "Conditions on Model Partner" +#~ msgstr "业务伙伴模型的条件" + +#~ msgid "Filter" +#~ msgstr "筛选" + +#~ msgid "" +#~ "If the active field is set to False, it will allow you to hide the rule " +#~ "without removing it." +#~ msgstr "如果有效字段不选择,你可以隐藏它而无需删除。" diff --git a/addons/base_action_rule/i18n/zh_TW.po b/addons/base_action_rule/i18n/zh_TW.po index 43de77876b4..19c61309ed4 100644 --- a/addons/base_action_rule/i18n/zh_TW.po +++ b/addons/base_action_rule/i18n/zh_TW.po @@ -7,26 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-09-27 12:38+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Traditional) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:51+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_action_rule -#: field:base.action.rule,act_followers:0 -msgid "Set Followers" +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "" -"The rule uses the AND operator. The model must match all non-empty fields so " -"that the rule executes the action described in the 'Actions' tab." +"- In this same \"Search\" view, select the menu \"Save Current Filter\", " +"enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " +"all users\"" msgstr "" #. module: base_action_rule @@ -35,30 +36,51 @@ msgid "Action Rules" msgstr "動作規則" #. module: base_action_rule -#: field:base.action.rule,trg_user_id:0 +#: view:base.action.rule:0 +msgid "Select a filter or a timer as condition." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" msgstr "" #. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_actions_server -msgid "ir.actions.server" +#: help:base.action.rule,server_action_ids:0 +msgid "Examples: email reminders, call object service, etc." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Note" -msgstr "備註" +#: field:base.action.rule,act_followers:0 +msgid "Add Followers" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_categ_id:0 -msgid "Partner Category" -msgstr "伙伴分類" +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible" +msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 +#: help:base.action.rule,trg_date_range:0 msgid "" -"Server Actions to be Triggered (eg. Email Reminder, Call Object Method, " -"etc...)" +"Delay after the trigger date.You can put a negative number if you need a " +"delay before thetrigger date, like sending a reminder 15 minutes before a " +"meeting." +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "New" msgstr "" #. module: base_action_rule @@ -66,48 +88,51 @@ msgstr "" msgid "Delay after trigger date" msgstr "" -#. module: base_action_rule -#: help:base.action.rule,active:0 -msgid "" -"If the active field is set to False, it will allow you to hide the rule " -"without removing it." -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" msgstr "條件" #. module: base_action_rule -#: field:base.action.rule,trg_state_from:0 +#: selection:base.action.rule.lead.test,state:0 +msgid "Pending" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,state:0 msgid "Status" msgstr "" +#. module: base_action_rule +#: field:base.action.rule,filter_pre_id:0 +msgid "Before Update Filter" +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 -#: field:ir.actions.server,action_rule_id:0 msgid "Action Rule" msgstr "動作規則" +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" + #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" msgstr "要變更欄位" -#. module: base_action_rule -#: field:base.action.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 -msgid "Conditions on Status" +msgid "The filter must therefore be available in this page." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "最後動作日期" +#: field:base.action.rule,filter_id:0 +msgid "After Update Filter" +msgstr "" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -115,34 +140,15 @@ msgid "Hours" msgstr "小時" #. module: base_action_rule -#: field:base.action.rule,act_state:0 -msgid "Set State to" +#: view:base.action.rule:0 +msgid "To create a new filter:" msgstr "" #. module: base_action_rule -#: help:base.action.rule,server_action_ids:0 -msgid "" -"Define Server actions.\n" -"eg:Email Reminders, Call Object Service, etc.." -msgstr "" - -#. module: base_action_rule -#: help:base.action.rule,trg_date_range:0 -msgid "" -"Delay After Trigger Date,specifies you can put a negative number. If you " -"need a delay before the trigger date, like sending a reminder 15 minutes " -"before a meeting." -msgstr "" - -#. module: base_action_rule -#: model:ir.model,name:base_action_rule.model_ir_cron -msgid "ir.cron" -msgstr "" - -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Date" -msgstr "日期" +#: field:base.action.rule,active:0 +#: field:base.action.rule.lead.test,active:0 +msgid "Active" +msgstr "活躍" #. module: base_action_rule #: view:base.action.rule:0 @@ -150,19 +156,31 @@ msgid "Delay After Trigger Date" msgstr "" #. module: base_action_rule -#: field:base.action.rule,act_user_id:0 -msgid "Set Responsible to" +#: view:base.action.rule:0 +msgid "" +"An action rule is checked when you create or modify the \"Related Document " +"Model\". The precondition filter is checked right before the modification " +"while the postcondition filter is checked after the modification. A " +"precondition filter will therefore not work during a creation." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "None" -msgstr "無" +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_range_type:0 -msgid "Months" -msgstr "月" +#: view:base.action.rule:0 +msgid "" +"- Go to your \"Related Document Model\" page and set the filter parameters " +"in the \"Search\" view (Example of filter based on Leads/Opportunities: " +"Creation Date \"is equal to\" 01/01/2012)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "規則名稱" #. module: base_action_rule #: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act @@ -170,54 +188,44 @@ msgstr "月" msgid "Automated Actions" msgstr "自動化動作" -#. module: base_action_rule -#: field:base.action.rule,model_id:0 -msgid "Related Document Model" -msgstr "" - #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." msgstr "" #. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Fields" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,server_action_ids:0 -msgid "Server Action" -msgstr "伺服器動作" +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "月" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 msgid "Days" msgstr "日" +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Timer" +msgstr "" + #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" msgstr "延遲類型" #. module: base_action_rule -#: field:base.action.rule,filter_id:0 -msgid "Filter" +#: view:base.action.rule:0 +msgid "Server actions to run" msgstr "" #. module: base_action_rule -#: field:base.action.rule,active:0 -msgid "Active" -msgstr "活躍" - -#. module: base_action_rule -#: field:base.action.rule,regex_name:0 -msgid "Regex on Resource Name" +#: help:base.action.rule,active:0 +msgid "When unchecked, the rule is hidden and will not be executed." msgstr "" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Last Modified Date" +#: selection:base.action.rule.lead.test,state:0 +msgid "Cancelled" msgstr "" #. module: base_action_rule @@ -236,34 +244,21 @@ msgid "Minutes" msgstr "分鐘" #. module: base_action_rule -#: help:base.action.rule,regex_name:0 +#: field:base.action.rule,model_id:0 +msgid "Related Document Model" +msgstr "" + +#. module: base_action_rule +#: help:base.action.rule,filter_pre_id:0 msgid "" -"Regular expression for matching name of the resource\n" -"e.g.: 'urgent.*' will search for records having name starting with the " -"string 'urgent'\n" -"Note: This is case sensitive search." +"If present, this condition must be satisfied before the update of the record." msgstr "" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Timing" -msgstr "" - -#. module: base_action_rule -#: field:base.action.rule,name:0 -msgid "Rule Name" -msgstr "規則名稱" - #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" msgstr "" -#. module: base_action_rule -#: view:base.action.rule:0 -msgid "Conditions on Model Partner" -msgstr "" - #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" @@ -286,42 +281,64 @@ msgid "" " " msgstr "" -#. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "建立日期" - #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" msgstr "建立日期" #. module: base_action_rule -#: selection:base.action.rule,trg_date_type:0 -msgid "Deadline" -msgstr "最後限期" +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" #. module: base_action_rule -#: field:base.action.rule,trg_partner_id:0 +#: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" msgstr "伙伴" #. module: base_action_rule -#: field:base.action.rule,trg_date_type:0 +#: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" msgstr "" #. module: base_action_rule #: view:base.action.rule:0 +#: field:base.action.rule,server_action_ids:0 msgid "Server Actions" msgstr "" +#. module: base_action_rule +#: field:base.action.rule.lead.test,name:0 +msgid "Subject" +msgstr "" + #~ msgid "Object" #~ msgstr "物件" +#~ msgid "Partner Category" +#~ msgstr "伙伴分類" + +#~ msgid "Deadline" +#~ msgstr "最後限期" + +#~ msgid "Creation Date" +#~ msgstr "建立日期" + +#~ msgid "Last Action Date" +#~ msgstr "最後動作日期" + +#~ msgid "None" +#~ msgstr "無" + #~ msgid "Email To" #~ msgstr "電郵至" +#~ msgid "Note" +#~ msgstr "備註" + +#~ msgid "Date" +#~ msgstr "日期" + #~ msgid "Email Information" #~ msgstr "電郵資料" @@ -334,5 +351,8 @@ msgstr "" #~ msgid "Mail body" #~ msgstr "郵件內文" +#~ msgid "Server Action" +#~ msgstr "伺服器動作" + #~ msgid "%(object_date)s = Creation date" #~ msgstr "%(object_date)s = 建立日期" diff --git a/addons/base_action_rule/test_models.py b/addons/base_action_rule/test_models.py new file mode 100644 index 00000000000..9469b42c705 --- /dev/null +++ b/addons/base_action_rule/test_models.py @@ -0,0 +1,32 @@ +from osv import osv, fields + +AVAILABLE_STATES = [ + ('draft', 'New'), + ('cancel', 'Cancelled'), + ('open', 'In Progress'), + ('pending', 'Pending'), + ('done', 'Closed') +] + +class lead_test(osv.Model): + _name = "base.action.rule.lead.test" + + _columns = { + 'name': fields.char('Subject', size=64, required=True, select=1), + 'user_id': fields.many2one('res.users', 'Responsible'), + 'state': fields.selection(AVAILABLE_STATES, string="Status", readonly=True), + 'active': fields.boolean('Active', required=False), + 'partner_id': fields.many2one('res.partner', 'Partner', ondelete='set null'), + 'date_action_last': fields.datetime('Last Action', readonly=1), + } + + _defaults = { + 'state' : 'draft', + 'active' : True, + } + + def message_post(self, cr, uid, thread_id, body='', subject=None, type='notification', subtype=None, parent_id=False, attachments=None, context=None, **kwargs): + pass + + def message_subscribe(self, cr, uid, ids, partner_ids, subtype_ids=None, context=None): + pass diff --git a/addons/l10n_ch/wizard/__init__.py b/addons/base_action_rule/tests/__init__.py similarity index 79% rename from addons/l10n_ch/wizard/__init__.py rename to addons/base_action_rule/tests/__init__.py index aa1d22666b6..a2de50226da 100644 --- a/addons/l10n_ch/wizard/__init__.py +++ b/addons/base_action_rule/tests/__init__.py @@ -1,8 +1,8 @@ -# -*- encoding: utf-8 -*- +# -*- coding: utf-8 -*- ############################################################################## # -# Author: Nicolas Bessi. Copyright Camptocamp SA -# Donors: Hasa Sàrl, Open Net Sàrl and Prisme Solutions Informatique SA +# OpenERP, Open Source Business Applications +# Copyright (c) 2012-TODAY OpenERP S.A. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -18,9 +18,10 @@ # along with this program. If not, see . # ############################################################################## +from . import base_action_rule_test -from . import create_dta -from . import bvr_import -from . import unicode2ascii +checks = [ + base_action_rule_test, +] # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_action_rule/tests/base_action_rule_test.py b/addons/base_action_rule/tests/base_action_rule_test.py new file mode 100644 index 00000000000..36c928a84e3 --- /dev/null +++ b/addons/base_action_rule/tests/base_action_rule_test.py @@ -0,0 +1,146 @@ +from openerp import SUPERUSER_ID +from openerp.tests import common +from .. import test_models + +class base_action_rule_test(common.TransactionCase): + + def setUp(self): + """*****setUp*****""" + super(base_action_rule_test, self).setUp() + cr, uid = self.cr, self.uid + self.demo = self.registry('ir.model.data').get_object(cr, uid, 'base', 'user_demo').id + self.admin = SUPERUSER_ID + self.model = self.registry('base.action.rule.lead.test') + self.base_action_rule = self.registry('base.action.rule') + + def create_filter_done(self, cr, uid, context=None): + filter_pool = self.registry('ir.filters') + return filter_pool.create(cr, uid, { + 'name': "Lead is in done state", + 'is_default': False, + 'model_id': 'base.action.rule.lead.test', + 'domain' : "[('state','=','done')]", + }, context=context) + + def create_filter_draft(self, cr, uid, context=None): + filter_pool = self.registry('ir.filters') + return filter_pool.create(cr, uid, { + 'name': "Lead is in draft state", + 'is_default': False, + 'model_id': "base.action.rule.lead.test", + 'domain' : "[('state','=','draft')]", + }, context=context) + + def create_lead_test_1(self, cr, uid, context=None): + """ + Create a new lead_test + """ + return self.model.create(cr, uid, { + 'name': "Lead Test 1", + 'user_id': self.admin, + }, context=context) + + def create_rule(self, cr, uid, filter_id=False, filter_pre_id=False, context=None): + """ + The "Rule 1" says that when a lead goes to the 'draft' state, the responsible for that lead changes to user "demo" + """ + return self.base_action_rule.create(cr,uid,{ + 'name' : "Rule 1", + 'model_id': self.registry('ir.model').search(cr, uid, [('model','=','base.action.rule.lead.test')], context=context)[0], + 'active' : 1, + 'filter_pre_id' : filter_pre_id, + 'filter_id' : filter_id, + 'act_user_id': self.demo, + }, context=context) + + def delete_rules(self, cr, uid, context=None): + """ delete all the rules on model 'base.action.rule.lead.test' """ + action_ids = self.base_action_rule.search(cr, uid, [('model', '=', self.model._name)], context=context) + return self.base_action_rule.unlink(cr, uid, action_ids, context=context) + + def test_00_check_to_state_draft_pre(self): + """ + Check that a new record (with state = draft) doesn't change its responsible when there is a precondition filter which check that the state is draft. + """ + cr, uid = self.cr, self.uid + filter_draft = self.create_filter_draft(cr, uid) + self.create_rule(cr, uid, filter_pre_id=filter_draft) + new_lead_id = self.create_lead_test_1(cr, uid) + new_lead = self.model.browse(cr, uid, new_lead_id) + self.assertEquals(new_lead.state, 'draft') + self.assertEquals(new_lead.user_id.id, self.admin) + self.delete_rules(cr, uid) + + def test_01_check_to_state_draft_post(self): + """ + Check that a new record (with state = draft) changes its responsible when there is a postcondition filter which check that the state is draft. + """ + cr, uid = self.cr, self.uid + filter_draft = self.create_filter_draft(cr, uid) + self.create_rule(cr, uid, filter_id=filter_draft) + new_lead_id = self.create_lead_test_1(cr, uid) + new_lead = self.model.browse(cr, uid, new_lead_id) + self.assertEquals(new_lead.state, 'draft') + self.assertEquals(new_lead.user_id.id, self.demo) + self.delete_rules(cr, uid) + + def test_02_check_from_draft_to_done_with_steps(self): + """ + A new record will be created and will goes from draft to done state via the other states (open, pending and cancel) + We will create a rule that says in precondition that the record must be in the "draft" state while a postcondition filter says + that the record will be done. If the state goes from 'draft' to 'done' the responsible will change. If those two conditions aren't + verified, the responsible will stay the same + The responsible in that test will never change + """ + cr, uid = self.cr, self.uid + filter_draft = self.create_filter_draft(cr, uid) + filter_done = self.create_filter_done(cr, uid) + self.create_rule(cr, uid, filter_pre_id=filter_draft, filter_id=filter_done) + new_lead_id = self.create_lead_test_1(cr, uid) + new_lead = self.model.browse(cr, uid, new_lead_id) + self.assertEquals(new_lead.state, 'draft') + self.assertEquals(new_lead.user_id.id, self.admin) + """ change the state of new_lead to open and check that responsible doen't change""" + new_lead.write({'state': 'open'}) + new_lead = self.model.browse(cr, uid, new_lead_id) + self.assertEquals(new_lead.state, 'open') + self.assertEquals(new_lead.user_id.id, self.admin) + """ change the state of new_lead to pending and check that responsible doen't change""" + new_lead.write({'state': 'pending'}) + new_lead = self.model.browse(cr, uid, new_lead_id) + self.assertEquals(new_lead.state, 'pending') + self.assertEquals(new_lead.user_id.id, self.admin) + """ change the state of new_lead to cancel and check that responsible doen't change""" + new_lead.write({'state': 'cancel'}) + new_lead = self.model.browse(cr, uid, new_lead_id) + self.assertEquals(new_lead.state, 'cancel') + self.assertEquals(new_lead.user_id.id, self.admin) + """ change the state of new_lead to done and check that responsible doen't change """ + new_lead.write({'state': 'done'}) + new_lead = self.model.browse(cr, uid, new_lead_id) + self.assertEquals(new_lead.state, 'done') + self.assertEquals(new_lead.user_id.id, self.admin) + self.delete_rules(cr, uid) + + def test_02_check_from_draft_to_done_without_steps(self): + """ + A new record will be created and will goes from draft to done in one operation + We will create a rule that says in precondition that the record must be in the "draft" state while a postcondition filter says + that the record will be done. If the state goes from 'draft' to 'done' the responsible will change. If those two conditions aren't + verified, the responsible will stay the same + The responsible in that test will change to user "demo" + """ + cr, uid = self.cr, self.uid + filter_draft = self.create_filter_draft(cr, uid) + filter_done = self.create_filter_done(cr, uid) + self.create_rule(cr, uid, filter_pre_id=filter_draft, filter_id=filter_done) + new_lead_id = self.create_lead_test_1(cr, uid) + new_lead = self.model.browse(cr, uid, new_lead_id) + self.assertEquals(new_lead.state, 'draft') + self.assertEquals(new_lead.user_id.id, self.admin) + """ change the state of new_lead to done and check that responsible change to Demo_user""" + new_lead.write({'state': 'done'}) + new_lead = self.model.browse(cr, uid, new_lead_id) + self.assertEquals(new_lead.state, 'done') + self.assertEquals(new_lead.user_id.id, self.demo) + self.delete_rules(cr, uid) diff --git a/addons/base_calendar/base_calendar.py b/addons/base_calendar/base_calendar.py index a06bfd485bb..ab0d8d324b4 100644 --- a/addons/base_calendar/base_calendar.py +++ b/addons/base_calendar/base_calendar.py @@ -142,7 +142,7 @@ html_invitation = """ You are invited for %(company)s Event. - Below are the details of event: + Below are the details of event. Hours and dates expressed in %(timezone)s time. @@ -427,12 +427,9 @@ property or property parameter."), res = None def ics_datetime(idate, short=False): if idate: - if short or len(idate)<=10: - return date.fromtimestamp(time.mktime(time.strptime(idate, '%Y-%m-%d'))) - else: - return datetime.strptime(idate, '%Y-%m-%d %H:%M:%S') - else: - return False + #returns the datetime as UTC, because it is stored as it in the database + return datetime.strptime(idate, '%Y-%m-%d %H:%M:%S').replace(tzinfo=pytz.timezone('UTC')) + return False try: # FIXME: why isn't this in CalDAV? import vobject @@ -516,9 +513,17 @@ property or property parameter."), att_infos.append(((att2.user_id and att2.user_id.name) or \ (att2.partner_id and att2.partner_id.name) or \ att2.email) + ' - Status: ' + att2.state.title()) + #dates and times are gonna be expressed in `tz` time (local timezone of the `uid`) + tz = context.get('tz', pytz.timezone('UTC')) + #res_obj.date and res_obj.date_deadline are in UTC in database so we use context_timestamp() to transform them in the `tz` timezone + date_start = fields.datetime.context_timestamp(cr, uid, datetime.strptime(res_obj.date, tools.DEFAULT_SERVER_DATETIME_FORMAT), context=context) + date_stop = False + if res_obj.date_deadline: + date_stop = fields.datetime.context_timestamp(cr, uid, datetime.strptime(res_obj.date_deadline, tools.DEFAULT_SERVER_DATETIME_FORMAT), context=context) body_vals = {'name': res_obj.name, - 'start_date': res_obj.date, - 'end_date': res_obj.date_deadline or False, + 'start_date': date_start, + 'end_date': date_stop, + 'timezone': tz, 'description': res_obj.description or '-', 'location': res_obj.location or '-', 'attendees': '
'.join(att_infos), @@ -623,7 +628,7 @@ property or property parameter."), email = filter(lambda x:x.__contains__('@'), cnval) vals['email'] = email and email[0] or '' vals['cn'] = vals.get("cn") - res = super(calendar_attendee, self).create(cr, uid, vals, context) + res = super(calendar_attendee, self).create(cr, uid, vals, context=context) return res calendar_attendee() @@ -842,7 +847,7 @@ class calendar_alarm(osv.osv): current_datetime = datetime.now() alarm_ids = self.search(cr, uid, [('state', '!=', 'done')], context=context) - mail_to = [] + mail_to = "" for alarm in self.browse(cr, uid, alarm_ids, context=context): next_trigger_date = None @@ -891,9 +896,9 @@ From: """ % (alarm.name, alarm.trigger_date, alarm.description, \ alarm.user_id.name, alarm.user_id.signature) - mail_to = [alarm.user_id.email] + mail_to = alarm.user_id.email for att in alarm.attendee_ids: - mail_to.append(att.user_id.email) + mail_to = mail_to + " " + att.user_id.email if mail_to: vals = { 'state': 'outgoing', @@ -1117,7 +1122,7 @@ rule or repeating pattern of time to exclude from the recurring rule."), for att in event.attendee_ids: attendees[att.partner_id.id] = True new_attendees = [] - mail_to = [] + mail_to = "" for partner in event.partner_ids: if partner.id in attendees: continue @@ -1128,7 +1133,7 @@ rule or repeating pattern of time to exclude from the recurring rule."), 'email': partner.email }, context=context) if partner.email: - mail_to.append(partner.email) + mail_to = mail_to + " " + partner.email self.write(cr, uid, [event.id], { 'attendee_ids': [(4, att_id)] }, context=context) @@ -1136,7 +1141,7 @@ rule or repeating pattern of time to exclude from the recurring rule."), if mail_to and current_user.email: att_obj._send_mail(cr, uid, new_attendees, mail_to, - email_from = current_user.email) + email_from = current_user.email, context=context) return True def default_organizer(self, cr, uid, context=None): @@ -1747,57 +1752,4 @@ class virtual_report_spool(web_services.report_spool): virtual_report_spool() -class res_users(osv.osv): - _inherit = 'res.users' - - def _get_user_avail(self, cr, uid, ids, context=None): - """ - Get User Availability - @param self: The object pointer - @param cr: the current row, from the database cursor, - @param uid: the current user's ID for security checks, - @param ids: List of res user's IDs. - @param context: A standard dictionary for contextual values - """ - - current_datetime = datetime.now().strftime('%Y-%m-%d %H:%M:%S') - res = {} - attendee_obj = self.pool.get('calendar.attendee') - attendee_ids = attendee_obj.search(cr, uid, [ - ('event_date', '<=', current_datetime), ('event_end_date', '<=', current_datetime), - ('state', '=', 'accepted'), ('user_id', 'in', ids) - ]) - - for attendee_data in attendee_obj.read(cr, uid, attendee_ids, ['user_id']): - user_id = attendee_data['user_id'] - status = 'busy' - res.update({user_id:status}) - - #TOCHECK: Delegated Event - for user_id in ids: - if user_id not in res: - res[user_id] = 'free' - - return res - - def _get_user_avail_fun(self, cr, uid, ids, name, args, context=None): - """ - Get User Availability Function - @param self: The object pointer - @param cr: the current row, from the database cursor, - @param uid: the current user's ID for security checks, - @param ids: List of res user's IDs. - @param context: A standard dictionary for contextual values - """ - - return self._get_user_avail(cr, uid, ids, context=context) - - _columns = { - 'availability': fields.function(_get_user_avail_fun, type='selection', \ - selection=[('free', 'Free'), ('busy', 'Busy')], \ - string='Free/Busy'), - } - -res_users() - # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_calendar/crm_meeting.py b/addons/base_calendar/crm_meeting.py index 84a8911b44c..6010f5ccfca 100644 --- a/addons/base_calendar/crm_meeting.py +++ b/addons/base_calendar/crm_meeting.py @@ -19,10 +19,11 @@ # ############################################################################## -from openerp.osv import fields, osv -from openerp import tools -from openerp.tools.translate import _ +import time +from openerp.osv import fields, osv +from openerp.tools import DEFAULT_SERVER_DATE_FORMAT +from openerp.tools.translate import _ from base_calendar import get_real_ids, base_calendar_id2real_id from openerp.addons.base_status.base_state import base_state # @@ -53,7 +54,7 @@ class crm_meeting(base_state, osv.Model): string='Attendees', states={'done': [('readonly', True)]}), 'state': fields.selection( [('draft', 'Unconfirmed'), ('open', 'Confirmed')], - string='Status', size=16, readonly=True), + string='Status', size=16, readonly=True, track_visibility='onchange'), # Meeting fields 'name': fields.char('Meeting Subject', size=128, required=True, states={'done': [('readonly', True)]}), 'categ_ids': fields.many2many('crm.meeting.type', 'meeting_category_rel', @@ -111,21 +112,11 @@ class crm_meeting(base_state, osv.Model): # ---------------------------------------- # shows events of the day for this user - def needaction_domain_get(self, cr, uid, domain=[], context={}): - return [('date','<=',time.strftime('%Y-%M-%D 23:59:59')), ('date_deadline','>=', time.strftime('%Y-%M-%D 00:00:00')), ('user_id','=',uid)] - - def case_get_note_msg_prefix(self, cr, uid, id, context=None): - return _('Meeting') - - def case_open_send_note(self, cr, uid, ids, context=None): - return self.message_post(cr, uid, ids, body=_("Meeting confirmed."), context=context) - - def case_close_send_note(self, cr, uid, ids, context=None): - return self.message_post(cr, uid, ids, body=_("Meeting completed."), context=context) + def _needaction_domain_get(self, cr, uid, context=None): + return [('date', '<=', time.strftime(DEFAULT_SERVER_DATE_FORMAT + ' 23:59:59')), ('date_deadline', '>=', time.strftime(DEFAULT_SERVER_DATE_FORMAT + ' 23:59:59')), ('user_id', '=', uid)] def message_post(self, cr, uid, thread_id, body='', subject=None, type='notification', subtype=None, parent_id=False, attachments=None, context=None, **kwargs): - cal_event_pool = self.pool.get('calendar.event') if isinstance(thread_id, str): thread_id = get_real_ids(thread_id) return super(crm_meeting, self).message_post(cr, uid, thread_id, body=body, subject=subject, type=type, subtype=subtype, parent_id=parent_id, attachments=attachments, context=context, **kwargs) diff --git a/addons/base_calendar/crm_meeting_view.xml b/addons/base_calendar/crm_meeting_view.xml index 2efc76997cc..c2adc01cd54 100644 --- a/addons/base_calendar/crm_meeting_view.xml +++ b/addons/base_calendar/crm_meeting_view.xml @@ -181,10 +181,6 @@
-
- - -
diff --git a/addons/base_calendar/i18n/af.po b/addons/base_calendar/i18n/af.po index ea4ad0942fa..dde5d36fecc 100644 --- a/addons/base_calendar/i18n/af.po +++ b/addons/base_calendar/i18n/af.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:36+0000\n" "Last-Translator: Jacobus Erasmus \n" "Language-Team: Afrikaans \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:49+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:00+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -68,12 +68,6 @@ msgstr "Harhalende Afspraak" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -255,7 +249,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Fout!" @@ -275,6 +269,13 @@ msgstr "" msgid "Procedure" msgstr "Prosedure" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -334,14 +335,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Kamer" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "" @@ -364,11 +360,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Waarskuwing!" @@ -514,9 +510,9 @@ msgid "Email" msgstr "E-pos" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Kamer" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -529,7 +525,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -540,11 +536,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -573,10 +567,8 @@ msgid "Caldav URL" msgstr "" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" msgstr "" #. module: base_calendar @@ -609,7 +601,7 @@ msgid "Delegrated To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -717,12 +709,6 @@ msgstr "" msgid "Individual" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -758,7 +744,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -794,13 +780,6 @@ msgstr "" msgid "Basic Alarm Information" msgstr "" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1000,9 +979,10 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" msgstr "" #. module: base_calendar @@ -1053,11 +1033,6 @@ msgstr "" msgid "Interval" msgstr "" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1082,7 +1057,7 @@ msgid "Active" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1228,7 +1203,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1354,6 +1329,11 @@ msgstr "" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1434,6 +1414,11 @@ msgid "" "email or contains the text to be used for display" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1454,7 +1439,7 @@ msgid "April" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1472,7 +1457,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1485,7 +1470,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" diff --git a/addons/base_calendar/i18n/ar.po b/addons/base_calendar/i18n/ar.po index f0aae773625..cf3ae7dab99 100644 --- a/addons/base_calendar/i18n/ar.po +++ b/addons/base_calendar/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:23+0000\n" "Last-Translator: Raphael Collet (OpenERP) \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: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:00+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -68,12 +68,6 @@ msgstr "اجتماع دوري" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -255,7 +249,7 @@ msgid "To" msgstr "إلى" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "خطأ!" @@ -275,6 +269,13 @@ msgstr "" msgid "Procedure" msgstr "الإجراءات" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "معرّف التكرار" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -334,14 +335,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "غرفة" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "تاريخ الهوية المكررة" @@ -364,11 +360,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "تحذير!" @@ -513,9 +509,9 @@ msgid "Email" msgstr "البريد الإلكتروني" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "غرفة" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -528,7 +524,7 @@ msgid "Event alarm information" msgstr "معلومات عن منبه الحدث" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -539,11 +535,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -572,11 +566,9 @@ msgid "Caldav URL" msgstr "عنوان (URL) Caldav" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "معرّف التكرار" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -608,7 +600,7 @@ msgid "Delegrated To" msgstr "مفوّض إلى" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -716,12 +708,6 @@ msgstr "متاح" msgid "Individual" msgstr "فرد" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -757,7 +743,7 @@ msgid "Declined" msgstr "مرفوض" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -793,13 +779,6 @@ msgstr "الخصوصية" msgid "Basic Alarm Information" msgstr "معلومات المنبه الأساسي" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "الإثنين" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -999,10 +978,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "المجموعات التي ينتمي إليها المدعو" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "الإثنين" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1052,11 +1032,6 @@ msgstr "متعلق بـ" msgid "Interval" msgstr "الفترة" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1081,7 +1056,7 @@ msgid "Active" msgstr "نشِط" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1231,7 +1206,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1357,6 +1332,11 @@ msgstr "القيم" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1439,6 +1419,11 @@ msgstr "" "وتحتوي على نص لتُستخدم كعنوان رسالة للبريد الالكتروني او تحتوي على نص " "لتستخدم للعرض" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1459,7 +1444,7 @@ msgid "April" msgstr "أبريل" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1477,7 +1462,7 @@ msgid "Weekday" msgstr "يوم العمل" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1490,7 +1475,7 @@ msgid "By day" msgstr "باليوم" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1723,9 +1708,6 @@ msgstr "الخامس" #~ msgid "Required to Join" #~ msgstr "الانضمام مطلوب" -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - #~ msgid "Show time as" #~ msgstr "عرض الوقت كـ" diff --git a/addons/base_calendar/i18n/base_calendar.pot b/addons/base_calendar/i18n/base_calendar.pot index e06e4cdcea0..8e9433af7d0 100644 --- a/addons/base_calendar/i18n/base_calendar.pot +++ b/addons/base_calendar/i18n/base_calendar.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -64,12 +64,6 @@ msgstr "" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -251,7 +245,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "" @@ -271,6 +265,13 @@ msgstr "" msgid "Procedure" msgstr "" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -330,14 +331,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "" @@ -358,11 +354,11 @@ msgid "Holds the Chatter summary (number of messages, ...). This summary is dire msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "" @@ -504,8 +500,8 @@ msgid "Email" msgstr "" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" +#: selection:calendar.attendee,cutype:0 +msgid "Room" msgstr "" #. module: base_calendar @@ -519,7 +515,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -530,11 +526,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -563,10 +557,8 @@ msgid "Caldav URL" msgstr "" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" msgstr "" #. module: base_calendar @@ -599,7 +591,7 @@ msgid "Delegrated To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -707,12 +699,6 @@ msgstr "" msgid "Individual" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -748,7 +734,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -784,13 +770,6 @@ msgstr "" msgid "Basic Alarm Information" msgstr "" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -988,9 +967,10 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" msgstr "" #. module: base_calendar @@ -1041,11 +1021,6 @@ msgstr "" msgid "Interval" msgstr "" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1070,7 +1045,7 @@ msgid "Active" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1206,7 +1181,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1329,6 +1304,11 @@ msgstr "" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1405,6 +1385,11 @@ msgstr "" msgid "Contains the text to be used as the message subject for email or contains the text to be used for display" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1425,7 +1410,7 @@ msgid "April" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1443,7 +1428,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1456,7 +1441,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" diff --git a/addons/base_calendar/i18n/bg.po b/addons/base_calendar/i18n/bg.po index 1afb1554b77..c243f3ade32 100644 --- a/addons/base_calendar/i18n/bg.po +++ b/addons/base_calendar/i18n/bg.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 18:18+0000\n" "Last-Translator: Dimitar Markov \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:00+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "Повтряща се среща" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Грешка!" @@ -277,6 +271,13 @@ msgstr "" msgid "Procedure" msgstr "Процедура" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "ID на Повторение" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Помещение" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "" @@ -366,11 +362,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Предупреждение!" @@ -514,9 +510,9 @@ msgid "Email" msgstr "Имейл" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Помещение" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -529,7 +525,7 @@ msgid "Event alarm information" msgstr "Информация за аларма на събитие" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -540,11 +536,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -573,11 +567,9 @@ msgid "Caldav URL" msgstr "Caldav URL" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "ID на Повторение" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -609,7 +601,7 @@ msgid "Delegrated To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -717,12 +709,6 @@ msgstr "Наличност" msgid "Individual" msgstr "Индивидуално" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -758,7 +744,7 @@ msgid "Declined" msgstr "Отказано" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -794,13 +780,6 @@ msgstr "Поверителност" msgid "Basic Alarm Information" msgstr "Основна информация за Аларма" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Пон" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1000,10 +979,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Показва групата, към която принадлежи участник" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Пон" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1053,11 +1033,6 @@ msgstr "Свързан със" msgid "Interval" msgstr "Интервал" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1082,7 +1057,7 @@ msgid "Active" msgstr "Активен" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1231,7 +1206,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1357,6 +1332,11 @@ msgstr "ir.values" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1437,6 +1417,11 @@ msgid "" "email or contains the text to be used for display" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1457,7 +1442,7 @@ msgid "April" msgstr "Април" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1475,7 +1460,7 @@ msgid "Weekday" msgstr "Ден от седмицата" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1488,7 +1473,7 @@ msgid "By day" msgstr "По дни" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1646,9 +1631,6 @@ msgstr "Пети" #~ msgid "Warning !" #~ msgstr "Предупреждение !" -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - #~ msgid "Yearly" #~ msgstr "Ежегодишно" diff --git a/addons/base_calendar/i18n/bn.po b/addons/base_calendar/i18n/bn.po index 29e46badf1d..ff374651057 100644 --- a/addons/base_calendar/i18n/bn.po +++ b/addons/base_calendar/i18n/bn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-11-21 12:57+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bengali \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:00+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -68,12 +68,6 @@ msgstr "" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -255,7 +249,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "ভুল" @@ -275,6 +269,13 @@ msgstr "" msgid "Procedure" msgstr "" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -334,14 +335,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "রুম" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "" @@ -364,11 +360,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "" @@ -512,9 +508,9 @@ msgid "Email" msgstr "ই-মেইল" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "রুম" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -527,7 +523,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -538,11 +534,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -571,10 +565,8 @@ msgid "Caldav URL" msgstr "" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" msgstr "" #. module: base_calendar @@ -607,7 +599,7 @@ msgid "Delegrated To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -715,12 +707,6 @@ msgstr "" msgid "Individual" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -756,7 +742,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -792,13 +778,6 @@ msgstr "প্রাইভেসি" msgid "Basic Alarm Information" msgstr "" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -998,9 +977,10 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" msgstr "" #. module: base_calendar @@ -1051,11 +1031,6 @@ msgstr "" msgid "Interval" msgstr "" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1080,7 +1055,7 @@ msgid "Active" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1226,7 +1201,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1352,6 +1327,11 @@ msgstr "" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1432,6 +1412,11 @@ msgid "" "email or contains the text to be used for display" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1452,7 +1437,7 @@ msgid "April" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1470,7 +1455,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1483,7 +1468,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" diff --git a/addons/base_calendar/i18n/bs.po b/addons/base_calendar/i18n/bs.po index f1e99c7d355..6b3720f128e 100644 --- a/addons/base_calendar/i18n/bs.po +++ b/addons/base_calendar/i18n/bs.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-09-29 09:49+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: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:00+0000\n" +"X-Generator: Launchpad (build 16378)\n" "X-Poedit-Country: BOSNIA AND HERZEGOVINA\n" "Language: hr\n" "X-Poedit-Language: Bosnian\n" @@ -70,12 +70,6 @@ msgstr "" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "" @@ -277,6 +271,13 @@ msgstr "" msgid "Procedure" msgstr "" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "" @@ -366,11 +362,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "" @@ -514,8 +510,8 @@ msgid "Email" msgstr "" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" +#: selection:calendar.attendee,cutype:0 +msgid "Room" msgstr "" #. module: base_calendar @@ -529,7 +525,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -540,11 +536,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -573,10 +567,8 @@ msgid "Caldav URL" msgstr "" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" msgstr "" #. module: base_calendar @@ -609,7 +601,7 @@ msgid "Delegrated To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -717,12 +709,6 @@ msgstr "" msgid "Individual" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -758,7 +744,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -794,13 +780,6 @@ msgstr "" msgid "Basic Alarm Information" msgstr "" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1000,9 +979,10 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" msgstr "" #. module: base_calendar @@ -1053,11 +1033,6 @@ msgstr "" msgid "Interval" msgstr "" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1082,7 +1057,7 @@ msgid "Active" msgstr "Aktivan" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1228,7 +1203,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1354,6 +1329,11 @@ msgstr "" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1434,6 +1414,11 @@ msgid "" "email or contains the text to be used for display" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1454,7 +1439,7 @@ msgid "April" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1472,7 +1457,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1485,7 +1470,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" diff --git a/addons/base_calendar/i18n/ca.po b/addons/base_calendar/i18n/ca.po index be9da97ca20..a89a8f3ebe4 100644 --- a/addons/base_calendar/i18n/ca.po +++ b/addons/base_calendar/i18n/ca.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:47+0000\n" "Last-Translator: Raphael Collet (OpenERP) \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:00+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "Reunió periòdica" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Error!" @@ -277,6 +271,13 @@ msgstr "" msgid "Procedure" msgstr "Procediment" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "ID recurrent" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Sala" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "ID data recurrent" @@ -366,11 +362,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Avís!" @@ -516,9 +512,9 @@ msgid "Email" msgstr "Correu electrònic" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Sala" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -531,7 +527,7 @@ msgid "Event alarm information" msgstr "Informació de l'avís de l'esdeveniment" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -542,11 +538,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -575,11 +569,9 @@ msgid "Caldav URL" msgstr "URL de caldav" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "ID recurrent" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -611,7 +603,7 @@ msgid "Delegrated To" msgstr "Delegada en" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -719,12 +711,6 @@ msgstr "Disponibilitat" msgid "Individual" msgstr "Individual" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -761,7 +747,7 @@ msgid "Declined" msgstr "Rebutjat" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -797,13 +783,6 @@ msgstr "Privacitat" msgid "Basic Alarm Information" msgstr "Informació sobre l'alarma bàsica" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Dll" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1005,10 +984,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Indiqueu els grups als quals pertany l'assistent" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Dll" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1058,11 +1038,6 @@ msgstr "Relacionat amb" msgid "Interval" msgstr "Interval" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1087,7 +1062,7 @@ msgid "Active" msgstr "Actiu" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1239,7 +1214,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1369,6 +1344,11 @@ msgstr "ir.valors" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.adjunt" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1451,6 +1431,11 @@ msgstr "" "Conté el text que s'utilitzarà com a assumpte del missatge del correu " "electrònic o conté el text que s'utilitzarà per mostrar" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1471,7 +1456,7 @@ msgid "April" msgstr "Abril" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1489,7 +1474,7 @@ msgid "Weekday" msgstr "Dia de la setmana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1502,7 +1487,7 @@ msgid "By day" msgstr "Per dia" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1674,9 +1659,6 @@ msgstr "Cinquè" #~ msgid "Warning !" #~ msgstr "Avís!" -#~ msgid "ir.attachment" -#~ msgstr "ir.adjunt" - #~ msgid "Yearly" #~ msgstr "Anualment" diff --git a/addons/base_calendar/i18n/cs.po b/addons/base_calendar/i18n/cs.po index adb5a514df9..e547acd3443 100644 --- a/addons/base_calendar/i18n/cs.po +++ b/addons/base_calendar/i18n/cs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 18:16+0000\n" "Last-Translator: Raphael Collet (OpenERP) \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:00+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "Opakované setkání" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Chyba!" @@ -277,6 +271,13 @@ msgstr "" msgid "Procedure" msgstr "Procedura" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "ID opakování" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Místnost" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "ID data opakování" @@ -366,11 +362,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Varování!" @@ -514,9 +510,9 @@ msgid "Email" msgstr "Email" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Místnost" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -529,7 +525,7 @@ msgid "Event alarm information" msgstr "Informace budíku události" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -540,11 +536,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -573,11 +567,9 @@ msgid "Caldav URL" msgstr "URL Caldav" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "ID opakování" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -609,7 +601,7 @@ msgid "Delegrated To" msgstr "Pověřit" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -717,12 +709,6 @@ msgstr "Dostupnost" msgid "Individual" msgstr "Jednotlivý" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -758,7 +744,7 @@ msgid "Declined" msgstr "Odmítnuté" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -794,13 +780,6 @@ msgstr "Soukromí" msgid "Basic Alarm Information" msgstr "Informace základního budíku" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Po" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1000,10 +979,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Označuje skupinu, do které účastník patří" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Po" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1053,11 +1033,6 @@ msgstr "Vztažené k" msgid "Interval" msgstr "Rozmezí" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1082,7 +1057,7 @@ msgid "Active" msgstr "Aktivní" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1230,7 +1205,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1357,6 +1332,11 @@ msgstr "ir.values" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1437,6 +1417,11 @@ msgid "" "email or contains the text to be used for display" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1457,7 +1442,7 @@ msgid "April" msgstr "Duben" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1475,7 +1460,7 @@ msgid "Weekday" msgstr "Den v týdnu" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1488,7 +1473,7 @@ msgid "By day" msgstr "Podle dne" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1658,9 +1643,6 @@ msgstr "Pátý" #~ msgid "Show time as" #~ msgstr "Ukázat čas jako" -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - #~ msgid "Yearly" #~ msgstr "Ročně" diff --git a/addons/base_calendar/i18n/da.po b/addons/base_calendar/i18n/da.po index c3383450013..e8d0b053de4 100644 --- a/addons/base_calendar/i18n/da.po +++ b/addons/base_calendar/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-11-01 20:11+0000\n" "Last-Translator: OpenERP Danmark / Henning Dinsen \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: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:00+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -68,12 +68,6 @@ msgstr "" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -255,7 +249,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Fejl!" @@ -275,6 +269,13 @@ msgstr "" msgid "Procedure" msgstr "" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -334,14 +335,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Rum" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "" @@ -364,11 +360,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Advarsel!" @@ -512,9 +508,9 @@ msgid "Email" msgstr "" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Rum" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -527,7 +523,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -538,11 +534,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -571,10 +565,8 @@ msgid "Caldav URL" msgstr "" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" msgstr "" #. module: base_calendar @@ -607,7 +599,7 @@ msgid "Delegrated To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -715,12 +707,6 @@ msgstr "" msgid "Individual" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -756,7 +742,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -792,13 +778,6 @@ msgstr "" msgid "Basic Alarm Information" msgstr "" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -998,9 +977,10 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" msgstr "" #. module: base_calendar @@ -1051,11 +1031,6 @@ msgstr "" msgid "Interval" msgstr "" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1080,7 +1055,7 @@ msgid "Active" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1226,7 +1201,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1352,6 +1327,11 @@ msgstr "" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1432,6 +1412,11 @@ msgid "" "email or contains the text to be used for display" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1452,7 +1437,7 @@ msgid "April" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1470,7 +1455,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1483,7 +1468,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" diff --git a/addons/base_calendar/i18n/de.po b/addons/base_calendar/i18n/de.po index 2049a530a67..7adefbedcf6 100644 --- a/addons/base_calendar/i18n/de.po +++ b/addons/base_calendar/i18n/de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-17 22:52+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-18 05:01+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "Wiederkehrender Termin" msgid "Feedback Meeting" msgstr "Rückmeldung Meeting" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "Meeting wurde erledigt." - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "Bis" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Fehler !" @@ -277,6 +271,13 @@ msgstr "Meine Mettings" msgid "Procedure" msgstr "Prozedur" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "Kurzbez." + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "Meetings" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Raum" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "Wiederk. Vorgang" @@ -368,11 +364,11 @@ msgstr "" "html Format, um Sie später in einer Kanban Ansicht einfügen zu können." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Warnung!" @@ -518,9 +514,9 @@ msgid "Email" msgstr "E-Mail Adresse" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "CRM Meeting: Markiere als ungelesen" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Raum" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -533,7 +529,7 @@ msgid "Event alarm information" msgstr "Termin Erinnerung" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "Sie können nicht negativ oder 0 sein" @@ -544,11 +540,9 @@ msgid "Creation Date" msgstr "Datum Erstellung" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "Meeting" @@ -577,11 +571,9 @@ msgid "Caldav URL" msgstr "Caldav URL" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "Kurzbez." +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -613,7 +605,7 @@ msgid "Delegrated To" msgstr "Delegiert an" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "Die folgenden Kontakte haben keine E-Mail Adresse hinterlegt:" @@ -721,12 +713,6 @@ msgstr "Verfügbarkeit" msgid "Individual" msgstr "Einzeltermin" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "Meeting wurde bestätigt." - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -762,7 +748,7 @@ msgid "Declined" msgstr "Abgesagt" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -800,13 +786,6 @@ msgstr "Vertraulichkeit" msgid "Basic Alarm Information" msgstr "Basisinfo Warnhinweis" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Mo" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1008,10 +987,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Anzeige der zugehörigen Gruppe des Teilnehmers" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "Kommentare und E-Mails" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Mo" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1061,11 +1041,6 @@ msgstr "Bezug" msgid "Interval" msgstr "Intervalle" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "CRM Meeting: Markiere als ungelesen" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1090,7 +1065,7 @@ msgid "Active" msgstr "Aktiv" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "Sie können einen Teilnehmer nicht duplizieren" @@ -1250,7 +1225,7 @@ msgid "Select Weekdays" msgstr "Auswahl Wochentage" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1378,6 +1353,11 @@ msgstr "ir.values" msgid "Search Meetings" msgstr "Suche Meetings" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1468,6 +1448,11 @@ msgstr "" "Beinhaltet den Text für die neue Betreffzeile von Benachrichtigung mittels E-" "Mail oder für die Benachrichtigung" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1488,7 +1473,7 @@ msgid "April" msgstr "April" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "E-Mail Adresse wurde nicht gefunden" @@ -1506,7 +1491,7 @@ msgid "Weekday" msgstr "Wochentag" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "Zeitraum kann nicht negativ sein" @@ -1519,7 +1504,7 @@ msgid "By day" msgstr "Nach Tag" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "Als erstes müssen Sie dann das Datum der Einladung akzeptieren." @@ -1906,9 +1891,6 @@ msgstr "5ter" #~ msgid "You can not have two users with the same login !" #~ msgstr "Sie können nicht zwei identische Benutzeranmeldungen definieren!" -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - #~ msgid "Edit all Occurrences of recurrent Meeting." #~ msgstr "Bearbeite alle Einträge für wiederkehrende Termine" diff --git a/addons/base_calendar/i18n/el.po b/addons/base_calendar/i18n/el.po index 7fe5af7a39f..a111239f416 100644 --- a/addons/base_calendar/i18n/el.po +++ b/addons/base_calendar/i18n/el.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 18:12+0000\n" "Last-Translator: Dimitris Andavoglou \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: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Λάθος!" @@ -277,6 +271,13 @@ msgstr "" msgid "Procedure" msgstr "Διαδικασία" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "Περιοδικό ID" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Δωμάτιο" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "" @@ -366,11 +362,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Προειδοποίηση" @@ -514,9 +510,9 @@ msgid "Email" msgstr "Email" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Δωμάτιο" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -529,7 +525,7 @@ msgid "Event alarm information" msgstr "Πληροφορίες Υπενθύμισης Γεγονότος" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -540,11 +536,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -573,11 +567,9 @@ msgid "Caldav URL" msgstr "Caldav URL" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "Περιοδικό ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -609,7 +601,7 @@ msgid "Delegrated To" msgstr "Εξουσιοδότηση σε" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -717,12 +709,6 @@ msgstr "Διαθεσιμότητα" msgid "Individual" msgstr "Μεμονωμένα" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -759,7 +745,7 @@ msgid "Declined" msgstr "Απορρίφθηκε" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -795,13 +781,6 @@ msgstr "Απόρρητο" msgid "Basic Alarm Information" msgstr "Βασικές Πληροφορίες Υπενθύμισης" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Δευ" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1001,10 +980,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Δηλώνει τις ομάδες που ο προσκεκλημένος ανήκει" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Δευ" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1054,11 +1034,6 @@ msgstr "Συσχετίζεται με" msgid "Interval" msgstr "Διάστημα" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1083,7 +1058,7 @@ msgid "Active" msgstr "Ενεργό" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1231,7 +1206,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1357,6 +1332,11 @@ msgstr "" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1439,6 +1419,11 @@ msgstr "" "Περιλαμβάνει το κείμενο που θα χρησιμοποιηθεί σαν θέμα μυνήματος για email ή " "περιλαμβάνει το κείμενο για προβολή" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1459,7 +1444,7 @@ msgid "April" msgstr "Απρίλιος" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1477,7 +1462,7 @@ msgid "Weekday" msgstr "Καθημερινή" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1490,7 +1475,7 @@ msgid "By day" msgstr "Κατά ημέρα" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1751,9 +1736,6 @@ msgstr "Πέμπτος" #~ "Η επιλεγμένη εταιρία δεν είναι στις επιτρεπόμενες εταιρίες γι' αυτόν τον " #~ "χρήστη" -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - #~ msgid "Weekly" #~ msgstr "Εβδομαδιαία" diff --git a/addons/base_calendar/i18n/es.po b/addons/base_calendar/i18n/es.po index e5f7414525f..b26ace8323f 100644 --- a/addons/base_calendar/i18n/es.po +++ b/addons/base_calendar/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-12-11 14:15+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-23 12:03+0000\n" "Last-Translator: Pedro Manuel Baeza \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-24 04:40+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "Reunión periódica" msgid "Feedback Meeting" msgstr "Opinión reunión" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "Reunión finalizada." - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "Para" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "¡Error!" @@ -277,6 +271,13 @@ msgstr "Mis reuniones" msgid "Procedure" msgstr "Procedimiento" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "ID recurrente" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "Reuniones" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Sala" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "ID fecha recurrente" @@ -368,11 +364,11 @@ msgstr "" "directamente en formato HTML para poder ser insertado en las vistas kanban." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "¡Aviso!" @@ -518,9 +514,9 @@ msgid "Email" msgstr "Correo electrónico" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "Reunión CRM: Marcar no leído." +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Sala" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -533,7 +529,7 @@ msgid "Event alarm information" msgstr "Información del aviso del evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "La cuenta no puede ser negativa o cero" @@ -544,11 +540,9 @@ msgid "Creation Date" msgstr "Fecha de creación" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "Reunión" @@ -577,11 +571,9 @@ msgid "Caldav URL" msgstr "URL de caldav" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "ID recurrente" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "Asistente de invitación" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -613,7 +605,7 @@ msgid "Delegrated To" msgstr "Delegada en" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "Los siguientes contactos no tienen cuenta de correo" @@ -721,12 +713,6 @@ msgstr "Disponibilidad" msgid "Individual" msgstr "Individual" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "Reunión confirmada." - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -762,7 +748,7 @@ msgid "Declined" msgstr "Rechazada" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -799,13 +785,6 @@ msgstr "Privacidad" msgid "Basic Alarm Information" msgstr "Información sobre la alarma básica" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Lun" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1007,10 +986,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Indicar los grupos a los que pertenece el asistente" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "Comentarios y correos" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Lun" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1061,11 +1041,6 @@ msgstr "Relacionado con" msgid "Interval" msgstr "Intervalo" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "Reunión CRM: Marcar leido." - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1090,7 +1065,7 @@ msgid "Active" msgstr "Activo" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "No puede duplicar un asistente calendario" @@ -1250,7 +1225,7 @@ msgid "Select Weekdays" msgstr "Seleccione días de la semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1380,6 +1355,11 @@ msgstr "ir.valores" msgid "Search Meetings" msgstr "Buscar reuniones" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.adjunto" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1470,6 +1450,11 @@ msgstr "" "Contiene el texto a usar como asunto del mensaje para correos electrónicos, " "o contiene el texto a mostrar" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "Mensaje" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1490,7 +1475,7 @@ msgid "April" msgstr "Abril" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "Dirección de email no encontrada" @@ -1508,7 +1493,7 @@ msgid "Weekday" msgstr "Día de la semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "El intervalo no puede ser negativo" @@ -1521,7 +1506,7 @@ msgid "By day" msgstr "Por día" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "Primero debe especificar la fecha de la invitación." @@ -1769,9 +1754,6 @@ msgstr "Quinto" #~ msgid "Hourly" #~ msgstr "Cada hora" -#~ msgid "ir.attachment" -#~ msgstr "ir.adjunto" - #~ msgid "Yearly" #~ msgstr "Anualmente" diff --git a/addons/base_calendar/i18n/es_CR.po b/addons/base_calendar/i18n/es_CR.po index baf00a7d44f..2aa4a0b2c8b 100644 --- a/addons/base_calendar/i18n/es_CR.po +++ b/addons/base_calendar/i18n/es_CR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-15 16:50+0000\n" "Last-Translator: Freddy Gonzalez \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" "Language: es\n" #. module: base_calendar @@ -71,12 +71,6 @@ msgstr "Reunión periódica" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -258,7 +252,7 @@ msgid "To" msgstr "Para" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "¡Error!" @@ -278,6 +272,13 @@ msgstr "" msgid "Procedure" msgstr "Procedimiento" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "ID recurrente" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -337,14 +338,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Sala" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "ID fecha recurrente" @@ -367,11 +363,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "¡Aviso!" @@ -517,9 +513,9 @@ msgid "Email" msgstr "Correo electrónico" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Sala" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -532,7 +528,7 @@ msgid "Event alarm information" msgstr "Información del aviso del evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -543,11 +539,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -576,11 +570,9 @@ msgid "Caldav URL" msgstr "URL de caldav" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "ID recurrente" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -612,7 +604,7 @@ msgid "Delegrated To" msgstr "Delegada en" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -720,12 +712,6 @@ msgstr "Disponibilidad" msgid "Individual" msgstr "Individual" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -761,7 +747,7 @@ msgid "Declined" msgstr "Rechazada" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -797,13 +783,6 @@ msgstr "Privacidad" msgid "Basic Alarm Information" msgstr "Información sobre la alarma básica" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Lun" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1005,10 +984,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Indicar los grupos a los que pertenece el asistente" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Lun" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1058,11 +1038,6 @@ msgstr "Relacionado con" msgid "Interval" msgstr "Intervalo" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1087,7 +1062,7 @@ msgid "Active" msgstr "Activo" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "No puede duplicar un asistente calendario" @@ -1239,7 +1214,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1369,6 +1344,11 @@ msgstr "ir.valores" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.adjunto" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1452,6 +1432,11 @@ msgstr "" "Contiene el texto a usar como asunto del mensaje para correos electrónicos, " "o contiene el texto a mostrar" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1472,7 +1457,7 @@ msgid "April" msgstr "Abril" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1490,7 +1475,7 @@ msgid "Weekday" msgstr "Día de la semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1503,7 +1488,7 @@ msgid "By day" msgstr "Por día" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1783,9 +1768,6 @@ msgstr "Quinto" #~ msgid "Search Invitations" #~ msgstr "Buscar invitaciones" -#~ msgid "ir.attachment" -#~ msgstr "ir.adjunto" - #~ msgid "Invite" #~ msgstr "Invitar" diff --git a/addons/base_calendar/i18n/es_EC.po b/addons/base_calendar/i18n/es_EC.po index dad2e273167..f3249c0985c 100644 --- a/addons/base_calendar/i18n/es_EC.po +++ b/addons/base_calendar/i18n/es_EC.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-02-11 23:49+0000\n" "Last-Translator: Mario Andrés Correa \n" "Language-Team: Spanish (Ecuador) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "Reunión periódica" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "¡Error!" @@ -277,6 +271,13 @@ msgstr "" msgid "Procedure" msgstr "Procedimiento" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Sala" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "" @@ -366,11 +362,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "¡Advertencia!" @@ -516,9 +512,9 @@ msgid "Email" msgstr "" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Sala" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -531,7 +527,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -542,11 +538,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -575,10 +569,8 @@ msgid "Caldav URL" msgstr "" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" msgstr "" #. module: base_calendar @@ -611,7 +603,7 @@ msgid "Delegrated To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -719,12 +711,6 @@ msgstr "" msgid "Individual" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -760,7 +746,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -796,13 +782,6 @@ msgstr "" msgid "Basic Alarm Information" msgstr "" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1002,9 +981,10 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" msgstr "" #. module: base_calendar @@ -1055,11 +1035,6 @@ msgstr "" msgid "Interval" msgstr "" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1084,7 +1059,7 @@ msgid "Active" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1230,7 +1205,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1356,6 +1331,11 @@ msgstr "" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.adjunto" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1436,6 +1416,11 @@ msgid "" "email or contains the text to be used for display" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1456,7 +1441,7 @@ msgid "April" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1474,7 +1459,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1487,7 +1472,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1656,9 +1641,6 @@ msgstr "" #~ msgid "Warning !" #~ msgstr "¡Advertencia!" -#~ msgid "ir.attachment" -#~ msgstr "ir.adjunto" - #~ msgid "Yearly" #~ msgstr "Anual" diff --git a/addons/base_calendar/i18n/es_PY.po b/addons/base_calendar/i18n/es_PY.po index 4ea898ed4ab..0378fad7af7 100644 --- a/addons/base_calendar/i18n/es_PY.po +++ b/addons/base_calendar/i18n/es_PY.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-08 00:12+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Paraguay) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "Reunión periódica" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "¡Error!" @@ -277,6 +271,13 @@ msgstr "" msgid "Procedure" msgstr "Procedimiento" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "ID recurrente" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Sala" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "ID fecha recurrente" @@ -366,11 +362,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "¡Cuidado!" @@ -516,9 +512,9 @@ msgid "Email" msgstr "Correo electrónico" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Sala" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -531,7 +527,7 @@ msgid "Event alarm information" msgstr "Información del aviso del evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -542,11 +538,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -575,11 +569,9 @@ msgid "Caldav URL" msgstr "URL de caldav" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "ID recurrente" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -611,7 +603,7 @@ msgid "Delegrated To" msgstr "Delegada en" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -719,12 +711,6 @@ msgstr "Disponibilidad" msgid "Individual" msgstr "Individual" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -760,7 +746,7 @@ msgid "Declined" msgstr "Rechazada" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -796,13 +782,6 @@ msgstr "Privacidad" msgid "Basic Alarm Information" msgstr "Información sobre la alarma básica" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Lun" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1004,10 +983,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Indicar los grupos a los que pertenece el asistente" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Lun" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1057,11 +1037,6 @@ msgstr "Relacionado con" msgid "Interval" msgstr "Intervalo" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1086,7 +1061,7 @@ msgid "Active" msgstr "Activo" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1238,7 +1213,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1368,6 +1343,11 @@ msgstr "ir.valores" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.adjunto" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1451,6 +1431,11 @@ msgstr "" "Contiene el texto a usar como asunto del mensaje para correos electrónicos, " "o contiene el texto a mostrar" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1471,7 +1456,7 @@ msgid "April" msgstr "Abril" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1489,7 +1474,7 @@ msgid "Weekday" msgstr "Día de la semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1502,7 +1487,7 @@ msgid "By day" msgstr "Por día" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1677,9 +1662,6 @@ msgstr "Quinto" #~ msgid "Warning !" #~ msgstr "¡Atención!" -#~ msgid "ir.attachment" -#~ msgstr "ir.adjunto" - #~ msgid "Yearly" #~ msgstr "Anualmente" diff --git a/addons/base_calendar/i18n/et.po b/addons/base_calendar/i18n/et.po index a23b935bfd7..1ceedae383d 100644 --- a/addons/base_calendar/i18n/et.po +++ b/addons/base_calendar/i18n/et.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2011-10-11 18:08+0000\n" -"Last-Translator: Aare Vesi \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 18:19+0000\n" +"Last-Translator: Ahti Hinnov \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:00+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -68,12 +68,6 @@ msgstr "Korduv kohtumine" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -255,7 +249,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Viga!" @@ -275,6 +269,13 @@ msgstr "" msgid "Procedure" msgstr "" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -334,14 +335,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Ruum" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "" @@ -364,11 +360,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "" @@ -512,9 +508,9 @@ msgid "Email" msgstr "" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Ruum" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -527,7 +523,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -538,11 +534,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -571,10 +565,8 @@ msgid "Caldav URL" msgstr "" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" msgstr "" #. module: base_calendar @@ -607,7 +599,7 @@ msgid "Delegrated To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -691,7 +683,7 @@ msgstr "" #: selection:calendar.todo,month_list:0 #: selection:crm.meeting,month_list:0 msgid "December" -msgstr "" +msgstr "Detsember" #. module: base_calendar #: selection:calendar.event,week_list:0 @@ -715,12 +707,6 @@ msgstr "" msgid "Individual" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -756,7 +742,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -792,13 +778,6 @@ msgstr "" msgid "Basic Alarm Information" msgstr "" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -998,9 +977,10 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" msgstr "" #. module: base_calendar @@ -1051,11 +1031,6 @@ msgstr "" msgid "Interval" msgstr "" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1080,7 +1055,7 @@ msgid "Active" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1173,7 +1148,7 @@ msgstr "" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Done" -msgstr "" +msgstr "Valmis" #. module: base_calendar #: help:calendar.event,interval:0 @@ -1226,7 +1201,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1352,6 +1327,11 @@ msgstr "" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1432,6 +1412,11 @@ msgid "" "email or contains the text to be used for display" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1452,7 +1437,7 @@ msgid "April" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1470,7 +1455,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1483,7 +1468,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" diff --git a/addons/base_calendar/i18n/fa.po b/addons/base_calendar/i18n/fa.po index 35c222626bb..c730358c164 100644 --- a/addons/base_calendar/i18n/fa.po +++ b/addons/base_calendar/i18n/fa.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-04-28 12:19+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -68,12 +68,6 @@ msgstr "" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -255,7 +249,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "" @@ -275,6 +269,13 @@ msgstr "" msgid "Procedure" msgstr "" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -334,14 +335,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "" @@ -364,11 +360,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "" @@ -512,8 +508,8 @@ msgid "Email" msgstr "" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" +#: selection:calendar.attendee,cutype:0 +msgid "Room" msgstr "" #. module: base_calendar @@ -527,7 +523,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -538,11 +534,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -571,10 +565,8 @@ msgid "Caldav URL" msgstr "" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" msgstr "" #. module: base_calendar @@ -607,7 +599,7 @@ msgid "Delegrated To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -715,12 +707,6 @@ msgstr "" msgid "Individual" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -756,7 +742,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -792,13 +778,6 @@ msgstr "" msgid "Basic Alarm Information" msgstr "" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -998,9 +977,10 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" msgstr "" #. module: base_calendar @@ -1051,11 +1031,6 @@ msgstr "" msgid "Interval" msgstr "" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1080,7 +1055,7 @@ msgid "Active" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1226,7 +1201,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1352,6 +1327,11 @@ msgstr "" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1432,6 +1412,11 @@ msgid "" "email or contains the text to be used for display" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1452,7 +1437,7 @@ msgid "April" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1470,7 +1455,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1483,7 +1468,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" diff --git a/addons/base_calendar/i18n/fi.po b/addons/base_calendar/i18n/fi.po index d026e3df2db..66fadf6c78c 100644 --- a/addons/base_calendar/i18n/fi.po +++ b/addons/base_calendar/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:48+0000\n" "Last-Translator: Raphael Collet (OpenERP) \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: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:00+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "Toistuva kokous" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "Vastaanottaja" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Virhe!" @@ -277,6 +271,13 @@ msgstr "" msgid "Procedure" msgstr "Toimintosarja" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "Toiston ID" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Huone" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "Toistuvan ID:n päiväys" @@ -366,11 +362,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Varoitus!" @@ -516,9 +512,9 @@ msgid "Email" msgstr "Sähköposti" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Huone" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -531,7 +527,7 @@ msgid "Event alarm information" msgstr "Tapahtuman hälytystiedot" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -542,11 +538,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -575,11 +569,9 @@ msgid "Caldav URL" msgstr "Caldav URL" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "Toiston ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -611,7 +603,7 @@ msgid "Delegrated To" msgstr "Delegoitu" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -719,12 +711,6 @@ msgstr "Saatavuus" msgid "Individual" msgstr "Yksittäinen" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -760,7 +746,7 @@ msgid "Declined" msgstr "Hylätty" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -796,13 +782,6 @@ msgstr "Yksityisyys" msgid "Basic Alarm Information" msgstr "Perus hälytyksen tiedot" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Ma" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1004,10 +983,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Mihin ryhmiin osallistuja kuulluu" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Ma" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1057,11 +1037,6 @@ msgstr "Liittyy" msgid "Interval" msgstr "Aikaväli" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1086,7 +1061,7 @@ msgid "Active" msgstr "Aktiivinen" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "Et voi kopioida kalenterin mukaista osallistujaa" @@ -1238,7 +1213,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1366,6 +1341,11 @@ msgstr "" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1448,6 +1428,11 @@ msgstr "" "Sisältää tekstin jota käytetään viestin otsikkona sähköposteissa tai " "näytöissä" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1468,7 +1453,7 @@ msgid "April" msgstr "Huhtikuu" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1486,7 +1471,7 @@ msgid "Weekday" msgstr "Arkipäivä" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1499,7 +1484,7 @@ msgid "By day" msgstr "Päivittäin" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" diff --git a/addons/base_calendar/i18n/fr.po b/addons/base_calendar/i18n/fr.po index 3461636dfdd..febbfe7ee71 100644 --- a/addons/base_calendar/i18n/fr.po +++ b/addons/base_calendar/i18n/fr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 18:24+0000\n" "Last-Translator: Jocelyn Duc \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: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -69,12 +69,6 @@ msgstr "Rendez-vous récurrents" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -256,7 +250,7 @@ msgid "To" msgstr "À" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Erreur!" @@ -276,6 +270,13 @@ msgstr "" msgid "Procedure" msgstr "Procédure" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "ID récurrent" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -335,14 +336,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Salle" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "Id. de la date récurrente" @@ -365,11 +361,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Avertissement!" @@ -513,9 +509,9 @@ msgid "Email" msgstr "Courriel" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Salle" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -528,7 +524,7 @@ msgid "Event alarm information" msgstr "Information sur l'alarme de l'évènement" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -539,11 +535,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -572,11 +566,9 @@ msgid "Caldav URL" msgstr "URL caldav" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "ID récurrent" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -608,7 +600,7 @@ msgid "Delegrated To" msgstr "Délégué à" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -716,12 +708,6 @@ msgstr "Disponibilité" msgid "Individual" msgstr "Individuel" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -757,7 +743,7 @@ msgid "Declined" msgstr "Refusé" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -793,13 +779,6 @@ msgstr "Confidentialité" msgid "Basic Alarm Information" msgstr "Information de rappel simple" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Lun" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1000,10 +979,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Indique les groupes auxquels appartient le participant" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Lun" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1053,11 +1033,6 @@ msgstr "En relation avec" msgid "Interval" msgstr "Intervalle" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1082,7 +1057,7 @@ msgid "Active" msgstr "Actif" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "Vous ne pouvez indiquer un participant en double." @@ -1234,7 +1209,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1364,6 +1339,11 @@ msgstr "ir.values" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1444,6 +1424,11 @@ msgid "" "email or contains the text to be used for display" msgstr "Contient le texte à utiliser comme sujet du courriel ou à afficher" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1464,7 +1449,7 @@ msgid "April" msgstr "Avril" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1482,7 +1467,7 @@ msgid "Weekday" msgstr "Jour de la semaine" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1495,7 +1480,7 @@ msgid "By day" msgstr "Par jour" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1855,9 +1840,6 @@ msgstr "Cinquième" #~ msgid "Interval can not be Negative" #~ msgstr "L'intervalle ne peut pas être négatif" -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - #~ msgid "You can not have two users with the same login !" #~ msgstr "Vous ne pouvez pas avoir deux utilisateurs avec le même login !" diff --git a/addons/base_calendar/i18n/gl.po b/addons/base_calendar/i18n/gl.po index fdfb76fdc3b..826209c1297 100644 --- a/addons/base_calendar/i18n/gl.po +++ b/addons/base_calendar/i18n/gl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:51+0000\n" "Last-Translator: Xoan Sampaiño \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "Reunión periódica" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "Para" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Erro!" @@ -277,6 +271,13 @@ msgstr "" msgid "Procedure" msgstr "Procedemento" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "ID recorrente" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Cuarto" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "ID data recorrente" @@ -366,11 +362,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Aviso!" @@ -516,9 +512,9 @@ msgid "Email" msgstr "E-mail" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Cuarto" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -531,7 +527,7 @@ msgid "Event alarm information" msgstr "Información do aviso do evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -542,11 +538,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -575,11 +569,9 @@ msgid "Caldav URL" msgstr "URL de caldav" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "ID recorrente" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -611,7 +603,7 @@ msgid "Delegrated To" msgstr "Delegada en" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -719,12 +711,6 @@ msgstr "Dispoñibilidade" msgid "Individual" msgstr "Individual" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -760,7 +746,7 @@ msgid "Declined" msgstr "Rexeitado" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -796,13 +782,6 @@ msgstr "Intimidade" msgid "Basic Alarm Information" msgstr "Información sobre a alarma básica" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Luns" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1004,10 +983,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Indicar os grupos ós que pertence o asistente" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Luns" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1057,11 +1037,6 @@ msgstr "Relacionado con" msgid "Interval" msgstr "Intervalo" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1086,7 +1061,7 @@ msgid "Active" msgstr "Activo" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1238,7 +1213,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1368,6 +1343,11 @@ msgstr "ir.valores" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.adxunto" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1451,6 +1431,11 @@ msgstr "" "Contén o texto a usar como asunto da mensaxe para correos electrónicos, ou " "contén o texto a amosar" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1471,7 +1456,7 @@ msgid "April" msgstr "Abril" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1489,7 +1474,7 @@ msgid "Weekday" msgstr "Día laborable" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1502,7 +1487,7 @@ msgid "By day" msgstr "Por día" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1671,9 +1656,6 @@ msgstr "Quinto" #~ msgid "Warning !" #~ msgstr "Aviso!" -#~ msgid "ir.attachment" -#~ msgstr "ir.adxunto" - #~ msgid "Yearly" #~ msgstr "Anual" diff --git a/addons/base_calendar/i18n/hr.po b/addons/base_calendar/i18n/hr.po index 47f038ebcb6..2d6d75f3a35 100644 --- a/addons/base_calendar/i18n/hr.po +++ b/addons/base_calendar/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-15 17:00+0000\n" "Last-Translator: Goran Kliska \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-16 04:48+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "Ponavljajući sastanak" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "Sastanak završen." - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "Do" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Greška!" @@ -277,6 +271,13 @@ msgstr "Moji sastanci" msgid "Procedure" msgstr "Procedura" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "Ponavljajući ID" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "Sastanci" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Soba" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "Ponavljajući ID datuma" @@ -368,11 +364,11 @@ msgstr "" "da bi mogao biti ubačen u kanban pogled." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Upozorenje!" @@ -516,9 +512,9 @@ msgid "Email" msgstr "E-pošta" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "CRM Sastanak: Označi kao nepročitano" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Soba" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -531,7 +527,7 @@ msgid "Event alarm information" msgstr "Informacija alarma događaja" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "Broj ne smije biti negativan ili 0." @@ -542,11 +538,9 @@ msgid "Creation Date" msgstr "Datum kreiranja" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "Sastanak" @@ -575,11 +569,9 @@ msgid "Caldav URL" msgstr "CalDAV URL" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "Ponavljajući ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -611,7 +603,7 @@ msgid "Delegrated To" msgstr "Proslijeđeno" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "Za ove osobe nemamo email adresu:" @@ -719,12 +711,6 @@ msgstr "Raspoloživost" msgid "Individual" msgstr "Pojedinačno" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "Sastanak potvrđen." - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -760,7 +746,7 @@ msgid "Declined" msgstr "Odbijeno" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "Grupiranje po datumu nije podržano. Koristite kalendar." @@ -796,13 +782,6 @@ msgstr "Privatnost" msgid "Basic Alarm Information" msgstr "Osnovni podaci alarma" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Pon" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1002,10 +981,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Označite grupe kojima sudionik pripada" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "Komentari i emailovi." +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Pon" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1055,11 +1035,6 @@ msgstr "Povezano sa" msgid "Interval" msgstr "Razdoblje" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "CRM sastanak: Označi kao pročitano" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1084,7 +1059,7 @@ msgid "Active" msgstr "Aktivan" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1236,7 +1211,7 @@ msgid "Select Weekdays" msgstr "Odabir dana u tjednu" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1364,6 +1339,11 @@ msgstr "ir.values" msgid "Search Meetings" msgstr "Traži sastanke" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1453,6 +1433,11 @@ msgstr "" "Sadrži tekst koji će se koristiti kao naslov poruke za e-poštu ili sadrži " "tekst koji će se koristiti za prikaz" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1473,7 +1458,7 @@ msgid "April" msgstr "Travanj" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "Email adrese koje nisu pronađene" @@ -1491,7 +1476,7 @@ msgid "Weekday" msgstr "Dan u tjednu" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "Interval ne može biti negativan" @@ -1504,7 +1489,7 @@ msgid "By day" msgstr "Po danu" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "Navedite datum pozivnice" @@ -1833,9 +1818,6 @@ msgstr "Peti" #~ msgid "Partner" #~ msgstr "Stranka" -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - #~ msgid "res.users" #~ msgstr "res.users" diff --git a/addons/base_calendar/i18n/hu.po b/addons/base_calendar/i18n/hu.po index 4e0f4ab2ff6..3eccfdffab9 100644 --- a/addons/base_calendar/i18n/hu.po +++ b/addons/base_calendar/i18n/hu.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 18:13+0000\n" "Last-Translator: Krisztian Eyssen \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: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -67,12 +67,6 @@ msgstr "Ismétlődő megbeszélések" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -254,7 +248,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Hiba!" @@ -274,6 +268,13 @@ msgstr "" msgid "Procedure" msgstr "Eljárás" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "Időszakos ID" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -333,14 +334,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Szoba" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "Időszakos ID dátuma" @@ -363,11 +359,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Vigyázat!" @@ -511,9 +507,9 @@ msgid "Email" msgstr "E-mail" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Szoba" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -526,7 +522,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -537,11 +533,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -570,11 +564,9 @@ msgid "Caldav URL" msgstr "CalDAV URL" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "Időszakos ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -606,7 +598,7 @@ msgid "Delegrated To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -714,12 +706,6 @@ msgstr "Elérhetőség" msgid "Individual" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -755,7 +741,7 @@ msgid "Declined" msgstr "Elutasítva" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -791,13 +777,6 @@ msgstr "Adatvédelem" msgid "Basic Alarm Information" msgstr "" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "H" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -997,10 +976,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "H" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1050,11 +1030,6 @@ msgstr "" msgid "Interval" msgstr "Intervallum" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1079,7 +1054,7 @@ msgid "Active" msgstr "Aktív" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1225,7 +1200,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1351,6 +1326,11 @@ msgstr "ir.values" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1431,6 +1411,11 @@ msgid "" "email or contains the text to be used for display" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1451,7 +1436,7 @@ msgid "April" msgstr "Április" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1469,7 +1454,7 @@ msgid "Weekday" msgstr "Hétköznap" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1482,7 +1467,7 @@ msgid "By day" msgstr "Nappal" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1646,9 +1631,6 @@ msgstr "Ötödik" #~ msgid "Warning !" #~ msgstr "Vigyázat!" -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - #~ msgid "Yearly" #~ msgstr "Éves" diff --git a/addons/base_calendar/i18n/id.po b/addons/base_calendar/i18n/id.po index d86efe7ae28..2d316582bb9 100644 --- a/addons/base_calendar/i18n/id.po +++ b/addons/base_calendar/i18n/id.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-08-27 02:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "Pertemuan yang Berulang" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "" @@ -277,6 +271,13 @@ msgstr "" msgid "Procedure" msgstr "" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "" @@ -366,11 +362,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "" @@ -514,8 +510,8 @@ msgid "Email" msgstr "" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" +#: selection:calendar.attendee,cutype:0 +msgid "Room" msgstr "" #. module: base_calendar @@ -529,7 +525,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -540,11 +536,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -573,10 +567,8 @@ msgid "Caldav URL" msgstr "" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" msgstr "" #. module: base_calendar @@ -609,7 +601,7 @@ msgid "Delegrated To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -717,12 +709,6 @@ msgstr "" msgid "Individual" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -758,7 +744,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -794,13 +780,6 @@ msgstr "" msgid "Basic Alarm Information" msgstr "" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1000,9 +979,10 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" msgstr "" #. module: base_calendar @@ -1053,11 +1033,6 @@ msgstr "" msgid "Interval" msgstr "" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1082,7 +1057,7 @@ msgid "Active" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1228,7 +1203,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1354,6 +1329,11 @@ msgstr "" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1434,6 +1414,11 @@ msgid "" "email or contains the text to be used for display" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1454,7 +1439,7 @@ msgid "April" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1472,7 +1457,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1485,7 +1470,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" diff --git a/addons/base_calendar/i18n/it.po b/addons/base_calendar/i18n/it.po index 1fa6184e2e1..102800f4264 100644 --- a/addons/base_calendar/i18n/it.po +++ b/addons/base_calendar/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-15 15:25+0000\n" "Last-Translator: Davide Corio - agilebg.com \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-16 04:48+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "Meeting ricorsivo" msgid "Feedback Meeting" msgstr "Feedback del meeting" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "Meeting completo." - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "A" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Errore!" @@ -277,6 +271,13 @@ msgstr "I Miei Meeting" msgid "Procedure" msgstr "Procedura" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "ID ricorrente" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "Meetings" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Stanza" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "Data dell'ID ricorrente" @@ -368,11 +364,11 @@ msgstr "" "direttamente in html così da poter essere inserito nelle viste kanban." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Attenzione!" @@ -518,9 +514,9 @@ msgid "Email" msgstr "Email" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "Meeting CRM: imposta come non letti" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Stanza" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -533,7 +529,7 @@ msgid "Event alarm information" msgstr "Informazioni avviso evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "Il conteggio non può essere negativo o zero." @@ -544,11 +540,9 @@ msgid "Creation Date" msgstr "Data di Creazione" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "Meeting" @@ -577,11 +571,9 @@ msgid "Caldav URL" msgstr "URL Caldav" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "ID ricorrente" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -613,7 +605,7 @@ msgid "Delegrated To" msgstr "Delegato a" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "I sequenti contatti non hanno indirizzo email:" @@ -721,12 +713,6 @@ msgstr "Disponibilità" msgid "Individual" msgstr "Individuale" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "Appuntamento confermato." - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -763,7 +749,7 @@ msgid "Declined" msgstr "Rifiutato" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "Raggruppo per data non supportato, usa la vista calendario." @@ -799,13 +785,6 @@ msgstr "Privacy" msgid "Basic Alarm Information" msgstr "Informazioni avviso base" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Lun" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1007,10 +986,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Indica i gruppi a cui il partecipante appartiene" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "Commenti ed Email" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Lun" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1060,11 +1040,6 @@ msgstr "Relativo a" msgid "Interval" msgstr "Intervallo" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "Appuntamento CRM: Marca come letto" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1089,7 +1064,7 @@ msgid "Active" msgstr "Attivo" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "Impossibile duplicare un partecipante" @@ -1250,7 +1225,7 @@ msgid "Select Weekdays" msgstr "Giorni selezionati" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1379,6 +1354,11 @@ msgstr "ir.values" msgid "Search Meetings" msgstr "Ricerca appuntamenti" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1470,6 +1450,11 @@ msgstr "" "per email, oppure contiene il testo usato per la " "visualizzazione" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1490,7 +1475,7 @@ msgid "April" msgstr "Aprile" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "Indirizzo email non trovato" @@ -1508,7 +1493,7 @@ msgid "Weekday" msgstr "Giorno della settimana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "L'intervallo non può essere negativo" @@ -1521,7 +1506,7 @@ msgid "By day" msgstr "Per giorno" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "E' necessario prima specificare la data dell'invito" @@ -1680,9 +1665,6 @@ msgstr "Quinto" #~ msgid "Warning !" #~ msgstr "Attenzione !" -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - #~ msgid "No Repeat" #~ msgstr "Nessuna ripetizione" diff --git a/addons/base_calendar/i18n/ja.po b/addons/base_calendar/i18n/ja.po index 1bea9e5ff35..aa7763eeb99 100644 --- a/addons/base_calendar/i18n/ja.po +++ b/addons/base_calendar/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-06-08 02:32+0000\n" "Last-Translator: Akira Hiyama \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -68,12 +68,6 @@ msgstr "定期ミーティング" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -255,7 +249,7 @@ msgid "To" msgstr "終了" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "エラー" @@ -275,6 +269,13 @@ msgstr "" msgid "Procedure" msgstr "手続き" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "定期ID" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -334,14 +335,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "部屋" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "定期ID日付" @@ -364,11 +360,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "警告" @@ -512,9 +508,9 @@ msgid "Email" msgstr "Eメール" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "部屋" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -527,7 +523,7 @@ msgid "Event alarm information" msgstr "イベントアラーム情報" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -538,11 +534,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -571,11 +565,9 @@ msgid "Caldav URL" msgstr "CalDAVのURL" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "定期ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -607,7 +599,7 @@ msgid "Delegrated To" msgstr "委任先" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -715,12 +707,6 @@ msgstr "利用可能" msgid "Individual" msgstr "個人" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -756,7 +742,7 @@ msgid "Declined" msgstr "拒否済" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -792,13 +778,6 @@ msgstr "プライバシー" msgid "Basic Alarm Information" msgstr "基本アラーム情報" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "月" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -998,10 +977,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "出席者が属すグループを示して下さい。" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "月" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1051,11 +1031,6 @@ msgstr "関連先" msgid "Interval" msgstr "間隔" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1080,7 +1055,7 @@ msgid "Active" msgstr "アクティブ" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "カレンダーの出席者は重複できません。" @@ -1226,7 +1201,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1352,6 +1327,11 @@ msgstr "" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1432,6 +1412,11 @@ msgid "" "email or contains the text to be used for display" msgstr "Eメールのメッセージの件名として使用されるテキスト、あるいは表示に使用するためのテキストが含まれています。" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1452,7 +1437,7 @@ msgid "April" msgstr "4月" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1470,7 +1455,7 @@ msgid "Weekday" msgstr "平日" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1483,7 +1468,7 @@ msgid "By day" msgstr "日別" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" diff --git a/addons/base_calendar/i18n/ln.po b/addons/base_calendar/i18n/ln.po index 8e5decc1d70..7242daee13a 100644 --- a/addons/base_calendar/i18n/ln.po +++ b/addons/base_calendar/i18n/ln.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-05-30 11:47+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Lingala \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -68,12 +68,6 @@ msgstr "" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -255,7 +249,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "" @@ -275,6 +269,13 @@ msgstr "" msgid "Procedure" msgstr "" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -334,14 +335,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "" @@ -364,11 +360,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "" @@ -512,8 +508,8 @@ msgid "Email" msgstr "Nkandá" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" +#: selection:calendar.attendee,cutype:0 +msgid "Room" msgstr "" #. module: base_calendar @@ -527,7 +523,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -538,11 +534,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -571,10 +565,8 @@ msgid "Caldav URL" msgstr "" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" msgstr "" #. module: base_calendar @@ -607,7 +599,7 @@ msgid "Delegrated To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -715,12 +707,6 @@ msgstr "" msgid "Individual" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -756,7 +742,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -792,13 +778,6 @@ msgstr "" msgid "Basic Alarm Information" msgstr "" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Mɔ́k" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -998,10 +977,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Mɔ́k" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1051,11 +1031,6 @@ msgstr "" msgid "Interval" msgstr "" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1080,7 +1055,7 @@ msgid "Active" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1226,7 +1201,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1352,6 +1327,11 @@ msgstr "" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1432,6 +1412,11 @@ msgid "" "email or contains the text to be used for display" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1452,7 +1437,7 @@ msgid "April" msgstr "apríli" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1470,7 +1455,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1483,7 +1468,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1622,9 +1607,6 @@ msgstr "" #~ msgid " " #~ msgstr " " -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - #~ msgid "Years" #~ msgstr "Mibú" diff --git a/addons/base_calendar/i18n/lt.po b/addons/base_calendar/i18n/lt.po index 6b06c6017dc..ccb50899cd2 100644 --- a/addons/base_calendar/i18n/lt.po +++ b/addons/base_calendar/i18n/lt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 18:21+0000\n" "Last-Translator: Paulius Sladkevičius \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -68,12 +68,6 @@ msgstr "" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -255,7 +249,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Klaida!" @@ -275,6 +269,13 @@ msgstr "" msgid "Procedure" msgstr "Procedūra" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -334,14 +335,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Kambarys" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "" @@ -364,11 +360,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Įspėjimas!" @@ -512,9 +508,9 @@ msgid "Email" msgstr "El. paštas" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Kambarys" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -527,7 +523,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -538,11 +534,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -571,10 +565,8 @@ msgid "Caldav URL" msgstr "" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" msgstr "" #. module: base_calendar @@ -607,7 +599,7 @@ msgid "Delegrated To" msgstr "Deleguoti" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -715,12 +707,6 @@ msgstr "Prieinamumas" msgid "Individual" msgstr "Asmeninis" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -756,7 +742,7 @@ msgid "Declined" msgstr "Atsisakyta" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -792,13 +778,6 @@ msgstr "Privatumas" msgid "Basic Alarm Information" msgstr "" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Pirm." - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -998,10 +977,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Pirm." #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1051,11 +1031,6 @@ msgstr "Susijęs su" msgid "Interval" msgstr "Intervalas" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1080,7 +1055,7 @@ msgid "Active" msgstr "Aktyvus" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1226,7 +1201,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1352,6 +1327,11 @@ msgstr "" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1432,6 +1412,11 @@ msgid "" "email or contains the text to be used for display" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1452,7 +1437,7 @@ msgid "April" msgstr "Balandis" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1470,7 +1455,7 @@ msgid "Weekday" msgstr "Savaitės diena" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1483,7 +1468,7 @@ msgid "By day" msgstr "Pagal dieną" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" diff --git a/addons/base_calendar/i18n/lv.po b/addons/base_calendar/i18n/lv.po index 9ea4cb153da..69ae502c7d3 100644 --- a/addons/base_calendar/i18n/lv.po +++ b/addons/base_calendar/i18n/lv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:54+0000\n" "Last-Translator: Raphael Collet (OpenERP) \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Kļūda!" @@ -277,6 +271,13 @@ msgstr "" msgid "Procedure" msgstr "" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "Atkārtošanās ID" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Istaba" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "Atkārtošanās ID datums" @@ -366,11 +362,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Uzmanību!" @@ -514,9 +510,9 @@ msgid "Email" msgstr "E-pasts" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Istaba" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -529,7 +525,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -540,11 +536,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -573,11 +567,9 @@ msgid "Caldav URL" msgstr "Caldav URL" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "Atkārtošanās ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -609,7 +601,7 @@ msgid "Delegrated To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -717,12 +709,6 @@ msgstr "Pieejamība" msgid "Individual" msgstr "Individuāli" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -758,7 +744,7 @@ msgid "Declined" msgstr "Noraidīts" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -794,13 +780,6 @@ msgstr "Privātums" msgid "Basic Alarm Information" msgstr "" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Pi" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1000,10 +979,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Pi" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1053,11 +1033,6 @@ msgstr "" msgid "Interval" msgstr "Intervāls" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1082,7 +1057,7 @@ msgid "Active" msgstr "Aktīvs" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1228,7 +1203,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1356,6 +1331,11 @@ msgstr "ir.values" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1436,6 +1416,11 @@ msgid "" "email or contains the text to be used for display" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1456,7 +1441,7 @@ msgid "April" msgstr "Aprīlis" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1474,7 +1459,7 @@ msgid "Weekday" msgstr "Nedēļas diena" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1487,7 +1472,7 @@ msgid "By day" msgstr "Pēc dienas" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1651,9 +1636,6 @@ msgstr "" #~ msgid "Warning !" #~ msgstr "Uzmanību!" -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - #~ msgid "Yearly" #~ msgstr "Ik gadu" diff --git a/addons/base_calendar/i18n/mk.po b/addons/base_calendar/i18n/mk.po index ccb1be9db70..ace691f0732 100644 --- a/addons/base_calendar/i18n/mk.po +++ b/addons/base_calendar/i18n/mk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-09-17 15:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Macedonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -68,12 +68,6 @@ msgstr "" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -255,7 +249,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "" @@ -275,6 +269,13 @@ msgstr "" msgid "Procedure" msgstr "" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -334,14 +335,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "" @@ -364,11 +360,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "" @@ -512,8 +508,8 @@ msgid "Email" msgstr "" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" +#: selection:calendar.attendee,cutype:0 +msgid "Room" msgstr "" #. module: base_calendar @@ -527,7 +523,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -538,11 +534,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -571,10 +565,8 @@ msgid "Caldav URL" msgstr "" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" msgstr "" #. module: base_calendar @@ -607,7 +599,7 @@ msgid "Delegrated To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -715,12 +707,6 @@ msgstr "" msgid "Individual" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -756,7 +742,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -792,13 +778,6 @@ msgstr "" msgid "Basic Alarm Information" msgstr "" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -998,9 +977,10 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" msgstr "" #. module: base_calendar @@ -1051,11 +1031,6 @@ msgstr "" msgid "Interval" msgstr "" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1080,7 +1055,7 @@ msgid "Active" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1226,7 +1201,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1352,6 +1327,11 @@ msgstr "" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1432,6 +1412,11 @@ msgid "" "email or contains the text to be used for display" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1452,7 +1437,7 @@ msgid "April" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1470,7 +1455,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1483,7 +1468,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" diff --git a/addons/base_calendar/i18n/mn.po b/addons/base_calendar/i18n/mn.po index 2e85e116b7a..75388ce8e34 100644 --- a/addons/base_calendar/i18n/mn.po +++ b/addons/base_calendar/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:37+0000\n" "Last-Translator: Raphael Collet (OpenERP) \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: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "Давтагдах Уулзалт" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "Хэнд" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Алдаа!" @@ -277,6 +271,13 @@ msgstr "" msgid "Procedure" msgstr "Хийх ажил" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "Давтагдсан ID" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Өрөө" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "ID давтагдсан огноо" @@ -366,11 +362,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Сануулга!" @@ -516,9 +512,9 @@ msgid "Email" msgstr "Э-мэйл" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Өрөө" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -531,7 +527,7 @@ msgid "Event alarm information" msgstr "Үйл явдлын мэдээлэл" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -542,11 +538,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -575,11 +569,9 @@ msgid "Caldav URL" msgstr "Caldav URL" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "Давтагдсан ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -611,7 +603,7 @@ msgid "Delegrated To" msgstr "Ацаглагдсан" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -719,12 +711,6 @@ msgstr "Боломжтой" msgid "Individual" msgstr "Хувийн" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -760,7 +746,7 @@ msgid "Declined" msgstr "Буурсан" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -796,13 +782,6 @@ msgstr "Хувийн" msgid "Basic Alarm Information" msgstr "Үндсэн дохионы мэдээлэл" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Да" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1002,10 +981,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Оролцогсдын харъяалагдах группүүд" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Да" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1055,11 +1035,6 @@ msgstr "Холбоотой" msgid "Interval" msgstr "Завсар" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1084,7 +1059,7 @@ msgid "Active" msgstr "Идэвхитэй" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "Цаглабарын ирцыг хувилж болохгүй" @@ -1234,7 +1209,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1360,6 +1335,11 @@ msgstr "ir.values" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1442,6 +1422,11 @@ msgstr "" "Текст байх агуулагч мэссэжийн гарчгийг имэйлд хэрэглэсэн " " буюу агуулагчийн текстийг дэлгэцэнд хэрэглэсэн" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1462,7 +1447,7 @@ msgid "April" msgstr "4 сар" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1480,7 +1465,7 @@ msgid "Weekday" msgstr "Ажлын өдөр" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1493,7 +1478,7 @@ msgid "By day" msgstr "Өдрөөр" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1740,9 +1725,6 @@ msgstr "5 дахь" #~ msgid "Show as" #~ msgstr "Үзүүлэх" -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - #~ msgid "Show time as" #~ msgstr "Үзүүлэх цаг" diff --git a/addons/base_calendar/i18n/nb.po b/addons/base_calendar/i18n/nb.po index 528dcf606a1..de51747136f 100644 --- a/addons/base_calendar/i18n/nb.po +++ b/addons/base_calendar/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-10 14:52+0000\n" "Last-Translator: Kaare Pettersen \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-11 04:49+0000\n" -"X-Generator: Launchpad (build 16356)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "Gjentagende møte." msgid "Feedback Meeting" msgstr "Tilbakemelding møte." -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "MøteFullført." - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "Til." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Feil!" @@ -277,6 +271,13 @@ msgstr "Mine møter." msgid "Procedure" msgstr "Prosedyre." +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "Tilbakevendende ID." + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "Møter." #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Rom" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "Gjentagende ID dato." @@ -366,11 +362,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Advarsel!" @@ -516,9 +512,9 @@ msgid "Email" msgstr "E-post." #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "CRM Møte: Merk som ulest." +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Rom" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -531,7 +527,7 @@ msgid "Event alarm information" msgstr "Arrangement alarm informasjon." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "Teller kan ikke være negativ eller 0." @@ -542,11 +538,9 @@ msgid "Creation Date" msgstr "Opprettelses dato." #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "Møte." @@ -575,11 +569,9 @@ msgid "Caldav URL" msgstr "CalDAV URL." #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "Tilbakevendende ID." +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -611,7 +603,7 @@ msgid "Delegrated To" msgstr "Delegert til." #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "Følgende kontakter har ingen e-postadresse:" @@ -719,12 +711,6 @@ msgstr "Tilgjengelighet." msgid "Individual" msgstr "Individuell." -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "Møtebekreftet." - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -760,7 +746,7 @@ msgid "Declined" msgstr "Avslått." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "Gruppe etter dato støttes ikke, bruk kalenderens visning i stedet." @@ -796,13 +782,6 @@ msgstr "Privat." msgid "Basic Alarm Information" msgstr "Grunnleggende alarm informasjon." -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Man." - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1002,10 +981,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Indikere de gruppene som deltakeren tilhører." #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "Kommentarer og E-poster." +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Man." #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1055,11 +1035,6 @@ msgstr "Relatert til." msgid "Interval" msgstr "Intervall" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "CRM Møte: Merk som lest." - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1084,7 +1059,7 @@ msgid "Active" msgstr "Aktiv." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "Du kan ikke kopiere en kalender av deltaker." @@ -1230,7 +1205,7 @@ msgid "Select Weekdays" msgstr "Velg Hverdager." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1358,6 +1333,11 @@ msgstr "Ir.Verdier." msgid "Search Meetings" msgstr "Søk møter." +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1438,6 +1418,11 @@ msgid "" "email or contains the text to be used for display" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1458,7 +1443,7 @@ msgid "April" msgstr "April." #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "E-post adresse ikke funnet." @@ -1476,7 +1461,7 @@ msgid "Weekday" msgstr "Hverdag." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "Intervall kan ikke være negativ." @@ -1489,7 +1474,7 @@ msgid "By day" msgstr "Pr. dag." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "Først må du angi dato for invitasjonen." @@ -1647,9 +1632,6 @@ msgstr "Femte." #~ msgid "Warning !" #~ msgstr "Advarsel !" -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - #~ msgid "Yearly" #~ msgstr "Årlig" diff --git a/addons/base_calendar/i18n/nl.po b/addons/base_calendar/i18n/nl.po index 5c5b1dc8f99..6e859090611 100644 --- a/addons/base_calendar/i18n/nl.po +++ b/addons/base_calendar/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-12 20:35+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-13 04:44+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:00+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "Terugkerende afspraak" msgid "Feedback Meeting" msgstr "Feedback afspraak" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "Afspraak afgerond." - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "Aan" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Fout!" @@ -277,6 +271,13 @@ msgstr "Mijn afspraken" msgid "Procedure" msgstr "Werkwijze" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "Terugkerend ID" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "Afspraken" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Zaal" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "Herhaling ID datum" @@ -369,11 +365,11 @@ msgstr "" "ingevoegd." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Waarschuwing!" @@ -519,9 +515,9 @@ msgid "Email" msgstr "E-mail" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "CRM Afspraak: Markeer als ongelezen" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Zaal" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -534,7 +530,7 @@ msgid "Event alarm information" msgstr "Alarminformatie gebeurtenis" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "telling mag niet negatief of nul zijn." @@ -545,11 +541,9 @@ msgid "Creation Date" msgstr "Aanmaakdatum" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "Afspraak" @@ -578,11 +572,9 @@ msgid "Caldav URL" msgstr "Caldav URL" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "Terugkerend ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -614,7 +606,7 @@ msgid "Delegrated To" msgstr "Toegewezen aan" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "De volgende contactpersonen hebben geen e-mail adres:" @@ -722,12 +714,6 @@ msgstr "Beschikbaarheid" msgid "Individual" msgstr "Persoon" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "Afspraak bevestigt." - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -763,7 +749,7 @@ msgid "Declined" msgstr "Geweigerd" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -801,13 +787,6 @@ msgstr "Privacy" msgid "Basic Alarm Information" msgstr "Basis alarm informatie" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Maa" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1009,10 +988,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Geeft de groepen aan waar de deelnemer bij behoort" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "Opmerkingen en e-mails." +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Maa" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1062,11 +1042,6 @@ msgstr "Begin of eind" msgid "Interval" msgstr "Interval" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "CRM Afspraak: Markeer als gelezen" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1091,7 +1066,7 @@ msgid "Active" msgstr "Actief" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "U kunt een kalender deelnemer niet kopieren" @@ -1250,7 +1225,7 @@ msgid "Select Weekdays" msgstr "Selecteer dagen van de qweek" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1380,6 +1355,11 @@ msgstr "ir.values" msgid "Search Meetings" msgstr "Zoek afspraken" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1469,6 +1449,11 @@ msgstr "" "Bevat de tekst om te gebruiken als email bericht onderwerp of bevat de tekst " "voor weergave" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1489,7 +1474,7 @@ msgid "April" msgstr "April" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "E-mail adressen neit gevonden" @@ -1507,7 +1492,7 @@ msgid "Weekday" msgstr "Weekdag" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "Interval mag niet negatief zijn." @@ -1520,7 +1505,7 @@ msgid "By day" msgstr "Op dag" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "Eerst dient u de datum van de uitnodiging in te geven." @@ -1678,9 +1663,6 @@ msgstr "Vijfde" #~ msgid "Warning !" #~ msgstr "Waarschuwing !" -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - #~ msgid "Edit all Occurrences" #~ msgstr "Reeks bewerken" diff --git a/addons/base_calendar/i18n/pl.po b/addons/base_calendar/i18n/pl.po index 7a89a9a6ebd..915051d66a2 100644 --- a/addons/base_calendar/i18n/pl.po +++ b/addons/base_calendar/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-13 21:03+0000\n" "Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \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: 2012-12-14 05:38+0000\n" -"X-Generator: Launchpad (build 16369)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "Spotanie powtarzalne" msgid "Feedback Meeting" msgstr "Odpowiedzi do spotkania" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "Spotkanie odbyte." - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "Do" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Błąd!" @@ -277,6 +271,13 @@ msgstr "Moje spotkania" msgid "Procedure" msgstr "Procedura" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "Rekurencyjne ID" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "Spotkania" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Pomieszczenie" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "Data ID powtarzalności" @@ -366,11 +362,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Uwaga!" @@ -516,9 +512,9 @@ msgid "Email" msgstr "E-mail" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "Spotkanie CRM: Oznacz jako nieprzeczytane" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Pomieszczenie" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -531,7 +527,7 @@ msgid "Event alarm information" msgstr "Informacja alarmu zdarzenia" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "Licznik nie może być 0" @@ -542,11 +538,9 @@ msgid "Creation Date" msgstr "Data utworzenia" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "Spotkanie" @@ -575,11 +569,9 @@ msgid "Caldav URL" msgstr "Caldav URL" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "Rekurencyjne ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -611,7 +603,7 @@ msgid "Delegrated To" msgstr "Przydzielono dla" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "Te kontakty nie mają adresów email :" @@ -719,12 +711,6 @@ msgstr "Dostępność" msgid "Individual" msgstr "Indywidualne" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "Spotkanie potwierdzone." - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -760,7 +746,7 @@ msgid "Declined" msgstr "Odrzucono" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "Grupowanie po dacie nie jest dostępne. Stosuj widok kalendarzowy." @@ -796,13 +782,6 @@ msgstr "Prywatność" msgid "Basic Alarm Information" msgstr "Podstawowe informacje o alarmie" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Pon" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1002,10 +981,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Wskaż grupy, do których należy uczestnik" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "Komentarze i emaile" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Pon" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1055,11 +1035,6 @@ msgstr "Powiązany z" msgid "Interval" msgstr "Interwał" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "Spotkanie CRM: Oznacz jako przeczytane" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1084,7 +1059,7 @@ msgid "Active" msgstr "Aktywne" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "Nie możesz duplikować uczestników kalendarza." @@ -1242,7 +1217,7 @@ msgid "Select Weekdays" msgstr "Wybierz dni tygodnia" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1371,6 +1346,11 @@ msgstr "" msgid "Search Meetings" msgstr "Przeszukuj spotkania" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1458,6 +1438,11 @@ msgid "" "email or contains the text to be used for display" msgstr "Zawiera tekst tematu dla wiadomości lub tekst do wyświetlania" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1478,7 +1463,7 @@ msgid "April" msgstr "Kwiecień" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "Nie znaleziono adresu" @@ -1496,7 +1481,7 @@ msgid "Weekday" msgstr "Dzień tygodnia" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "Interwał nie może być ujemny." @@ -1509,7 +1494,7 @@ msgid "By day" msgstr "Co dzień" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" diff --git a/addons/base_calendar/i18n/pt.po b/addons/base_calendar/i18n/pt.po index 695586bfcd8..54a9c6e6876 100644 --- a/addons/base_calendar/i18n/pt.po +++ b/addons/base_calendar/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-17 12:32+0000\n" "Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-18 05:01+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "Reunião recorrente" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "Reunião completada." - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "Para" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Erro!" @@ -277,6 +271,13 @@ msgstr "As minhas reuniões" msgid "Procedure" msgstr "Procedimento" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "Recorrente ID" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "Reuniões" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Sala" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "Recurrent ID date" @@ -366,11 +362,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Atenção!" @@ -516,9 +512,9 @@ msgid "Email" msgstr "E-mail" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Sala" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -531,7 +527,7 @@ msgid "Event alarm information" msgstr "Informações do alarme do evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -542,11 +538,9 @@ msgid "Creation Date" msgstr "Data de criação" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "Reunião" @@ -575,11 +569,9 @@ msgid "Caldav URL" msgstr "Caldav URL" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "Recorrente ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -611,7 +603,7 @@ msgid "Delegrated To" msgstr "Delegado a" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -719,12 +711,6 @@ msgstr "Disponibilidade" msgid "Individual" msgstr "Individual" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -760,7 +746,7 @@ msgid "Declined" msgstr "Negado" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -796,13 +782,6 @@ msgstr "Privacidade" msgid "Basic Alarm Information" msgstr "Informação para alerta simples" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Seg" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1004,10 +983,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Indique os grupos que o participante pertence ao" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Seg" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1057,11 +1037,6 @@ msgstr "Relacionado com" msgid "Interval" msgstr "Interval" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1086,7 +1061,7 @@ msgid "Active" msgstr "Activo" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "Não pode duplicar um participante no calendário." @@ -1238,7 +1213,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1368,6 +1343,11 @@ msgstr "ir.values" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1450,6 +1430,11 @@ msgstr "" "Contém o texto a ser usado como o assunto da mensagem " "de e-mail ou contém o texto a ser usado para exibição" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1470,7 +1455,7 @@ msgid "April" msgstr "Abril" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1488,7 +1473,7 @@ msgid "Weekday" msgstr "Dia de semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1501,7 +1486,7 @@ msgid "By day" msgstr "Por dia" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1662,9 +1647,6 @@ msgstr "Quinto" #~ msgid "Warning !" #~ msgstr "Atenção!" -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - #~ msgid "Yearly" #~ msgstr "Anualmente" diff --git a/addons/base_calendar/i18n/pt_BR.po b/addons/base_calendar/i18n/pt_BR.po index 6b36e32af9c..e8c09781300 100644 --- a/addons/base_calendar/i18n/pt_BR.po +++ b/addons/base_calendar/i18n/pt_BR.po @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-12-16 23:48+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-22 01:03+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " "\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-18 05:02+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-23 04:41+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -71,12 +71,6 @@ msgstr "Compromisso Recorrente" msgid "Feedback Meeting" msgstr "Reunião de feedback" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "Reunião concluída." - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -258,7 +252,7 @@ msgid "To" msgstr "Para" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Erro!" @@ -278,6 +272,13 @@ msgstr "Minhas Reuniões" msgid "Procedure" msgstr "Procedimento" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "ID Recorrente" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -337,14 +338,9 @@ msgid "Meetings" msgstr "Reuniões" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Sala" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "ID de data recorrente" @@ -370,11 +366,11 @@ msgstr "" "kanban." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Aviso!" @@ -520,9 +516,9 @@ msgid "Email" msgstr "Email" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "CRM Reunião : Marcar como não lida" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Sala" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -535,7 +531,7 @@ msgid "Event alarm information" msgstr "Informações do Alarme de Evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "Contador não pode ser negativo ou 0." @@ -546,11 +542,9 @@ msgid "Creation Date" msgstr "Data de Criação" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "Reunião" @@ -579,11 +573,9 @@ msgid "Caldav URL" msgstr "Caldav URL" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "ID Recorrente" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "Assistente de Convite" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -615,7 +607,7 @@ msgid "Delegrated To" msgstr "Delegado para" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "Os seguintes contatos não possuem e-mail:" @@ -723,12 +715,6 @@ msgstr "Disponibilidade" msgid "Individual" msgstr "Individual" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "Reunião confirmada." - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -764,7 +750,7 @@ msgid "Declined" msgstr "Recusado" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -802,13 +788,6 @@ msgstr "Privacidade" msgid "Basic Alarm Information" msgstr "Informação básica do Alarme" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Seg" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1010,10 +989,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Indica os grupos aos quais os participantes pertencem" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "Comentários e emails" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Seg" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1063,11 +1043,6 @@ msgstr "Relacionado a" msgid "Interval" msgstr "Intervalo" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "CRM Reunião: Marcar como lida" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1092,7 +1067,7 @@ msgid "Active" msgstr "Ativo" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "Você não pode duplicar um participante do calendário." @@ -1253,7 +1228,7 @@ msgid "Select Weekdays" msgstr "Selecione dias da semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1383,6 +1358,11 @@ msgstr "ir.values" msgid "Search Meetings" msgstr "Procurar Reuniões" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1474,6 +1454,11 @@ msgstr "" "Contém o texto que será utilizado como título de mensagem para o email ou " "contém o texto a ser usado para exibição." +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "Mensagem" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1494,7 +1479,7 @@ msgid "April" msgstr "Abril" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "Email não encontrado" @@ -1512,7 +1497,7 @@ msgid "Weekday" msgstr "Dia da semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "O intervalo não pode ser negativo" @@ -1525,7 +1510,7 @@ msgid "By day" msgstr "Por dia" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "Especifique primeiro a data do convite." @@ -1697,9 +1682,6 @@ msgstr "Quinto" #~ msgid "Show time as" #~ msgstr "Mostrar horário como" -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - #~ msgid "Edit all Occurrences" #~ msgstr "Editar todas as Ocorrências" diff --git a/addons/base_calendar/i18n/ro.po b/addons/base_calendar/i18n/ro.po index 75b2e65fc30..a3c477c76c9 100644 --- a/addons/base_calendar/i18n/ro.po +++ b/addons/base_calendar/i18n/ro.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:48+0000\n" "Last-Translator: Raphael Collet (OpenERP) \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "Intalnire recurenta" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "Catre" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Eroare!" @@ -277,6 +271,13 @@ msgstr "" msgid "Procedure" msgstr "Procedura" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "ID recurent" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Camera" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "Data ID-ului recurent" @@ -366,11 +362,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Avertizare!" @@ -516,9 +512,9 @@ msgid "Email" msgstr "E-Mail" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Camera" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -531,7 +527,7 @@ msgid "Event alarm information" msgstr "Informatii alarma eveniment" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -542,11 +538,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -575,11 +569,9 @@ msgid "Caldav URL" msgstr "URL Caldav" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "ID recurent" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -611,7 +603,7 @@ msgid "Delegrated To" msgstr "Delegat la" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -719,12 +711,6 @@ msgstr "Disponibilitate" msgid "Individual" msgstr "Individual" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -760,7 +746,7 @@ msgid "Declined" msgstr "Refuzat(a)" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -796,13 +782,6 @@ msgstr "Confidentialitate" msgid "Basic Alarm Information" msgstr "informatii de Baza Alarma" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Luni" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1004,10 +983,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Indica grupurile de care apartine participantul" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Luni" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1057,11 +1037,6 @@ msgstr "Referitor la" msgid "Interval" msgstr "Interval" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1086,7 +1061,7 @@ msgid "Active" msgstr "Activ(a)" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "Nu puteti copia un participant in calendar." @@ -1239,7 +1214,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1369,6 +1344,11 @@ msgstr "ir.valori" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.atasament" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1452,6 +1432,11 @@ msgstr "" "Contine textul care va fi folosit drept subiectul mesajului pentru email sau " "contine textul care va fi folosit pentru afisare" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1472,7 +1457,7 @@ msgid "April" msgstr "Aprilie" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1490,7 +1475,7 @@ msgid "Weekday" msgstr "Zi lucratoare" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1503,7 +1488,7 @@ msgid "By day" msgstr "Dupa zi" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1944,9 +1929,6 @@ msgstr "Al cincilea (a cincea)" #~ msgid "Search Invitations" #~ msgstr "Cauta Invitatii" -#~ msgid "ir.attachment" -#~ msgstr "ir.atasament" - #~ msgid "Invite" #~ msgstr "Invita" diff --git a/addons/base_calendar/i18n/ru.po b/addons/base_calendar/i18n/ru.po index b3abf6a08a8..28b6db652d2 100644 --- a/addons/base_calendar/i18n/ru.po +++ b/addons/base_calendar/i18n/ru.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:41+0000\n" "Last-Translator: Raphael Collet (OpenERP) \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "Повторяющаяся встреча" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "Кому" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Ошибка!" @@ -277,6 +271,13 @@ msgstr "" msgid "Procedure" msgstr "Процедура" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "Повторяющийся ID" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Комната" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "Дата повторяющегося ID" @@ -366,11 +362,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Предупреждение!" @@ -516,9 +512,9 @@ msgid "Email" msgstr "Эл. почта" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Комната" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -531,7 +527,7 @@ msgid "Event alarm information" msgstr "Информация об уведомлении о событии" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -542,11 +538,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -575,11 +569,9 @@ msgid "Caldav URL" msgstr "Адрес Caldav" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "Повторяющийся ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -611,7 +603,7 @@ msgid "Delegrated To" msgstr "Поручено" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -719,12 +711,6 @@ msgstr "Доступность" msgid "Individual" msgstr "Персональный" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -760,7 +746,7 @@ msgid "Declined" msgstr "Отклонено" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -796,13 +782,6 @@ msgstr "Степень конфиденциальности" msgid "Basic Alarm Information" msgstr "Основная информация уведомления" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Пн" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1003,10 +982,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Указывает на группы, к которым принадлежит приглашённый" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Пн" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1056,11 +1036,6 @@ msgstr "Связан с" msgid "Interval" msgstr "Интервал" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1085,7 +1060,7 @@ msgid "Active" msgstr "Активно" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "Нельзя дублировать участника календаря." @@ -1237,7 +1212,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1365,6 +1340,11 @@ msgstr "ir.values" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1447,6 +1427,11 @@ msgstr "" "Содержит текст, используемый в качестве темы электронного письма или " "отображаемый текст" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1467,7 +1452,7 @@ msgid "April" msgstr "Апрель" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1485,7 +1470,7 @@ msgid "Weekday" msgstr "День недели" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1498,7 +1483,7 @@ msgid "By day" msgstr "По дню" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1695,9 +1680,6 @@ msgstr "Пятый" #~ msgid "Warning !" #~ msgstr "Warning !" -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - #~ msgid "res.users" #~ msgstr "res.users" diff --git a/addons/base_calendar/i18n/sk.po b/addons/base_calendar/i18n/sk.po index 1f02d118e5a..02f2297470c 100644 --- a/addons/base_calendar/i18n/sk.po +++ b/addons/base_calendar/i18n/sk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-03 16:49+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: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -68,12 +68,6 @@ msgstr "" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -255,7 +249,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Chyba!" @@ -275,6 +269,13 @@ msgstr "" msgid "Procedure" msgstr "" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -334,14 +335,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Miestnosť" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "" @@ -364,11 +360,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Varovanie !" @@ -512,9 +508,9 @@ msgid "Email" msgstr "Email" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Miestnosť" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -527,7 +523,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -538,11 +534,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -571,10 +565,8 @@ msgid "Caldav URL" msgstr "" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" msgstr "" #. module: base_calendar @@ -607,7 +599,7 @@ msgid "Delegrated To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -715,12 +707,6 @@ msgstr "" msgid "Individual" msgstr "Individuálne" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -756,7 +742,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -792,13 +778,6 @@ msgstr "Súkromný" msgid "Basic Alarm Information" msgstr "" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Pon" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -998,10 +977,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Pon" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1051,11 +1031,6 @@ msgstr "" msgid "Interval" msgstr "" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1080,7 +1055,7 @@ msgid "Active" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1226,7 +1201,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1352,6 +1327,11 @@ msgstr "" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1432,6 +1412,11 @@ msgid "" "email or contains the text to be used for display" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1452,7 +1437,7 @@ msgid "April" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1470,7 +1455,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1483,7 +1468,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1635,9 +1620,6 @@ msgstr "" #~ msgid "No Repeat" #~ msgstr "Bez opakovania" -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - #~ msgid "Yearly" #~ msgstr "Ročne" diff --git a/addons/base_calendar/i18n/sl.po b/addons/base_calendar/i18n/sl.po index 0cf8ec17f72..00a3aadb4ee 100644 --- a/addons/base_calendar/i18n/sl.po +++ b/addons/base_calendar/i18n/sl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:33+0000\n" "Last-Translator: Raphael Collet (OpenERP) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -68,12 +68,6 @@ msgstr "" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -255,7 +249,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Napaka!" @@ -275,6 +269,13 @@ msgstr "" msgid "Procedure" msgstr "" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -334,14 +335,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Soba" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "" @@ -364,11 +360,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Opozorilo!" @@ -512,9 +508,9 @@ msgid "Email" msgstr "E-pošta" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Soba" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -527,7 +523,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -538,11 +534,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -571,10 +565,8 @@ msgid "Caldav URL" msgstr "" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" msgstr "" #. module: base_calendar @@ -607,7 +599,7 @@ msgid "Delegrated To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -715,12 +707,6 @@ msgstr "Razpoložljivost" msgid "Individual" msgstr "Posamezno" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -756,7 +742,7 @@ msgid "Declined" msgstr "Zavrnjeno" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -792,13 +778,6 @@ msgstr "Zasebno" msgid "Basic Alarm Information" msgstr "" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Pon" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -998,10 +977,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Pon" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1051,11 +1031,6 @@ msgstr "" msgid "Interval" msgstr "" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1080,7 +1055,7 @@ msgid "Active" msgstr "Aktiven" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1226,7 +1201,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1352,6 +1327,11 @@ msgstr "" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1432,6 +1412,11 @@ msgid "" "email or contains the text to be used for display" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1452,7 +1437,7 @@ msgid "April" msgstr "April" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1470,7 +1455,7 @@ msgid "Weekday" msgstr "Delovni dan" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1483,7 +1468,7 @@ msgid "By day" msgstr "Po dnevih" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" diff --git a/addons/base_calendar/i18n/sq.po b/addons/base_calendar/i18n/sq.po index 9eb2225aa0e..edddb88a79c 100644 --- a/addons/base_calendar/i18n/sq.po +++ b/addons/base_calendar/i18n/sq.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-28 15:25+0000\n" "Last-Translator: FULL NAME \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: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:00+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -68,12 +68,6 @@ msgstr "" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -255,7 +249,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "" @@ -275,6 +269,13 @@ msgstr "" msgid "Procedure" msgstr "" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -334,14 +335,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "" @@ -364,11 +360,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "" @@ -512,8 +508,8 @@ msgid "Email" msgstr "" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" +#: selection:calendar.attendee,cutype:0 +msgid "Room" msgstr "" #. module: base_calendar @@ -527,7 +523,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -538,11 +534,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -571,10 +565,8 @@ msgid "Caldav URL" msgstr "" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" msgstr "" #. module: base_calendar @@ -607,7 +599,7 @@ msgid "Delegrated To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -715,12 +707,6 @@ msgstr "" msgid "Individual" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -756,7 +742,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -792,13 +778,6 @@ msgstr "" msgid "Basic Alarm Information" msgstr "" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -998,9 +977,10 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" msgstr "" #. module: base_calendar @@ -1051,11 +1031,6 @@ msgstr "" msgid "Interval" msgstr "" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1080,7 +1055,7 @@ msgid "Active" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1226,7 +1201,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1352,6 +1327,11 @@ msgstr "" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1432,6 +1412,11 @@ msgid "" "email or contains the text to be used for display" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1452,7 +1437,7 @@ msgid "April" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1470,7 +1455,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1483,7 +1468,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" diff --git a/addons/base_calendar/i18n/sr.po b/addons/base_calendar/i18n/sr.po index 700e276e325..8968efaffa8 100644 --- a/addons/base_calendar/i18n/sr.po +++ b/addons/base_calendar/i18n/sr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:58+0000\n" "Last-Translator: Raphael Collet (OpenERP) \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: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Greška" @@ -277,6 +271,13 @@ msgstr "" msgid "Procedure" msgstr "Procedura" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "Ponavljajući ID" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Soba" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "Ponavljajući ID datuma" @@ -366,11 +362,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Upozorenje!" @@ -514,9 +510,9 @@ msgid "Email" msgstr "E‑pošta" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Soba" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -529,7 +525,7 @@ msgid "Event alarm information" msgstr "Informacija alarma događaja" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -540,11 +536,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -573,11 +567,9 @@ msgid "Caldav URL" msgstr "CalDAV URL" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "Ponavljajući ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -609,7 +601,7 @@ msgid "Delegrated To" msgstr "Proslijeđeno" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -717,12 +709,6 @@ msgstr "Dostupnost" msgid "Individual" msgstr "Individualno" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -758,7 +744,7 @@ msgid "Declined" msgstr "Odbijeno" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -794,13 +780,6 @@ msgstr "Privatnost" msgid "Basic Alarm Information" msgstr "Osnovni podaci alarma" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Pon" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1000,10 +979,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Označite grupe kojima ucesnik pripada" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Pon" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1053,11 +1033,6 @@ msgstr "Povezano sa" msgid "Interval" msgstr "Interval" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1082,7 +1057,7 @@ msgid "Active" msgstr "Aktivan" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1234,7 +1209,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1364,6 +1339,11 @@ msgstr "ir.values" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1446,6 +1426,11 @@ msgstr "" "Sadrži tekst koji će se koristiti kao naslov poruke za e-poštu ili sadrži " "tekst koji će se koristiti za prikaz" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1466,7 +1451,7 @@ msgid "April" msgstr "April" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1484,7 +1469,7 @@ msgid "Weekday" msgstr "Sedmicni Dan" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1497,7 +1482,7 @@ msgid "By day" msgstr "po Danu" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1658,9 +1643,6 @@ msgstr "Peti" #~ msgid "Warning !" #~ msgstr "Upozorenje !" -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - #~ msgid "Yearly" #~ msgstr "Godišnje" diff --git a/addons/base_calendar/i18n/sr@latin.po b/addons/base_calendar/i18n/sr@latin.po index cb2fd5c1cd7..c17de737004 100644 --- a/addons/base_calendar/i18n/sr@latin.po +++ b/addons/base_calendar/i18n/sr@latin.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:29+0000\n" "Last-Translator: Raphael Collet (OpenERP) \n" "Language-Team: Serbian latin \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Greška" @@ -277,6 +271,13 @@ msgstr "" msgid "Procedure" msgstr "Procedura" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "Ponavljajući ID" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Soba" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "Ponavljajući ID datuma" @@ -366,11 +362,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Upozorenje!" @@ -514,9 +510,9 @@ msgid "Email" msgstr "E‑pošta" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Soba" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -529,7 +525,7 @@ msgid "Event alarm information" msgstr "Informacija alarma događaja" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -540,11 +536,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -573,11 +567,9 @@ msgid "Caldav URL" msgstr "CalDAV URL" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "Ponavljajući ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -609,7 +601,7 @@ msgid "Delegrated To" msgstr "Proslijeđeno" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -717,12 +709,6 @@ msgstr "Dostupnost" msgid "Individual" msgstr "Individualno" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -758,7 +744,7 @@ msgid "Declined" msgstr "Odbijeno" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -794,13 +780,6 @@ msgstr "Privatnost" msgid "Basic Alarm Information" msgstr "Osnovni podaci alarma" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Pon" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1000,10 +979,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Označite grupe kojima ucesnik pripada" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Pon" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1053,11 +1033,6 @@ msgstr "Povezano sa" msgid "Interval" msgstr "Interval" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1082,7 +1057,7 @@ msgid "Active" msgstr "Aktivan" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1234,7 +1209,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1364,6 +1339,11 @@ msgstr "ir.values" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1446,6 +1426,11 @@ msgstr "" "Sadrži tekst koji će se koristiti kao naslov poruke za e-poštu ili sadrži " "tekst koji će se koristiti za prikaz" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1466,7 +1451,7 @@ msgid "April" msgstr "April" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1484,7 +1469,7 @@ msgid "Weekday" msgstr "Sedmicni Dan" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1497,7 +1482,7 @@ msgid "By day" msgstr "po Danu" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1661,9 +1646,6 @@ msgstr "Peti" #~ msgid "Warning !" #~ msgstr "Upozorenje !" -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - #~ msgid "Show time as" #~ msgstr "Prikaži vreme kao" diff --git a/addons/base_calendar/i18n/sv.po b/addons/base_calendar/i18n/sv.po index b970b89e2e5..c85de5bf844 100644 --- a/addons/base_calendar/i18n/sv.po +++ b/addons/base_calendar/i18n/sv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:29+0000\n" "Last-Translator: Raphael Collet (OpenERP) \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "Återkommande möte" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "Mottagare" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Fel!" @@ -277,6 +271,13 @@ msgstr "" msgid "Procedure" msgstr "Procedur" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "Återkommande ID" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Rum" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "Återkommande ID datum" @@ -366,11 +362,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Varning!" @@ -516,9 +512,9 @@ msgid "Email" msgstr "Epost" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Rum" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -531,7 +527,7 @@ msgid "Event alarm information" msgstr "Evenemangsalarminformation" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -542,11 +538,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -575,11 +569,9 @@ msgid "Caldav URL" msgstr "Caldav URL" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "Återkommande ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -611,7 +603,7 @@ msgid "Delegrated To" msgstr "Delegerad till" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -719,12 +711,6 @@ msgstr "Tillgänglighet" msgid "Individual" msgstr "Individuell" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -760,7 +746,7 @@ msgid "Declined" msgstr "Avslaget" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -796,13 +782,6 @@ msgstr "Integritet" msgid "Basic Alarm Information" msgstr "Grundläggande alarminformation" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Mån" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1004,10 +983,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "indikator på gruppen deltagaren tillhör" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Mån" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1057,11 +1037,6 @@ msgstr "Relaterad till" msgid "Interval" msgstr "Intervall" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1086,7 +1061,7 @@ msgid "Active" msgstr "Aktiv" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "Du kan inte duplicera ett kalenderdeltagande" @@ -1238,7 +1213,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1367,6 +1342,11 @@ msgstr "ir.values" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1449,6 +1429,11 @@ msgstr "" "Innehåller den text som ska användas som ärendemening för e-post eller " "innehåller text som ska användas för visning" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1469,7 +1454,7 @@ msgid "April" msgstr "april" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1487,7 +1472,7 @@ msgid "Weekday" msgstr "Veckodag" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1500,7 +1485,7 @@ msgid "By day" msgstr "Per dag" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1662,9 +1647,6 @@ msgstr "Femte" #~ msgid "Show time as" #~ msgstr "Visa tiden som" -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - #~ msgid "Yearly" #~ msgstr "Årligen" diff --git a/addons/base_calendar/i18n/th.po b/addons/base_calendar/i18n/th.po index d2e9c7e5652..b7387fb7c89 100644 --- a/addons/base_calendar/i18n/th.po +++ b/addons/base_calendar/i18n/th.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:23+0000\n" "Last-Translator: Rungsan Suyala \n" "Language-Team: Thai \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -69,12 +69,6 @@ msgstr "เกิดซ้อนๆกัน" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -256,7 +250,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "ผิดพลาด!" @@ -276,6 +270,13 @@ msgstr "" msgid "Procedure" msgstr "กระบวนการ" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -335,14 +336,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "ห้อง" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "" @@ -365,11 +361,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "คำเตือน!" @@ -513,9 +509,9 @@ msgid "Email" msgstr "อีเมล์" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "ห้อง" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -528,7 +524,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -539,11 +535,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -572,10 +566,8 @@ msgid "Caldav URL" msgstr "" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" msgstr "" #. module: base_calendar @@ -608,7 +600,7 @@ msgid "Delegrated To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -716,12 +708,6 @@ msgstr "" msgid "Individual" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -757,7 +743,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -793,13 +779,6 @@ msgstr "" msgid "Basic Alarm Information" msgstr "" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -999,9 +978,10 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" msgstr "" #. module: base_calendar @@ -1052,11 +1032,6 @@ msgstr "" msgid "Interval" msgstr "" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1081,7 +1056,7 @@ msgid "Active" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1227,7 +1202,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1353,6 +1328,11 @@ msgstr "" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1433,6 +1413,11 @@ msgid "" "email or contains the text to be used for display" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1453,7 +1438,7 @@ msgid "April" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1471,7 +1456,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1484,7 +1469,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" diff --git a/addons/base_calendar/i18n/tr.po b/addons/base_calendar/i18n/tr.po index 092b3992f5a..8a5960f26c8 100644 --- a/addons/base_calendar/i18n/tr.po +++ b/addons/base_calendar/i18n/tr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:34+0000\n" "Last-Translator: Raphael Collet (OpenERP) \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -70,12 +70,6 @@ msgstr "Yinelenen Toplantı" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -257,7 +251,7 @@ msgid "To" msgstr "Kime" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "Hata!" @@ -277,6 +271,13 @@ msgstr "" msgid "Procedure" msgstr "Yöntem" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "Tekrarlayan ID" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -336,14 +337,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Oda" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "Yinelenen Kimlik tarihi" @@ -366,11 +362,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "Uyarı!" @@ -516,9 +512,9 @@ msgid "Email" msgstr "Eposta" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "Oda" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -531,7 +527,7 @@ msgid "Event alarm information" msgstr "Etkinlik alarm bilgisi" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -542,11 +538,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -575,11 +569,9 @@ msgid "Caldav URL" msgstr "Caldav URL si" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "Tekrarlayan ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -611,7 +603,7 @@ msgid "Delegrated To" msgstr "Şuna Yetkilendirildi" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -719,12 +711,6 @@ msgstr "Elverişlilik" msgid "Individual" msgstr "Bireysel" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -760,7 +746,7 @@ msgid "Declined" msgstr "Reddedildi" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -796,13 +782,6 @@ msgstr "Gizlilik" msgid "Basic Alarm Information" msgstr "Temel Alarm Bilgisi" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Pzt" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -1002,10 +981,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "Katılanın bağlı olduğu grubu belirt" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "Pzt" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1055,11 +1035,6 @@ msgstr "Bağlı olduğu" msgid "Interval" msgstr "Aralık" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1084,7 +1059,7 @@ msgid "Active" msgstr "Etkin" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "Takvim katılımcısını çoğaltamazsınız." @@ -1236,7 +1211,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1365,6 +1340,11 @@ msgstr "ir.values" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.ek" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1447,6 +1427,11 @@ msgstr "" "Eposta konusu olarak kullanılacak ya da görüntülenecek metin olarak " "kullanılacak metni içerir." +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1467,7 +1452,7 @@ msgid "April" msgstr "Nisan" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1485,7 +1470,7 @@ msgid "Weekday" msgstr "Hafta İçi" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1498,7 +1483,7 @@ msgid "By day" msgstr "Gündüz" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1776,9 +1761,6 @@ msgstr "Beşinci" #~ msgid "Can not Duplicate" #~ msgstr "Çoğaltılamaz" -#~ msgid "ir.attachment" -#~ msgstr "ir.ek" - #~ msgid "Delegation Info" #~ msgstr "Temsilci Bilgisi" diff --git a/addons/base_calendar/i18n/zh_CN.po b/addons/base_calendar/i18n/zh_CN.po index a1ece1f61e4..3c91be52d4c 100644 --- a/addons/base_calendar/i18n/zh_CN.po +++ b/addons/base_calendar/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-28 16:50+0000\n" "Last-Translator: Joshua Jan(SHINEIT) \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -68,12 +68,6 @@ msgstr "定期会议" msgid "Feedback Meeting" msgstr "会议反馈" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "会议完成." - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -255,7 +249,7 @@ msgid "To" msgstr "到" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "错误!" @@ -275,6 +269,13 @@ msgstr "我的会议" msgid "Procedure" msgstr "程序" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "循环ID" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -334,14 +335,9 @@ msgid "Meetings" msgstr "会议" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "室" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "循环日期" @@ -364,11 +360,11 @@ msgid "" msgstr "保存复杂的摘要(消息数量,……等)。为了插入到看板视图,这一摘要直接是是HTML格式。" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "警告!" @@ -512,9 +508,9 @@ msgid "Email" msgstr "电子邮箱" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "室" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -527,7 +523,7 @@ msgid "Event alarm information" msgstr "事件提醒信息" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -538,11 +534,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -571,11 +565,9 @@ msgid "Caldav URL" msgstr "Caldav 服务的URL" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "循环ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -607,7 +599,7 @@ msgid "Delegrated To" msgstr "代表人" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -715,12 +707,6 @@ msgstr "可用" msgid "Individual" msgstr "个人" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -756,7 +742,7 @@ msgid "Declined" msgstr "已拒绝" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -792,13 +778,6 @@ msgstr "隐私的" msgid "Basic Alarm Information" msgstr "基本提醒信息" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "周一" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -998,10 +977,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "与会者属于指定的组" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "周一" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1051,11 +1031,6 @@ msgstr "关联到" msgid "Interval" msgstr "间隔" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1080,7 +1055,7 @@ msgid "Active" msgstr "生效" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "你不能复制日程参与者" @@ -1226,7 +1201,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1352,6 +1327,11 @@ msgstr "ir.values" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1432,6 +1412,11 @@ msgid "" "email or contains the text to be used for display" msgstr "包含电子邮件主题中使用的文本或包含了用于显示的文本" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1452,7 +1437,7 @@ msgid "April" msgstr "4月" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1470,7 +1455,7 @@ msgid "Weekday" msgstr "工作日" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1483,7 +1468,7 @@ msgid "By day" msgstr "按天" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1637,9 +1622,6 @@ msgstr "第五个" #~ msgid "Invitation" #~ msgstr "邀请" -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - #~ msgid "Yearly" #~ msgstr "每年" diff --git a/addons/base_calendar/i18n/zh_TW.po b/addons/base_calendar/i18n/zh_TW.po index 4821bd469fe..a1fe0ca0170 100644 --- a/addons/base_calendar/i18n/zh_TW.po +++ b/addons/base_calendar/i18n/zh_TW.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:59+0000\n" "Last-Translator: Walter Cheuk \n" "Language-Team: Chinese (Traditional) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:50+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -68,12 +68,6 @@ msgstr "重覆定期會議" msgid "Feedback Meeting" msgstr "" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:117 -#, python-format -msgid "Meeting completed." -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm @@ -255,7 +249,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1225 +#: code:addons/base_calendar/base_calendar.py:1255 #, python-format msgid "Error!" msgstr "錯誤!" @@ -275,6 +269,13 @@ msgstr "" msgid "Procedure" msgstr "程序" +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "" + #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 @@ -334,14 +335,9 @@ msgid "Meetings" msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "房間" - -#. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -#: field:crm.meeting,recurrent_id:0 +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" msgstr "" @@ -364,11 +360,11 @@ msgid "" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 -#: code:addons/base_calendar/base_calendar.py:417 -#: code:addons/base_calendar/base_calendar.py:980 -#: code:addons/base_calendar/base_calendar.py:982 -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Warning!" msgstr "警告!" @@ -512,9 +508,9 @@ msgid "Email" msgstr "電郵" #. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_unread -msgid "CRM Meeting: Mark unread" -msgstr "" +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "房間" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -527,7 +523,7 @@ msgid "Event alarm information" msgstr "活動警示資訊" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:982 +#: code:addons/base_calendar/base_calendar.py:1010 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -538,11 +534,9 @@ msgid "Creation Date" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:111 #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting -#, python-format msgid "Meeting" msgstr "" @@ -571,10 +565,8 @@ msgid "Caldav URL" msgstr "" #. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" msgstr "" #. module: base_calendar @@ -607,7 +599,7 @@ msgid "Delegrated To" msgstr "委託予" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:94 +#: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" msgstr "" @@ -715,12 +707,6 @@ msgstr "有空" msgid "Individual" msgstr "個人" -#. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:114 -#, python-format -msgid "Meeting confirmed." -msgstr "" - #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 @@ -756,7 +742,7 @@ msgid "Declined" msgstr "拒絕" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1430 +#: code:addons/base_calendar/base_calendar.py:1455 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -792,13 +778,6 @@ msgstr "" msgid "Basic Alarm Information" msgstr "基本警示資訊" -#. module: base_calendar -#: field:calendar.event,mo:0 -#: field:calendar.todo,mo:0 -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "一" - #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 @@ -998,10 +977,11 @@ msgid "Indicate the groups that the attendee belongs to" msgstr "指示出席者所屬群組" #. module: base_calendar -#: field:crm.meeting,message_comment_ids:0 -#: help:crm.meeting,message_comment_ids:0 -msgid "Comments and emails" -msgstr "" +#: field:calendar.event,mo:0 +#: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 +msgid "Mon" +msgstr "一" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1051,11 +1031,6 @@ msgstr "關係到" msgid "Interval" msgstr "區間" -#. module: base_calendar -#: model:ir.actions.server,name:base_calendar.actions_server_crm_meeting_read -msgid "CRM Meeting: Mark read" -msgstr "" - #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 @@ -1080,7 +1055,7 @@ msgid "Active" msgstr "活躍" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:388 +#: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." msgstr "" @@ -1226,7 +1201,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1489 +#: code:addons/base_calendar/base_calendar.py:1514 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1352,6 +1327,11 @@ msgstr "" msgid "Search Meetings" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "" + #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" @@ -1432,6 +1412,11 @@ msgid "" "email or contains the text to be used for display" msgstr "" +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 @@ -1452,7 +1437,7 @@ msgid "April" msgstr "四月" #. module: base_calendar -#: code:addons/base_calendar/crm_meeting.py:98 +#: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" msgstr "" @@ -1470,7 +1455,7 @@ msgid "Weekday" msgstr "週日" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:980 +#: code:addons/base_calendar/base_calendar.py:1008 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1483,7 +1468,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:417 +#: code:addons/base_calendar/base_calendar.py:444 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" diff --git a/addons/base_crypt/__openerp__.py b/addons/base_crypt/__openerp__.py deleted file mode 100644 index 97f6c98aeb8..00000000000 --- a/addons/base_crypt/__openerp__.py +++ /dev/null @@ -1,63 +0,0 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2009 Tiny SPRL (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -{ - 'name': 'DB Password Encryption', - 'version': '1.1', - 'author': ['OpenERP SA', 'FS3'], - 'maintainer': 'OpenERP SA', - 'website': 'http://www.openerp.com', - 'category': 'Tools', - 'description': """ -Replaces cleartext passwords in the database with a secure hash. -================================================================ - -For your existing user base, the removal of the cleartext passwords occurs -immediately when you install base_crypt. - -All passwords will be replaced by a secure, salted, cryptographic hash, -preventing anyone from reading the original password in the database. - -After installing this module, it won't be possible to recover a forgotten password -for your users, the only solution is for an admin to set a new password. - -Security Warning: ------------------ -Installing this module does not mean you can ignore other security measures, -as the password is still transmitted unencrypted on the network, unless you -are using a secure protocol such as XML-RPCS or HTTPS. - -It also does not protect the rest of the content of the database, which may -contain critical data. Appropriate security measures need to be implemented -by the system administrator in all areas, such as: protection of database -backups, system files, remote shell access, physical server access. - -Interaction with LDAP authentication: -------------------------------------- -This module is currently not compatible with the ``user_ldap`` module and -will disable LDAP authentication completely if installed at the same time. -""", - 'depends': ['base'], - 'data': [], - 'auto_install': False, - 'installable': True, -} - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_crypt/crypt.py b/addons/base_crypt/crypt.py deleted file mode 100644 index 45e6b396222..00000000000 --- a/addons/base_crypt/crypt.py +++ /dev/null @@ -1,304 +0,0 @@ -# Notice: -# ------ -# -# Implements encrypting functions. -# -# Copyright (c) 2008, F S 3 Consulting Inc. -# -# Maintainer: -# Alec Joseph Rivera (agifs3.ph) -# -# -# Warning: -# ------- -# -# This program as such is intended to be used by professional programmers -# who take the whole responsibility of assessing all potential consequences -# resulting from its eventual inadequacies and bugs. End users who are -# looking for a ready-to-use solution with commercial guarantees and -# support are strongly adviced to contract a Free Software Service Company. -# -# This program is Free Software; you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by the -# Free Software Foundation; either version 2 of the License, or (at your -# option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General -# Public License for more details. -# -# You should have received a copy of the GNU General Public License along -# with this program; if not, write to the: -# -# Free Software Foundation, Inc. -# 59 Temple Place - Suite 330 -# Boston, MA 02111-1307 -# USA. - -from random import seed, sample -from string import ascii_letters, digits -from openerp.osv import fields,osv -from openerp import pooler -from openerp.tools.translate import _ -from openerp.service import security -import logging - -magic_md5 = '$1$' -_logger = logging.getLogger(__name__) - -def gen_salt( length=8, symbols=None): - if symbols is None: - symbols = ascii_letters + digits - seed() - return ''.join( sample( symbols, length ) ) - -# The encrypt_md5 is based on Mark Johnson's md5crypt.py, which in turn is -# based on FreeBSD src/lib/libcrypt/crypt.c (1.2) by Poul-Henning Kamp. -# Mark's port can be found in ActiveState ASPN Python Cookbook. Kudos to -# Poul and Mark. -agi -# -# Original license: -# -# * "THE BEER-WARE LICENSE" (Revision 42): -# * -# * wrote this file. As long as you retain this -# * notice you can do whatever you want with this stuff. If we meet some -# * day, and you think this stuff is worth it, you can buy me a beer in -# * return. -# * -# * Poul-Henning Kamp - - -#TODO: py>=2.6: from hashlib import md5 -import hashlib - -def encrypt_md5( raw_pw, salt, magic=magic_md5 ): - raw_pw = raw_pw.encode('utf-8') - salt = salt.encode('utf-8') - hash = hashlib.md5() - hash.update( raw_pw + magic + salt ) - st = hashlib.md5() - st.update( raw_pw + salt + raw_pw) - stretch = st.digest() - - for i in range( 0, len( raw_pw ) ): - hash.update( stretch[i % 16] ) - - i = len( raw_pw ) - - while i: - if i & 1: - hash.update('\x00') - else: - hash.update( raw_pw[0] ) - i >>= 1 - - saltedmd5 = hash.digest() - - for i in range( 1000 ): - hash = hashlib.md5() - - if i & 1: - hash.update( raw_pw ) - else: - hash.update( saltedmd5 ) - - if i % 3: - hash.update( salt ) - if i % 7: - hash.update( raw_pw ) - if i & 1: - hash.update( saltedmd5 ) - else: - hash.update( raw_pw ) - - saltedmd5 = hash.digest() - - itoa64 = './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' - - rearranged = '' - for a, b, c in ((0, 6, 12), (1, 7, 13), (2, 8, 14), (3, 9, 15), (4, 10, 5)): - v = ord( saltedmd5[a] ) << 16 | ord( saltedmd5[b] ) << 8 | ord( saltedmd5[c] ) - - for i in range(4): - rearranged += itoa64[v & 0x3f] - v >>= 6 - - v = ord( saltedmd5[11] ) - - for i in range( 2 ): - rearranged += itoa64[v & 0x3f] - v >>= 6 - - return magic + salt + '$' + rearranged - -class users(osv.osv): - _name="res.users" - _inherit="res.users" - # agi - 022108 - # Add handlers for 'input_pw' field. - - def set_pw(self, cr, uid, id, name, value, args, context): - if value: - obj = pooler.get_pool(cr.dbname).get('res.users') - if not hasattr(obj, "_salt_cache"): - obj._salt_cache = {} - - salt = obj._salt_cache[id] = gen_salt() - encrypted = encrypt_md5(value, salt) - - else: - #setting a password to '' is allowed. It can be used to inactivate the classic log-in of the user - #while the access can still be granted by another login method (openid...) - encrypted = '' - cr.execute('update res_users set password=%s where id=%s', - (encrypted.encode('utf-8'), int(id))) - del value - - def get_pw( self, cr, uid, ids, name, args, context ): - cr.execute('select id, password from res_users where id in %s', (tuple(map(int, ids)),)) - stored_pws = cr.fetchall() - res = {} - - for id, stored_pw in stored_pws: - res[id] = stored_pw - - return res - - _columns = { - # The column size could be smaller as it is meant to store a hash, but - # an existing column cannot be downsized; thus we use the original - # column size. - 'password': fields.function(get_pw, fnct_inv=set_pw, type='char', - size=64, string='Password', invisible=True, - store=True), - } - - def login(self, db, login, password): - if not password: - return False - if db is False: - raise RuntimeError("Cannot authenticate to False db!") - cr = None - try: - cr = pooler.get_db(db).cursor() - return self._login(cr, db, login, password) - except Exception: - _logger.exception('Cannot authenticate.') - return Exception('Access denied.') - finally: - if cr is not None: - cr.close() - - def _login(self, cr, db, login, password): - cr.execute( 'SELECT password, id FROM res_users WHERE login=%s AND active', - (login.encode('utf-8'),)) - - if cr.rowcount: - stored_pw, id = cr.fetchone() - else: - # Return early if no one has a login name like that. - return False - - stored_pw = self.maybe_encrypt(cr, stored_pw, id) - - if not stored_pw: - # means couldn't encrypt or user is not active! - return False - - # Calculate an encrypted password from the user-provided - # password. - obj = pooler.get_pool(db).get('res.users') - if not hasattr(obj, "_salt_cache"): - obj._salt_cache = {} - salt = obj._salt_cache[id] = stored_pw[len(magic_md5):11] - encrypted_pw = encrypt_md5(password, salt) - - # Check if the encrypted password matches against the one in the db. - cr.execute("""UPDATE res_users - SET login_date=now() AT TIME ZONE 'UTC' - WHERE id=%s AND password=%s AND active - RETURNING id""", - (int(id), encrypted_pw.encode('utf-8'))) - res = cr.fetchone() - cr.commit() - - if res: - return res[0] - else: - return False - - def check(self, db, uid, passwd): - if not passwd: - # empty passwords disallowed for obvious security reasons - raise security.ExceptionNoTb('AccessDenied') - - # Get a chance to hash all passwords in db before using the uid_cache. - obj = pooler.get_pool(db).get('res.users') - if not hasattr(obj, "_salt_cache"): - obj._salt_cache = {} - self._uid_cache.get(db, {}).clear() - - cached_pass = self._uid_cache.get(db, {}).get(uid) - if (cached_pass is not None) and cached_pass == passwd: - return True - - cr = pooler.get_db(db).cursor() - try: - if uid not in self._salt_cache.get(db, {}): - # If we don't have cache, we have to repeat the procedure - # through the login function. - cr.execute( 'SELECT login FROM res_users WHERE id=%s', (uid,) ) - stored_login = cr.fetchone() - if stored_login: - stored_login = stored_login[0] - - res = self._login(cr, db, stored_login, passwd) - if not res: - raise security.ExceptionNoTb('AccessDenied') - else: - salt = self._salt_cache[db][uid] - cr.execute('SELECT COUNT(*) FROM res_users WHERE id=%s AND password=%s AND active', - (int(uid), encrypt_md5(passwd, salt))) - res = cr.fetchone()[0] - finally: - cr.close() - - if not bool(res): - raise security.ExceptionNoTb('AccessDenied') - - if res: - if self._uid_cache.has_key(db): - ulist = self._uid_cache[db] - ulist[uid] = passwd - else: - self._uid_cache[db] = {uid: passwd} - return bool(res) - - def maybe_encrypt(self, cr, pw, id): - """ Return the password 'pw', making sure it is encrypted. - - If the password 'pw' is not encrypted, then encrypt all active passwords - in the db. Returns the (possibly newly) encrypted password for 'id'. - """ - - if not pw.startswith(magic_md5): - cr.execute("SELECT id, password FROM res_users " \ - "WHERE active=true AND password NOT LIKE '$%'") - # Note that we skip all passwords like $.., in anticipation for - # more than md5 magic prefixes. - res = cr.fetchall() - for i, p in res: - encrypted = encrypt_md5(p, gen_salt()) - cr.execute('UPDATE res_users SET password=%s where id=%s', - (encrypted, i)) - if i == id: - encrypted_res = encrypted - cr.commit() - return encrypted_res - return pw - -users() - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_crypt/i18n/de.po b/addons/base_crypt/i18n/de.po deleted file mode 100644 index a1ba22a07b0..00000000000 --- a/addons/base_crypt/i18n/de.po +++ /dev/null @@ -1,77 +0,0 @@ -# German translation for openobject-addons -# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-12-16 11:38+0000\n" -"Last-Translator: Felix Schubert \n" -"Language-Team: German \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-17 04:47+0000\n" -"X-Generator: Launchpad (build 16372)\n" - -#. module: base_crypt -#: model:ir.model,name:base_crypt.model_res_users -msgid "Users" -msgstr "Benutzer" - -#~ msgid "" -#~ "This module replaces the cleartext password in the database with a password " -#~ "hash,\n" -#~ "preventing anyone from reading the original password.\n" -#~ "For your existing user base, the removal of the cleartext passwords occurs " -#~ "the first time\n" -#~ "a user logs into the database, after installing base_crypt.\n" -#~ "After installing this module it won't be possible to recover a forgotten " -#~ "password for your\n" -#~ "users, the only solution is for an admin to set a new password.\n" -#~ "\n" -#~ "Note: installing this module does not mean you can ignore basic security " -#~ "measures,\n" -#~ "as the password is still transmitted unencrypted on the network (by the " -#~ "client),\n" -#~ "unless you are using a secure protocol such as XML-RPCS.\n" -#~ " " -#~ msgstr "" -#~ "Dieses Modul ersetzt das Klartext Passwort.\n" -#~ "Für bestehende Benutzer erfolgt die Umstellung beim nächsten Einloggen nach " -#~ "der Installation des Moduls.\n" -#~ "Nach Installation kann ein verlorenes Passwort nicht mehr rekonstruiert " -#~ "werden.\n" -#~ "Der Administrator muss eine neues Passwort setzen.\n" -#~ "\n" -#~ "Beachte: Dieses Module beduete nicht, dass Sie grundlegende " -#~ "Sicherheitsüberlegungen\n" -#~ "außer Acht lassen können. Das verschüsselte Passwort wird im Klartext im " -#~ "Netzwerk übertragen, \n" -#~ "wenn nicht ein sicheres Protokoll wie zB XML-RPCS verwendet wird.\n" -#~ " " - -#, python-format -#~ msgid "Error" -#~ msgstr "Fehler" - -#~ msgid "Base - Password Encryption" -#~ msgstr "Basis - Passwort Verschlüsselung" - -#, python-format -#~ msgid "Please specify the password !" -#~ msgstr "Bitte ein Passwort eingeben" - -#~ msgid "The chosen company is not in the allowed companies for this user" -#~ msgstr "" -#~ "Das ausgewählte Unternehmen gehört nicht zu den zulässigen Unternehmen für " -#~ "diesen Benutzer" - -#~ msgid "res.users" -#~ msgstr "res.users" - -#~ msgid "You can not have two users with the same login !" -#~ msgstr "Sie können nicht zwei identische Benutzeranmeldungen definieren!" diff --git a/addons/base_crypt/i18n/es.po b/addons/base_crypt/i18n/es.po deleted file mode 100644 index 4ba4d65e6ab..00000000000 --- a/addons/base_crypt/i18n/es.po +++ /dev/null @@ -1,77 +0,0 @@ -# Spanish translation for openobject-addons -# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-12-10 22:15+0000\n" -"Last-Translator: Ana Juaristi Olalde \n" -"Language-Team: Spanish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-11 04:49+0000\n" -"X-Generator: Launchpad (build 16356)\n" - -#. module: base_crypt -#: model:ir.model,name:base_crypt.model_res_users -msgid "Users" -msgstr "Usuarios" - -#~ msgid "" -#~ "This module replaces the cleartext password in the database with a password " -#~ "hash,\n" -#~ "preventing anyone from reading the original password.\n" -#~ "For your existing user base, the removal of the cleartext passwords occurs " -#~ "the first time\n" -#~ "a user logs into the database, after installing base_crypt.\n" -#~ "After installing this module it won't be possible to recover a forgotten " -#~ "password for your\n" -#~ "users, the only solution is for an admin to set a new password.\n" -#~ "\n" -#~ "Note: installing this module does not mean you can ignore basic security " -#~ "measures,\n" -#~ "as the password is still transmitted unencrypted on the network (by the " -#~ "client),\n" -#~ "unless you are using a secure protocol such as XML-RPCS.\n" -#~ " " -#~ msgstr "" -#~ "Este módulo sustituye la contraseña en texto plano por un hash codificado,\n" -#~ "previniendo que alguien pueda leer la contraseña original.\n" -#~ "Para un usuario existente, el borrado de la contraseña en texto plano se " -#~ "realiza la primera vez\n" -#~ "que el usuario se conecte después de instalar base_crypt.\n" -#~ "Después de instalar este módulo los usuarios no podrán recuperar su " -#~ "contraseña,\n" -#~ "un administrador tendrá que introducir una nueva contraseña.\n" -#~ "\n" -#~ "Nota: instalar este módulo no significa que pueda ignorar las medidas " -#~ "básicas de seguridad,\n" -#~ "porque la contraseña es enviada sin codificar por el cliente,\n" -#~ "a menos que utilice un protocolo seguro como XML-RPCS.\n" -#~ " " - -#, python-format -#~ msgid "Please specify the password !" -#~ msgstr "¡Por favor, escriba una contraseña!" - -#~ msgid "The chosen company is not in the allowed companies for this user" -#~ msgstr "" -#~ "La compañía seleccionada no está autorizada como compañía para este usuario" - -#~ msgid "res.users" -#~ msgstr "res.usuarios" - -#, python-format -#~ msgid "Error" -#~ msgstr "Error" - -#~ msgid "You can not have two users with the same login !" -#~ msgstr "¡No puede tener dos usuarios con el mismo identificador de usuario!" - -#~ msgid "Base - Password Encryption" -#~ msgstr "Base - Encriptación de la Contraseña" diff --git a/addons/base_crypt/i18n/fr.po b/addons/base_crypt/i18n/fr.po deleted file mode 100644 index f22023e61bc..00000000000 --- a/addons/base_crypt/i18n/fr.po +++ /dev/null @@ -1,81 +0,0 @@ -# French translation for openobject-addons -# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-12-07 10:31+0000\n" -"Last-Translator: WANTELLET Sylvain \n" -"Language-Team: French \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-08 04:59+0000\n" -"X-Generator: Launchpad (build 16341)\n" - -#. module: base_crypt -#: model:ir.model,name:base_crypt.model_res_users -msgid "Users" -msgstr "Utilisateurs" - -#, python-format -#~ msgid "Error" -#~ msgstr "Erreur" - -#~ msgid "Base - Password Encryption" -#~ msgstr "Base - Chiffrage du mot de passe" - -#~ msgid "The chosen company is not in the allowed companies for this user" -#~ msgstr "" -#~ "La société choisie ne fait pas partie des sociétés autorisées pour cet " -#~ "utilisateur" - -#~ msgid "res.users" -#~ msgstr "res.users" - -#~ msgid "You can not have two users with the same login !" -#~ msgstr "" -#~ "Vous ne pouvez pas avoir deux utilisateurs avec le même identifiant !" - -#, python-format -#~ msgid "Please specify the password !" -#~ msgstr "Veuillez entrer un mot de passe" - -#~ msgid "" -#~ "This module replaces the cleartext password in the database with a password " -#~ "hash,\n" -#~ "preventing anyone from reading the original password.\n" -#~ "For your existing user base, the removal of the cleartext passwords occurs " -#~ "the first time\n" -#~ "a user logs into the database, after installing base_crypt.\n" -#~ "After installing this module it won't be possible to recover a forgotten " -#~ "password for your\n" -#~ "users, the only solution is for an admin to set a new password.\n" -#~ "\n" -#~ "Note: installing this module does not mean you can ignore basic security " -#~ "measures,\n" -#~ "as the password is still transmitted unencrypted on the network (by the " -#~ "client),\n" -#~ "unless you are using a secure protocol such as XML-RPCS.\n" -#~ " " -#~ msgstr "" -#~ "Ce module remplace les mots de passe stockés dans la base par des mots de " -#~ "passe chiffrés,\n" -#~ "empêchant quiconque d'accéder aux mots de passe.\n" -#~ "Pour les utilisateurs existants dans la base, le retrait du mot de passe en " -#~ "clair survient à la première connexion\n" -#~ "de l'utilisateur suivant l'installation de \"base_crypt\".\n" -#~ "Ce module rend impossible la recherche d'un mot de passe oublié par un " -#~ "utilisateur,\n" -#~ "la seule solution est alors l'attribution d'un nouveau mot de passe par " -#~ "l'administrateur.\n" -#~ "\n" -#~ "Note: installer ce module ne dispense pas de respecter les règles de base de " -#~ "la sécurité,\n" -#~ "comme ne pas laisser circuler de mots de passe en clair sur le réseau,\n" -#~ "sauf à utiliser un protocole sécurisé tel que XML-RPCS.\n" -#~ " " diff --git a/addons/base_crypt/i18n/hr.po b/addons/base_crypt/i18n/hr.po deleted file mode 100644 index c971ae1bf00..00000000000 --- a/addons/base_crypt/i18n/hr.po +++ /dev/null @@ -1,74 +0,0 @@ -# Croatian translation for openobject-addons -# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-12-09 19:40+0000\n" -"Last-Translator: Goran Kliska \n" -"Language-Team: Croatian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-10 04:39+0000\n" -"X-Generator: Launchpad (build 16341)\n" - -#. module: base_crypt -#: model:ir.model,name:base_crypt.model_res_users -msgid "Users" -msgstr "Korisnici" - -#~ msgid "" -#~ "This module replaces the cleartext password in the database with a password " -#~ "hash,\n" -#~ "preventing anyone from reading the original password.\n" -#~ "For your existing user base, the removal of the cleartext passwords occurs " -#~ "the first time\n" -#~ "a user logs into the database, after installing base_crypt.\n" -#~ "After installing this module it won't be possible to recover a forgotten " -#~ "password for your\n" -#~ "users, the only solution is for an admin to set a new password.\n" -#~ "\n" -#~ "Note: installing this module does not mean you can ignore basic security " -#~ "measures,\n" -#~ "as the password is still transmitted unencrypted on the network (by the " -#~ "client),\n" -#~ "unless you are using a secure protocol such as XML-RPCS.\n" -#~ " " -#~ msgstr "" -#~ "Ovaj modul mijenja zaporku u čitljivom tekstu za šifriranom zaporkom,\n" -#~ "onemogućujući čitanje originalne zaporke.\n" -#~ "Za postojećeg korisnika, ukljanjanje čitljive zaporke dešava se priv put kad " -#~ "se korisnik prijavljuje \n" -#~ "u bazu podataka, nakon instalacije base crypt modula.\n" -#~ "Nakon instalacije ovog modula neće biti moguće doznati zaboravljenu zaporku " -#~ "vašeg korisnika.\n" -#~ "Jedino riješenje je da admin postavi novu zaporku.\n" -#~ "\n" -#~ "Napomena: instalacija ovog modula ne znači da možete ignorirati osnovne " -#~ "mjere sigurnosti,\n" -#~ "jer se zaporka i dlaje prenosi nešifrirana preko mreže (klijent),\n" -#~ "osim ako ne koristite sigurnosne protokole poput XML-RPSC.\n" -#~ " " - -#, python-format -#~ msgid "Error" -#~ msgstr "Greška" - -#, python-format -#~ msgid "Please specify the password !" -#~ msgstr "Molim navedite zaporku!" - -#~ msgid "The chosen company is not in the allowed companies for this user" -#~ msgstr "" -#~ "Odabrana organizacija nije među dozvoljenim organizacijama za ovog korisnika" - -#~ msgid "res.users" -#~ msgstr "res.users" - -#~ msgid "You can not have two users with the same login !" -#~ msgstr "Ne možete imati dva korisnika sa istim korisničkim imenom !" diff --git a/addons/base_crypt/i18n/it.po b/addons/base_crypt/i18n/it.po deleted file mode 100644 index c7d77efa69e..00000000000 --- a/addons/base_crypt/i18n/it.po +++ /dev/null @@ -1,80 +0,0 @@ -# Italian translation for openobject-addons -# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-11-28 19:47+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" -"Language-Team: Italian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" - -#. module: base_crypt -#: model:ir.model,name:base_crypt.model_res_users -msgid "Users" -msgstr "Utenti" - -#~ msgid "" -#~ "This module replaces the cleartext password in the database with a password " -#~ "hash,\n" -#~ "preventing anyone from reading the original password.\n" -#~ "For your existing user base, the removal of the cleartext passwords occurs " -#~ "the first time\n" -#~ "a user logs into the database, after installing base_crypt.\n" -#~ "After installing this module it won't be possible to recover a forgotten " -#~ "password for your\n" -#~ "users, the only solution is for an admin to set a new password.\n" -#~ "\n" -#~ "Note: installing this module does not mean you can ignore basic security " -#~ "measures,\n" -#~ "as the password is still transmitted unencrypted on the network (by the " -#~ "client),\n" -#~ "unless you are using a secure protocol such as XML-RPCS.\n" -#~ " " -#~ msgstr "" -#~ "Questo modulo rimpiazza il testo in chiaro della password nel database con " -#~ "una password hash,\n" -#~ "prevenendo tutti quelli che volessero leggere la password originale.\n" -#~ "Per un utente base esistente, la rimozione della password in chiaro avviene " -#~ "la prima volta,\n" -#~ "durante l'autenticazione utente al database, dopo l'installazione di " -#~ "base_crypt.\n" -#~ "Dopo aver installato questo moduli, non vi sarà possibile recuperare una " -#~ "password dimenticata\n" -#~ "dal vostro utente, la sola soluzione per l'amministratore è impostarne una " -#~ "nuova.\n" -#~ "\n" -#~ "Nota: installare questo modulo non vuol dire che si possono ignorare le " -#~ "misure minime di sicurezza,\n" -#~ "siccome una password è ancora trasmessa non criptata sulla rete (dal " -#~ "client),\n" -#~ "a meno di non utilizzare un protocollo sicuro come XML-RPCS.\n" -#~ " " - -#, python-format -#~ msgid "Error" -#~ msgstr "Errore" - -#~ msgid "Base - Password Encryption" -#~ msgstr "Base - Criptazione password" - -#, python-format -#~ msgid "Please specify the password !" -#~ msgstr "Prego specificare la password!" - -#~ msgid "The chosen company is not in the allowed companies for this user" -#~ msgstr "L'azienda scelta non è fra le aziende abilitate per questo utente" - -#~ msgid "res.users" -#~ msgstr "res.users" - -#~ msgid "You can not have two users with the same login !" -#~ msgstr "Non è possibile avere due utenti con lo stesso login!" diff --git a/addons/base_crypt/i18n/nl.po b/addons/base_crypt/i18n/nl.po deleted file mode 100644 index dbeaa146dfa..00000000000 --- a/addons/base_crypt/i18n/nl.po +++ /dev/null @@ -1,79 +0,0 @@ -# Dutch translation for openobject-addons -# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-11-24 22:06+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" -"Language-Team: Dutch \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" - -#. module: base_crypt -#: model:ir.model,name:base_crypt.model_res_users -msgid "Users" -msgstr "Gebruikers" - -#~ msgid "" -#~ "This module replaces the cleartext password in the database with a password " -#~ "hash,\n" -#~ "preventing anyone from reading the original password.\n" -#~ "For your existing user base, the removal of the cleartext passwords occurs " -#~ "the first time\n" -#~ "a user logs into the database, after installing base_crypt.\n" -#~ "After installing this module it won't be possible to recover a forgotten " -#~ "password for your\n" -#~ "users, the only solution is for an admin to set a new password.\n" -#~ "\n" -#~ "Note: installing this module does not mean you can ignore basic security " -#~ "measures,\n" -#~ "as the password is still transmitted unencrypted on the network (by the " -#~ "client),\n" -#~ "unless you are using a secure protocol such as XML-RPCS.\n" -#~ " " -#~ msgstr "" -#~ "Deze module vervangt het (leesbare) tekst wachtwoord in de database met een " -#~ "versleuteld wachtwoord,\n" -#~ "waardoor niemand het originele wachtwoord nog kan lezen.\n" -#~ "Voor bestaande gebruikers worden de (leesbare) tekst wachtwoorden verwijderd " -#~ "bij de eerste keer\n" -#~ "aanmelden van de gebruiker, na installatie van deze module.\n" -#~ "Na installatie van deze module is het niet meer mogelijk om vergeten " -#~ "wachtwoorden op te zoeken voor uw\n" -#~ "gebruikers; de enige oplossing voor de beheerder is om een nieuw wachtwoord " -#~ "in te stellen.\n" -#~ "\n" -#~ "Letop: Installatie van deze module betekent niet dat u basis " -#~ "beveiligingsmaatregelen kunt negeren,\n" -#~ "omdat het wachtwoord nog steeds onversleuteld over het netwerk wordt " -#~ "gestuurd (door de gebruiker),\n" -#~ "tenzij u een veilig protocol gebruikt zoals XML-RPCS.\n" -#~ " " - -#, python-format -#~ msgid "Error" -#~ msgstr "Fout" - -#~ msgid "Base - Password Encryption" -#~ msgstr "Basis - Wachtwoord versleuteling" - -#, python-format -#~ msgid "Please specify the password !" -#~ msgstr "Geef aub een wachtwoord in !" - -#~ msgid "The chosen company is not in the allowed companies for this user" -#~ msgstr "Het gekozen bedrijf is geen toegestaan bedrijf voor deze gebruiker" - -#~ msgid "res.users" -#~ msgstr "res.users" - -#~ msgid "You can not have two users with the same login !" -#~ msgstr "U kunt niet twee gebruikers hebben met dezelfde gebruikersnaam !" diff --git a/addons/base_crypt/i18n/pt.po b/addons/base_crypt/i18n/pt.po deleted file mode 100644 index faac741ea4b..00000000000 --- a/addons/base_crypt/i18n/pt.po +++ /dev/null @@ -1,78 +0,0 @@ -# Portuguese translation for openobject-addons -# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-12-11 15:50+0000\n" -"Last-Translator: Rui Franco (multibase.pt) \n" -"Language-Team: Portuguese \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" - -#. module: base_crypt -#: model:ir.model,name:base_crypt.model_res_users -msgid "Users" -msgstr "Utilizadores" - -#, python-format -#~ msgid "Error" -#~ msgstr "Erro" - -#~ msgid "res.users" -#~ msgstr "res.users" - -#~ msgid "Base - Password Encryption" -#~ msgstr "Base - Encriptação de senhas" - -#, python-format -#~ msgid "Please specify the password !" -#~ msgstr "Por favor escolha uma senha !" - -#~ msgid "" -#~ "This module replaces the cleartext password in the database with a password " -#~ "hash,\n" -#~ "preventing anyone from reading the original password.\n" -#~ "For your existing user base, the removal of the cleartext passwords occurs " -#~ "the first time\n" -#~ "a user logs into the database, after installing base_crypt.\n" -#~ "After installing this module it won't be possible to recover a forgotten " -#~ "password for your\n" -#~ "users, the only solution is for an admin to set a new password.\n" -#~ "\n" -#~ "Note: installing this module does not mean you can ignore basic security " -#~ "measures,\n" -#~ "as the password is still transmitted unencrypted on the network (by the " -#~ "client),\n" -#~ "unless you are using a secure protocol such as XML-RPCS.\n" -#~ " " -#~ msgstr "" -#~ "Este módulo substitui as senhas em texto puro na base de dados com um erro " -#~ "grave na senha,\n" -#~ "impedindo que qualquer pessoa leia a senha original.\n" -#~ "Para a sua base de utilizadores existentes, a remoção de senhas em texto " -#~ "plano ocorre pela primeira vez\n" -#~ "um utilizador conecta-se à base de dados, após a instalação do base_crypt.\n" -#~ "Depois de instalar este módulo não será possível recuperar uma senha " -#~ "esquecida para o\n" -#~ "utilizador, a única solução é um administrador definir uma nova senha.\n" -#~ "\n" -#~ "Nota: A instalação deste módulo não significa que pode ignorar as medidas " -#~ "básicas de segurança,\n" -#~ "como a senha ainda é transmitida não é encriptada na rede (pelo cliente),\n" -#~ "a menos que esteja a usar um protocolo seguro, como o XML-RPCS.\n" -#~ " " - -#~ msgid "You can not have two users with the same login !" -#~ msgstr "Não pode ter dois utilizadores com o mesmo registo!" - -#~ msgid "The chosen company is not in the allowed companies for this user" -#~ msgstr "" -#~ "A empresa escolhida não está entre as permitidas para este utilizador" diff --git a/addons/base_crypt/i18n/pt_BR.po b/addons/base_crypt/i18n/pt_BR.po deleted file mode 100644 index 85126ddebc8..00000000000 --- a/addons/base_crypt/i18n/pt_BR.po +++ /dev/null @@ -1,78 +0,0 @@ -# Brazilian Portuguese translation for openobject-addons -# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-12-10 14:16+0000\n" -"Last-Translator: Projetaty Soluções OpenSource \n" -"Language-Team: Brazilian Portuguese \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-11 04:49+0000\n" -"X-Generator: Launchpad (build 16356)\n" - -#. module: base_crypt -#: model:ir.model,name:base_crypt.model_res_users -msgid "Users" -msgstr "Usuários" - -#, python-format -#~ msgid "Error" -#~ msgstr "Erro" - -#~ msgid "The chosen company is not in the allowed companies for this user" -#~ msgstr "" -#~ "A empresa escolhida não está entre as empresas habilitadas para este usuário" - -#~ msgid "res.users" -#~ msgstr "res.users" - -#~ msgid "" -#~ "This module replaces the cleartext password in the database with a password " -#~ "hash,\n" -#~ "preventing anyone from reading the original password.\n" -#~ "For your existing user base, the removal of the cleartext passwords occurs " -#~ "the first time\n" -#~ "a user logs into the database, after installing base_crypt.\n" -#~ "After installing this module it won't be possible to recover a forgotten " -#~ "password for your\n" -#~ "users, the only solution is for an admin to set a new password.\n" -#~ "\n" -#~ "Note: installing this module does not mean you can ignore basic security " -#~ "measures,\n" -#~ "as the password is still transmitted unencrypted on the network (by the " -#~ "client),\n" -#~ "unless you are using a secure protocol such as XML-RPCS.\n" -#~ " " -#~ msgstr "" -#~ "Este módulo substitui as senhas em texto puro na base de dados por senhas " -#~ "embaralhadas,\n" -#~ "impedindo que qualquer pessoa leia a senha original.\n" -#~ "Para os dados de usuários existentes, a remoção da senha em texto puro " -#~ "ocorre na primeira vez\n" -#~ "que o usuário se conecta ao banco de dados após a instalação base_crypt.\n" -#~ "Depois de instalar este módulo não será possível recuperar uma senha " -#~ "esquecida para os seus\n" -#~ "usuários, a única solução é que um administrador defina uma nova senha.\n" -#~ "\n" -#~ "Nota: A instalação deste módulo não significa que você pode ignorar as " -#~ "medidas básicas de segurança,\n" -#~ "como a senha ainda é transmitida sem criptografia na rede (pelo cliente),\n" -#~ "a menos que você estiver usando um protocolo seguro, como XML-RPCS.\n" -#~ " " - -#~ msgid "Base - Password Encryption" -#~ msgstr "Base - Criptografia de Senha" - -#, python-format -#~ msgid "Please specify the password !" -#~ msgstr "Por favor informe a senha!" - -#~ msgid "You can not have two users with the same login !" -#~ msgstr "Você não pode ter dois usuários com o mesmo login!" diff --git a/addons/base_crypt/i18n/ro.po b/addons/base_crypt/i18n/ro.po deleted file mode 100644 index 1dfe9436388..00000000000 --- a/addons/base_crypt/i18n/ro.po +++ /dev/null @@ -1,81 +0,0 @@ -# Romanian translation for openobject-addons -# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2011-12-30 21:01+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Romanian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" - -#. module: base_crypt -#: model:ir.model,name:base_crypt.model_res_users -msgid "Users" -msgstr "" - -#~ msgid "" -#~ "This module replaces the cleartext password in the database with a password " -#~ "hash,\n" -#~ "preventing anyone from reading the original password.\n" -#~ "For your existing user base, the removal of the cleartext passwords occurs " -#~ "the first time\n" -#~ "a user logs into the database, after installing base_crypt.\n" -#~ "After installing this module it won't be possible to recover a forgotten " -#~ "password for your\n" -#~ "users, the only solution is for an admin to set a new password.\n" -#~ "\n" -#~ "Note: installing this module does not mean you can ignore basic security " -#~ "measures,\n" -#~ "as the password is still transmitted unencrypted on the network (by the " -#~ "client),\n" -#~ "unless you are using a secure protocol such as XML-RPCS.\n" -#~ " " -#~ msgstr "" -#~ "Acest modul inlocuieste parola formata din litere din baza de date cu o " -#~ "parola hash \n" -#~ "(formata din simboluri), impiedicand pe oricine sa citeasca parola " -#~ "originala. \n" -#~ "Pentru baza existenta de utilizatori, inlocuirea parolelor din litere are " -#~ "loc prima data \n" -#~ "cand un utilizator se conecteaza la baza de date, dupa instalarea modulului " -#~ "bas-crypt. \n" -#~ "Dupa instalarea acestui modul, nu va mai fi posibila recuperarea unei parole " -#~ "uitate de \n" -#~ "catre utilizatorii dumneavoastra, iar singura solutie ramasa este ca un " -#~ "admin sa seteze o parola noua. \n" -#~ "\n" -#~ "Nota: instalarea acestui modul nu inseamna ca puteti ignora masurile de baza " -#~ "de securitate, \n" -#~ "deoarece parola este inca transmisa necriptata in retea (de catre client), \n" -#~ "daca nu cumva folositi un protocol sigur precum XML-RPCS.\n" -#~ " " - -#, python-format -#~ msgid "Error" -#~ msgstr "Eroare" - -#~ msgid "Base - Password Encryption" -#~ msgstr "Baza - Criptare Parola" - -#, python-format -#~ msgid "Please specify the password !" -#~ msgstr "Va rugam sa specificati parola !" - -#~ msgid "The chosen company is not in the allowed companies for this user" -#~ msgstr "" -#~ "Compania aleasa nu este printre companiile permise acestui utilizator" - -#~ msgid "You can not have two users with the same login !" -#~ msgstr "Nu pot exista doi utilizatori cu acelasi nume de autentificare !" - -#~ msgid "res.users" -#~ msgstr "res.utilizatori" diff --git a/addons/base_crypt/i18n/sl.po b/addons/base_crypt/i18n/sl.po deleted file mode 100644 index 6039d10f108..00000000000 --- a/addons/base_crypt/i18n/sl.po +++ /dev/null @@ -1,75 +0,0 @@ -# Slovenian translation for openobject-addons -# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2011-09-14 11:36+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Slovenian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" - -#. module: base_crypt -#: model:ir.model,name:base_crypt.model_res_users -msgid "Users" -msgstr "" - -#, python-format -#~ msgid "Error" -#~ msgstr "Napaka" - -#~ msgid "Base - Password Encryption" -#~ msgstr "Osnovno - enkripcija gesla" - -#, python-format -#~ msgid "Please specify the password !" -#~ msgstr "Prosim, navedite geslo !" - -#~ msgid "The chosen company is not in the allowed companies for this user" -#~ msgstr "Izbrano podjetje ni v dovoljenih podjetjih za tega uporabnika" - -#~ msgid "res.users" -#~ msgstr "res.users" - -#~ msgid "You can not have two users with the same login !" -#~ msgstr "Ne morete imeti dva uporabnika z istim prijavnim imenom!" - -#~ msgid "" -#~ "This module replaces the cleartext password in the database with a password " -#~ "hash,\n" -#~ "preventing anyone from reading the original password.\n" -#~ "For your existing user base, the removal of the cleartext passwords occurs " -#~ "the first time\n" -#~ "a user logs into the database, after installing base_crypt.\n" -#~ "After installing this module it won't be possible to recover a forgotten " -#~ "password for your\n" -#~ "users, the only solution is for an admin to set a new password.\n" -#~ "\n" -#~ "Note: installing this module does not mean you can ignore basic security " -#~ "measures,\n" -#~ "as the password is still transmitted unencrypted on the network (by the " -#~ "client),\n" -#~ "unless you are using a secure protocol such as XML-RPCS.\n" -#~ " " -#~ msgstr "" -#~ "Ta modul nadomešča obliko besedilnega geslo v bazi podatkov z hash geslom,\n" -#~ "ki preprečuje komurkoli branje izvirnega gesla.\n" -#~ "Za vašo obstoječo bazo uporabnikov, odstranitev gesla v obliki besedila se " -#~ "pojavi pri\n" -#~ "prvi prijavi uporabnika v bazo podatkov, po namestitvi base_crypt.\n" -#~ "Po namestitvi tega modula ne bo mogoče obnoviti pozabiljenega gesla za vaše\n" -#~ "uporabnike, edina rešitev je, da admin nastavi novo geslo.\n" -#~ "\n" -#~ "Opomba: namestitev tega modula ne pomeni ignoriranja osnovnih varnostnih " -#~ "ukrepov,\n" -#~ "ker se geslo še vedno prenaša nešifrirano v omrežju (preko klienta),\n" -#~ "razen če ne uporabljate varni protokol kot je XML-RPCS.\n" -#~ " " diff --git a/addons/base_crypt/i18n/sv.po b/addons/base_crypt/i18n/sv.po deleted file mode 100644 index f6497913889..00000000000 --- a/addons/base_crypt/i18n/sv.po +++ /dev/null @@ -1,39 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * base_crypt -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.14\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2011-02-15 15:37+0000\n" -"Last-Translator: Olivier Dony (OpenERP) \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" - -#. module: base_crypt -#: model:ir.model,name:base_crypt.model_res_users -msgid "Users" -msgstr "" - -#~ msgid "You can not have two users with the same login !" -#~ msgstr "Du kan inte ha två användare med samma användarid !" - -#~ msgid "The chosen company is not in the allowed companies for this user" -#~ msgstr "Detta bolag är inte tillåtet för den här användaren" - -#, python-format -#~ msgid "Error" -#~ msgstr "Fel" - -#, python-format -#~ msgid "Please specify the password !" -#~ msgstr "Vänligen ange lösenordet !" - -#~ msgid "res.users" -#~ msgstr "res.users" diff --git a/addons/base_crypt/i18n/zh_CN.po b/addons/base_crypt/i18n/zh_CN.po deleted file mode 100644 index fbe3147e47a..00000000000 --- a/addons/base_crypt/i18n/zh_CN.po +++ /dev/null @@ -1,68 +0,0 @@ -# Chinese (Simplified) translation for openobject-addons -# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-11-28 06:30+0000\n" -"Last-Translator: mrshelly \n" -"Language-Team: Chinese (Simplified) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" - -#. module: base_crypt -#: model:ir.model,name:base_crypt.model_res_users -msgid "Users" -msgstr "用户" - -#, python-format -#~ msgid "Error" -#~ msgstr "错误" - -#, python-format -#~ msgid "Please specify the password !" -#~ msgstr "请指定密码!" - -#~ msgid "The chosen company is not in the allowed companies for this user" -#~ msgstr "用户无权操作所选择公司数据" - -#~ msgid "res.users" -#~ msgstr "res.users" - -#~ msgid "" -#~ "This module replaces the cleartext password in the database with a password " -#~ "hash,\n" -#~ "preventing anyone from reading the original password.\n" -#~ "For your existing user base, the removal of the cleartext passwords occurs " -#~ "the first time\n" -#~ "a user logs into the database, after installing base_crypt.\n" -#~ "After installing this module it won't be possible to recover a forgotten " -#~ "password for your\n" -#~ "users, the only solution is for an admin to set a new password.\n" -#~ "\n" -#~ "Note: installing this module does not mean you can ignore basic security " -#~ "measures,\n" -#~ "as the password is still transmitted unencrypted on the network (by the " -#~ "client),\n" -#~ "unless you are using a secure protocol such as XML-RPCS.\n" -#~ " " -#~ msgstr "" -#~ "这个模块在数据库里用密码散列代替原来的明文密码,防止任何人读取到原密码。\n" -#~ "对于已存在在数据,当安装了base_crypt后,明文密码会在用户第一次登陆数据库的时候清除。\n" -#~ "在安装了这个模块后将不能恢复已遗忘的用户密码,唯一的解决办法是通过管理员输入一个新密码。\n" -#~ "注意:安装这个模块并不意味着你可以忽略基本安全措施,\n" -#~ "除非你用了一个安全协议例如XML-RPCS,否则密码在网络仍然以非加密的形式传输(通过客户端)\n" -#~ " " - -#~ msgid "Base - Password Encryption" -#~ msgstr "Base - Password Encryption" - -#~ msgid "You can not have two users with the same login !" -#~ msgstr "两个用户不能使用相同的用户名!" diff --git a/addons/base_gengo/i18n/ar.po b/addons/base_gengo/i18n/ar.po index 94bd98beacb..fcdc2e25ac9 100644 --- a/addons/base_gengo/i18n/ar.po +++ b/addons/base_gengo/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-01 11:30+0000\n" "Last-Translator: FULL NAME \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: 2012-12-04 05:55+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/base_gengo.pot b/addons/base_gengo/i18n/base_gengo.pot index 5ab1781fa3d..7fe77c3f8ae 100644 --- a/addons/base_gengo/i18n/base_gengo.pot +++ b/addons/base_gengo/i18n/base_gengo.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_gengo/i18n/de.po b/addons/base_gengo/i18n/de.po index 06c9060a90c..9a20abfafbc 100644 --- a/addons/base_gengo/i18n/de.po +++ b/addons/base_gengo/i18n/de.po @@ -7,15 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-12-16 11:41+0000\n" -"Last-Translator: Felix Schubert \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-19 19:47+0000\n" +"Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-17 04:47+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_gengo #: view:res.company:0 @@ -51,7 +52,7 @@ msgstr "base.gengo.translations" #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." -msgstr "" +msgstr "Jobs werden automatisch durch Gengo geprüft." #. module: base_gengo #: field:base.gengo.translations,lang_id:0 @@ -61,13 +62,13 @@ msgstr "Sprache" #. module: base_gengo #: field:ir.translation,gengo_comment:0 msgid "Comments & Activity Linked to Gengo" -msgstr "" +msgstr "Kommentare & Gengo Aktivitäten" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:124 #, python-format msgid "Gengo Sync Translation (Response)" -msgstr "" +msgstr "Gengo Synch Übersetzung (Antwort)" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:72 @@ -76,11 +77,14 @@ msgid "" "Gengo `Public Key` or `Private Key` are missing. Enter your Gengo " "authentication parameters under `Settings > Companies > Gengo Parameters`." msgstr "" +"Es fehlen der Gengo `Public Key` oder `Private Key' zur Anmeldung. Geben " +"Sie Ihre Gengko Parameter unter Konfiguration / Unternehmens " +"Authentifizierung an unter" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 msgid "Translation By Machine" -msgstr "" +msgstr "Maschinelle Vorhersage" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 @@ -91,11 +95,15 @@ msgid "" "--\n" " Commented on %s by %s." msgstr "" +"%s\n" +"\n" +"--\n" +" Kommentar zu Schritt %s by %s." #. module: base_gengo #: field:ir.translation,gengo_translation:0 msgid "Gengo Translation Service Level" -msgstr "" +msgstr "Gengo Übersetzungssergvice" #. module: base_gengo #: constraint:ir.translation:0 @@ -106,7 +114,7 @@ msgstr "" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 msgid "Standard" -msgstr "" +msgstr "Standard" #. module: base_gengo #: help:ir.translation,gengo_translation:0 @@ -114,65 +122,67 @@ msgid "" "You can select here the service level you want for an automatic translation " "using Gengo." msgstr "" +"Sie können die Dienstleistungen für eine automatische Übersetzung dieser " +"Gruppe einfach beauftragen." #. module: base_gengo #: field:base.gengo.translations,restart_send_job:0 msgid "Restart Sending Job" -msgstr "" +msgstr "Erneut senden" #. module: base_gengo #: view:ir.translation:0 msgid "To Approve In Gengo" -msgstr "" +msgstr "In Gengo genehmigen" #. module: base_gengo #: view:res.company:0 msgid "Private Key" -msgstr "" +msgstr "Privater Schlüssel" #. module: base_gengo #: view:res.company:0 msgid "Public Key" -msgstr "" +msgstr "Öffentlicher Schlüssel" #. module: base_gengo #: field:res.company,gengo_public_key:0 msgid "Gengo Public Key" -msgstr "" +msgstr "Öffentlicher Schlüssel in Gengo" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:123 #, python-format msgid "Gengo Sync Translation (Request)" -msgstr "" +msgstr "Gengomit mit Übersetzungen (Anfragen)" #. module: base_gengo #: view:ir.translation:0 msgid "Translations" -msgstr "" +msgstr "Übersetzungen" #. module: base_gengo #: field:res.company,gengo_auto_approve:0 msgid "Auto Approve Translation ?" -msgstr "" +msgstr "Übersetzung automatisch genehmigen ?" #. module: base_gengo #: model:ir.actions.act_window,name:base_gengo.action_wizard_base_gengo_translations #: model:ir.ui.menu,name:base_gengo.menu_action_wizard_base_gengo_translations msgid "Gengo: Manual Request of Translation" -msgstr "" +msgstr "Gengo: Manuelle Erstellung einer Anfrage" #. module: base_gengo #: code:addons/base_gengo/ir_translation.py:62 #: code:addons/base_gengo/wizard/base_gengo_translations.py:109 #, python-format msgid "Gengo Authentication Error" -msgstr "" +msgstr "Gengo Authentifizierung Fehler" #. module: base_gengo #: model:ir.model,name:base_gengo.model_res_company msgid "Companies" -msgstr "" +msgstr "Unternehmen" #. module: base_gengo #: view:ir.translation:0 @@ -181,6 +191,9 @@ msgid "" "translation has to be approved to be uploaded in this system. You are " "supposed to do that directly by using your Gengo Account" msgstr "" +"Hinweis: Insoweit der Status 'in Bearbeitung' ist, bedeutet dieses, daß " +"diese Dienstleistung zuerst für einen Upload genehmigt werden muss. Sie " +"können dies mit Ihrem Gengo Konto direkt vornehmen." #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:82 @@ -189,16 +202,18 @@ msgid "" "Gengo connection failed with this message:\n" "``%s``" msgstr "" +"Die Verbindung scheitert mit dieser Gengo Nachricht: '\n" +"''%s''" #. module: base_gengo #: view:res.company:0 msgid "Gengo Parameters" -msgstr "" +msgstr "Gengo Parameter" #. module: base_gengo #: view:base.gengo.translations:0 msgid "Send" -msgstr "" +msgstr "Senden" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 @@ -213,37 +228,37 @@ msgstr "" #. module: base_gengo #: view:ir.translation:0 msgid "Gengo Translation Service" -msgstr "" +msgstr "Gengo Übersetzungsservice" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 msgid "Pro" -msgstr "" +msgstr "Pro" #. module: base_gengo #: view:base.gengo.translations:0 msgid "Gengo Request Form" -msgstr "" +msgstr "Gengo Formular für Angebote" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:114 #, python-format msgid "Warning" -msgstr "" +msgstr "Warnung" #. module: base_gengo #: help:res.company,gengo_comment:0 msgid "" "This comment will be automatically be enclosed in each an every request sent " "to Gengo" -msgstr "" +msgstr "Dieser Kommentar wurde automatisch mitgesendet werden" #. module: base_gengo #: view:base.gengo.translations:0 msgid "Cancel" -msgstr "" +msgstr "Abbrechen" #. module: base_gengo #: view:base.gengo.translations:0 msgid "or" -msgstr "" +msgstr "oder" diff --git a/addons/base_gengo/i18n/es.po b/addons/base_gengo/i18n/es.po index c328fe30e86..60643b71a69 100644 --- a/addons/base_gengo/i18n/es.po +++ b/addons/base_gengo/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-12 02:09+0000\n" "Last-Translator: Roberto Lizana (trey.es) \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-13 04:45+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/fr.po b/addons/base_gengo/i18n/fr.po new file mode 100644 index 00000000000..39e35e61f09 --- /dev/null +++ b/addons/base_gengo/i18n/fr.po @@ -0,0 +1,249 @@ +# French translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-04 10:45+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-05 05:04+0000\n" +"X-Generator: Launchpad (build 16393)\n" + +#. module: base_gengo +#: view:res.company:0 +msgid "Comments for Translator" +msgstr "" + +#. module: base_gengo +#: field:ir.translation,job_id:0 +msgid "Gengo Job ID" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "This language is not supported by the Gengo translation services." +msgstr "Cette langue n'est pas supportée par le service de traduction Gengo." + +#. module: base_gengo +#: field:res.company,gengo_comment:0 +msgid "Comments" +msgstr "Commentaires" + +#. module: base_gengo +#: field:res.company,gengo_private_key:0 +msgid "Gengo Private Key" +msgstr "Clé privée Gengo" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_base_gengo_translations +msgid "base.gengo.translations" +msgstr "base.gengo.translations" + +#. module: base_gengo +#: help:res.company,gengo_auto_approve:0 +msgid "Jobs are Automatically Approved by Gengo." +msgstr "Les travaux sont automatiquement validés par Gengo." + +#. module: base_gengo +#: field:base.gengo.translations,lang_id:0 +msgid "Language" +msgstr "Langue" + +#. module: base_gengo +#: field:ir.translation,gengo_comment:0 +msgid "Comments & Activity Linked to Gengo" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:124 +#, python-format +msgid "Gengo Sync Translation (Response)" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:72 +#, python-format +msgid "" +"Gengo `Public Key` or `Private Key` are missing. Enter your Gengo " +"authentication parameters under `Settings > Companies > Gengo Parameters`." +msgstr "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Translation By Machine" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:155 +#, python-format +msgid "" +"%s\n" +"\n" +"--\n" +" Commented on %s by %s." +msgstr "" + +#. module: base_gengo +#: field:ir.translation,gengo_translation:0 +msgid "Gengo Translation Service Level" +msgstr "" + +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Standard" +msgstr "" + +#. module: base_gengo +#: help:ir.translation,gengo_translation:0 +msgid "" +"You can select here the service level you want for an automatic translation " +"using Gengo." +msgstr "" + +#. module: base_gengo +#: field:base.gengo.translations,restart_send_job:0 +msgid "Restart Sending Job" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "To Approve In Gengo" +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Private Key" +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Public Key" +msgstr "" + +#. module: base_gengo +#: field:res.company,gengo_public_key:0 +msgid "Gengo Public Key" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:123 +#, python-format +msgid "Gengo Sync Translation (Request)" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Translations" +msgstr "" + +#. module: base_gengo +#: field:res.company,gengo_auto_approve:0 +msgid "Auto Approve Translation ?" +msgstr "" + +#. module: base_gengo +#: model:ir.actions.act_window,name:base_gengo.action_wizard_base_gengo_translations +#: model:ir.ui.menu,name:base_gengo.menu_action_wizard_base_gengo_translations +msgid "Gengo: Manual Request of Translation" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/ir_translation.py:62 +#: code:addons/base_gengo/wizard/base_gengo_translations.py:109 +#, python-format +msgid "Gengo Authentication Error" +msgstr "" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "" +"Note: If the translation state is 'In Progress', it means that the " +"translation has to be approved to be uploaded in this system. You are " +"supposed to do that directly by using your Gengo Account" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:82 +#, python-format +msgid "" +"Gengo connection failed with this message:\n" +"``%s``" +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Gengo Parameters" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Send" +msgstr "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Ultra" +msgstr "" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_ir_translation +msgid "ir.translation" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Translation Service" +msgstr "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Pro" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Gengo Request Form" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "Warning" +msgstr "" + +#. module: base_gengo +#: help:res.company,gengo_comment:0 +msgid "" +"This comment will be automatically be enclosed in each an every request sent " +"to Gengo" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Cancel" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "or" +msgstr "" diff --git a/addons/base_gengo/i18n/hr.po b/addons/base_gengo/i18n/hr.po index 128c691bef4..93ea116c988 100644 --- a/addons/base_gengo/i18n/hr.po +++ b/addons/base_gengo/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-09 20:02+0000\n" "Last-Translator: Goran Kliska \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-10 04:39+0000\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/it.po b/addons/base_gengo/i18n/it.po index d0aa2abbca1..a1b5eee1dd8 100644 --- a/addons/base_gengo/i18n/it.po +++ b/addons/base_gengo/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-13 20:57+0000\n" "Last-Translator: Nicola Riolini - Micronaet \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-14 05:39+0000\n" -"X-Generator: Launchpad (build 16369)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/nb.po b/addons/base_gengo/i18n/nb.po index 935f150894c..0d7bc05d7bc 100644 --- a/addons/base_gengo/i18n/nb.po +++ b/addons/base_gengo/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-06 10:25+0000\n" "Last-Translator: Kaare Pettersen \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-07 04:36+0000\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/nl.po b/addons/base_gengo/i18n/nl.po new file mode 100644 index 00000000000..0f7c1a8786c --- /dev/null +++ b/addons/base_gengo/i18n/nl.po @@ -0,0 +1,253 @@ +# Dutch translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-02 20:40+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-03 04:48+0000\n" +"X-Generator: Launchpad (build 16393)\n" + +#. module: base_gengo +#: view:res.company:0 +msgid "Comments for Translator" +msgstr "Opmerkingen voor vertaler" + +#. module: base_gengo +#: field:ir.translation,job_id:0 +msgid "Gengo Job ID" +msgstr "Gengo Job ID" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "This language is not supported by the Gengo translation services." +msgstr "" + +#. module: base_gengo +#: field:res.company,gengo_comment:0 +msgid "Comments" +msgstr "Opmerkingen" + +#. module: base_gengo +#: field:res.company,gengo_private_key:0 +msgid "Gengo Private Key" +msgstr "Gengo Private Key" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_base_gengo_translations +msgid "base.gengo.translations" +msgstr "base.gengo.translations" + +#. module: base_gengo +#: help:res.company,gengo_auto_approve:0 +msgid "Jobs are Automatically Approved by Gengo." +msgstr "" + +#. module: base_gengo +#: field:base.gengo.translations,lang_id:0 +msgid "Language" +msgstr "Taal" + +#. module: base_gengo +#: field:ir.translation,gengo_comment:0 +msgid "Comments & Activity Linked to Gengo" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:124 +#, python-format +msgid "Gengo Sync Translation (Response)" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:72 +#, python-format +msgid "" +"Gengo `Public Key` or `Private Key` are missing. Enter your Gengo " +"authentication parameters under `Settings > Companies > Gengo Parameters`." +msgstr "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Translation By Machine" +msgstr "Vertalingen door machine" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:155 +#, python-format +msgid "" +"%s\n" +"\n" +"--\n" +" Commented on %s by %s." +msgstr "" +"%s\n" +"\n" +"--\n" +" Heeft opmerkingen op %s door %s." + +#. module: base_gengo +#: field:ir.translation,gengo_translation:0 +msgid "Gengo Translation Service Level" +msgstr "" + +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Standard" +msgstr "Standaard" + +#. module: base_gengo +#: help:ir.translation,gengo_translation:0 +msgid "" +"You can select here the service level you want for an automatic translation " +"using Gengo." +msgstr "" + +#. module: base_gengo +#: field:base.gengo.translations,restart_send_job:0 +msgid "Restart Sending Job" +msgstr "Start verstuur job opnieuw" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "To Approve In Gengo" +msgstr "Gied te keuren in Gengo" + +#. module: base_gengo +#: view:res.company:0 +msgid "Private Key" +msgstr "Privé-sleutel" + +#. module: base_gengo +#: view:res.company:0 +msgid "Public Key" +msgstr "Publieke sleutel" + +#. module: base_gengo +#: field:res.company,gengo_public_key:0 +msgid "Gengo Public Key" +msgstr "Gengo publieke sleutel" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:123 +#, python-format +msgid "Gengo Sync Translation (Request)" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Translations" +msgstr "Vertalingen" + +#. module: base_gengo +#: field:res.company,gengo_auto_approve:0 +msgid "Auto Approve Translation ?" +msgstr "Automatisch vertalingen goedkeuren" + +#. module: base_gengo +#: model:ir.actions.act_window,name:base_gengo.action_wizard_base_gengo_translations +#: model:ir.ui.menu,name:base_gengo.menu_action_wizard_base_gengo_translations +msgid "Gengo: Manual Request of Translation" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/ir_translation.py:62 +#: code:addons/base_gengo/wizard/base_gengo_translations.py:109 +#, python-format +msgid "Gengo Authentication Error" +msgstr "" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_res_company +msgid "Companies" +msgstr "Bedrijven" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "" +"Note: If the translation state is 'In Progress', it means that the " +"translation has to be approved to be uploaded in this system. You are " +"supposed to do that directly by using your Gengo Account" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:82 +#, python-format +msgid "" +"Gengo connection failed with this message:\n" +"``%s``" +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Gengo Parameters" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Send" +msgstr "Verzend" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Ultra" +msgstr "Ultra" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_ir_translation +msgid "ir.translation" +msgstr "ir.translation" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Translation Service" +msgstr "Gengo vertaal service" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Pro" +msgstr "Pro" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Gengo Request Form" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "Warning" +msgstr "Waarschuwing" + +#. module: base_gengo +#: help:res.company,gengo_comment:0 +msgid "" +"This comment will be automatically be enclosed in each an every request sent " +"to Gengo" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Cancel" +msgstr "Annuleren" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "or" +msgstr "" diff --git a/addons/base_gengo/i18n/pt.po b/addons/base_gengo/i18n/pt.po index ed2b0a3a471..91283b6c5b6 100644 --- a/addons/base_gengo/i18n/pt.po +++ b/addons/base_gengo/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-17 14:44+0000\n" "Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-18 05:02+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/pt_BR.po b/addons/base_gengo/i18n/pt_BR.po index 6c9fdf6c7aa..fd6149254c8 100644 --- a/addons/base_gengo/i18n/pt_BR.po +++ b/addons/base_gengo/i18n/pt_BR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-10 15:30+0000\n" "Last-Translator: Projetaty Soluções OpenSource \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-11 04:49+0000\n" -"X-Generator: Launchpad (build 16356)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/ro.po b/addons/base_gengo/i18n/ro.po new file mode 100644 index 00000000000..ea62374c4e5 --- /dev/null +++ b/addons/base_gengo/i18n/ro.po @@ -0,0 +1,264 @@ +# Romanian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-19 18:18+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-20 04:37+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: base_gengo +#: view:res.company:0 +msgid "Comments for Translator" +msgstr "Comentarii pentru Traducator" + +#. module: base_gengo +#: field:ir.translation,job_id:0 +msgid "Gengo Job ID" +msgstr "ID Sarcina Gengo" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "This language is not supported by the Gengo translation services." +msgstr "Aceasta limba nu este acceptata de serviciile de traducere Gengo." + +#. module: base_gengo +#: field:res.company,gengo_comment:0 +msgid "Comments" +msgstr "Comentarii" + +#. module: base_gengo +#: field:res.company,gengo_private_key:0 +msgid "Gengo Private Key" +msgstr "Cheie Privata Gengo" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_base_gengo_translations +msgid "base.gengo.translations" +msgstr "baza.gengo.traduceri" + +#. module: base_gengo +#: help:res.company,gengo_auto_approve:0 +msgid "Jobs are Automatically Approved by Gengo." +msgstr "Sarcinile sunt Aprobate Automat de Gengo." + +#. module: base_gengo +#: field:base.gengo.translations,lang_id:0 +msgid "Language" +msgstr "Limba" + +#. module: base_gengo +#: field:ir.translation,gengo_comment:0 +msgid "Comments & Activity Linked to Gengo" +msgstr "Comentarii si Activitati Asociate lui Gengo" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:124 +#, python-format +msgid "Gengo Sync Translation (Response)" +msgstr "Traducere Sinc Gengo (Raspuns)" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:72 +#, python-format +msgid "" +"Gengo `Public Key` or `Private Key` are missing. Enter your Gengo " +"authentication parameters under `Settings > Companies > Gengo Parameters`." +msgstr "" +"Lipseste `Cheia Publica` sau `Cheia Privata`Gengo. Introduceti parametrii de " +"autentificare Gengo in `Setari > Companii > Parametri Gengo`." + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Translation By Machine" +msgstr "Traducere mecanica" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:155 +#, python-format +msgid "" +"%s\n" +"\n" +"--\n" +" Commented on %s by %s." +msgstr "" +"%s\n" +"\n" +"--\n" +" Comentat in %s de %s." + +#. module: base_gengo +#: field:ir.translation,gengo_translation:0 +msgid "Gengo Translation Service Level" +msgstr "Nivelul Serviciului de Traduceri Gengo" + +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" +"Serviciul de traduceri Gengo selectat nu este acceptat pentru aceasta limba." + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Standard" +msgstr "Standard" + +#. module: base_gengo +#: help:ir.translation,gengo_translation:0 +msgid "" +"You can select here the service level you want for an automatic translation " +"using Gengo." +msgstr "" +"Aici puteti selecta nivelul serviciului pe care il doriti pentru o traducere " +"automata folosind Gengo." + +#. module: base_gengo +#: field:base.gengo.translations,restart_send_job:0 +msgid "Restart Sending Job" +msgstr "Reporniti Trimiterea Sarcinii" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "To Approve In Gengo" +msgstr "De Aprobat in Gengo" + +#. module: base_gengo +#: view:res.company:0 +msgid "Private Key" +msgstr "Cheie Privata" + +#. module: base_gengo +#: view:res.company:0 +msgid "Public Key" +msgstr "Cheie Publica" + +#. module: base_gengo +#: field:res.company,gengo_public_key:0 +msgid "Gengo Public Key" +msgstr "Cheie Publica Gengo" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:123 +#, python-format +msgid "Gengo Sync Translation (Request)" +msgstr "Traducere Sinc Gengo (Cerere)" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Translations" +msgstr "Traduceri" + +#. module: base_gengo +#: field:res.company,gengo_auto_approve:0 +msgid "Auto Approve Translation ?" +msgstr "Aprobati Automat Traducerea" + +#. module: base_gengo +#: model:ir.actions.act_window,name:base_gengo.action_wizard_base_gengo_translations +#: model:ir.ui.menu,name:base_gengo.menu_action_wizard_base_gengo_translations +msgid "Gengo: Manual Request of Translation" +msgstr "Gengo: Cerere Manuala pentru Traducere" + +#. module: base_gengo +#: code:addons/base_gengo/ir_translation.py:62 +#: code:addons/base_gengo/wizard/base_gengo_translations.py:109 +#, python-format +msgid "Gengo Authentication Error" +msgstr "Eroare de Autentificare Gengo" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_res_company +msgid "Companies" +msgstr "Companii" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "" +"Note: If the translation state is 'In Progress', it means that the " +"translation has to be approved to be uploaded in this system. You are " +"supposed to do that directly by using your Gengo Account" +msgstr "" +"Nota: Daca starea traducerii este 'In Desfasurare', inseamna ca traducerea " +"trebuie aprobata pentru a fi incarcata in acest sistem. Trebuie sa faceti " +"aceasta direct folosind Contul dumneavoastra Gengo" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:82 +#, python-format +msgid "" +"Gengo connection failed with this message:\n" +"``%s``" +msgstr "" +"Conexiunea Gengo a esuat cu acest mesaj:\n" +"``%s``" + +#. module: base_gengo +#: view:res.company:0 +msgid "Gengo Parameters" +msgstr "Parametri Gengo" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Send" +msgstr "Trimite" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Ultra" +msgstr "Ultra" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_ir_translation +msgid "ir.translation" +msgstr "ir.traducere" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Translation Service" +msgstr "Serviciul de Traducere Gengo" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Pro" +msgstr "Pro" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Gengo Request Form" +msgstr "Formular de Cerere Gengo" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "Warning" +msgstr "Avertisment" + +#. module: base_gengo +#: help:res.company,gengo_comment:0 +msgid "" +"This comment will be automatically be enclosed in each an every request sent " +"to Gengo" +msgstr "" +"Acest comentariu va fi inclus automat in fiecare cerere trimisa catre Gengo" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Cancel" +msgstr "Anuleaza" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "or" +msgstr "sau" diff --git a/addons/base_gengo/i18n/sl.po b/addons/base_gengo/i18n/sl.po new file mode 100644 index 00000000000..85fd791716e --- /dev/null +++ b/addons/base_gengo/i18n/sl.po @@ -0,0 +1,249 @@ +# Slovenian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-26 11:43+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-27 04:36+0000\n" +"X-Generator: Launchpad (build 16451)\n" + +#. module: base_gengo +#: view:res.company:0 +msgid "Comments for Translator" +msgstr "Komentarji za prevajalce" + +#. module: base_gengo +#: field:ir.translation,job_id:0 +msgid "Gengo Job ID" +msgstr "Gengo Job ID" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "This language is not supported by the Gengo translation services." +msgstr "Ta jezik ni podprt" + +#. module: base_gengo +#: field:res.company,gengo_comment:0 +msgid "Comments" +msgstr "Komentarji" + +#. module: base_gengo +#: field:res.company,gengo_private_key:0 +msgid "Gengo Private Key" +msgstr "Gengo privatni ključ" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_base_gengo_translations +msgid "base.gengo.translations" +msgstr "base.gengo.translations" + +#. module: base_gengo +#: help:res.company,gengo_auto_approve:0 +msgid "Jobs are Automatically Approved by Gengo." +msgstr "Jobs are Automatically Approved by Gengo." + +#. module: base_gengo +#: field:base.gengo.translations,lang_id:0 +msgid "Language" +msgstr "Jezik" + +#. module: base_gengo +#: field:ir.translation,gengo_comment:0 +msgid "Comments & Activity Linked to Gengo" +msgstr "Comments & Activity Linked to Gengo" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:124 +#, python-format +msgid "Gengo Sync Translation (Response)" +msgstr "Gengo Sync Translation (Response)" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:72 +#, python-format +msgid "" +"Gengo `Public Key` or `Private Key` are missing. Enter your Gengo " +"authentication parameters under `Settings > Companies > Gengo Parameters`." +msgstr "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Translation By Machine" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:155 +#, python-format +msgid "" +"%s\n" +"\n" +"--\n" +" Commented on %s by %s." +msgstr "" + +#. module: base_gengo +#: field:ir.translation,gengo_translation:0 +msgid "Gengo Translation Service Level" +msgstr "" + +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Standard" +msgstr "Standardno" + +#. module: base_gengo +#: help:ir.translation,gengo_translation:0 +msgid "" +"You can select here the service level you want for an automatic translation " +"using Gengo." +msgstr "" + +#. module: base_gengo +#: field:base.gengo.translations,restart_send_job:0 +msgid "Restart Sending Job" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "To Approve In Gengo" +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Private Key" +msgstr "Privatni ključ" + +#. module: base_gengo +#: view:res.company:0 +msgid "Public Key" +msgstr "Javni ključ" + +#. module: base_gengo +#: field:res.company,gengo_public_key:0 +msgid "Gengo Public Key" +msgstr "Gengo Javni ključ" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:123 +#, python-format +msgid "Gengo Sync Translation (Request)" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Translations" +msgstr "Prevodi" + +#. module: base_gengo +#: field:res.company,gengo_auto_approve:0 +msgid "Auto Approve Translation ?" +msgstr "" + +#. module: base_gengo +#: model:ir.actions.act_window,name:base_gengo.action_wizard_base_gengo_translations +#: model:ir.ui.menu,name:base_gengo.menu_action_wizard_base_gengo_translations +msgid "Gengo: Manual Request of Translation" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/ir_translation.py:62 +#: code:addons/base_gengo/wizard/base_gengo_translations.py:109 +#, python-format +msgid "Gengo Authentication Error" +msgstr "" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_res_company +msgid "Companies" +msgstr "Podjetja" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "" +"Note: If the translation state is 'In Progress', it means that the " +"translation has to be approved to be uploaded in this system. You are " +"supposed to do that directly by using your Gengo Account" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:82 +#, python-format +msgid "" +"Gengo connection failed with this message:\n" +"``%s``" +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Gengo Parameters" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Send" +msgstr "Pošlji" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Ultra" +msgstr "" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_ir_translation +msgid "ir.translation" +msgstr "ir.translation" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Translation Service" +msgstr "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Pro" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Gengo Request Form" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "Warning" +msgstr "Opozorilo" + +#. module: base_gengo +#: help:res.company,gengo_comment:0 +msgid "" +"This comment will be automatically be enclosed in each an every request sent " +"to Gengo" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Cancel" +msgstr "Prekliči" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "or" +msgstr "" diff --git a/addons/base_gengo/i18n/zh_CN.po b/addons/base_gengo/i18n/zh_CN.po index e53a023c8a1..0beae75c555 100644 --- a/addons/base_gengo/i18n/zh_CN.po +++ b/addons/base_gengo/i18n/zh_CN.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-12-04 16:26+0000\n" -"Last-Translator: ccdos \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-28 02:51+0000\n" +"Last-Translator: Roc Wu \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-05 05:20+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-29 05:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_gengo #: view:res.company:0 msgid "Comments for Translator" -msgstr "" +msgstr "给译者留言" #. module: base_gengo #: field:ir.translation,job_id:0 msgid "Gengo Job ID" -msgstr "" +msgstr "Gengo 任务 ID" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:114 #, python-format msgid "This language is not supported by the Gengo translation services." -msgstr "" +msgstr "Gengo 翻译服务不支持这种语言." #. module: base_gengo #: field:res.company,gengo_comment:0 @@ -41,7 +41,7 @@ msgstr "评论" #. module: base_gengo #: field:res.company,gengo_private_key:0 msgid "Gengo Private Key" -msgstr "" +msgstr "Gengo 私人密匙" #. module: base_gengo #: model:ir.model,name:base_gengo.model_base_gengo_translations @@ -51,7 +51,7 @@ msgstr "" #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." -msgstr "" +msgstr "任务已被Gengo自动审核." #. module: base_gengo #: field:base.gengo.translations,lang_id:0 @@ -61,13 +61,13 @@ msgstr "语言" #. module: base_gengo #: field:ir.translation,gengo_comment:0 msgid "Comments & Activity Linked to Gengo" -msgstr "" +msgstr "关联到Gengo的评论和活动" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:124 #, python-format msgid "Gengo Sync Translation (Response)" -msgstr "" +msgstr "Gengo 同步翻译 (响应)" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:72 @@ -75,12 +75,12 @@ msgstr "" msgid "" "Gengo `Public Key` or `Private Key` are missing. Enter your Gengo " "authentication parameters under `Settings > Companies > Gengo Parameters`." -msgstr "" +msgstr "缺少Gengo `公共密匙` 或 `私人密匙`. 在 `设置> 公司 > Gengo参数`中输入Gengo授权参数." #. module: base_gengo #: selection:ir.translation,gengo_translation:0 msgid "Translation By Machine" -msgstr "" +msgstr "机器翻译" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 @@ -95,13 +95,13 @@ msgstr "" #. module: base_gengo #: field:ir.translation,gengo_translation:0 msgid "Gengo Translation Service Level" -msgstr "" +msgstr "Gengo 翻译服务级别" #. module: base_gengo #: constraint:ir.translation:0 msgid "" "The Gengo translation service selected is not supported for this language." -msgstr "" +msgstr "所选Gengo翻译服务不支持这种语言." #. module: base_gengo #: selection:ir.translation,gengo_translation:0 @@ -113,22 +113,22 @@ msgstr "" msgid "" "You can select here the service level you want for an automatic translation " "using Gengo." -msgstr "" +msgstr "你可以在这里选择你所需要的Gengo自动翻译级别." #. module: base_gengo #: field:base.gengo.translations,restart_send_job:0 msgid "Restart Sending Job" -msgstr "" +msgstr "重新启用发送任务" #. module: base_gengo #: view:ir.translation:0 msgid "To Approve In Gengo" -msgstr "" +msgstr "通过Gengo审核" #. module: base_gengo #: view:res.company:0 msgid "Private Key" -msgstr "" +msgstr "私人密匙" #. module: base_gengo #: view:res.company:0 @@ -138,23 +138,23 @@ msgstr "" #. module: base_gengo #: field:res.company,gengo_public_key:0 msgid "Gengo Public Key" -msgstr "" +msgstr "Gengo公共密钥" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:123 #, python-format msgid "Gengo Sync Translation (Request)" -msgstr "" +msgstr "Gengo同步翻译 (必选)" #. module: base_gengo #: view:ir.translation:0 msgid "Translations" -msgstr "" +msgstr "翻译" #. module: base_gengo #: field:res.company,gengo_auto_approve:0 msgid "Auto Approve Translation ?" -msgstr "" +msgstr "自动审核翻译 ?" #. module: base_gengo #: model:ir.actions.act_window,name:base_gengo.action_wizard_base_gengo_translations @@ -167,7 +167,7 @@ msgstr "" #: code:addons/base_gengo/wizard/base_gengo_translations.py:109 #, python-format msgid "Gengo Authentication Error" -msgstr "" +msgstr "Gengo授权错误" #. module: base_gengo #: model:ir.model,name:base_gengo.model_res_company @@ -180,7 +180,7 @@ msgid "" "Note: If the translation state is 'In Progress', it means that the " "translation has to be approved to be uploaded in this system. You are " "supposed to do that directly by using your Gengo Account" -msgstr "" +msgstr "注意: 如果翻译状态为 '处理中', 则表示翻译需要在递交到系统之前通过审核. 你应该通过你的Gengo帐户直接完成这一操作" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:82 @@ -189,11 +189,13 @@ msgid "" "Gengo connection failed with this message:\n" "``%s``" msgstr "" +"Gengo 连接失败时显示的信息:\n" +"``%s``" #. module: base_gengo #: view:res.company:0 msgid "Gengo Parameters" -msgstr "" +msgstr "Gengo参数" #. module: base_gengo #: view:base.gengo.translations:0 diff --git a/addons/base_iban/i18n/ar.po b/addons/base_iban/i18n/ar.po index 4e826c4f86b..b07f8949551 100644 --- a/addons/base_iban/i18n/ar.po +++ b/addons/base_iban/i18n/ar.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-01 18:14+0000\n" "Last-Translator: gehad shaat \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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/base_iban.pot b/addons/base_iban/i18n/base_iban.pot index 43efca13ebc..5976e3d1524 100644 --- a/addons/base_iban/i18n/base_iban.pot +++ b/addons/base_iban/i18n/base_iban.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/bg.po b/addons/base_iban/i18n/bg.po index df0caef496e..544e4b4cca2 100644 --- a/addons/base_iban/i18n/bg.po +++ b/addons/base_iban/i18n/bg.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 01:48+0000\n" "Last-Translator: Boris \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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/bs.po b/addons/base_iban/i18n/bs.po index cefd773ec29..d2e1a18f715 100644 --- a/addons/base_iban/i18n/bs.po +++ b/addons/base_iban/i18n/bs.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-11-17 08: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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ca.po b/addons/base_iban/i18n/ca.po index b18d0c8d3f9..fe0a9c75450 100644 --- a/addons/base_iban/i18n/ca.po +++ b/addons/base_iban/i18n/ca.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 01:49+0000\n" "Last-Translator: Raimon Esteve (www.zikzakmedia.com) " "\n" @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/cs.po b/addons/base_iban/i18n/cs.po index 9014fac1585..5cbcf2bc540 100644 --- a/addons/base_iban/i18n/cs.po +++ b/addons/base_iban/i18n/cs.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-04-06 06:16+0000\n" "Last-Translator: Jiří Hajda \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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/da.po b/addons/base_iban/i18n/da.po index 902333762c3..2112692f3ce 100644 --- a/addons/base_iban/i18n/da.po +++ b/addons/base_iban/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-09-23 16:04+0000\n" "Last-Translator: FULL NAME \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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/de.po b/addons/base_iban/i18n/de.po index 6e2a27818f2..fe4fb586c45 100644 --- a/addons/base_iban/i18n/de.po +++ b/addons/base_iban/i18n/de.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-16 11:44+0000\n" "Last-Translator: Felix Schubert \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: 2012-12-17 04:45+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/el.po b/addons/base_iban/i18n/el.po index 101e778a360..16ff9197e6c 100644 --- a/addons/base_iban/i18n/el.po +++ b/addons/base_iban/i18n/el.po @@ -2,15 +2,15 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-29 10:18+0000\n" "Last-Translator: Dimitris Andavoglou \n" "Language-Team: nls@hellug.gr \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/base_iban/i18n/en_GB.po b/addons/base_iban/i18n/en_GB.po index 0f0ac0871f1..d6ea534eabe 100644 --- a/addons/base_iban/i18n/en_GB.po +++ b/addons/base_iban/i18n/en_GB.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-24 13:19+0000\n" "Last-Translator: John Bradshaw \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es.po b/addons/base_iban/i18n/es.po index d2413d4d8eb..7ad3e0dbe0f 100644 --- a/addons/base_iban/i18n/es.po +++ b/addons/base_iban/i18n/es.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-11 17:50+0000\n" "Last-Translator: Borja López Soilán (NeoPolus) \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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es_AR.po b/addons/base_iban/i18n/es_AR.po index 614e0bd5e24..aafbbe463a6 100644 --- a/addons/base_iban/i18n/es_AR.po +++ b/addons/base_iban/i18n/es_AR.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-09-14 18:22+0000\n" "Last-Translator: Silvana Herrera \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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es_CR.po b/addons/base_iban/i18n/es_CR.po index 13eca5ce068..47f3b321b53 100644 --- a/addons/base_iban/i18n/es_CR.po +++ b/addons/base_iban/i18n/es_CR.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-15 16:57+0000\n" "Last-Translator: Freddy Gonzalez \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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" "Language: \n" #. module: base_iban diff --git a/addons/base_iban/i18n/es_EC.po b/addons/base_iban/i18n/es_EC.po index a8912b9cd02..21c11c63bc0 100644 --- a/addons/base_iban/i18n/es_EC.po +++ b/addons/base_iban/i18n/es_EC.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-13 04:02+0000\n" "Last-Translator: Cristian Salamea (Gnuthink) \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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es_PY.po b/addons/base_iban/i18n/es_PY.po index 97d9c72e080..6ec0741d5d4 100644 --- a/addons/base_iban/i18n/es_PY.po +++ b/addons/base_iban/i18n/es_PY.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-08 17:37+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Paraguay) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/et.po b/addons/base_iban/i18n/et.po index b2be8f3e342..a88ccbc2755 100644 --- a/addons/base_iban/i18n/et.po +++ b/addons/base_iban/i18n/et.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-10-27 08: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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/eu.po b/addons/base_iban/i18n/eu.po index 806b717583d..81026e0f55d 100644 --- a/addons/base_iban/i18n/eu.po +++ b/addons/base_iban/i18n/eu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-10-08 07:38+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Basque \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/fa.po b/addons/base_iban/i18n/fa.po index 5e622a01f6a..36c4af9b259 100644 --- a/addons/base_iban/i18n/fa.po +++ b/addons/base_iban/i18n/fa.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-12-19 09:36+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/fi.po b/addons/base_iban/i18n/fi.po index d25ee115a71..24f02c9fdec 100644 --- a/addons/base_iban/i18n/fi.po +++ b/addons/base_iban/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 03:36+0000\n" "Last-Translator: Mantavya Gajjar (Open ERP) \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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/fr.po b/addons/base_iban/i18n/fr.po index 08e355ad5d7..4dae473f58a 100644 --- a/addons/base_iban/i18n/fr.po +++ b/addons/base_iban/i18n/fr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-04 10:02+0000\n" "Last-Translator: Quentin THEURET \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: 2012-12-05 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/gl.po b/addons/base_iban/i18n/gl.po index af119cad99c..e3be5c397c1 100644 --- a/addons/base_iban/i18n/gl.po +++ b/addons/base_iban/i18n/gl.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: base-iban-gl\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-08-14 09:01+0000\n" "Last-Translator: Frco. Javier Rial \n" "Language-Team: Galego \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/gu.po b/addons/base_iban/i18n/gu.po index dd88e619d18..e34905a9e47 100644 --- a/addons/base_iban/i18n/gu.po +++ b/addons/base_iban/i18n/gu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-03-12 15:04+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Gujarati \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/hr.po b/addons/base_iban/i18n/hr.po index b51c4d465c0..aa6486ab797 100644 --- a/addons/base_iban/i18n/hr.po +++ b/addons/base_iban/i18n/hr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-12-15 16:40+0000\n" -"Last-Translator: Goran Kliska \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-27 10:10+0000\n" +"Last-Translator: Davor Bojkić \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: 2012-12-16 04:45+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2013-01-28 05:13+0000\n" +"X-Generator: Launchpad (build 16451)\n" "Language: hr\n" #. module: base_iban @@ -24,6 +24,9 @@ msgid "" "Please define BIC/Swift code on bank for bank type IBAN Account to make " "valid payments" msgstr "" +"\n" +"Molimo unesite BIC/SWIFT oznaku banke za IBAN tip bankovnog računa kako bi " +"vršili valjana plaćanja" #. module: base_iban #: code:addons/base_iban/base_iban.py:141 @@ -78,7 +81,7 @@ msgstr "IBAN" #: code:addons/base_iban/base_iban.py:142 #, python-format msgid "The IBAN is invalid, it should begin with the country code" -msgstr "" +msgstr "IBAN nije ispravan, trebao bi počinjati sa oznakom države" #. module: base_iban #: model:res.partner.bank.type,name:base_iban.bank_iban diff --git a/addons/base_iban/i18n/hu.po b/addons/base_iban/i18n/hu.po index f92903cdbd0..3051af940bd 100644 --- a/addons/base_iban/i18n/hu.po +++ b/addons/base_iban/i18n/hu.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-20 13:10+0000\n" "Last-Translator: Krisztian Eyssen \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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/id.po b/addons/base_iban/i18n/id.po index d9fc60f755d..2a8fc8780f3 100644 --- a/addons/base_iban/i18n/id.po +++ b/addons/base_iban/i18n/id.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-11-09 13:46+0000\n" "Last-Translator: <>\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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/it.po b/addons/base_iban/i18n/it.po index 32aebfa3371..385a62a4a1f 100644 --- a/addons/base_iban/i18n/it.po +++ b/addons/base_iban/i18n/it.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-15 21:57+0000\n" "Last-Translator: Sergio Corato \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: 2012-12-16 04:45+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ja.po b/addons/base_iban/i18n/ja.po index e3fa16bf133..fb61452c6fd 100644 --- a/addons/base_iban/i18n/ja.po +++ b/addons/base_iban/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-23 06:14+0000\n" "Last-Translator: Akira Hiyama \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ko.po b/addons/base_iban/i18n/ko.po index 2e1f796f4b2..b874a006998 100644 --- a/addons/base_iban/i18n/ko.po +++ b/addons/base_iban/i18n/ko.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-09-08 12:59+0000\n" "Last-Translator: ekodaq \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/lt.po b/addons/base_iban/i18n/lt.po index 8d3f42e2786..e5e4d162396 100644 --- a/addons/base_iban/i18n/lt.po +++ b/addons/base_iban/i18n/lt.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-11 14:05+0000\n" "Last-Translator: Donatas Stonys Blue Whale SEO \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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/lv.po b/addons/base_iban/i18n/lv.po index b346b131bd3..4fa5615852b 100644 --- a/addons/base_iban/i18n/lv.po +++ b/addons/base_iban/i18n/lv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-19 13:26+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/mn.po b/addons/base_iban/i18n/mn.po index 033af5111ba..322711a5a8e 100644 --- a/addons/base_iban/i18n/mn.po +++ b/addons/base_iban/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-21 14:21+0000\n" "Last-Translator: OpenERP Administrators \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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/nb.po b/addons/base_iban/i18n/nb.po index 208a7eb7d5e..59e77445938 100644 --- a/addons/base_iban/i18n/nb.po +++ b/addons/base_iban/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-08-28 13:04+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/nl.po b/addons/base_iban/i18n/nl.po index 67b40a0eb87..039f1fc840a 100644 --- a/addons/base_iban/i18n/nl.po +++ b/addons/base_iban/i18n/nl.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-09 12:05+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/nl_BE.po b/addons/base_iban/i18n/nl_BE.po index 53ee238aecd..d1f2f005799 100644 --- a/addons/base_iban/i18n/nl_BE.po +++ b/addons/base_iban/i18n/nl_BE.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-10-01 11:08+0000\n" "Last-Translator: Els Van Vossel (Agaplan) \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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/oc.po b/addons/base_iban/i18n/oc.po index cdded604c83..93de430a097 100644 --- a/addons/base_iban/i18n/oc.po +++ b/addons/base_iban/i18n/oc.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 03:37+0000\n" "Last-Translator: Cédric VALMARY (Tot en òc) \n" "Language-Team: Occitan (post 1500) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/pl.po b/addons/base_iban/i18n/pl.po index 5f3552a7387..7a4e13e33b9 100644 --- a/addons/base_iban/i18n/pl.po +++ b/addons/base_iban/i18n/pl.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-14 11:32+0000\n" "Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \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: 2012-12-15 05:04+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/pt.po b/addons/base_iban/i18n/pt.po index 1a2d2e42970..86c0bcc74d9 100644 --- a/addons/base_iban/i18n/pt.po +++ b/addons/base_iban/i18n/pt.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-15 01: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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/pt_BR.po b/addons/base_iban/i18n/pt_BR.po index ab3c14549cd..d8936ab5265 100644 --- a/addons/base_iban/i18n/pt_BR.po +++ b/addons/base_iban/i18n/pt_BR.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-07-28 15:02+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " "\n" @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ro.po b/addons/base_iban/i18n/ro.po index ccea199f0ce..0e8a0742f6d 100644 --- a/addons/base_iban/i18n/ro.po +++ b/addons/base_iban/i18n/ro.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-02-01 05:01+0000\n" "Last-Translator: Cristi Harjoi \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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ru.po b/addons/base_iban/i18n/ru.po index 6395fb746b1..de4caec6d2f 100644 --- a/addons/base_iban/i18n/ru.po +++ b/addons/base_iban/i18n/ru.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2010-08-27 11:13+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-06 15:29+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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2013-01-07 04:43+0000\n" +"X-Generator: Launchpad (build 16402)\n" #. module: base_iban #: constraint:res.partner.bank:0 @@ -23,6 +23,9 @@ msgid "" "Please define BIC/Swift code on bank for bank type IBAN Account to make " "valid payments" msgstr "" +"\n" +"Определите, пожалуйста, код БИК/Swift по банку для банковского счёта типа " +"IBAN для создания правильных платежей" #. module: base_iban #: code:addons/base_iban/base_iban.py:141 @@ -38,7 +41,7 @@ msgstr "" #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_swift_field msgid "bank_bic" -msgstr "" +msgstr "bank_bic" #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_zip_field @@ -67,6 +70,8 @@ msgid "" "The IBAN does not seem to be correct. You should have entered something like " "this %s" msgstr "" +"Похоже что номер международного банк. счета (IBAN) введен не верно. Вы " +"должны были указать что-то вроде этого %s" #. module: base_iban #: field:res.partner.bank,iban:0 diff --git a/addons/base_iban/i18n/sk.po b/addons/base_iban/i18n/sk.po index e242137aa8b..9e2fa9f6281 100644 --- a/addons/base_iban/i18n/sk.po +++ b/addons/base_iban/i18n/sk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-01 08:26+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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sl.po b/addons/base_iban/i18n/sl.po index 46532b7f7c6..c22032fd6db 100644 --- a/addons/base_iban/i18n/sl.po +++ b/addons/base_iban/i18n/sl.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-25 11:25+0000\n" "Last-Translator: Simon Vidmar \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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sq.po b/addons/base_iban/i18n/sq.po index 9f3a1a2b377..066a702099a 100644 --- a/addons/base_iban/i18n/sq.po +++ b/addons/base_iban/i18n/sq.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-12-29 15:28+0000\n" "Last-Translator: FULL NAME \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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sr.po b/addons/base_iban/i18n/sr.po index de66ae3a16d..bc4dd8b01e9 100644 --- a/addons/base_iban/i18n/sr.po +++ b/addons/base_iban/i18n/sr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-10-30 14:03+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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sr@latin.po b/addons/base_iban/i18n/sr@latin.po index 2ff4840e5f7..d6a3bf61020 100644 --- a/addons/base_iban/i18n/sr@latin.po +++ b/addons/base_iban/i18n/sr@latin.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-04-05 15:22+0000\n" "Last-Translator: Milan Milosevic \n" "Language-Team: Serbian latin \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sv.po b/addons/base_iban/i18n/sv.po index a3fd5cc3cd9..4a079183f47 100644 --- a/addons/base_iban/i18n/sv.po +++ b/addons/base_iban/i18n/sv.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.14\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-13 11:49+0000\n" "Last-Translator: Magnus Brandt (mba), Aspirix AB \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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ta.po b/addons/base_iban/i18n/ta.po index 3ccfddcd4e0..c503d7af6f1 100644 --- a/addons/base_iban/i18n/ta.po +++ b/addons/base_iban/i18n/ta.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-18 05:52+0000\n" "Last-Translator: சதீஷ் குமார் \n" "Language-Team: Tamil \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/tlh.po b/addons/base_iban/i18n/tlh.po index 9dc53dce75e..df702536a91 100644 --- a/addons/base_iban/i18n/tlh.po +++ b/addons/base_iban/i18n/tlh.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-02-03 06:26+0000\n" "Last-Translator: <>\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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/tr.po b/addons/base_iban/i18n/tr.po index 62c6ff19e85..e5eec93892a 100644 --- a/addons/base_iban/i18n/tr.po +++ b/addons/base_iban/i18n/tr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-09 21:43+0000\n" "Last-Translator: Ahmet Altınışık \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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/uk.po b/addons/base_iban/i18n/uk.po index 736e643db61..b72af9ad923 100644 --- a/addons/base_iban/i18n/uk.po +++ b/addons/base_iban/i18n/uk.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-09-08 12:51+0000\n" "Last-Translator: Eugene Babiy \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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/vi.po b/addons/base_iban/i18n/vi.po index 9234e4cf8c7..e557e17af90 100644 --- a/addons/base_iban/i18n/vi.po +++ b/addons/base_iban/i18n/vi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-02 14:38+0000\n" "Last-Translator: FULL NAME \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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/zh_CN.po b/addons/base_iban/i18n/zh_CN.po index d39b533010b..52872d28e8a 100644 --- a/addons/base_iban/i18n/zh_CN.po +++ b/addons/base_iban/i18n/zh_CN.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-10 03:09+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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/zh_TW.po b/addons/base_iban/i18n/zh_TW.po index 998ee409cc8..c748db67cf8 100644 --- a/addons/base_iban/i18n/zh_TW.po +++ b/addons/base_iban/i18n/zh_TW.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-08-19 10:36+0000\n" "Last-Translator: Eric Huang \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: 2012-12-04 05:09+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:16+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_import/i18n/ar.po b/addons/base_import/i18n/ar.po index 4668a009d1d..a60c9006828 100644 --- a/addons/base_import/i18n/ar.po +++ b/addons/base_import/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-02 07:31+0000\n" "Last-Translator: FULL NAME \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: 2012-12-03 04:36+0000\n" -"X-Generator: Launchpad (build 16319)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_import #. openerp-web @@ -470,15 +470,6 @@ msgstr "" msgid "base_import.tests.models.m2o.required" msgstr "" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:212 -#, python-format -msgid "" -"How can I import a one2many relationship (e.g. several \n" -" Order Lines of a Sale Order)?" -msgstr "" - #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly msgid "base_import.tests.models.char.noreadonly" @@ -822,6 +813,15 @@ msgid "" "command:" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:212 +#, python-format +msgid "" +"How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:373 diff --git a/addons/base_import/i18n/base_import.pot b/addons/base_import/i18n/base_import.pot index 29a41186553..027911b59ff 100644 --- a/addons/base_import/i18n/base_import.pot +++ b/addons/base_import/i18n/base_import.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -421,14 +421,6 @@ msgstr "" msgid "base_import.tests.models.m2o.required" msgstr "" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:212 -#, python-format -msgid "How can I import a one2many relationship (e.g. several \n" -" Order Lines of a Sale Order)?" -msgstr "" - #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly msgid "base_import.tests.models.char.noreadonly" @@ -749,6 +741,14 @@ msgid "We will first export all companies and their \n" " \"External ID\". In PSQL, write the following command:" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:212 +#, python-format +msgid "How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:373 diff --git a/addons/base_import/i18n/de.po b/addons/base_import/i18n/de.po new file mode 100644 index 00000000000..48fc390a5ca --- /dev/null +++ b/addons/base_import/i18n/de.po @@ -0,0 +1,1248 @@ +# German translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-19 21:57+0000\n" +"Last-Translator: Thorsten Vocks (OpenBig.org) \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:420 +#, python-format +msgid "Get all possible values" +msgstr "Alle möglichen Werte holen" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:71 +#, python-format +msgid "Need to import data from an other application?" +msgstr "Müssen Daten aus einer anderen Anwendung importiert werden?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:163 +#, python-format +msgid "" +"When you use External IDs, you can import CSV files \n" +" with the \"External ID\" column to define the " +"External \n" +" ID of each record you import. Then, you will be able " +"\n" +" to make a reference to that record with columns like " +"\n" +" \"Field/External ID\". The following two CSV files " +"give \n" +" you an example for Products and their Categories." +msgstr "" +"Wenn Sie externe Schlüssel verwenden, können sie CSV Dateien einlesen\n" +" mittels der Spalte \"Externer Schlüssel\", um den externen " +"Schlüssel eines jeden Datensatzes festzulegen.\n" +" Dann können Sie sich mit Spalten wie \"Feld/Externer " +"Schlüssel\" auf diesen Satz auf diesen Satz beziehen.\n" +" Die folgenden beiden CSV-Dateien dienen Ihnen hierzu als " +"Beispiel für Produkte und deren Kategorien." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:271 +#, python-format +msgid "" +"How to export/import different tables from an SQL \n" +" application to OpenERP?" +msgstr "" +"Wie können verschiedene Tabellen mit einer SQL-Anwendung ausgetauscht werden " +"(Im-/Export)?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:310 +#, python-format +msgid "Relation Fields" +msgstr "Beziehungsfelder" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:142 +#, python-format +msgid "" +"Country/Database ID: the unique OpenERP ID for a \n" +" record, defined by the ID postgresql column" +msgstr "" +"Land/Datenbankschlüssel: Der eindeutige OpenERP-Schlüssel eines " +"Datensatzes,\n" +" wie er ineiner postgresql-Spalte festgelegt wurde" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:155 +#, python-format +msgid "" +"Use \n" +" Country/Database ID: You should rarely use this \n" +" notation. It's mostly used by developers as it's " +"main \n" +" advantage is to never have conflicts (you may have \n" +" several records with the same name, but they always " +"\n" +" have a unique Database ID)" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:146 +#, python-format +msgid "" +"For the country \n" +" Belgium, you can use one of these 3 ways to import:" +msgstr "Für das Land" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:303 +#, python-format +msgid "company_1,Bigees,True" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o +msgid "base_import.tests.models.m2o" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:297 +#, python-format +msgid "" +"copy \n" +" (select 'company_'||id as \"External " +"ID\",company_name \n" +" as \"Name\",'True' as \"Is a Company\" from " +"companies) TO \n" +" '/tmp/company.csv' with CSV HEADER;" +msgstr "" +"kopiere\n" +"(select 'company_'||id as \"External ID\",company_name\n" +"as \"Name\",'True' as \"Is a Company\" from companies) TO\n" +"'/tmp/company.csv' with CSV HEADER;" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:206 +#, python-format +msgid "CSV file for Manufacturer, Retailer" +msgstr "CSV-Datei für Hersteller, Wiederverkäufer" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:160 +#, python-format +msgid "" +"Use \n" +" Country/External ID: Use External ID when you import " +"\n" +" data from a third party application." +msgstr "" +"Verwenden Sie\n" +" Land/Externer Schlüssel: Externer Schlüssel verwenden, wenn Daten einer " +"Drittanwendung importiert werden sollen." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:316 +#, python-format +msgid "person_1,Fabien,False,company_1" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "XXX/External ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:351 +#, python-format +msgid "Don't Import" +msgstr "Nicht importieren" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:24 +#, python-format +msgid "Select the" +msgstr "Auswahl von" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:100 +#, python-format +msgid "" +"Note that if your CSV file \n" +" has a tabulation as separator, OpenERP will not \n" +" detect the separations. You will need to change the " +"\n" +" file format options in your spreadsheet application. " +"\n" +" See the following question." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:141 +#, python-format +msgid "Country: the name or code of the country" +msgstr "Land: Die Bezeichnung oder das Kürzel für das Land" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_o2m_child +msgid "base_import.tests.models.o2m.child" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:239 +#, python-format +msgid "Can I import several times the same record?" +msgstr "Kann ich mehrfach den selben Artikel einlesen ?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:15 +#, python-format +msgid "Validate" +msgstr "Bestätigen" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:55 +#, python-format +msgid "Map your data to OpenERP" +msgstr "Zuordnung Ihrer Daten zu OpenERP" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:153 +#, python-format +msgid "" +"Use Country: This is \n" +" the easiest way when your data come from CSV files \n" +" that have been created manually." +msgstr "" +"Benutze das Land: Es ist\n" +" der einfachste Weg, wenn Ihre Daten aus externen . " +"csv Dateien bestehen, die\n" +" per Hand eingegeben wurden." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:127 +#, python-format +msgid "" +"What's the difference between Database ID and \n" +" External ID?" +msgstr "" +"Was ist der Unterschied zwischen einer 'Database ID' und einer 'External ID' " +"?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:138 +#, python-format +msgid "" +"For example, to \n" +" reference the country of a contact, OpenERP proposes " +"\n" +" you 3 different fields to import:" +msgstr "" +"Um sich für einen Import auf das Land \n" +" für einen Kontakt zu beziehen, schlägt\n" +" OpenERP drei verschiedene Möglichkeiten vor:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:175 +#, python-format +msgid "What can I do if I have multiple matches for a field?" +msgstr "Was kann getan werden, wenn mehrere identische Treffer passend sind." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:302 +#, python-format +msgid "External ID,Name,Is a Company" +msgstr "" + +#. module: base_import +#: field:base_import.tests.models.preview,somevalue:0 +msgid "Some Value" +msgstr "Irgendein Wert" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" suppliers and their respective contacts" +msgstr "" +"Die folgende .csv Datei soll exemplarisch zeigen, wie Sie Lieferanten und " +"deren Ansprechpartner\n" +"importieren können." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:109 +#, python-format +msgid "" +"How can I change the CSV file format options when \n" +" saving in my spreadsheet application?" +msgstr "" +"Wie kann ich mein .csv Datei Format passend auswählen, wenn ich die Daten in " +"einer Tabellenkalkulation\n" +" bearbeiten möchte und die Änderungen speichern möchte ?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:320 +#, python-format +msgid "" +"As you can see in this file, Fabien and Laurence \n" +" are working for the Bigees company (company_1) and \n" +" Eric is working for the Organi company. The relation " +"\n" +" between persons and companies is done using the \n" +" External ID of the companies. We had to prefix the \n" +" \"External ID\" by the name of the table to avoid a " +"\n" +" conflict of ID between persons and companies " +"(person_1 \n" +" and company_1 who shared the same ID 1 in the " +"orignial \n" +" database)." +msgstr "" +"Wie Sie in dieser Datei sehen können, arbeiten Fabien und Laurence\n" +"für die Bigees Firma (company_1), während Eric für die Firma Organi tätig\n" +"ist. Die Beziehung zwischen Personen und Unternehmen erfolgt über die\n" +"Externe ID der Unternehmen. Wir haben als eindeutiges Präfix \n" +"vor der \"Externen ID\" den Namen der Tabelle ergänzt, um über diesen Weg \n" +"einen Konflikt der ID zwischen Personen und Unternehmen zu vermeiden.\n" +"(person_1 und company_1, die sich gemeinsam die ID 1 in der Datenbank " +"teilen)." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:308 +#, python-format +msgid "" +"copy (select \n" +" 'person_'||id as \"External ID\",person_name as \n" +" \"Name\",'False' as \"Is a " +"Company\",'company_'||company_id\n" +" as \"Related Company/External ID\" from persons) TO " +"\n" +" '/tmp/person.csv' with CSV" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:148 +#, python-format +msgid "Country: Belgium" +msgstr "Land: Belgien" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_stillreadonly +msgid "base_import.tests.models.char.stillreadonly" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:314 +#, python-format +msgid "" +"External ID,Name,Is a \n" +" Company,Related Company/External ID" +msgstr "" +"External ID,Name ... ist \n" +" Company,Related Company/External ID" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Suppliers and their respective contacts" +msgstr "Lieferanten und seine korrespondierenden Ansprechpartner" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:179 +#, python-format +msgid "" +"If for example you have two product categories \n" +" with the child name \"Sellable\" (ie. \"Misc. \n" +" Products/Sellable\" & \"Other Products/Sellable\"),\n" +" your validation is halted but you may still import \n" +" your data. However, we recommend you do not import " +"the \n" +" data because they will all be linked to the first \n" +" 'Sellable' category found in the Product Category " +"list \n" +" (\"Misc. Products/Sellable\"). We recommend you " +"modify \n" +" one of the duplicates' values or your product " +"category \n" +" hierarchy." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:306 +#, python-format +msgid "" +"To create the CSV file for persons, linked to \n" +" companies, we will use the following SQL command in " +"\n" +" PSQL:" +msgstr "" +"Zur Erstellung einer .csv Datei für Ansprechpartner, die eine Verknüpfung zu " +"einem Unternehmen haben,\n" +" können wir folgendes PSQL Kommando zu dessen " +"Erstellung verwenden." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:119 +#, python-format +msgid "" +"Microsoft Excel will allow \n" +" you to modify only the encoding when saving \n" +" (in 'Save As' dialog box > click 'Tools' dropdown \n" +" list > Encoding tab)." +msgstr "" +"Excel ermöglicht Ihnen die Daten zu bearbeiten, die Sie vorher abgespeichert " +"haben. \n" +"(unter 'Speichern Unter' > Extra > Werkzeuge > Daten bearbeiten Aktenreiter)." + +#. module: base_import +#: field:base_import.tests.models.preview,othervalue:0 +msgid "Other Variable" +msgstr "Andere Variable" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "" +"will also be used to update the original\n" +" import if you need to re-import modified data\n" +" later, it's thus good practice to specify it\n" +" whenever possible" +msgstr "" +"wird außerdem benötigt, um bestehende Daten zu einem späteren Zeitpunkt zu " +"aktualisieren." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:26 +#, python-format +msgid "" +"file to import. If you need a sample importable file, you\n" +" can use the export tool to generate one." +msgstr "" +"zu importierende Datei. Sollten Sie eine Beispieldatei benötigen, können " +"Sie\n" +"eine Tabellenkalkulation dazu benutzen, einfach eine .csv Datei zu " +"erstellen." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:148 +#, python-format +msgid "" +"Country/Database \n" +" ID: 21" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char +msgid "base_import.tests.models.char" +msgstr "" + +#. module: base_import +#: help:base_import.import,file:0 +msgid "File to check and/or import, raw binary (not base64)" +msgstr "Zu prüfende Datei und/oder Import, raw binary (not base64))" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:230 +#, python-format +msgid "Purchase orders with their respective purchase order lines" +msgstr "Bestellungen mit seinen einzelnen Positionen" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:60 +#, python-format +msgid "" +"If the file contains\n" +" the column names, OpenERP can try auto-detecting the\n" +" field corresponding to the column. This makes imports\n" +" simpler especially when the file has many columns." +msgstr "" +"Für eine Datei\n" +" mit existierenden Spaltenbeschriftungen, kann OpenERP " +"eine automatische\n" +" Datenerkennung über die Spalten vonehmen. Dadurch wird " +"ein Dateinmport mit zahlreichen\n" +" Spalten vereinfacht." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:26 +#, python-format +msgid ".CSV" +msgstr ".csv" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:360 +#, python-format +msgid "" +". The issue is\n" +" usually an incorrect file encoding." +msgstr "" +"Das Problem sollte\n" +" im Normallfall ein korrektes Dateiformat abgespeichert werden." + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required +msgid "base_import.tests.models.m2o.required" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly +msgid "base_import.tests.models.char.noreadonly" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:113 +#, python-format +msgid "" +"If you edit and save CSV files in speadsheet \n" +" applications, your computer's regional settings will " +"\n" +" be applied for the separator and delimiter. \n" +" We suggest you use OpenOffice or LibreOffice Calc \n" +" as they will allow you to modify all three options \n" +" (in 'Save As' dialog box > Check the box 'Edit " +"filter \n" +" settings' > Save)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:30 +#, python-format +msgid "CSV File:" +msgstr ".csv Datei:" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_preview +msgid "base_import.tests.models.preview" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_required +msgid "base_import.tests.models.char.required" +msgstr "" + +#. module: base_import +#: code:addons/base_import/models.py:112 +#, python-format +msgid "Database ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:313 +#, python-format +msgid "It will produce the following CSV file:" +msgstr "hierdurch wird folgende .csv Datei erzeugt:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:362 +#, python-format +msgid "Here is the start of the file we could not import:" +msgstr "Hier ist der Beginn der Zeile, die nicht gelesen werden konnte." + +#. module: base_import +#: field:base_import.import,file_type:0 +msgid "File Type" +msgstr "Datei Format" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_import +msgid "base_import.import" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_o2m +msgid "base_import.tests.models.o2m" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:360 +#, python-format +msgid "Import preview failed due to:" +msgstr "Importiere Voransicht mit Fehler" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:144 +#, python-format +msgid "" +"Country/External ID: the ID of this record \n" +" referenced in another application (or the .XML file " +"\n" +" that imported it)" +msgstr "" +"Country/External ID: Die ID für diesen Ansatz wird in einer anderen " +"Anwendung referenziert sein (oder zu .xml die\n" +"importiert wurde)." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:35 +#, python-format +msgid "Reload data to check changes." +msgstr "Erneut Ansicht laden, um Änderungen anzuwenden." + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:131 +#, python-format +msgid "" +"Some fields define a relationship with another \n" +" object. For example, the country of a contact is a \n" +" link to a record of the 'Country' object. When you \n" +" want to import such fields, OpenERP will have to \n" +" recreate links between the different records. \n" +" To help you import such fields, OpenERP provides 3 \n" +" mechanisms. You must use one and only one mechanism " +"\n" +" per field you want to import." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:201 +#, python-format +msgid "" +"The tags should be separated by a comma without any \n" +" spacing. For example, if you want you customer to be " +"\n" +" lined to both tags 'Manufacturer' and 'Retailer' \n" +" then you will encode it as follow \"Manufacturer,\n" +" Retailer\" in the same column of your CSV file." +msgstr "" + +#. module: base_import +#: code:addons/base_import/models.py:264 +#, python-format +msgid "You must configure at least one field to import" +msgstr "Sie müssen mindestens ein Feld für einen Import konfigurieren." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:304 +#, python-format +msgid "company_2,Organi,True" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:58 +#, python-format +msgid "" +"The first row of the\n" +" file contains the label of the column" +msgstr "Die erste Zeile, der Datei beinhaltet immer eine Zeile." + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_states +msgid "base_import.tests.models.char.states" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:7 +#, python-format +msgid "Import a CSV File" +msgstr "Importiere .csv Datei" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:74 +#, python-format +msgid "Quoting:" +msgstr "Angebot:" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required_related +msgid "base_import.tests.models.m2o.required.related" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:293 +#, python-format +msgid ")." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:18 +#: code:addons/base_import/static/src/xml/import.xml:396 +#, python-format +msgid "Import" +msgstr "Importieren" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:407 +#, python-format +msgid "Here are the possible values:" +msgstr "Hier sind die möglichen Werte" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "The" +msgstr "Der" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:227 +#, python-format +msgid "" +"A single column was found in the file, this often means the file separator " +"is incorrect" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:293 +#, python-format +msgid "dump of such a PostgreSQL database" +msgstr "dump einer Postgres-Datenbank" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:301 +#, python-format +msgid "This SQL command will create the following CSV file:" +msgstr "Ein SQL Kommando, könnte folgendes .csv erstellen." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:228 +#, python-format +msgid "" +"The following CSV file shows how to import purchase \n" +" orders with their respective purchase order lines:" +msgstr "" +"Die folgende .csv Datei zeigt exemplarisch, wie eine Bestellung im Einkauf " +"mit seinen Einzelposition\n" +"importiert wird." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:91 +#, python-format +msgid "" +"What can I do when the Import preview table isn't \n" +" displayed correctly?" +msgstr "" +"Was sollte ich tun, wenn die Voransicht beim Import nicht wie gewünscht " +"angezeigt wird." + +#. module: base_import +#: field:base_import.tests.models.char,value:0 +#: field:base_import.tests.models.char.noreadonly,value:0 +#: field:base_import.tests.models.char.readonly,value:0 +#: field:base_import.tests.models.char.required,value:0 +#: field:base_import.tests.models.char.states,value:0 +#: field:base_import.tests.models.char.stillreadonly,value:0 +#: field:base_import.tests.models.m2o,value:0 +#: field:base_import.tests.models.m2o.related,value:0 +#: field:base_import.tests.models.m2o.required,value:0 +#: field:base_import.tests.models.m2o.required.related,value:0 +#: field:base_import.tests.models.o2m,value:0 +#: field:base_import.tests.models.o2m.child,parent_id:0 +#: field:base_import.tests.models.o2m.child,value:0 +msgid "unknown" +msgstr "unbekannt" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:317 +#, python-format +msgid "person_2,Laurence,False,company_1" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:149 +#, python-format +msgid "Country/External ID: base.be" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:288 +#, python-format +msgid "" +"As an example, suppose you have a SQL database \n" +" with two tables you want to import: companies and \n" +" persons. Each person belong to one company, so you \n" +" will have to recreate the link between a person and " +"\n" +" the company he work for. (If you want to test this \n" +" example, here is a" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:396 +#, python-format +msgid "(%d more)" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:227 +#, python-format +msgid "File for some Quotations" +msgstr "Datei für einige Angebote" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:72 +#, python-format +msgid "Encoding:" +msgstr "Eingabe" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:280 +#, python-format +msgid "" +"To manage relations between tables, \n" +" you can use the \"External ID\" facilities of " +"OpenERP. \n" +" The \"External ID\" of a record is the unique " +"identifier \n" +" of this record in another application. This " +"\"External \n" +" ID\" must be unique accoss all the records of all \n" +" objects, so it's a good practice to prefix this \n" +" \"External ID\" with the name of the application or " +"\n" +" table. (like 'company_1', 'person_1' instead of '1')" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:295 +#, python-format +msgid "" +"We will first export all companies and their \n" +" \"External ID\". In PSQL, write the following " +"command:" +msgstr "" +"Zuerst exportieren wir alle Unternehmen mit seiner \"Externen ID\".\n" +"In PSQL erfolgt das durch das aktive Kommando:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:212 +#, python-format +msgid "" +"How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:373 +#, python-format +msgid "Everything seems valid." +msgstr "Alles scheint o.k. zu sein." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:188 +#, python-format +msgid "" +"However if you do not wish to change your \n" +" configuration of product categories, we recommend " +"you \n" +" use make use of the external ID for this field \n" +" 'Category'." +msgstr "" +"Inwsoweit Sie keine Änderung bei der\n" +" Konfiguration der Produkt Kategorien " +"wünschen,empfehlen wir\n" +" Ihnen die Externe ID für das Feld 'Kategorie' " +"einzusetzen." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:390 +#, python-format +msgid "at row %d" +msgstr "in Zeile %d" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:197 +#, python-format +msgid "" +"How can I import a many2many relationship field \n" +" (e.g. a customer that has multiple tags)?" +msgstr "" +"Wie kann eine many2many Relation importiert werden ?\n" +" (z.B. ein Kunde mit mehreren Kennzeichen)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "XXX/ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:275 +#, python-format +msgid "" +"If you need to import data from different tables, \n" +" you will have to recreate relations between records " +"\n" +" belonging to different tables. (e.g. if you import \n" +" companies and persons, you will have to recreate the " +"\n" +" link between each person and the company they work \n" +" for)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:150 +#, python-format +msgid "" +"According to your need, you should use \n" +" one of these 3 ways to reference records in " +"relations. \n" +" Here is when you should use one or the other, \n" +" according to your need:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:319 +#, python-format +msgid "person_4,Ramsy,False,company_3" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:261 +#, python-format +msgid "" +"If you do not set all fields in your CSV file, \n" +" OpenERP will assign the default value for every non " +"\n" +" defined fields. But if you\n" +" set fields with empty values in your CSV file, " +"OpenERP \n" +" will set the EMPTY value in the field, instead of \n" +" assigning the default value." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:20 +#, python-format +msgid "Cancel" +msgstr "Abbrechen" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:257 +#, python-format +msgid "" +"What happens if I do not provide a value for a \n" +" specific field?" +msgstr "" +"Was passiert wenn Sie in bestimmten Feldern keinen Eintrag vornehmen ?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:68 +#, python-format +msgid "Frequently Asked Questions" +msgstr "Häufig gestellte Fragen" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:305 +#, python-format +msgid "company_3,Boum,True" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:249 +#, python-format +msgid "" +"This feature \n" +" allows you to use the Import/Export tool of OpenERP " +"to \n" +" modify a batch of records in your favorite " +"spreadsheet \n" +" application." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:77 +#, python-format +msgid "" +"column in OpenERP. When you\n" +" import an other record that links to the first\n" +" one, use" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:242 +#, python-format +msgid "" +"If you import a file that contains one of the \n" +" column \"External ID\" or \"Database ID\", records " +"that \n" +" have already been imported will be modified instead " +"of \n" +" being created. This is very usefull as it allows you " +"\n" +" to import several times the same CSV file while " +"having \n" +" made some changes in between two imports. OpenERP " +"will \n" +" take care of creating or modifying each record \n" +" depending if it's new or not." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:169 +#, python-format +msgid "CSV file for categories" +msgstr ".csv Dateien für Kategorien" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:309 +#, python-format +msgid "Normal Fields" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:74 +#, python-format +msgid "" +"In order to re-create relationships between\n" +" different records, you should use the unique\n" +" identifier from the original application and\n" +" map it to the" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:170 +#, python-format +msgid "CSV file for Products" +msgstr ".csv Datei für Produkte" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:216 +#, python-format +msgid "" +"If you want to import sales order having several \n" +" order lines; for each order line, you need to " +"reserve \n" +" a specific row in the CSV file. The first order line " +"\n" +" will be imported on the same row as the information " +"\n" +" relative to order. Any additional lines will need an " +"\n" +" addtional row that does not have any information in " +"\n" +" the fields relative to the order." +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related +msgid "base_import.tests.models.m2o.related" +msgstr "" + +#. module: base_import +#: field:base_import.tests.models.preview,name:0 +msgid "Name" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "to the original unique identifier." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:318 +#, python-format +msgid "person_3,Eric,False,company_2" +msgstr "" + +#. module: base_import +#: field:base_import.import,res_model:0 +msgid "Model" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:77 +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:329 +#, python-format +msgid "" +"The two files produced are ready to be imported in \n" +" OpenERP without any modifications. After having \n" +" imported these two CSV files, you will have 4 " +"contacts \n" +" and 3 companies. (the firsts two contacts are linked " +"\n" +" to the first company). You must first import the \n" +" companies and then the persons." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:95 +#, python-format +msgid "" +"By default the Import preview is set on commas as \n" +" field separators and quotation marks as text \n" +" delimiters. If your csv file does not have these \n" +" settings, you can modify the File Format Options \n" +" (displayed under the Browse CSV file bar after you \n" +" select your file)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:73 +#, python-format +msgid "Separator:" +msgstr "Trennzeichen" + +#. module: base_import +#: field:base_import.import,file_name:0 +msgid "File Name" +msgstr "Dateiname" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/models.py:80 +#: code:addons/base_import/models.py:111 +#: code:addons/base_import/static/src/xml/import.xml:77 +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "External ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:39 +#, python-format +msgid "File Format Options…" +msgstr "Datei Format Optionen" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:392 +#, python-format +msgid "between rows %d and %d" +msgstr "zwischen Zeilen %d und %d" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:19 +#, python-format +msgid "or" +msgstr "oder" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:223 +#, python-format +msgid "" +"As an example, here is \n" +" purchase.order_functional_error_line_cant_adpat.CSV " +"\n" +" file of some quotations you can import, based on " +"demo \n" +" data." +msgstr "" + +#. module: base_import +#: field:base_import.import,file:0 +msgid "File" +msgstr "Datei" diff --git a/addons/base_import/i18n/es.po b/addons/base_import/i18n/es.po new file mode 100644 index 00000000000..b20d34668c8 --- /dev/null +++ b/addons/base_import/i18n/es.po @@ -0,0 +1,1311 @@ +# Spanish translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-23 12:03+0000\n" +"Last-Translator: Pedro Manuel Baeza \n" +"Language-Team: Spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-24 04:40+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:420 +#, python-format +msgid "Get all possible values" +msgstr "Obtener todos los valores posibles" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:71 +#, python-format +msgid "Need to import data from an other application?" +msgstr "¿Se necesita importar datos desde otra aplicación?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:163 +#, python-format +msgid "" +"When you use External IDs, you can import CSV files \n" +" with the \"External ID\" column to define the " +"External \n" +" ID of each record you import. Then, you will be able " +"\n" +" to make a reference to that record with columns like " +"\n" +" \"Field/External ID\". The following two CSV files " +"give \n" +" you an example for Products and their Categories." +msgstr "" +"Cuando se usan identificadores externos, puede importar archivos CSV con la " +"columna \"Id. externo\" para definir el id. externo de cada registro a " +"importar. Entonces, podrá hacer referencia a ese registro con columnas del " +"tipo \"Id. de campo/externo\". Los siguientes dos archivos son un ejemplo " +"para los productos y sus categorías." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:271 +#, python-format +msgid "" +"How to export/import different tables from an SQL \n" +" application to OpenERP?" +msgstr "" +"¿Cómo exportar/importar diversas tablas desde una aplicación SQL a OpenERP?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:310 +#, python-format +msgid "Relation Fields" +msgstr "Campos relación" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:142 +#, python-format +msgid "" +"Country/Database ID: the unique OpenERP ID for a \n" +" record, defined by the ID postgresql column" +msgstr "" +"País/Id. de la BD: El id. único de OpenERP para un registro, definido por la " +"columna ID de Postgresql" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:155 +#, python-format +msgid "" +"Use \n" +" Country/Database ID: You should rarely use this \n" +" notation. It's mostly used by developers as it's " +"main \n" +" advantage is to never have conflicts (you may have \n" +" several records with the same name, but they always " +"\n" +" have a unique Database ID)" +msgstr "" +"Usar País/Id. de la BD: Raramente debería usar esta notación. Se usa más a " +"menudo por los desarrolladores puesto que su principal ventaja es la de no " +"tener nunca conflictos (puede que tenga varios registros con el mismo " +"nombre, pero sólo tendrán un único id. de base de datos)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:146 +#, python-format +msgid "" +"For the country \n" +" Belgium, you can use one of these 3 ways to import:" +msgstr "" +"Para el país Bélgica, puede usar uno de estos tres métodos de importación:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:303 +#, python-format +msgid "company_1,Bigees,True" +msgstr "company_1,Bigees,True" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o +msgid "base_import.tests.models.m2o" +msgstr "Relación many2one de los test de importación" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:297 +#, python-format +msgid "" +"copy \n" +" (select 'company_'||id as \"External " +"ID\",company_name \n" +" as \"Name\",'True' as \"Is a Company\" from " +"companies) TO \n" +" '/tmp/company.csv' with CSV HEADER;" +msgstr "" +"copiar (seleccione 'company_'||id como \"Id. externo\", company_name como " +"\"Nombre\", 'True' como \"Es una compañía\" de companies) a " +"'/tmp/company.csv' con la cabecera CSV;" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:206 +#, python-format +msgid "CSV file for Manufacturer, Retailer" +msgstr "Archivo CSV para fabricante, comerciante al por menor" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:160 +#, python-format +msgid "" +"Use \n" +" Country/External ID: Use External ID when you import " +"\n" +" data from a third party application." +msgstr "" +"Usar País/Id. externo: Use id. externo cuando importa datos de una " +"aplicación externa." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:316 +#, python-format +msgid "person_1,Fabien,False,company_1" +msgstr "person_1,Fabien,False,company_1" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "XXX/External ID" +msgstr "XXX/Id. externo" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:351 +#, python-format +msgid "Don't Import" +msgstr "No Importar" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:24 +#, python-format +msgid "Select the" +msgstr "Seleccione el" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:100 +#, python-format +msgid "" +"Note that if your CSV file \n" +" has a tabulation as separator, OpenERP will not \n" +" detect the separations. You will need to change the " +"\n" +" file format options in your spreadsheet application. " +"\n" +" See the following question." +msgstr "" +"Tenga en cuenta que si su archivos CSV tiene una tabulación como separador, " +"OpenERP no detectará las separaciones. Debe cambiar las opciones de formato " +"en su aplicación de hoja de cálculo. Vea la siguiente pregunta." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:141 +#, python-format +msgid "Country: the name or code of the country" +msgstr "País: el nombre o código del país" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_o2m_child +msgid "base_import.tests.models.o2m.child" +msgstr "Hijos de la relación many2one de los test de importación" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:239 +#, python-format +msgid "Can I import several times the same record?" +msgstr "¿Se puede importar varias veces el mismo registro?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:15 +#, python-format +msgid "Validate" +msgstr "Validar" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:55 +#, python-format +msgid "Map your data to OpenERP" +msgstr "Mapear sus datos a OpenERP" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:153 +#, python-format +msgid "" +"Use Country: This is \n" +" the easiest way when your data come from CSV files \n" +" that have been created manually." +msgstr "" +"Usar País: Ésta es lo forma más sencilla cuando los datos provienen de " +"archivos CSV que se han creado manualmente." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:127 +#, python-format +msgid "" +"What's the difference between Database ID and \n" +" External ID?" +msgstr "¿Cuál es la diferencia entre id. de la BD e id. externo?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:138 +#, python-format +msgid "" +"For example, to \n" +" reference the country of a contact, OpenERP proposes " +"\n" +" you 3 different fields to import:" +msgstr "" +"Por ejemplo, para referenciar el país de un contacto, OpenERP propone 3 " +"campos diferentes a importar:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:175 +#, python-format +msgid "What can I do if I have multiple matches for a field?" +msgstr "¿Qué puedo hacer si tengo múltiples coincidencias para un campo?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:302 +#, python-format +msgid "External ID,Name,Is a Company" +msgstr "Id. externo, nombre, es una compañía" + +#. module: base_import +#: field:base_import.tests.models.preview,somevalue:0 +msgid "Some Value" +msgstr "Algún valor" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" suppliers and their respective contacts" +msgstr "" +"El siguiente archivo CSV muestra cómo importar proveedores y sus respectivos " +"contactos" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:109 +#, python-format +msgid "" +"How can I change the CSV file format options when \n" +" saving in my spreadsheet application?" +msgstr "" +"¿Cómo puede cambiar el formato del archivo CSV cuando se guarda en mi " +"aplicación de hoja de cálculo?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:320 +#, python-format +msgid "" +"As you can see in this file, Fabien and Laurence \n" +" are working for the Bigees company (company_1) and \n" +" Eric is working for the Organi company. The relation " +"\n" +" between persons and companies is done using the \n" +" External ID of the companies. We had to prefix the \n" +" \"External ID\" by the name of the table to avoid a " +"\n" +" conflict of ID between persons and companies " +"(person_1 \n" +" and company_1 who shared the same ID 1 in the " +"orignial \n" +" database)." +msgstr "" +"Como puede ver en este archivo, Fabien y Laurence están trabajando para la " +"compañía Bigees (company_1) y Eric está trabajando para la compañía Organi. " +"La relación entre las personas y las compañías se hace usando el id. externo " +"de las compañías. Hemos tenido que prefijar el id. externo con el nombre de " +"la tabla para evitar un conflicto de id. entre las personas y las compañías " +"(person_1 y company_1 comparten el mismo id (1) en la base de datos " +"original)." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:308 +#, python-format +msgid "" +"copy (select \n" +" 'person_'||id as \"External ID\",person_name as \n" +" \"Name\",'False' as \"Is a " +"Company\",'company_'||company_id\n" +" as \"Related Company/External ID\" from persons) TO " +"\n" +" '/tmp/person.csv' with CSV" +msgstr "" +"copiar (seleccione 'person_'||id como \"Id. externo\", person_name como " +"\"Nombre\", 'False' como \"Es una compañía\", 'company_'||company_id como " +"\"Compañía relacionada/Id. externo\" de persons) a '/tmp/person.csv' con la " +"cabecera CSV;" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:148 +#, python-format +msgid "Country: Belgium" +msgstr "País: Bélgica" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_stillreadonly +msgid "base_import.tests.models.char.stillreadonly" +msgstr "Cadena de sólo lectura de los modelos de test de importación" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:314 +#, python-format +msgid "" +"External ID,Name,Is a \n" +" Company,Related Company/External ID" +msgstr "" +"Id. externo, nombre, es una compañía. relacionada con Compañía/Id. externo" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Suppliers and their respective contacts" +msgstr "Proveedores y sus respectivos contactos" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:179 +#, python-format +msgid "" +"If for example you have two product categories \n" +" with the child name \"Sellable\" (ie. \"Misc. \n" +" Products/Sellable\" & \"Other Products/Sellable\"),\n" +" your validation is halted but you may still import \n" +" your data. However, we recommend you do not import " +"the \n" +" data because they will all be linked to the first \n" +" 'Sellable' category found in the Product Category " +"list \n" +" (\"Misc. Products/Sellable\"). We recommend you " +"modify \n" +" one of the duplicates' values or your product " +"category \n" +" hierarchy." +msgstr "" +"Si por ejemplo tiene dos categorías de producto con el nombre hijo de " +"\"Vendibles\" (por ejemplo \"Productos miscelánea/Vendibles\" y \"Otros " +"productos/Vendibles\", la validación se para, pero aún podrá importar los " +"datos. Sin embargo, recomendamos no importar los datos porque estarán " +"vinculados todos a la primera categoría \"Vendibles\" encontrada en la lista " +"de categorías de producto. Recomendamos modificar uno de los valores " +"duplicados o la jerarquía de categorías." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:306 +#, python-format +msgid "" +"To create the CSV file for persons, linked to \n" +" companies, we will use the following SQL command in " +"\n" +" PSQL:" +msgstr "" +"Para crear un archivo CSV para personas, enlazadas a compañías, usaremos el " +"siguiente comando SQL en PSQL:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:119 +#, python-format +msgid "" +"Microsoft Excel will allow \n" +" you to modify only the encoding when saving \n" +" (in 'Save As' dialog box > click 'Tools' dropdown \n" +" list > Encoding tab)." +msgstr "" +"Microsoft Excel permite modificar solamente la codificación cuando guarda un " +"archivo CSV (en el cuadro de diálogo 'Guardar como' > pulsar la lista " +"desplegable 'Herramientas' > pestaña 'Codificación')." + +#. module: base_import +#: field:base_import.tests.models.preview,othervalue:0 +msgid "Other Variable" +msgstr "Otra variable" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "" +"will also be used to update the original\n" +" import if you need to re-import modified data\n" +" later, it's thus good practice to specify it\n" +" whenever possible" +msgstr "" +"será usado para actualizar la importación original si necesita reimportar " +"datos modificados más tarde, por lo que es una buena práctica especificarlo " +"cuando sea posible" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:26 +#, python-format +msgid "" +"file to import. If you need a sample importable file, you\n" +" can use the export tool to generate one." +msgstr "" +"archivo a importar. Si necesita una muestra de un archivo importable, puede " +"usar la herramienta de exportación para generarla." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:148 +#, python-format +msgid "" +"Country/Database \n" +" ID: 21" +msgstr "País/Id. de la BD: 21" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char +msgid "base_import.tests.models.char" +msgstr "Cadena de los modelos de test de importación" + +#. module: base_import +#: help:base_import.import,file:0 +msgid "File to check and/or import, raw binary (not base64)" +msgstr "Archivo a comprobar y/o importar, binario en bruto (no base64)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:230 +#, python-format +msgid "Purchase orders with their respective purchase order lines" +msgstr "Pedidos de compra con sus respectivas líneas de pedido de compra" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:60 +#, python-format +msgid "" +"If the file contains\n" +" the column names, OpenERP can try auto-detecting the\n" +" field corresponding to the column. This makes imports\n" +" simpler especially when the file has many columns." +msgstr "" +"Si el archivo contiene los nombres de columna, OpenERP intentará auto-" +"detectar el campo correspondiente a la columna. Esto hace la importación más " +"sencilla, especialmente cuando el archivo tiene muchas columnas." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:26 +#, python-format +msgid ".CSV" +msgstr ".CSV" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:360 +#, python-format +msgid "" +". The issue is\n" +" usually an incorrect file encoding." +msgstr ". La problemática suele ser una codificación de archivo incorrecta." + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required +msgid "base_import.tests.models.m2o.required" +msgstr "Campos many2one requeridos de los modelos de test de importación" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly +msgid "base_import.tests.models.char.noreadonly" +msgstr "Campos de cadena escribibles de los modelos de test de importación" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:113 +#, python-format +msgid "" +"If you edit and save CSV files in speadsheet \n" +" applications, your computer's regional settings will " +"\n" +" be applied for the separator and delimiter. \n" +" We suggest you use OpenOffice or LibreOffice Calc \n" +" as they will allow you to modify all three options \n" +" (in 'Save As' dialog box > Check the box 'Edit " +"filter \n" +" settings' > Save)." +msgstr "" +"Si edita y guarda archivos en las aplicaciones de hoja de cálculo, se " +"aplicará la configuración regional del ordenador para el separador y el " +"delimitador. Le sugerimos usar OpenOffice o LibreOffice Calc, que permiten " +"modificar dichas opciones (en 'Guardar como...' > Marcar casilla 'Editar " +"filtro' > Gurdar)." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:30 +#, python-format +msgid "CSV File:" +msgstr "Archivo CSV:" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_preview +msgid "base_import.tests.models.preview" +msgstr "Previsualización de los modelos de test de importación" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_required +msgid "base_import.tests.models.char.required" +msgstr "Cadena requerida de los modelos de test de importación" + +#. module: base_import +#: code:addons/base_import/models.py:112 +#, python-format +msgid "Database ID" +msgstr "Id. de la BD" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:313 +#, python-format +msgid "It will produce the following CSV file:" +msgstr "Se creará el siguiente archivo CSV:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:362 +#, python-format +msgid "Here is the start of the file we could not import:" +msgstr "Éste es el comienzo del archivo que no se ha podido importar:" + +#. module: base_import +#: field:base_import.import,file_type:0 +msgid "File Type" +msgstr "Tipo de archivo" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_import +msgid "base_import.import" +msgstr "Importación" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_o2m +msgid "base_import.tests.models.o2m" +msgstr "Modelo one2may de test de importación" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:360 +#, python-format +msgid "Import preview failed due to:" +msgstr "La previsualización de la importación ha fallado debido a:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:144 +#, python-format +msgid "" +"Country/External ID: the ID of this record \n" +" referenced in another application (or the .XML file " +"\n" +" that imported it)" +msgstr "" +"País/Id. externo: el id. de este registro referenciado en otra aplicación (o " +"del archivo .XML que lo importó)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:35 +#, python-format +msgid "Reload data to check changes." +msgstr "Recargar datos para comprobar cambios." + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "Cadena de sólo lectura de los modelos de test de importación" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:131 +#, python-format +msgid "" +"Some fields define a relationship with another \n" +" object. For example, the country of a contact is a \n" +" link to a record of the 'Country' object. When you \n" +" want to import such fields, OpenERP will have to \n" +" recreate links between the different records. \n" +" To help you import such fields, OpenERP provides 3 \n" +" mechanisms. You must use one and only one mechanism " +"\n" +" per field you want to import." +msgstr "" +"Algunos campos definen una relación con otro objeto. Por ejemplo, el país de " +"un contacto es un enlace a un registro del objeto 'País'. Cuando quiere " +"importar dichos campos, OpenERP tendrá que recrear los enlaces entre los " +"diferentes registros. Para ayudar a importar tales campos, OpenERP provee " +"tres mecanismos. Debe usar uno y sólo uno de esos mecanismo por campo que " +"quiera importar." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:201 +#, python-format +msgid "" +"The tags should be separated by a comma without any \n" +" spacing. For example, if you want you customer to be " +"\n" +" lined to both tags 'Manufacturer' and 'Retailer' \n" +" then you will encode it as follow \"Manufacturer,\n" +" Retailer\" in the same column of your CSV file." +msgstr "" +"Las etiquetas deben separarse por una coma sin ningún espacio. Por ejemplo, " +"si quiere que su cliente esté asignado tanto a la etiqueta 'Fabricante' como " +"a la 'Comerciante al por menor', entonces debe codificarlo como sigue " +"\"Fabricante,Comerciante al por menor\", en la misma columna en su archivo " +"CSV." + +#. module: base_import +#: code:addons/base_import/models.py:264 +#, python-format +msgid "You must configure at least one field to import" +msgstr "Debe configurar al menos un campo a importar" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:304 +#, python-format +msgid "company_2,Organi,True" +msgstr "company_2,Organi,True" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:58 +#, python-format +msgid "" +"The first row of the\n" +" file contains the label of the column" +msgstr "La primera fila del archivo contiene las etiquetas de la columnas" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_states +msgid "base_import.tests.models.char.states" +msgstr "Estados de los modelos de test de importación" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:7 +#, python-format +msgid "Import a CSV File" +msgstr "Importar un archivo CSV" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:74 +#, python-format +msgid "Quoting:" +msgstr "Citando:" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required_related +msgid "base_import.tests.models.m2o.required.related" +msgstr "" +"Relaciones de los campos many2one requeridos de los modelos de test de " +"importación" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:293 +#, python-format +msgid ")." +msgstr ")." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:18 +#: code:addons/base_import/static/src/xml/import.xml:396 +#, python-format +msgid "Import" +msgstr "Importar" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:407 +#, python-format +msgid "Here are the possible values:" +msgstr "Éstos son los posibles valores:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "The" +msgstr "El" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:227 +#, python-format +msgid "" +"A single column was found in the file, this often means the file separator " +"is incorrect" +msgstr "" +"Sólo se ha encontrado una columna en el archivo. Esto suele significar que " +"el separador de archivo es incorrecto." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:293 +#, python-format +msgid "dump of such a PostgreSQL database" +msgstr "volcado de la base de datos de PostgreSQL" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:301 +#, python-format +msgid "This SQL command will create the following CSV file:" +msgstr "Este comando SQL creará el siguiente archivo CSV:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:228 +#, python-format +msgid "" +"The following CSV file shows how to import purchase \n" +" orders with their respective purchase order lines:" +msgstr "" +"El siguiente archivo CSV muestra como importar pedidos de compra con sus " +"respectivas líneas de pedido de compra:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:91 +#, python-format +msgid "" +"What can I do when the Import preview table isn't \n" +" displayed correctly?" +msgstr "" +"¿Qué puedo hacer cuando la tabla de previsualización de importación no se " +"está mostrando correctamente?" + +#. module: base_import +#: field:base_import.tests.models.char,value:0 +#: field:base_import.tests.models.char.noreadonly,value:0 +#: field:base_import.tests.models.char.readonly,value:0 +#: field:base_import.tests.models.char.required,value:0 +#: field:base_import.tests.models.char.states,value:0 +#: field:base_import.tests.models.char.stillreadonly,value:0 +#: field:base_import.tests.models.m2o,value:0 +#: field:base_import.tests.models.m2o.related,value:0 +#: field:base_import.tests.models.m2o.required,value:0 +#: field:base_import.tests.models.m2o.required.related,value:0 +#: field:base_import.tests.models.o2m,value:0 +#: field:base_import.tests.models.o2m.child,parent_id:0 +#: field:base_import.tests.models.o2m.child,value:0 +msgid "unknown" +msgstr "desconocido" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:317 +#, python-format +msgid "person_2,Laurence,False,company_1" +msgstr "person_2,Laurence,False,company_1" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:149 +#, python-format +msgid "Country/External ID: base.be" +msgstr "País/Id. externo: base.be" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:288 +#, python-format +msgid "" +"As an example, suppose you have a SQL database \n" +" with two tables you want to import: companies and \n" +" persons. Each person belong to one company, so you \n" +" will have to recreate the link between a person and " +"\n" +" the company he work for. (If you want to test this \n" +" example, here is a" +msgstr "" +"Como ejemplo, supongo que tiene una base de datos SQL con dos tablas que " +"quiere importar: compañías y personas. Cada persona pertenece a una " +"compañía, por lo que tendrá que recrear el enlace entre la persona y la " +"compañía en la que trabaja. (Si quiere comprobar este ejemplo, aquí hay un" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:396 +#, python-format +msgid "(%d more)" +msgstr "(%d más)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:227 +#, python-format +msgid "File for some Quotations" +msgstr "Archivo para las citas" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:72 +#, python-format +msgid "Encoding:" +msgstr "Codificación:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:280 +#, python-format +msgid "" +"To manage relations between tables, \n" +" you can use the \"External ID\" facilities of " +"OpenERP. \n" +" The \"External ID\" of a record is the unique " +"identifier \n" +" of this record in another application. This " +"\"External \n" +" ID\" must be unique accoss all the records of all \n" +" objects, so it's a good practice to prefix this \n" +" \"External ID\" with the name of the application or " +"\n" +" table. (like 'company_1', 'person_1' instead of '1')" +msgstr "" +"Para gestionar relaciones entre tablas, puede usar las facilidades del campo " +"\"Id. externo\" de OpenERP. El id. externo de un registro es un " +"identificador único de este registro en otra aplicación. Este id. debe ser " +"único a lo largo de todos los registros de todos los objetos. por lo que es " +"una buena práctica poner como prefijo al mismo el nombre de la aplicación o " +"de la tabla (como por ejemplo 'company_1' o 'person_1', en lugar de '1')" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:295 +#, python-format +msgid "" +"We will first export all companies and their \n" +" \"External ID\". In PSQL, write the following " +"command:" +msgstr "" +"Se exportará primero todas las compañías y sus id. externos. En PSQL, " +"escriba el siguiente comando:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:212 +#, python-format +msgid "" +"How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" +msgstr "" +"¿Cómo puedo importar una relación uno a muchos (one2many - por ejemplo: las " +"líneas de pedido del pedido de venta)?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:373 +#, python-format +msgid "Everything seems valid." +msgstr "Todo parece correcto." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:188 +#, python-format +msgid "" +"However if you do not wish to change your \n" +" configuration of product categories, we recommend " +"you \n" +" use make use of the external ID for this field \n" +" 'Category'." +msgstr "" +"Sin embargo, si no desea cambiar la configuración de las categorías de " +"producto, le recomendamos que haga uso de id. externo para este campo " +"'Categoría'." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:390 +#, python-format +msgid "at row %d" +msgstr "en la fila %d" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:197 +#, python-format +msgid "" +"How can I import a many2many relationship field \n" +" (e.g. a customer that has multiple tags)?" +msgstr "" +"¿Cómo puedo importar un campo de relación many2many (muchos a muchos; por " +"ejemplo: un cliente que tiene múltiples etiquetas)?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "XXX/ID" +msgstr "XXX/ID" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:275 +#, python-format +msgid "" +"If you need to import data from different tables, \n" +" you will have to recreate relations between records " +"\n" +" belonging to different tables. (e.g. if you import \n" +" companies and persons, you will have to recreate the " +"\n" +" link between each person and the company they work \n" +" for)." +msgstr "" +"Si necesita importar datos de diversas tablas, puede recrear relaciones " +"entre los registros pertenecientes a diferentes tablas (por ejemplo, si " +"importa compañías y personas, tendrá que recrear el enlace entre cada " +"persona y la compañía para la que trabaja)." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:150 +#, python-format +msgid "" +"According to your need, you should use \n" +" one of these 3 ways to reference records in " +"relations. \n" +" Here is when you should use one or the other, \n" +" according to your need:" +msgstr "" +"De acuerdo a sus necesidades, puede usar una de estas tres formas de " +"referenciar registros en las relaciones.\n" +"Aquí es donde debe usar una u otra, conforme a sus necesidades:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:319 +#, python-format +msgid "person_4,Ramsy,False,company_3" +msgstr "person_4,Ramsy,False,company_3" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:261 +#, python-format +msgid "" +"If you do not set all fields in your CSV file, \n" +" OpenERP will assign the default value for every non " +"\n" +" defined fields. But if you\n" +" set fields with empty values in your CSV file, " +"OpenERP \n" +" will set the EMPTY value in the field, instead of \n" +" assigning the default value." +msgstr "" +"Si no establece todos los campos en su archivo CSV, OpenERP asignará los " +"valores por defecto para cada campo no definido. Pero si dejar los campos " +"con valor vacío en el archivo CSV, OpenERP establecer el valor EMPTY en el " +"campo, en lugar del valor por defecto." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:20 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:257 +#, python-format +msgid "" +"What happens if I do not provide a value for a \n" +" specific field?" +msgstr "¿Qué pasa si no proveo de un valor para un campo específico?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:68 +#, python-format +msgid "Frequently Asked Questions" +msgstr "Preguntas más frecuentes" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:305 +#, python-format +msgid "company_3,Boum,True" +msgstr "company_3,Boum,True" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:249 +#, python-format +msgid "" +"This feature \n" +" allows you to use the Import/Export tool of OpenERP " +"to \n" +" modify a batch of records in your favorite " +"spreadsheet \n" +" application." +msgstr "" +"Esta característica permite usar la herramienta de importación/exportación " +"de OpenERP para modificar un lote de registros en su aplicación de hoja de " +"cálculo favorita." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:77 +#, python-format +msgid "" +"column in OpenERP. When you\n" +" import an other record that links to the first\n" +" one, use" +msgstr "" +"columna en OpenERP. Cuando importe otro registro que enlace con el primero, " +"use" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:242 +#, python-format +msgid "" +"If you import a file that contains one of the \n" +" column \"External ID\" or \"Database ID\", records " +"that \n" +" have already been imported will be modified instead " +"of \n" +" being created. This is very usefull as it allows you " +"\n" +" to import several times the same CSV file while " +"having \n" +" made some changes in between two imports. OpenERP " +"will \n" +" take care of creating or modifying each record \n" +" depending if it's new or not." +msgstr "" +"Si importar un archivo que contiene la columna \"Id. externo\" o \"Id. de la " +"BD\", los registros que ya han sido importados se modificarán en lugar de " +"ser creados. Esto es útil, ya que permite importar varias veces el mismo " +"archivo CSV si se han realizado algunos cambios entre dos importaciones. " +"OpenERP tendrá cuidado de crear o modificar cada registro dependiendo de si " +"es nuevo o no." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:169 +#, python-format +msgid "CSV file for categories" +msgstr "Archivo CSV para las categorías" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:309 +#, python-format +msgid "Normal Fields" +msgstr "Campos normales" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:74 +#, python-format +msgid "" +"In order to re-create relationships between\n" +" different records, you should use the unique\n" +" identifier from the original application and\n" +" map it to the" +msgstr "" +"Para recrear las relaciones entre los diferentes registros, debe usar el " +"identificador único de la aplicación original y mapearlo a" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:170 +#, python-format +msgid "CSV file for Products" +msgstr "Archivo CSV para los productos" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:216 +#, python-format +msgid "" +"If you want to import sales order having several \n" +" order lines; for each order line, you need to " +"reserve \n" +" a specific row in the CSV file. The first order line " +"\n" +" will be imported on the same row as the information " +"\n" +" relative to order. Any additional lines will need an " +"\n" +" addtional row that does not have any information in " +"\n" +" the fields relative to the order." +msgstr "" +"Si quiere importar los pedidos de venta teniendo varias líneas de pedido; " +"para cada línea de pedido, necesita reservar una fila específica en el " +"archivo CSV. La primera línea de pedido será importada en la misma fila que " +"la información relativa al pedido. Cualquier línea adicional necesitará una " +"fila adicional que no tenga información en los campos relativos al pedido." + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related +msgid "base_import.tests.models.m2o.related" +msgstr "Relaciones many2one de los modelos de test de importación" + +#. module: base_import +#: field:base_import.tests.models.preview,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "to the original unique identifier." +msgstr "al identificador único original." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:318 +#, python-format +msgid "person_3,Eric,False,company_2" +msgstr "person_3,Eric,False,company_2" + +#. module: base_import +#: field:base_import.import,res_model:0 +msgid "Model" +msgstr "Modelo" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:77 +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "ID" +msgstr "Id." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:329 +#, python-format +msgid "" +"The two files produced are ready to be imported in \n" +" OpenERP without any modifications. After having \n" +" imported these two CSV files, you will have 4 " +"contacts \n" +" and 3 companies. (the firsts two contacts are linked " +"\n" +" to the first company). You must first import the \n" +" companies and then the persons." +msgstr "" +"Los dos archivos producidos están listos para ser importados en OpenERP sin " +"ninguna modificación. Después de importar estos dos archivos, tendrá 4 " +"contactos y 3 compañías (los dos primeros contactos están enlazados a la " +"primera compañía). Debe importar primero las compañías y luego las personas." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:95 +#, python-format +msgid "" +"By default the Import preview is set on commas as \n" +" field separators and quotation marks as text \n" +" delimiters. If your csv file does not have these \n" +" settings, you can modify the File Format Options \n" +" (displayed under the Browse CSV file bar after you \n" +" select your file)." +msgstr "" +"Por defecto, la previsualización de la importación se establece con comas " +"como separadores de campo y comillas como delimitadores de texto. Si su " +"archivo CSV no tiene estos parámetros, puede modificar las opciones de " +"formato de archivo (mostradas bajo la barra de 'Seleccionar archivo CSV' " +"después de seleccionar el archivo)." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:73 +#, python-format +msgid "Separator:" +msgstr "Separador:" + +#. module: base_import +#: field:base_import.import,file_name:0 +msgid "File Name" +msgstr "Nombre de archivo" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/models.py:80 +#: code:addons/base_import/models.py:111 +#: code:addons/base_import/static/src/xml/import.xml:77 +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "External ID" +msgstr "Id. externo" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:39 +#, python-format +msgid "File Format Options…" +msgstr "Opciones de formato de archivo..." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:392 +#, python-format +msgid "between rows %d and %d" +msgstr "entre las filas %d y %d" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:19 +#, python-format +msgid "or" +msgstr "o" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:223 +#, python-format +msgid "" +"As an example, here is \n" +" purchase.order_functional_error_line_cant_adpat.CSV " +"\n" +" file of some quotations you can import, based on " +"demo \n" +" data." +msgstr "" +"Como ejemplo, aquí tiene el archivo " +"'purchase.order_functional_error_line_cant_adapt.csv' que puede importar, " +"basado en los datos de demostración." + +#. module: base_import +#: field:base_import.import,file:0 +msgid "File" +msgstr "Archivo" diff --git a/addons/base_import/i18n/et.po b/addons/base_import/i18n/et.po new file mode 100644 index 00000000000..ff45aeafb6b --- /dev/null +++ b/addons/base_import/i18n/et.po @@ -0,0 +1,1166 @@ +# Estonian translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-24 20:50+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Estonian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-25 04:48+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:420 +#, python-format +msgid "Get all possible values" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:71 +#, python-format +msgid "Need to import data from an other application?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:163 +#, python-format +msgid "" +"When you use External IDs, you can import CSV files \n" +" with the \"External ID\" column to define the " +"External \n" +" ID of each record you import. Then, you will be able " +"\n" +" to make a reference to that record with columns like " +"\n" +" \"Field/External ID\". The following two CSV files " +"give \n" +" you an example for Products and their Categories." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:271 +#, python-format +msgid "" +"How to export/import different tables from an SQL \n" +" application to OpenERP?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:310 +#, python-format +msgid "Relation Fields" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:142 +#, python-format +msgid "" +"Country/Database ID: the unique OpenERP ID for a \n" +" record, defined by the ID postgresql column" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:155 +#, python-format +msgid "" +"Use \n" +" Country/Database ID: You should rarely use this \n" +" notation. It's mostly used by developers as it's " +"main \n" +" advantage is to never have conflicts (you may have \n" +" several records with the same name, but they always " +"\n" +" have a unique Database ID)" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:146 +#, python-format +msgid "" +"For the country \n" +" Belgium, you can use one of these 3 ways to import:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:303 +#, python-format +msgid "company_1,Bigees,True" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o +msgid "base_import.tests.models.m2o" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:297 +#, python-format +msgid "" +"copy \n" +" (select 'company_'||id as \"External " +"ID\",company_name \n" +" as \"Name\",'True' as \"Is a Company\" from " +"companies) TO \n" +" '/tmp/company.csv' with CSV HEADER;" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:206 +#, python-format +msgid "CSV file for Manufacturer, Retailer" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:160 +#, python-format +msgid "" +"Use \n" +" Country/External ID: Use External ID when you import " +"\n" +" data from a third party application." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:316 +#, python-format +msgid "person_1,Fabien,False,company_1" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "XXX/External ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:351 +#, python-format +msgid "Don't Import" +msgstr "Ära impordi" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:24 +#, python-format +msgid "Select the" +msgstr "Vali" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:100 +#, python-format +msgid "" +"Note that if your CSV file \n" +" has a tabulation as separator, OpenERP will not \n" +" detect the separations. You will need to change the " +"\n" +" file format options in your spreadsheet application. " +"\n" +" See the following question." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:141 +#, python-format +msgid "Country: the name or code of the country" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_o2m_child +msgid "base_import.tests.models.o2m.child" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:239 +#, python-format +msgid "Can I import several times the same record?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:15 +#, python-format +msgid "Validate" +msgstr "Kinnita" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:55 +#, python-format +msgid "Map your data to OpenERP" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:153 +#, python-format +msgid "" +"Use Country: This is \n" +" the easiest way when your data come from CSV files \n" +" that have been created manually." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:127 +#, python-format +msgid "" +"What's the difference between Database ID and \n" +" External ID?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:138 +#, python-format +msgid "" +"For example, to \n" +" reference the country of a contact, OpenERP proposes " +"\n" +" you 3 different fields to import:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:175 +#, python-format +msgid "What can I do if I have multiple matches for a field?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:302 +#, python-format +msgid "External ID,Name,Is a Company" +msgstr "" + +#. module: base_import +#: field:base_import.tests.models.preview,somevalue:0 +msgid "Some Value" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" suppliers and their respective contacts" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:109 +#, python-format +msgid "" +"How can I change the CSV file format options when \n" +" saving in my spreadsheet application?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:320 +#, python-format +msgid "" +"As you can see in this file, Fabien and Laurence \n" +" are working for the Bigees company (company_1) and \n" +" Eric is working for the Organi company. The relation " +"\n" +" between persons and companies is done using the \n" +" External ID of the companies. We had to prefix the \n" +" \"External ID\" by the name of the table to avoid a " +"\n" +" conflict of ID between persons and companies " +"(person_1 \n" +" and company_1 who shared the same ID 1 in the " +"orignial \n" +" database)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:308 +#, python-format +msgid "" +"copy (select \n" +" 'person_'||id as \"External ID\",person_name as \n" +" \"Name\",'False' as \"Is a " +"Company\",'company_'||company_id\n" +" as \"Related Company/External ID\" from persons) TO " +"\n" +" '/tmp/person.csv' with CSV" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:148 +#, python-format +msgid "Country: Belgium" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_stillreadonly +msgid "base_import.tests.models.char.stillreadonly" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:314 +#, python-format +msgid "" +"External ID,Name,Is a \n" +" Company,Related Company/External ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Suppliers and their respective contacts" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:179 +#, python-format +msgid "" +"If for example you have two product categories \n" +" with the child name \"Sellable\" (ie. \"Misc. \n" +" Products/Sellable\" & \"Other Products/Sellable\"),\n" +" your validation is halted but you may still import \n" +" your data. However, we recommend you do not import " +"the \n" +" data because they will all be linked to the first \n" +" 'Sellable' category found in the Product Category " +"list \n" +" (\"Misc. Products/Sellable\"). We recommend you " +"modify \n" +" one of the duplicates' values or your product " +"category \n" +" hierarchy." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:306 +#, python-format +msgid "" +"To create the CSV file for persons, linked to \n" +" companies, we will use the following SQL command in " +"\n" +" PSQL:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:119 +#, python-format +msgid "" +"Microsoft Excel will allow \n" +" you to modify only the encoding when saving \n" +" (in 'Save As' dialog box > click 'Tools' dropdown \n" +" list > Encoding tab)." +msgstr "" + +#. module: base_import +#: field:base_import.tests.models.preview,othervalue:0 +msgid "Other Variable" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "" +"will also be used to update the original\n" +" import if you need to re-import modified data\n" +" later, it's thus good practice to specify it\n" +" whenever possible" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:26 +#, python-format +msgid "" +"file to import. If you need a sample importable file, you\n" +" can use the export tool to generate one." +msgstr "" +"fail importimiseks. Kui sa vajad näidisfaili siis\n" +" sa saad selle tekitamiseks kasutada eksportimist." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:148 +#, python-format +msgid "" +"Country/Database \n" +" ID: 21" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char +msgid "base_import.tests.models.char" +msgstr "" + +#. module: base_import +#: help:base_import.import,file:0 +msgid "File to check and/or import, raw binary (not base64)" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:230 +#, python-format +msgid "Purchase orders with their respective purchase order lines" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:60 +#, python-format +msgid "" +"If the file contains\n" +" the column names, OpenERP can try auto-detecting the\n" +" field corresponding to the column. This makes imports\n" +" simpler especially when the file has many columns." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:26 +#, python-format +msgid ".CSV" +msgstr ".CSV" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:360 +#, python-format +msgid "" +". The issue is\n" +" usually an incorrect file encoding." +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required +msgid "base_import.tests.models.m2o.required" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly +msgid "base_import.tests.models.char.noreadonly" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:113 +#, python-format +msgid "" +"If you edit and save CSV files in speadsheet \n" +" applications, your computer's regional settings will " +"\n" +" be applied for the separator and delimiter. \n" +" We suggest you use OpenOffice or LibreOffice Calc \n" +" as they will allow you to modify all three options \n" +" (in 'Save As' dialog box > Check the box 'Edit " +"filter \n" +" settings' > Save)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:30 +#, python-format +msgid "CSV File:" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_preview +msgid "base_import.tests.models.preview" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_required +msgid "base_import.tests.models.char.required" +msgstr "" + +#. module: base_import +#: code:addons/base_import/models.py:112 +#, python-format +msgid "Database ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:313 +#, python-format +msgid "It will produce the following CSV file:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:362 +#, python-format +msgid "Here is the start of the file we could not import:" +msgstr "" + +#. module: base_import +#: field:base_import.import,file_type:0 +msgid "File Type" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_import +msgid "base_import.import" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_o2m +msgid "base_import.tests.models.o2m" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:360 +#, python-format +msgid "Import preview failed due to:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:144 +#, python-format +msgid "" +"Country/External ID: the ID of this record \n" +" referenced in another application (or the .XML file " +"\n" +" that imported it)" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:35 +#, python-format +msgid "Reload data to check changes." +msgstr "Lae andmed uuesti, et tuvastada muutused." + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:131 +#, python-format +msgid "" +"Some fields define a relationship with another \n" +" object. For example, the country of a contact is a \n" +" link to a record of the 'Country' object. When you \n" +" want to import such fields, OpenERP will have to \n" +" recreate links between the different records. \n" +" To help you import such fields, OpenERP provides 3 \n" +" mechanisms. You must use one and only one mechanism " +"\n" +" per field you want to import." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:201 +#, python-format +msgid "" +"The tags should be separated by a comma without any \n" +" spacing. For example, if you want you customer to be " +"\n" +" lined to both tags 'Manufacturer' and 'Retailer' \n" +" then you will encode it as follow \"Manufacturer,\n" +" Retailer\" in the same column of your CSV file." +msgstr "" + +#. module: base_import +#: code:addons/base_import/models.py:264 +#, python-format +msgid "You must configure at least one field to import" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:304 +#, python-format +msgid "company_2,Organi,True" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:58 +#, python-format +msgid "" +"The first row of the\n" +" file contains the label of the column" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_states +msgid "base_import.tests.models.char.states" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:7 +#, python-format +msgid "Import a CSV File" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:74 +#, python-format +msgid "Quoting:" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required_related +msgid "base_import.tests.models.m2o.required.related" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:293 +#, python-format +msgid ")." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:18 +#: code:addons/base_import/static/src/xml/import.xml:396 +#, python-format +msgid "Import" +msgstr "Impordi" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:407 +#, python-format +msgid "Here are the possible values:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "The" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:227 +#, python-format +msgid "" +"A single column was found in the file, this often means the file separator " +"is incorrect" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:293 +#, python-format +msgid "dump of such a PostgreSQL database" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:301 +#, python-format +msgid "This SQL command will create the following CSV file:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:228 +#, python-format +msgid "" +"The following CSV file shows how to import purchase \n" +" orders with their respective purchase order lines:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:91 +#, python-format +msgid "" +"What can I do when the Import preview table isn't \n" +" displayed correctly?" +msgstr "" + +#. module: base_import +#: field:base_import.tests.models.char,value:0 +#: field:base_import.tests.models.char.noreadonly,value:0 +#: field:base_import.tests.models.char.readonly,value:0 +#: field:base_import.tests.models.char.required,value:0 +#: field:base_import.tests.models.char.states,value:0 +#: field:base_import.tests.models.char.stillreadonly,value:0 +#: field:base_import.tests.models.m2o,value:0 +#: field:base_import.tests.models.m2o.related,value:0 +#: field:base_import.tests.models.m2o.required,value:0 +#: field:base_import.tests.models.m2o.required.related,value:0 +#: field:base_import.tests.models.o2m,value:0 +#: field:base_import.tests.models.o2m.child,parent_id:0 +#: field:base_import.tests.models.o2m.child,value:0 +msgid "unknown" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:317 +#, python-format +msgid "person_2,Laurence,False,company_1" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:149 +#, python-format +msgid "Country/External ID: base.be" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:288 +#, python-format +msgid "" +"As an example, suppose you have a SQL database \n" +" with two tables you want to import: companies and \n" +" persons. Each person belong to one company, so you \n" +" will have to recreate the link between a person and " +"\n" +" the company he work for. (If you want to test this \n" +" example, here is a" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:396 +#, python-format +msgid "(%d more)" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:227 +#, python-format +msgid "File for some Quotations" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:72 +#, python-format +msgid "Encoding:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:280 +#, python-format +msgid "" +"To manage relations between tables, \n" +" you can use the \"External ID\" facilities of " +"OpenERP. \n" +" The \"External ID\" of a record is the unique " +"identifier \n" +" of this record in another application. This " +"\"External \n" +" ID\" must be unique accoss all the records of all \n" +" objects, so it's a good practice to prefix this \n" +" \"External ID\" with the name of the application or " +"\n" +" table. (like 'company_1', 'person_1' instead of '1')" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:295 +#, python-format +msgid "" +"We will first export all companies and their \n" +" \"External ID\". In PSQL, write the following " +"command:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:212 +#, python-format +msgid "" +"How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:373 +#, python-format +msgid "Everything seems valid." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:188 +#, python-format +msgid "" +"However if you do not wish to change your \n" +" configuration of product categories, we recommend " +"you \n" +" use make use of the external ID for this field \n" +" 'Category'." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:390 +#, python-format +msgid "at row %d" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:197 +#, python-format +msgid "" +"How can I import a many2many relationship field \n" +" (e.g. a customer that has multiple tags)?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "XXX/ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:275 +#, python-format +msgid "" +"If you need to import data from different tables, \n" +" you will have to recreate relations between records " +"\n" +" belonging to different tables. (e.g. if you import \n" +" companies and persons, you will have to recreate the " +"\n" +" link between each person and the company they work \n" +" for)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:150 +#, python-format +msgid "" +"According to your need, you should use \n" +" one of these 3 ways to reference records in " +"relations. \n" +" Here is when you should use one or the other, \n" +" according to your need:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:319 +#, python-format +msgid "person_4,Ramsy,False,company_3" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:261 +#, python-format +msgid "" +"If you do not set all fields in your CSV file, \n" +" OpenERP will assign the default value for every non " +"\n" +" defined fields. But if you\n" +" set fields with empty values in your CSV file, " +"OpenERP \n" +" will set the EMPTY value in the field, instead of \n" +" assigning the default value." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:20 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:257 +#, python-format +msgid "" +"What happens if I do not provide a value for a \n" +" specific field?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:68 +#, python-format +msgid "Frequently Asked Questions" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:305 +#, python-format +msgid "company_3,Boum,True" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:249 +#, python-format +msgid "" +"This feature \n" +" allows you to use the Import/Export tool of OpenERP " +"to \n" +" modify a batch of records in your favorite " +"spreadsheet \n" +" application." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:77 +#, python-format +msgid "" +"column in OpenERP. When you\n" +" import an other record that links to the first\n" +" one, use" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:242 +#, python-format +msgid "" +"If you import a file that contains one of the \n" +" column \"External ID\" or \"Database ID\", records " +"that \n" +" have already been imported will be modified instead " +"of \n" +" being created. This is very usefull as it allows you " +"\n" +" to import several times the same CSV file while " +"having \n" +" made some changes in between two imports. OpenERP " +"will \n" +" take care of creating or modifying each record \n" +" depending if it's new or not." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:169 +#, python-format +msgid "CSV file for categories" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:309 +#, python-format +msgid "Normal Fields" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:74 +#, python-format +msgid "" +"In order to re-create relationships between\n" +" different records, you should use the unique\n" +" identifier from the original application and\n" +" map it to the" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:170 +#, python-format +msgid "CSV file for Products" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:216 +#, python-format +msgid "" +"If you want to import sales order having several \n" +" order lines; for each order line, you need to " +"reserve \n" +" a specific row in the CSV file. The first order line " +"\n" +" will be imported on the same row as the information " +"\n" +" relative to order. Any additional lines will need an " +"\n" +" addtional row that does not have any information in " +"\n" +" the fields relative to the order." +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related +msgid "base_import.tests.models.m2o.related" +msgstr "" + +#. module: base_import +#: field:base_import.tests.models.preview,name:0 +msgid "Name" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "to the original unique identifier." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:318 +#, python-format +msgid "person_3,Eric,False,company_2" +msgstr "" + +#. module: base_import +#: field:base_import.import,res_model:0 +msgid "Model" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:77 +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:329 +#, python-format +msgid "" +"The two files produced are ready to be imported in \n" +" OpenERP without any modifications. After having \n" +" imported these two CSV files, you will have 4 " +"contacts \n" +" and 3 companies. (the firsts two contacts are linked " +"\n" +" to the first company). You must first import the \n" +" companies and then the persons." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:95 +#, python-format +msgid "" +"By default the Import preview is set on commas as \n" +" field separators and quotation marks as text \n" +" delimiters. If your csv file does not have these \n" +" settings, you can modify the File Format Options \n" +" (displayed under the Browse CSV file bar after you \n" +" select your file)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:73 +#, python-format +msgid "Separator:" +msgstr "" + +#. module: base_import +#: field:base_import.import,file_name:0 +msgid "File Name" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/models.py:80 +#: code:addons/base_import/models.py:111 +#: code:addons/base_import/static/src/xml/import.xml:77 +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "External ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:39 +#, python-format +msgid "File Format Options…" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:392 +#, python-format +msgid "between rows %d and %d" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:19 +#, python-format +msgid "or" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:223 +#, python-format +msgid "" +"As an example, here is \n" +" purchase.order_functional_error_line_cant_adpat.CSV " +"\n" +" file of some quotations you can import, based on " +"demo \n" +" data." +msgstr "" + +#. module: base_import +#: field:base_import.import,file:0 +msgid "File" +msgstr "" diff --git a/addons/base_import/i18n/fr.po b/addons/base_import/i18n/fr.po index c851c081b58..b4646b245da 100644 --- a/addons/base_import/i18n/fr.po +++ b/addons/base_import/i18n/fr.po @@ -7,29 +7,29 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-12-07 10:31+0000\n" -"Last-Translator: Numérigraphe \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-18 23:27+0000\n" +"Last-Translator: Nicolas JEUDY \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-08 04:59+0000\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:420 #, python-format msgid "Get all possible values" -msgstr "" +msgstr "Récupérer toutes les valeurs possible" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:71 #, python-format msgid "Need to import data from an other application?" -msgstr "" +msgstr "Besoin d.importer des données d'une autre application ?" #. module: base_import #. openerp-web @@ -159,7 +159,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:351 #, python-format msgid "Don't Import" -msgstr "" +msgstr "Ne pas importer" #. module: base_import #. openerp-web @@ -206,7 +206,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:15 #, python-format msgid "Validate" -msgstr "" +msgstr "Valider" #. module: base_import #. openerp-web @@ -470,15 +470,6 @@ msgstr "" msgid "base_import.tests.models.m2o.required" msgstr "" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:212 -#, python-format -msgid "" -"How can I import a one2many relationship (e.g. several \n" -" Order Lines of a Sale Order)?" -msgstr "" - #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly msgid "base_import.tests.models.char.noreadonly" @@ -822,6 +813,15 @@ msgid "" "command:" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:212 +#, python-format +msgid "" +"How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:373 diff --git a/addons/base_import/i18n/hr.po b/addons/base_import/i18n/hr.po index 5c47dc2ea7c..7a119f19aaf 100644 --- a/addons/base_import/i18n/hr.po +++ b/addons/base_import/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-14 22:33+0000\n" "Last-Translator: Goran Kliska \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-15 05:06+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_import #. openerp-web @@ -470,15 +470,6 @@ msgstr "" msgid "base_import.tests.models.m2o.required" msgstr "" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:212 -#, python-format -msgid "" -"How can I import a one2many relationship (e.g. several \n" -" Order Lines of a Sale Order)?" -msgstr "" - #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly msgid "base_import.tests.models.char.noreadonly" @@ -824,6 +815,15 @@ msgid "" "command:" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:212 +#, python-format +msgid "" +"How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:373 diff --git a/addons/base_import/i18n/hu.po b/addons/base_import/i18n/hu.po new file mode 100644 index 00000000000..8a69f57cae8 --- /dev/null +++ b/addons/base_import/i18n/hu.po @@ -0,0 +1,1164 @@ +# Hungarian translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-26 10:06+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Hungarian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-27 05:22+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:420 +#, python-format +msgid "Get all possible values" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:71 +#, python-format +msgid "Need to import data from an other application?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:163 +#, python-format +msgid "" +"When you use External IDs, you can import CSV files \n" +" with the \"External ID\" column to define the " +"External \n" +" ID of each record you import. Then, you will be able " +"\n" +" to make a reference to that record with columns like " +"\n" +" \"Field/External ID\". The following two CSV files " +"give \n" +" you an example for Products and their Categories." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:271 +#, python-format +msgid "" +"How to export/import different tables from an SQL \n" +" application to OpenERP?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:310 +#, python-format +msgid "Relation Fields" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:142 +#, python-format +msgid "" +"Country/Database ID: the unique OpenERP ID for a \n" +" record, defined by the ID postgresql column" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:155 +#, python-format +msgid "" +"Use \n" +" Country/Database ID: You should rarely use this \n" +" notation. It's mostly used by developers as it's " +"main \n" +" advantage is to never have conflicts (you may have \n" +" several records with the same name, but they always " +"\n" +" have a unique Database ID)" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:146 +#, python-format +msgid "" +"For the country \n" +" Belgium, you can use one of these 3 ways to import:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:303 +#, python-format +msgid "company_1,Bigees,True" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o +msgid "base_import.tests.models.m2o" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:297 +#, python-format +msgid "" +"copy \n" +" (select 'company_'||id as \"External " +"ID\",company_name \n" +" as \"Name\",'True' as \"Is a Company\" from " +"companies) TO \n" +" '/tmp/company.csv' with CSV HEADER;" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:206 +#, python-format +msgid "CSV file for Manufacturer, Retailer" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:160 +#, python-format +msgid "" +"Use \n" +" Country/External ID: Use External ID when you import " +"\n" +" data from a third party application." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:316 +#, python-format +msgid "person_1,Fabien,False,company_1" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "XXX/External ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:351 +#, python-format +msgid "Don't Import" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:24 +#, python-format +msgid "Select the" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:100 +#, python-format +msgid "" +"Note that if your CSV file \n" +" has a tabulation as separator, OpenERP will not \n" +" detect the separations. You will need to change the " +"\n" +" file format options in your spreadsheet application. " +"\n" +" See the following question." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:141 +#, python-format +msgid "Country: the name or code of the country" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_o2m_child +msgid "base_import.tests.models.o2m.child" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:239 +#, python-format +msgid "Can I import several times the same record?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:15 +#, python-format +msgid "Validate" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:55 +#, python-format +msgid "Map your data to OpenERP" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:153 +#, python-format +msgid "" +"Use Country: This is \n" +" the easiest way when your data come from CSV files \n" +" that have been created manually." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:127 +#, python-format +msgid "" +"What's the difference between Database ID and \n" +" External ID?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:138 +#, python-format +msgid "" +"For example, to \n" +" reference the country of a contact, OpenERP proposes " +"\n" +" you 3 different fields to import:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:175 +#, python-format +msgid "What can I do if I have multiple matches for a field?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:302 +#, python-format +msgid "External ID,Name,Is a Company" +msgstr "" + +#. module: base_import +#: field:base_import.tests.models.preview,somevalue:0 +msgid "Some Value" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" suppliers and their respective contacts" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:109 +#, python-format +msgid "" +"How can I change the CSV file format options when \n" +" saving in my spreadsheet application?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:320 +#, python-format +msgid "" +"As you can see in this file, Fabien and Laurence \n" +" are working for the Bigees company (company_1) and \n" +" Eric is working for the Organi company. The relation " +"\n" +" between persons and companies is done using the \n" +" External ID of the companies. We had to prefix the \n" +" \"External ID\" by the name of the table to avoid a " +"\n" +" conflict of ID between persons and companies " +"(person_1 \n" +" and company_1 who shared the same ID 1 in the " +"orignial \n" +" database)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:308 +#, python-format +msgid "" +"copy (select \n" +" 'person_'||id as \"External ID\",person_name as \n" +" \"Name\",'False' as \"Is a " +"Company\",'company_'||company_id\n" +" as \"Related Company/External ID\" from persons) TO " +"\n" +" '/tmp/person.csv' with CSV" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:148 +#, python-format +msgid "Country: Belgium" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_stillreadonly +msgid "base_import.tests.models.char.stillreadonly" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:314 +#, python-format +msgid "" +"External ID,Name,Is a \n" +" Company,Related Company/External ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Suppliers and their respective contacts" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:179 +#, python-format +msgid "" +"If for example you have two product categories \n" +" with the child name \"Sellable\" (ie. \"Misc. \n" +" Products/Sellable\" & \"Other Products/Sellable\"),\n" +" your validation is halted but you may still import \n" +" your data. However, we recommend you do not import " +"the \n" +" data because they will all be linked to the first \n" +" 'Sellable' category found in the Product Category " +"list \n" +" (\"Misc. Products/Sellable\"). We recommend you " +"modify \n" +" one of the duplicates' values or your product " +"category \n" +" hierarchy." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:306 +#, python-format +msgid "" +"To create the CSV file for persons, linked to \n" +" companies, we will use the following SQL command in " +"\n" +" PSQL:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:119 +#, python-format +msgid "" +"Microsoft Excel will allow \n" +" you to modify only the encoding when saving \n" +" (in 'Save As' dialog box > click 'Tools' dropdown \n" +" list > Encoding tab)." +msgstr "" + +#. module: base_import +#: field:base_import.tests.models.preview,othervalue:0 +msgid "Other Variable" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "" +"will also be used to update the original\n" +" import if you need to re-import modified data\n" +" later, it's thus good practice to specify it\n" +" whenever possible" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:26 +#, python-format +msgid "" +"file to import. If you need a sample importable file, you\n" +" can use the export tool to generate one." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:148 +#, python-format +msgid "" +"Country/Database \n" +" ID: 21" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char +msgid "base_import.tests.models.char" +msgstr "" + +#. module: base_import +#: help:base_import.import,file:0 +msgid "File to check and/or import, raw binary (not base64)" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:230 +#, python-format +msgid "Purchase orders with their respective purchase order lines" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:60 +#, python-format +msgid "" +"If the file contains\n" +" the column names, OpenERP can try auto-detecting the\n" +" field corresponding to the column. This makes imports\n" +" simpler especially when the file has many columns." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:26 +#, python-format +msgid ".CSV" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:360 +#, python-format +msgid "" +". The issue is\n" +" usually an incorrect file encoding." +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required +msgid "base_import.tests.models.m2o.required" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly +msgid "base_import.tests.models.char.noreadonly" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:113 +#, python-format +msgid "" +"If you edit and save CSV files in speadsheet \n" +" applications, your computer's regional settings will " +"\n" +" be applied for the separator and delimiter. \n" +" We suggest you use OpenOffice or LibreOffice Calc \n" +" as they will allow you to modify all three options \n" +" (in 'Save As' dialog box > Check the box 'Edit " +"filter \n" +" settings' > Save)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:30 +#, python-format +msgid "CSV File:" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_preview +msgid "base_import.tests.models.preview" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_required +msgid "base_import.tests.models.char.required" +msgstr "" + +#. module: base_import +#: code:addons/base_import/models.py:112 +#, python-format +msgid "Database ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:313 +#, python-format +msgid "It will produce the following CSV file:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:362 +#, python-format +msgid "Here is the start of the file we could not import:" +msgstr "" + +#. module: base_import +#: field:base_import.import,file_type:0 +msgid "File Type" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_import +msgid "base_import.import" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_o2m +msgid "base_import.tests.models.o2m" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:360 +#, python-format +msgid "Import preview failed due to:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:144 +#, python-format +msgid "" +"Country/External ID: the ID of this record \n" +" referenced in another application (or the .XML file " +"\n" +" that imported it)" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:35 +#, python-format +msgid "Reload data to check changes." +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:131 +#, python-format +msgid "" +"Some fields define a relationship with another \n" +" object. For example, the country of a contact is a \n" +" link to a record of the 'Country' object. When you \n" +" want to import such fields, OpenERP will have to \n" +" recreate links between the different records. \n" +" To help you import such fields, OpenERP provides 3 \n" +" mechanisms. You must use one and only one mechanism " +"\n" +" per field you want to import." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:201 +#, python-format +msgid "" +"The tags should be separated by a comma without any \n" +" spacing. For example, if you want you customer to be " +"\n" +" lined to both tags 'Manufacturer' and 'Retailer' \n" +" then you will encode it as follow \"Manufacturer,\n" +" Retailer\" in the same column of your CSV file." +msgstr "" + +#. module: base_import +#: code:addons/base_import/models.py:264 +#, python-format +msgid "You must configure at least one field to import" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:304 +#, python-format +msgid "company_2,Organi,True" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:58 +#, python-format +msgid "" +"The first row of the\n" +" file contains the label of the column" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_states +msgid "base_import.tests.models.char.states" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:7 +#, python-format +msgid "Import a CSV File" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:74 +#, python-format +msgid "Quoting:" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required_related +msgid "base_import.tests.models.m2o.required.related" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:293 +#, python-format +msgid ")." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:18 +#: code:addons/base_import/static/src/xml/import.xml:396 +#, python-format +msgid "Import" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:407 +#, python-format +msgid "Here are the possible values:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "The" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:227 +#, python-format +msgid "" +"A single column was found in the file, this often means the file separator " +"is incorrect" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:293 +#, python-format +msgid "dump of such a PostgreSQL database" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:301 +#, python-format +msgid "This SQL command will create the following CSV file:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:228 +#, python-format +msgid "" +"The following CSV file shows how to import purchase \n" +" orders with their respective purchase order lines:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:91 +#, python-format +msgid "" +"What can I do when the Import preview table isn't \n" +" displayed correctly?" +msgstr "" + +#. module: base_import +#: field:base_import.tests.models.char,value:0 +#: field:base_import.tests.models.char.noreadonly,value:0 +#: field:base_import.tests.models.char.readonly,value:0 +#: field:base_import.tests.models.char.required,value:0 +#: field:base_import.tests.models.char.states,value:0 +#: field:base_import.tests.models.char.stillreadonly,value:0 +#: field:base_import.tests.models.m2o,value:0 +#: field:base_import.tests.models.m2o.related,value:0 +#: field:base_import.tests.models.m2o.required,value:0 +#: field:base_import.tests.models.m2o.required.related,value:0 +#: field:base_import.tests.models.o2m,value:0 +#: field:base_import.tests.models.o2m.child,parent_id:0 +#: field:base_import.tests.models.o2m.child,value:0 +msgid "unknown" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:317 +#, python-format +msgid "person_2,Laurence,False,company_1" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:149 +#, python-format +msgid "Country/External ID: base.be" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:288 +#, python-format +msgid "" +"As an example, suppose you have a SQL database \n" +" with two tables you want to import: companies and \n" +" persons. Each person belong to one company, so you \n" +" will have to recreate the link between a person and " +"\n" +" the company he work for. (If you want to test this \n" +" example, here is a" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:396 +#, python-format +msgid "(%d more)" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:227 +#, python-format +msgid "File for some Quotations" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:72 +#, python-format +msgid "Encoding:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:280 +#, python-format +msgid "" +"To manage relations between tables, \n" +" you can use the \"External ID\" facilities of " +"OpenERP. \n" +" The \"External ID\" of a record is the unique " +"identifier \n" +" of this record in another application. This " +"\"External \n" +" ID\" must be unique accoss all the records of all \n" +" objects, so it's a good practice to prefix this \n" +" \"External ID\" with the name of the application or " +"\n" +" table. (like 'company_1', 'person_1' instead of '1')" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:295 +#, python-format +msgid "" +"We will first export all companies and their \n" +" \"External ID\". In PSQL, write the following " +"command:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:212 +#, python-format +msgid "" +"How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:373 +#, python-format +msgid "Everything seems valid." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:188 +#, python-format +msgid "" +"However if you do not wish to change your \n" +" configuration of product categories, we recommend " +"you \n" +" use make use of the external ID for this field \n" +" 'Category'." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:390 +#, python-format +msgid "at row %d" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:197 +#, python-format +msgid "" +"How can I import a many2many relationship field \n" +" (e.g. a customer that has multiple tags)?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "XXX/ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:275 +#, python-format +msgid "" +"If you need to import data from different tables, \n" +" you will have to recreate relations between records " +"\n" +" belonging to different tables. (e.g. if you import \n" +" companies and persons, you will have to recreate the " +"\n" +" link between each person and the company they work \n" +" for)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:150 +#, python-format +msgid "" +"According to your need, you should use \n" +" one of these 3 ways to reference records in " +"relations. \n" +" Here is when you should use one or the other, \n" +" according to your need:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:319 +#, python-format +msgid "person_4,Ramsy,False,company_3" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:261 +#, python-format +msgid "" +"If you do not set all fields in your CSV file, \n" +" OpenERP will assign the default value for every non " +"\n" +" defined fields. But if you\n" +" set fields with empty values in your CSV file, " +"OpenERP \n" +" will set the EMPTY value in the field, instead of \n" +" assigning the default value." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:20 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:257 +#, python-format +msgid "" +"What happens if I do not provide a value for a \n" +" specific field?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:68 +#, python-format +msgid "Frequently Asked Questions" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:305 +#, python-format +msgid "company_3,Boum,True" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:249 +#, python-format +msgid "" +"This feature \n" +" allows you to use the Import/Export tool of OpenERP " +"to \n" +" modify a batch of records in your favorite " +"spreadsheet \n" +" application." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:77 +#, python-format +msgid "" +"column in OpenERP. When you\n" +" import an other record that links to the first\n" +" one, use" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:242 +#, python-format +msgid "" +"If you import a file that contains one of the \n" +" column \"External ID\" or \"Database ID\", records " +"that \n" +" have already been imported will be modified instead " +"of \n" +" being created. This is very usefull as it allows you " +"\n" +" to import several times the same CSV file while " +"having \n" +" made some changes in between two imports. OpenERP " +"will \n" +" take care of creating or modifying each record \n" +" depending if it's new or not." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:169 +#, python-format +msgid "CSV file for categories" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:309 +#, python-format +msgid "Normal Fields" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:74 +#, python-format +msgid "" +"In order to re-create relationships between\n" +" different records, you should use the unique\n" +" identifier from the original application and\n" +" map it to the" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:170 +#, python-format +msgid "CSV file for Products" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:216 +#, python-format +msgid "" +"If you want to import sales order having several \n" +" order lines; for each order line, you need to " +"reserve \n" +" a specific row in the CSV file. The first order line " +"\n" +" will be imported on the same row as the information " +"\n" +" relative to order. Any additional lines will need an " +"\n" +" addtional row that does not have any information in " +"\n" +" the fields relative to the order." +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related +msgid "base_import.tests.models.m2o.related" +msgstr "" + +#. module: base_import +#: field:base_import.tests.models.preview,name:0 +msgid "Name" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "to the original unique identifier." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:318 +#, python-format +msgid "person_3,Eric,False,company_2" +msgstr "" + +#. module: base_import +#: field:base_import.import,res_model:0 +msgid "Model" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:77 +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:329 +#, python-format +msgid "" +"The two files produced are ready to be imported in \n" +" OpenERP without any modifications. After having \n" +" imported these two CSV files, you will have 4 " +"contacts \n" +" and 3 companies. (the firsts two contacts are linked " +"\n" +" to the first company). You must first import the \n" +" companies and then the persons." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:95 +#, python-format +msgid "" +"By default the Import preview is set on commas as \n" +" field separators and quotation marks as text \n" +" delimiters. If your csv file does not have these \n" +" settings, you can modify the File Format Options \n" +" (displayed under the Browse CSV file bar after you \n" +" select your file)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:73 +#, python-format +msgid "Separator:" +msgstr "" + +#. module: base_import +#: field:base_import.import,file_name:0 +msgid "File Name" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/models.py:80 +#: code:addons/base_import/models.py:111 +#: code:addons/base_import/static/src/xml/import.xml:77 +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "External ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:39 +#, python-format +msgid "File Format Options…" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:392 +#, python-format +msgid "between rows %d and %d" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:19 +#, python-format +msgid "or" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:223 +#, python-format +msgid "" +"As an example, here is \n" +" purchase.order_functional_error_line_cant_adpat.CSV " +"\n" +" file of some quotations you can import, based on " +"demo \n" +" data." +msgstr "" + +#. module: base_import +#: field:base_import.import,file:0 +msgid "File" +msgstr "" diff --git a/addons/base_import/i18n/it.po b/addons/base_import/i18n/it.po index a7a824312cd..12ee5f56afe 100644 --- a/addons/base_import/i18n/it.po +++ b/addons/base_import/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-15 12:10+0000\n" "Last-Translator: Nicola Riolini - Micronaet \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-16 04:49+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_import #. openerp-web @@ -479,17 +479,6 @@ msgstr "" msgid "base_import.tests.models.m2o.required" msgstr "base_import.tests.models.m2o.required" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:212 -#, python-format -msgid "" -"How can I import a one2many relationship (e.g. several \n" -" Order Lines of a Sale Order)?" -msgstr "" -"Come posso importare relazioni uno-a-molti (es. molte \n" -"righe ordine di un ordine di vendita)?" - #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly msgid "base_import.tests.models.char.noreadonly" @@ -833,6 +822,15 @@ msgid "" "command:" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:212 +#, python-format +msgid "" +"How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:373 diff --git a/addons/base_import/i18n/nb.po b/addons/base_import/i18n/nb.po index 868a15ad8a3..fa5755be7ed 100644 --- a/addons/base_import/i18n/nb.po +++ b/addons/base_import/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-12 10:19+0000\n" "Last-Translator: Kaare Pettersen \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-13 04:44+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_import #. openerp-web @@ -486,15 +486,6 @@ msgstr "" msgid "base_import.tests.models.m2o.required" msgstr "Base_import.tester.modeller.m2o.påkrevd." -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:212 -#, python-format -msgid "" -"How can I import a one2many relationship (e.g. several \n" -" Order Lines of a Sale Order)?" -msgstr "" - #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly msgid "base_import.tests.models.char.noreadonly" @@ -846,6 +837,15 @@ msgstr "" "Vi vil først eksportere alle selskaper og deres\n" "\"Ekstern ID\". I psql, skriv inn følgende kommando:" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:212 +#, python-format +msgid "" +"How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:373 diff --git a/addons/base_import/i18n/nl.po b/addons/base_import/i18n/nl.po index 00a5cf5e7b5..19b5c8f6d45 100644 --- a/addons/base_import/i18n/nl.po +++ b/addons/base_import/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-30 20:04+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-01 05:09+0000\n" -"X-Generator: Launchpad (build 16319)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_import #. openerp-web @@ -470,15 +470,6 @@ msgstr "" msgid "base_import.tests.models.m2o.required" msgstr "" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:212 -#, python-format -msgid "" -"How can I import a one2many relationship (e.g. several \n" -" Order Lines of a Sale Order)?" -msgstr "" - #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly msgid "base_import.tests.models.char.noreadonly" @@ -822,6 +813,15 @@ msgid "" "command:" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:212 +#, python-format +msgid "" +"How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:373 diff --git a/addons/base_import/i18n/pl.po b/addons/base_import/i18n/pl.po index 52477d3ed50..a0c064aceff 100644 --- a/addons/base_import/i18n/pl.po +++ b/addons/base_import/i18n/pl.po @@ -7,29 +7,29 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-12-12 18:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-19 17:54+0000\n" "Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \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: 2012-12-13 04:44+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:420 #, python-format msgid "Get all possible values" -msgstr "" +msgstr "Pobierz wszystkie możliwe wartości" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:71 #, python-format msgid "Need to import data from an other application?" -msgstr "" +msgstr "Chcesz importować dane z innej aplikacji?" #. module: base_import #. openerp-web @@ -62,7 +62,7 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:310 #, python-format msgid "Relation Fields" -msgstr "" +msgstr "Pola relacyjne" #. module: base_import #. openerp-web @@ -166,7 +166,7 @@ msgstr "Nie importuj" #: code:addons/base_import/static/src/xml/import.xml:24 #, python-format msgid "Select the" -msgstr "" +msgstr "Wybierz" #. module: base_import #. openerp-web @@ -199,21 +199,21 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:239 #, python-format msgid "Can I import several times the same record?" -msgstr "" +msgstr "Mogę importować kilka razy ten sam rekord?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:15 #, python-format msgid "Validate" -msgstr "" +msgstr "Zatwierdź" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:55 #, python-format msgid "Map your data to OpenERP" -msgstr "" +msgstr "Mapuj swoje dane do OpenERP" #. module: base_import #. openerp-web @@ -250,7 +250,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:175 #, python-format msgid "What can I do if I have multiple matches for a field?" -msgstr "" +msgstr "Co mogę zrobić w przypadku wielokrotnych zgodności dla pola?" #. module: base_import #. openerp-web @@ -262,7 +262,7 @@ msgstr "" #. module: base_import #: field:base_import.tests.models.preview,somevalue:0 msgid "Some Value" -msgstr "" +msgstr "Jakaś wartość" #. module: base_import #. openerp-web @@ -390,7 +390,7 @@ msgstr "" #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" -msgstr "" +msgstr "Inna zmienna" #. module: base_import #. openerp-web @@ -470,15 +470,6 @@ msgstr "" msgid "base_import.tests.models.m2o.required" msgstr "" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:212 -#, python-format -msgid "" -"How can I import a one2many relationship (e.g. several \n" -" Order Lines of a Sale Order)?" -msgstr "" - #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly msgid "base_import.tests.models.char.noreadonly" @@ -505,7 +496,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:30 #, python-format msgid "CSV File:" -msgstr "" +msgstr "Plik CSV:" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_preview @@ -521,7 +512,7 @@ msgstr "" #: code:addons/base_import/models.py:112 #, python-format msgid "Database ID" -msgstr "" +msgstr "ID bazy danych" #. module: base_import #. openerp-web @@ -540,7 +531,7 @@ msgstr "" #. module: base_import #: field:base_import.import,file_type:0 msgid "File Type" -msgstr "" +msgstr "Typ pliku" #. module: base_import #: model:ir.model,name:base_import.model_base_import_import @@ -557,7 +548,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:360 #, python-format msgid "Import preview failed due to:" -msgstr "" +msgstr "Podgląd niemożliwy ponieważ:" #. module: base_import #. openerp-web @@ -575,7 +566,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:35 #, python-format msgid "Reload data to check changes." -msgstr "" +msgstr "Przełąduj dane, aby sprawdzić zmiany." #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly @@ -615,7 +606,7 @@ msgstr "" #: code:addons/base_import/models.py:264 #, python-format msgid "You must configure at least one field to import" -msgstr "" +msgstr "Musisz skonfigurować co najmniej jedno pole do importu" #. module: base_import #. openerp-web @@ -670,7 +661,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:396 #, python-format msgid "Import" -msgstr "" +msgstr "Importuj" #. module: base_import #. openerp-web @@ -742,7 +733,7 @@ msgstr "" #: field:base_import.tests.models.o2m.child,parent_id:0 #: field:base_import.tests.models.o2m.child,value:0 msgid "unknown" -msgstr "" +msgstr "nieznane" #. module: base_import #. openerp-web @@ -777,7 +768,7 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:396 #, python-format msgid "(%d more)" -msgstr "" +msgstr "(%d więcej)" #. module: base_import #. openerp-web @@ -791,7 +782,7 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:72 #, python-format msgid "Encoding:" -msgstr "" +msgstr "Kodowanie:" #. module: base_import #. openerp-web @@ -822,12 +813,21 @@ msgid "" "command:" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:212 +#, python-format +msgid "" +"How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:373 #, python-format msgid "Everything seems valid." -msgstr "" +msgstr "Wszystko wygląda poprawnie." #. module: base_import #. openerp-web @@ -846,7 +846,7 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:390 #, python-format msgid "at row %d" -msgstr "" +msgstr "w wierszu %d" #. module: base_import #. openerp-web @@ -918,7 +918,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:20 #, python-format msgid "Cancel" -msgstr "" +msgstr "Anuluj" #. module: base_import #. openerp-web @@ -934,7 +934,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:68 #, python-format msgid "Frequently Asked Questions" -msgstr "" +msgstr "Najczęściej zadawane pytania" #. module: base_import #. openerp-web @@ -1045,7 +1045,7 @@ msgstr "" #. module: base_import #: field:base_import.tests.models.preview,name:0 msgid "Name" -msgstr "" +msgstr "Nazwa" #. module: base_import #. openerp-web @@ -1064,7 +1064,7 @@ msgstr "" #. module: base_import #: field:base_import.import,res_model:0 msgid "Model" -msgstr "" +msgstr "Model" #. module: base_import #. openerp-web @@ -1072,7 +1072,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:82 #, python-format msgid "ID" -msgstr "" +msgstr "ID" #. module: base_import #. openerp-web @@ -1107,12 +1107,12 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:73 #, python-format msgid "Separator:" -msgstr "" +msgstr "Separator:" #. module: base_import #: field:base_import.import,file_name:0 msgid "File Name" -msgstr "" +msgstr "Nazwa pliku" #. module: base_import #. openerp-web @@ -1122,7 +1122,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:82 #, python-format msgid "External ID" -msgstr "" +msgstr "Identyfikator zewnętrzny" #. module: base_import #. openerp-web @@ -1136,14 +1136,14 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:392 #, python-format msgid "between rows %d and %d" -msgstr "" +msgstr "pomiędzy wierszami %d a %d" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:19 #, python-format msgid "or" -msgstr "" +msgstr "lub" #. module: base_import #. openerp-web @@ -1161,4 +1161,4 @@ msgstr "" #. module: base_import #: field:base_import.import,file:0 msgid "File" -msgstr "" +msgstr "Plik" diff --git a/addons/base_import/i18n/pt.po b/addons/base_import/i18n/pt.po new file mode 100644 index 00000000000..25790a8f427 --- /dev/null +++ b/addons/base_import/i18n/pt.po @@ -0,0 +1,1164 @@ +# Portuguese translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-03 17:37+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-04 04:47+0000\n" +"X-Generator: Launchpad (build 16393)\n" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:420 +#, python-format +msgid "Get all possible values" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:71 +#, python-format +msgid "Need to import data from an other application?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:163 +#, python-format +msgid "" +"When you use External IDs, you can import CSV files \n" +" with the \"External ID\" column to define the " +"External \n" +" ID of each record you import. Then, you will be able " +"\n" +" to make a reference to that record with columns like " +"\n" +" \"Field/External ID\". The following two CSV files " +"give \n" +" you an example for Products and their Categories." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:271 +#, python-format +msgid "" +"How to export/import different tables from an SQL \n" +" application to OpenERP?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:310 +#, python-format +msgid "Relation Fields" +msgstr "Campos de relação" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:142 +#, python-format +msgid "" +"Country/Database ID: the unique OpenERP ID for a \n" +" record, defined by the ID postgresql column" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:155 +#, python-format +msgid "" +"Use \n" +" Country/Database ID: You should rarely use this \n" +" notation. It's mostly used by developers as it's " +"main \n" +" advantage is to never have conflicts (you may have \n" +" several records with the same name, but they always " +"\n" +" have a unique Database ID)" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:146 +#, python-format +msgid "" +"For the country \n" +" Belgium, you can use one of these 3 ways to import:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:303 +#, python-format +msgid "company_1,Bigees,True" +msgstr "company_1,Bigees,True" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o +msgid "base_import.tests.models.m2o" +msgstr "base_import.tests.models.m2o" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:297 +#, python-format +msgid "" +"copy \n" +" (select 'company_'||id as \"External " +"ID\",company_name \n" +" as \"Name\",'True' as \"Is a Company\" from " +"companies) TO \n" +" '/tmp/company.csv' with CSV HEADER;" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:206 +#, python-format +msgid "CSV file for Manufacturer, Retailer" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:160 +#, python-format +msgid "" +"Use \n" +" Country/External ID: Use External ID when you import " +"\n" +" data from a third party application." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:316 +#, python-format +msgid "person_1,Fabien,False,company_1" +msgstr "person_1,Fabien,False,company_1" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "XXX/External ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:351 +#, python-format +msgid "Don't Import" +msgstr "Não importar" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:24 +#, python-format +msgid "Select the" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:100 +#, python-format +msgid "" +"Note that if your CSV file \n" +" has a tabulation as separator, OpenERP will not \n" +" detect the separations. You will need to change the " +"\n" +" file format options in your spreadsheet application. " +"\n" +" See the following question." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:141 +#, python-format +msgid "Country: the name or code of the country" +msgstr "País: o nome ou código do país" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_o2m_child +msgid "base_import.tests.models.o2m.child" +msgstr "base_import.tests.models.o2m.child" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:239 +#, python-format +msgid "Can I import several times the same record?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:15 +#, python-format +msgid "Validate" +msgstr "Validar" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:55 +#, python-format +msgid "Map your data to OpenERP" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:153 +#, python-format +msgid "" +"Use Country: This is \n" +" the easiest way when your data come from CSV files \n" +" that have been created manually." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:127 +#, python-format +msgid "" +"What's the difference between Database ID and \n" +" External ID?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:138 +#, python-format +msgid "" +"For example, to \n" +" reference the country of a contact, OpenERP proposes " +"\n" +" you 3 different fields to import:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:175 +#, python-format +msgid "What can I do if I have multiple matches for a field?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:302 +#, python-format +msgid "External ID,Name,Is a Company" +msgstr "" + +#. module: base_import +#: field:base_import.tests.models.preview,somevalue:0 +msgid "Some Value" +msgstr "Algum valor" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" suppliers and their respective contacts" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:109 +#, python-format +msgid "" +"How can I change the CSV file format options when \n" +" saving in my spreadsheet application?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:320 +#, python-format +msgid "" +"As you can see in this file, Fabien and Laurence \n" +" are working for the Bigees company (company_1) and \n" +" Eric is working for the Organi company. The relation " +"\n" +" between persons and companies is done using the \n" +" External ID of the companies. We had to prefix the \n" +" \"External ID\" by the name of the table to avoid a " +"\n" +" conflict of ID between persons and companies " +"(person_1 \n" +" and company_1 who shared the same ID 1 in the " +"orignial \n" +" database)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:308 +#, python-format +msgid "" +"copy (select \n" +" 'person_'||id as \"External ID\",person_name as \n" +" \"Name\",'False' as \"Is a " +"Company\",'company_'||company_id\n" +" as \"Related Company/External ID\" from persons) TO " +"\n" +" '/tmp/person.csv' with CSV" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:148 +#, python-format +msgid "Country: Belgium" +msgstr "País: Bélgica" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_stillreadonly +msgid "base_import.tests.models.char.stillreadonly" +msgstr "base_import.tests.models.char.stillreadonly" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:314 +#, python-format +msgid "" +"External ID,Name,Is a \n" +" Company,Related Company/External ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Suppliers and their respective contacts" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:179 +#, python-format +msgid "" +"If for example you have two product categories \n" +" with the child name \"Sellable\" (ie. \"Misc. \n" +" Products/Sellable\" & \"Other Products/Sellable\"),\n" +" your validation is halted but you may still import \n" +" your data. However, we recommend you do not import " +"the \n" +" data because they will all be linked to the first \n" +" 'Sellable' category found in the Product Category " +"list \n" +" (\"Misc. Products/Sellable\"). We recommend you " +"modify \n" +" one of the duplicates' values or your product " +"category \n" +" hierarchy." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:306 +#, python-format +msgid "" +"To create the CSV file for persons, linked to \n" +" companies, we will use the following SQL command in " +"\n" +" PSQL:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:119 +#, python-format +msgid "" +"Microsoft Excel will allow \n" +" you to modify only the encoding when saving \n" +" (in 'Save As' dialog box > click 'Tools' dropdown \n" +" list > Encoding tab)." +msgstr "" + +#. module: base_import +#: field:base_import.tests.models.preview,othervalue:0 +msgid "Other Variable" +msgstr "Outra variável" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "" +"will also be used to update the original\n" +" import if you need to re-import modified data\n" +" later, it's thus good practice to specify it\n" +" whenever possible" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:26 +#, python-format +msgid "" +"file to import. If you need a sample importable file, you\n" +" can use the export tool to generate one." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:148 +#, python-format +msgid "" +"Country/Database \n" +" ID: 21" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char +msgid "base_import.tests.models.char" +msgstr "base_import.tests.models.char" + +#. module: base_import +#: help:base_import.import,file:0 +msgid "File to check and/or import, raw binary (not base64)" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:230 +#, python-format +msgid "Purchase orders with their respective purchase order lines" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:60 +#, python-format +msgid "" +"If the file contains\n" +" the column names, OpenERP can try auto-detecting the\n" +" field corresponding to the column. This makes imports\n" +" simpler especially when the file has many columns." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:26 +#, python-format +msgid ".CSV" +msgstr ".CSV" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:360 +#, python-format +msgid "" +". The issue is\n" +" usually an incorrect file encoding." +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required +msgid "base_import.tests.models.m2o.required" +msgstr "base_import.tests.models.m2o.required" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly +msgid "base_import.tests.models.char.noreadonly" +msgstr "base_import.tests.models.char.noreadonly" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:113 +#, python-format +msgid "" +"If you edit and save CSV files in speadsheet \n" +" applications, your computer's regional settings will " +"\n" +" be applied for the separator and delimiter. \n" +" We suggest you use OpenOffice or LibreOffice Calc \n" +" as they will allow you to modify all three options \n" +" (in 'Save As' dialog box > Check the box 'Edit " +"filter \n" +" settings' > Save)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:30 +#, python-format +msgid "CSV File:" +msgstr "Ficheiro CSV:" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_preview +msgid "base_import.tests.models.preview" +msgstr "base_import.tests.models.preview" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_required +msgid "base_import.tests.models.char.required" +msgstr "base_import.tests.models.char.required" + +#. module: base_import +#: code:addons/base_import/models.py:112 +#, python-format +msgid "Database ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:313 +#, python-format +msgid "It will produce the following CSV file:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:362 +#, python-format +msgid "Here is the start of the file we could not import:" +msgstr "" + +#. module: base_import +#: field:base_import.import,file_type:0 +msgid "File Type" +msgstr "Tipo de ficheiro" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_import +msgid "base_import.import" +msgstr "base_import.import" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_o2m +msgid "base_import.tests.models.o2m" +msgstr "base_import.tests.models.o2m" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:360 +#, python-format +msgid "Import preview failed due to:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:144 +#, python-format +msgid "" +"Country/External ID: the ID of this record \n" +" referenced in another application (or the .XML file " +"\n" +" that imported it)" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:35 +#, python-format +msgid "Reload data to check changes." +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "base_import.tests.models.char.readonly" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:131 +#, python-format +msgid "" +"Some fields define a relationship with another \n" +" object. For example, the country of a contact is a \n" +" link to a record of the 'Country' object. When you \n" +" want to import such fields, OpenERP will have to \n" +" recreate links between the different records. \n" +" To help you import such fields, OpenERP provides 3 \n" +" mechanisms. You must use one and only one mechanism " +"\n" +" per field you want to import." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:201 +#, python-format +msgid "" +"The tags should be separated by a comma without any \n" +" spacing. For example, if you want you customer to be " +"\n" +" lined to both tags 'Manufacturer' and 'Retailer' \n" +" then you will encode it as follow \"Manufacturer,\n" +" Retailer\" in the same column of your CSV file." +msgstr "" + +#. module: base_import +#: code:addons/base_import/models.py:264 +#, python-format +msgid "You must configure at least one field to import" +msgstr "Deve configurar pelo menos um campo a importar" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:304 +#, python-format +msgid "company_2,Organi,True" +msgstr "company_2,Organi,True" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:58 +#, python-format +msgid "" +"The first row of the\n" +" file contains the label of the column" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_states +msgid "base_import.tests.models.char.states" +msgstr "base_import.tests.models.char.states" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:7 +#, python-format +msgid "Import a CSV File" +msgstr "Importar um ficheiro CSV" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:74 +#, python-format +msgid "Quoting:" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required_related +msgid "base_import.tests.models.m2o.required.related" +msgstr "base_import.tests.models.m2o.required.related" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:293 +#, python-format +msgid ")." +msgstr ")." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:18 +#: code:addons/base_import/static/src/xml/import.xml:396 +#, python-format +msgid "Import" +msgstr "Importar" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:407 +#, python-format +msgid "Here are the possible values:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "The" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:227 +#, python-format +msgid "" +"A single column was found in the file, this often means the file separator " +"is incorrect" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:293 +#, python-format +msgid "dump of such a PostgreSQL database" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:301 +#, python-format +msgid "This SQL command will create the following CSV file:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:228 +#, python-format +msgid "" +"The following CSV file shows how to import purchase \n" +" orders with their respective purchase order lines:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:91 +#, python-format +msgid "" +"What can I do when the Import preview table isn't \n" +" displayed correctly?" +msgstr "" + +#. module: base_import +#: field:base_import.tests.models.char,value:0 +#: field:base_import.tests.models.char.noreadonly,value:0 +#: field:base_import.tests.models.char.readonly,value:0 +#: field:base_import.tests.models.char.required,value:0 +#: field:base_import.tests.models.char.states,value:0 +#: field:base_import.tests.models.char.stillreadonly,value:0 +#: field:base_import.tests.models.m2o,value:0 +#: field:base_import.tests.models.m2o.related,value:0 +#: field:base_import.tests.models.m2o.required,value:0 +#: field:base_import.tests.models.m2o.required.related,value:0 +#: field:base_import.tests.models.o2m,value:0 +#: field:base_import.tests.models.o2m.child,parent_id:0 +#: field:base_import.tests.models.o2m.child,value:0 +msgid "unknown" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:317 +#, python-format +msgid "person_2,Laurence,False,company_1" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:149 +#, python-format +msgid "Country/External ID: base.be" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:288 +#, python-format +msgid "" +"As an example, suppose you have a SQL database \n" +" with two tables you want to import: companies and \n" +" persons. Each person belong to one company, so you \n" +" will have to recreate the link between a person and " +"\n" +" the company he work for. (If you want to test this \n" +" example, here is a" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:396 +#, python-format +msgid "(%d more)" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:227 +#, python-format +msgid "File for some Quotations" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:72 +#, python-format +msgid "Encoding:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:280 +#, python-format +msgid "" +"To manage relations between tables, \n" +" you can use the \"External ID\" facilities of " +"OpenERP. \n" +" The \"External ID\" of a record is the unique " +"identifier \n" +" of this record in another application. This " +"\"External \n" +" ID\" must be unique accoss all the records of all \n" +" objects, so it's a good practice to prefix this \n" +" \"External ID\" with the name of the application or " +"\n" +" table. (like 'company_1', 'person_1' instead of '1')" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:295 +#, python-format +msgid "" +"We will first export all companies and their \n" +" \"External ID\". In PSQL, write the following " +"command:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:212 +#, python-format +msgid "" +"How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:373 +#, python-format +msgid "Everything seems valid." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:188 +#, python-format +msgid "" +"However if you do not wish to change your \n" +" configuration of product categories, we recommend " +"you \n" +" use make use of the external ID for this field \n" +" 'Category'." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:390 +#, python-format +msgid "at row %d" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:197 +#, python-format +msgid "" +"How can I import a many2many relationship field \n" +" (e.g. a customer that has multiple tags)?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "XXX/ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:275 +#, python-format +msgid "" +"If you need to import data from different tables, \n" +" you will have to recreate relations between records " +"\n" +" belonging to different tables. (e.g. if you import \n" +" companies and persons, you will have to recreate the " +"\n" +" link between each person and the company they work \n" +" for)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:150 +#, python-format +msgid "" +"According to your need, you should use \n" +" one of these 3 ways to reference records in " +"relations. \n" +" Here is when you should use one or the other, \n" +" according to your need:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:319 +#, python-format +msgid "person_4,Ramsy,False,company_3" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:261 +#, python-format +msgid "" +"If you do not set all fields in your CSV file, \n" +" OpenERP will assign the default value for every non " +"\n" +" defined fields. But if you\n" +" set fields with empty values in your CSV file, " +"OpenERP \n" +" will set the EMPTY value in the field, instead of \n" +" assigning the default value." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:20 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:257 +#, python-format +msgid "" +"What happens if I do not provide a value for a \n" +" specific field?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:68 +#, python-format +msgid "Frequently Asked Questions" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:305 +#, python-format +msgid "company_3,Boum,True" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:249 +#, python-format +msgid "" +"This feature \n" +" allows you to use the Import/Export tool of OpenERP " +"to \n" +" modify a batch of records in your favorite " +"spreadsheet \n" +" application." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:77 +#, python-format +msgid "" +"column in OpenERP. When you\n" +" import an other record that links to the first\n" +" one, use" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:242 +#, python-format +msgid "" +"If you import a file that contains one of the \n" +" column \"External ID\" or \"Database ID\", records " +"that \n" +" have already been imported will be modified instead " +"of \n" +" being created. This is very usefull as it allows you " +"\n" +" to import several times the same CSV file while " +"having \n" +" made some changes in between two imports. OpenERP " +"will \n" +" take care of creating or modifying each record \n" +" depending if it's new or not." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:169 +#, python-format +msgid "CSV file for categories" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:309 +#, python-format +msgid "Normal Fields" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:74 +#, python-format +msgid "" +"In order to re-create relationships between\n" +" different records, you should use the unique\n" +" identifier from the original application and\n" +" map it to the" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:170 +#, python-format +msgid "CSV file for Products" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:216 +#, python-format +msgid "" +"If you want to import sales order having several \n" +" order lines; for each order line, you need to " +"reserve \n" +" a specific row in the CSV file. The first order line " +"\n" +" will be imported on the same row as the information " +"\n" +" relative to order. Any additional lines will need an " +"\n" +" addtional row that does not have any information in " +"\n" +" the fields relative to the order." +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related +msgid "base_import.tests.models.m2o.related" +msgstr "" + +#. module: base_import +#: field:base_import.tests.models.preview,name:0 +msgid "Name" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "to the original unique identifier." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:318 +#, python-format +msgid "person_3,Eric,False,company_2" +msgstr "" + +#. module: base_import +#: field:base_import.import,res_model:0 +msgid "Model" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:77 +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:329 +#, python-format +msgid "" +"The two files produced are ready to be imported in \n" +" OpenERP without any modifications. After having \n" +" imported these two CSV files, you will have 4 " +"contacts \n" +" and 3 companies. (the firsts two contacts are linked " +"\n" +" to the first company). You must first import the \n" +" companies and then the persons." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:95 +#, python-format +msgid "" +"By default the Import preview is set on commas as \n" +" field separators and quotation marks as text \n" +" delimiters. If your csv file does not have these \n" +" settings, you can modify the File Format Options \n" +" (displayed under the Browse CSV file bar after you \n" +" select your file)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:73 +#, python-format +msgid "Separator:" +msgstr "" + +#. module: base_import +#: field:base_import.import,file_name:0 +msgid "File Name" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/models.py:80 +#: code:addons/base_import/models.py:111 +#: code:addons/base_import/static/src/xml/import.xml:77 +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "External ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:39 +#, python-format +msgid "File Format Options…" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:392 +#, python-format +msgid "between rows %d and %d" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:19 +#, python-format +msgid "or" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:223 +#, python-format +msgid "" +"As an example, here is \n" +" purchase.order_functional_error_line_cant_adpat.CSV " +"\n" +" file of some quotations you can import, based on " +"demo \n" +" data." +msgstr "" + +#. module: base_import +#: field:base_import.import,file:0 +msgid "File" +msgstr "" diff --git a/addons/base_import/i18n/pt_BR.po b/addons/base_import/i18n/pt_BR.po index aba9ac571eb..654ec64a8c3 100644 --- a/addons/base_import/i18n/pt_BR.po +++ b/addons/base_import/i18n/pt_BR.po @@ -7,15 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-12-01 11:52+0000\n" -"Last-Translator: Luiz Fernando M.França \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-24 18:37+0000\n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-02 04:38+0000\n" -"X-Generator: Launchpad (build 16319)\n" +"X-Launchpad-Export-Date: 2012-12-25 04:48+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_import #. openerp-web @@ -107,6 +108,9 @@ msgid "" "For the country \n" " Belgium, you can use one of these 3 ways to import:" msgstr "" +"Para o país\n" +" Bélgica, você pode usar uma dessas 3 " +"formas de importar:" #. module: base_import #. openerp-web @@ -170,14 +174,14 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:351 #, python-format msgid "Don't Import" -msgstr "" +msgstr "Não Importar" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:24 #, python-format msgid "Select the" -msgstr "" +msgstr "Escolha o" #. module: base_import #. openerp-web @@ -198,33 +202,33 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:141 #, python-format msgid "Country: the name or code of the country" -msgstr "" +msgstr "Pais: o nome ou código do país" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_o2m_child msgid "base_import.tests.models.o2m.child" -msgstr "" +msgstr "base_import.tests.models.o2m.child" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:239 #, python-format msgid "Can I import several times the same record?" -msgstr "" +msgstr "Posso importar várias vezes o mesmo registro?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:15 #, python-format msgid "Validate" -msgstr "" +msgstr "Validar" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:55 #, python-format msgid "Map your data to OpenERP" -msgstr "" +msgstr "Mapear seus dados para o OpenERP" #. module: base_import #. openerp-web @@ -235,6 +239,10 @@ msgid "" " the easiest way when your data come from CSV files \n" " that have been created manually." msgstr "" +"Usar País: Este é\n" +"                         a maneira mais fácil quando os dados vêm de " +"arquivos CSV\n" +"                         que tenham sido criada manualmente." #. module: base_import #. openerp-web @@ -243,7 +251,7 @@ msgstr "" msgid "" "What's the difference between Database ID and \n" " External ID?" -msgstr "" +msgstr "Qual é a diferença entre o ID da Database e o ID Externo?" #. module: base_import #. openerp-web @@ -255,25 +263,28 @@ msgid "" "\n" " you 3 different fields to import:" msgstr "" +"Por exemplo, a\n" +"                         referência ao país de um contato, p OpenERP propõe\n" +"                         a você três campos diferentes para importação:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:175 #, python-format msgid "What can I do if I have multiple matches for a field?" -msgstr "" +msgstr "O que posso fazer se eu tiver várias correspondências para um campo?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:302 #, python-format msgid "External ID,Name,Is a Company" -msgstr "" +msgstr "Id Externo,Nome,É uma Empresa" #. module: base_import #: field:base_import.tests.models.preview,somevalue:0 msgid "Some Value" -msgstr "" +msgstr "Algum Valor" #. module: base_import #. openerp-web @@ -283,6 +294,8 @@ msgid "" "The following CSV file shows how to import \n" " suppliers and their respective contacts" msgstr "" +"O arquivo CSV a seguir mostra como importar\n" +"                         fornecedores e seus respectivos contatos" #. module: base_import #. openerp-web @@ -292,6 +305,8 @@ msgid "" "How can I change the CSV file format options when \n" " saving in my spreadsheet application?" msgstr "" +"Como posso alterar as opções de formato de arquivo CSV quando\n" +"                         salvar em meu aplicativo de planilha?" #. module: base_import #. openerp-web @@ -332,12 +347,12 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:148 #, python-format msgid "Country: Belgium" -msgstr "" +msgstr "País: Bélgica" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_stillreadonly msgid "base_import.tests.models.char.stillreadonly" -msgstr "" +msgstr "base_import.tests.models.char.stillreadonly" #. module: base_import #. openerp-web @@ -353,7 +368,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:233 #, python-format msgid "Suppliers and their respective contacts" -msgstr "" +msgstr "Fornecedores e seus respectivos contatos" #. module: base_import #. openerp-web @@ -401,7 +416,7 @@ msgstr "" #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" -msgstr "" +msgstr "Outra Variável" #. module: base_import #. openerp-web @@ -481,15 +496,6 @@ msgstr "" msgid "base_import.tests.models.m2o.required" msgstr "" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:212 -#, python-format -msgid "" -"How can I import a one2many relationship (e.g. several \n" -" Order Lines of a Sale Order)?" -msgstr "" - #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly msgid "base_import.tests.models.char.noreadonly" @@ -833,6 +839,15 @@ msgid "" "command:" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:212 +#, python-format +msgid "" +"How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:373 diff --git a/addons/base_import/i18n/ro.po b/addons/base_import/i18n/ro.po new file mode 100644 index 00000000000..c69a1dffd29 --- /dev/null +++ b/addons/base_import/i18n/ro.po @@ -0,0 +1,1334 @@ +# Romanian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-20 09:42+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-21 04:39+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:420 +#, python-format +msgid "Get all possible values" +msgstr "Obtineti toate valorile posibile" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:71 +#, python-format +msgid "Need to import data from an other application?" +msgstr "Aveti nevoie sa importati date dintr-o alta aplicatie?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:163 +#, python-format +msgid "" +"When you use External IDs, you can import CSV files \n" +" with the \"External ID\" column to define the " +"External \n" +" ID of each record you import. Then, you will be able " +"\n" +" to make a reference to that record with columns like " +"\n" +" \"Field/External ID\". The following two CSV files " +"give \n" +" you an example for Products and their Categories." +msgstr "" +"Atunci cand folositi ID-uri Externe, puteti importa fisiere CSV \n" +" cu coloana \"ID Extern\" pentru a defini ID-ul " +"Extern \n" +" a fiecarei inregistrari pe care o importati. Apoi, " +"veti putea \n" +" sa faceti o trimitere la acea inregistrare cu " +"coloane precum \n" +" \"Camp/ID Extern\". Urmatoarele doua fisiere CSV va " +"dau un exemplu \n" +" pentru Produse si Categoriile lor." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:271 +#, python-format +msgid "" +"How to export/import different tables from an SQL \n" +" application to OpenERP?" +msgstr "" +"Cum exportati/importati diferite tabele dintr-o aplicatie \n" +" SQL in OpenERP?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:310 +#, python-format +msgid "Relation Fields" +msgstr "Campuri de Legatura" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:142 +#, python-format +msgid "" +"Country/Database ID: the unique OpenERP ID for a \n" +" record, defined by the ID postgresql column" +msgstr "" +"ID Tara/Baza de date: ID-ul unic OpenERP pentru o \n" +" inregistrare, definit de coloana ID postgresql" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:155 +#, python-format +msgid "" +"Use \n" +" Country/Database ID: You should rarely use this \n" +" notation. It's mostly used by developers as it's " +"main \n" +" advantage is to never have conflicts (you may have \n" +" several records with the same name, but they always " +"\n" +" have a unique Database ID)" +msgstr "" +"Folositi \n" +" ID Tara/Baza de date: Ar trebui sa folositi rar " +"aceasta \n" +" notatie. Este folosita mai ales de catre " +"dezvoltatori deoarece avantajul \n" +" ei principal este de a nu avea conflicte niciodata " +"(puteti avea \n" +" mai multe inregistrari cu acelasi nume, dar ele au \n" +" intotdeauna un ID unic in baza de date)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:146 +#, python-format +msgid "" +"For the country \n" +" Belgium, you can use one of these 3 ways to import:" +msgstr "" +"Pentru tara \n" +" Belgia, puteti utiliza unul din aceste 3 moduri de a " +"importa:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:303 +#, python-format +msgid "company_1,Bigees,True" +msgstr "compania_1,Bigees, Adevarat" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o +msgid "base_import.tests.models.m2o" +msgstr "baza_import.teste.modele.m2o" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:297 +#, python-format +msgid "" +"copy \n" +" (select 'company_'||id as \"External " +"ID\",company_name \n" +" as \"Name\",'True' as \"Is a Company\" from " +"companies) TO \n" +" '/tmp/company.csv' with CSV HEADER;" +msgstr "" +"copiati \n" +" (selectati 'companie_'||id drept \"ID " +"Extern\",companie_nume \n" +" drept \"Nume\",'Adevarat' drept \"Este o Companie\" " +"din companii) CATRE \n" +" '/tmp/company.csv' cu ANTET CSV;" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:206 +#, python-format +msgid "CSV file for Manufacturer, Retailer" +msgstr "Fisier CSV pentru Producator, Comerciant cu amanuntul" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:160 +#, python-format +msgid "" +"Use \n" +" Country/External ID: Use External ID when you import " +"\n" +" data from a third party application." +msgstr "" +"Folositi \n" +" Tara/ID Extern: Folositi ID Extern atunci cand " +"importati \n" +" date dintr-o aplicatie terta." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:316 +#, python-format +msgid "person_1,Fabien,False,company_1" +msgstr "persoana_1,Fabien,Fals,companie_1" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "XXX/External ID" +msgstr "XXX/ID Extern" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:351 +#, python-format +msgid "Don't Import" +msgstr "Nu importati" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:24 +#, python-format +msgid "Select the" +msgstr "Selectati" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:100 +#, python-format +msgid "" +"Note that if your CSV file \n" +" has a tabulation as separator, OpenERP will not \n" +" detect the separations. You will need to change the " +"\n" +" file format options in your spreadsheet application. " +"\n" +" See the following question." +msgstr "" +"Daca fisierul dumneavoastra CSV \n" +" are o tabulare drept separator, OpenERP nu va \n" +" detecta separarile. Va trebui sa schimbati \n" +" optiunile de format de fisier in aplicatia tabel. \n" +" Vezi urmatoarea intrebare." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:141 +#, python-format +msgid "Country: the name or code of the country" +msgstr "Tara: numele sau codul tarii" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_o2m_child +msgid "base_import.tests.models.o2m.child" +msgstr "baza_importa.teste.modele.o2m.secundar" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:239 +#, python-format +msgid "Can I import several times the same record?" +msgstr "Pot importa aceeasi inregistrare de mai nulte ori?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:15 +#, python-format +msgid "Validate" +msgstr "Valideaza" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:55 +#, python-format +msgid "Map your data to OpenERP" +msgstr "Trasati-va datele in OpenERP" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:153 +#, python-format +msgid "" +"Use Country: This is \n" +" the easiest way when your data come from CSV files \n" +" that have been created manually." +msgstr "" +"Folositi Tara: Aceasta \n" +" este cea mai usoara modalitate cand datele " +"dumneavoastra provin din fisiere CSV \n" +" care au fost create manual." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:127 +#, python-format +msgid "" +"What's the difference between Database ID and \n" +" External ID?" +msgstr "" +"Care este diferenta intre ID-ul BAzei de date si \n" +" ID-ul Extern?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:138 +#, python-format +msgid "" +"For example, to \n" +" reference the country of a contact, OpenERP proposes " +"\n" +" you 3 different fields to import:" +msgstr "" +"De exemplu, pentru a face \n" +" trimiterea la tara unui contact, OpenERP va propune " +"\n" +" 3 campuri diferite de importat:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:175 +#, python-format +msgid "What can I do if I have multiple matches for a field?" +msgstr "Ce pot face daca am mai multe potriviri pentru un camp?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:302 +#, python-format +msgid "External ID,Name,Is a Company" +msgstr "ID Extern,Nume,Este o Companie" + +#. module: base_import +#: field:base_import.tests.models.preview,somevalue:0 +msgid "Some Value" +msgstr "Niste Valori" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" suppliers and their respective contacts" +msgstr "" +"Urmatorul fisier CSV va arata cum sa importati \n" +" furnizorii si contactele lor" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:109 +#, python-format +msgid "" +"How can I change the CSV file format options when \n" +" saving in my spreadsheet application?" +msgstr "" +"Cum pot modifica optiunile de format de fisiere CSV atunci cand \n" +" salvez aplicatia tabel?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:320 +#, python-format +msgid "" +"As you can see in this file, Fabien and Laurence \n" +" are working for the Bigees company (company_1) and \n" +" Eric is working for the Organi company. The relation " +"\n" +" between persons and companies is done using the \n" +" External ID of the companies. We had to prefix the \n" +" \"External ID\" by the name of the table to avoid a " +"\n" +" conflict of ID between persons and companies " +"(person_1 \n" +" and company_1 who shared the same ID 1 in the " +"orignial \n" +" database)." +msgstr "" +"Asa cum puteti vedea in acest fisier, Fabien si Laurence \n" +" lucreaza pentru conpania Bigees (compania_1), iar \n" +" Eric lucreaza pentru compania Organi. Relatia \n" +" dintre persoane si companii este realizata folosind " +"\n" +" ID-ul Extern al companiilor. A trebuit sa adaugam un " +"prefix la \n" +" \"ID-ul Extern\" dupa numele tabelului pentru a " +"evita un \n" +" conflict de ID intre persoane si companii " +"(persoana_1 \n" +" si compania_1 care imparteau acelasi ID 1 in baza de " +"date \n" +" originala)." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:308 +#, python-format +msgid "" +"copy (select \n" +" 'person_'||id as \"External ID\",person_name as \n" +" \"Name\",'False' as \"Is a " +"Company\",'company_'||company_id\n" +" as \"Related Company/External ID\" from persons) TO " +"\n" +" '/tmp/person.csv' with CSV" +msgstr "" +"copiati (selectati \n" +" 'persoana_'||id drept \"ID Extern\",persoana_nume " +"drept \n" +" \"Nume\",'Fals' drept \"Este o " +"Companie\",'companie_'||companie_id\n" +" drept \"Compania Asociata/ID Extern\" de la " +"persoane) CATRE \n" +" '/tmp/person.csv' cu CSV" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:148 +#, python-format +msgid "Country: Belgium" +msgstr "Tara: Belgia" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_stillreadonly +msgid "base_import.tests.models.char.stillreadonly" +msgstr "base_import.teste.modele.car.doarcitire" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:314 +#, python-format +msgid "" +"External ID,Name,Is a \n" +" Company,Related Company/External ID" +msgstr "" +"ID Extern,Nume,Este o \n" +" Companie,Compania Asociata/ID Extern" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Suppliers and their respective contacts" +msgstr "Furnizori si contactele lor" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:179 +#, python-format +msgid "" +"If for example you have two product categories \n" +" with the child name \"Sellable\" (ie. \"Misc. \n" +" Products/Sellable\" & \"Other Products/Sellable\"),\n" +" your validation is halted but you may still import \n" +" your data. However, we recommend you do not import " +"the \n" +" data because they will all be linked to the first \n" +" 'Sellable' category found in the Product Category " +"list \n" +" (\"Misc. Products/Sellable\"). We recommend you " +"modify \n" +" one of the duplicates' values or your product " +"category \n" +" hierarchy." +msgstr "" +"Daca de exemplu aveti doua categorii de produse cu \n" +" numele \"Vandabil\" (adica \"Diverse \n" +" Produse/Vandabil\" & \"Alte Produse/Vandabil\"),\n" +" validarea dumneavoastra este oprita, dar puteti inca " +"importa \n" +" datele dumneavoastra. Totusi, va recomandam sa nu " +"importati \n" +" datele pentru ca toate vor fi legate de prima \n" +" categorie 'Vandabil' aflata in lista Categoria " +"Produsului \n" +" (\"Diverse Produse/Vandabil\"). Va recomandam sa " +"modificati \n" +" valorile uneia dintre copii sau ierarhia \n" +" categoriei produsului." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:306 +#, python-format +msgid "" +"To create the CSV file for persons, linked to \n" +" companies, we will use the following SQL command in " +"\n" +" PSQL:" +msgstr "" +"Pentru a crea fisierul CSV pentru persoane, asociat \n" +" companiilor, vom folosi urmatoarea comanda SQL in \n" +" PSQL:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:119 +#, python-format +msgid "" +"Microsoft Excel will allow \n" +" you to modify only the encoding when saving \n" +" (in 'Save As' dialog box > click 'Tools' dropdown \n" +" list > Encoding tab)." +msgstr "" +"Microsoft Excel va va permite \n" +" sa modificati doar codarea atunci cand salvati \n" +" (in caseta de dialog 'Salveaza Ca' > click 'Unelte' " +"lista \n" +" verticala > tabul Codare)." + +#. module: base_import +#: field:base_import.tests.models.preview,othervalue:0 +msgid "Other Variable" +msgstr "Alte VAriabile" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "" +"will also be used to update the original\n" +" import if you need to re-import modified data\n" +" later, it's thus good practice to specify it\n" +" whenever possible" +msgstr "" +"vor fi de asemenea folosite pentru a actualiza importul\n" +" original daca trebuie sa reimportati mai tarziu " +"datele\n" +" modificate, este bine sa mentionati acest lucru\n" +" ori de cate ori este posibil" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:26 +#, python-format +msgid "" +"file to import. If you need a sample importable file, you\n" +" can use the export tool to generate one." +msgstr "" +"filsier de importat. Daca aveti nevoie de un model de fisier icare se poate " +"importa,\n" +" puteti folosi unealta de exportare pentru a genera unul." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:148 +#, python-format +msgid "" +"Country/Database \n" +" ID: 21" +msgstr "" +"Tara/Baza de date \n" +" ID: 21" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char +msgid "base_import.tests.models.char" +msgstr "baza_import.teste.modele.car" + +#. module: base_import +#: help:base_import.import,file:0 +msgid "File to check and/or import, raw binary (not base64)" +msgstr "Fisier de verificat si/sau importat, binar prim (nu baza64)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:230 +#, python-format +msgid "Purchase orders with their respective purchase order lines" +msgstr "Comenzile de achizitie cu liniile comenzilor lor de achizitie" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:60 +#, python-format +msgid "" +"If the file contains\n" +" the column names, OpenERP can try auto-detecting the\n" +" field corresponding to the column. This makes imports\n" +" simpler especially when the file has many columns." +msgstr "" +"Daca fisierul contine\n" +" numele coloanelor, OpenERP poate incerca sa detecteze " +"automat\n" +" campul corespunzator coloanei. Astfel, importurile sunt\n" +" mai usor de efectuat, mai ales atunci cand fisierul are " +"multe coloane." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:26 +#, python-format +msgid ".CSV" +msgstr ".CSV" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:360 +#, python-format +msgid "" +". The issue is\n" +" usually an incorrect file encoding." +msgstr "" +". Problema este\n" +" de obicei o codare incorecta a fisierului." + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required +msgid "base_import.tests.models.m2o.required" +msgstr "baza_import.teste.modele.m2o.obligatorii" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly +msgid "base_import.tests.models.char.noreadonly" +msgstr "baza_import.teste.modele.car.nudoarcitire" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:113 +#, python-format +msgid "" +"If you edit and save CSV files in speadsheet \n" +" applications, your computer's regional settings will " +"\n" +" be applied for the separator and delimiter. \n" +" We suggest you use OpenOffice or LibreOffice Calc \n" +" as they will allow you to modify all three options \n" +" (in 'Save As' dialog box > Check the box 'Edit " +"filter \n" +" settings' > Save)." +msgstr "" +"Daca editati si salvati fisierele CSV in aplicatiile cu \n" +" tabele, setarile regionale ale calculatorului " +"dumneavoastra vor \n" +" fi aplicate pentru separator si delimitator. \n" +" Va sugeram sa folositi OpenOffice sau LibreOffice " +"Calc \n" +" deoarece va vor permite sa modificati toate cele " +"trei optiuni \n" +" (in casuta de dialog 'Salveaza Ca' > Bifati casuta " +"'Editeaza setarile \n" +" filtrului' > Salveaza)." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:30 +#, python-format +msgid "CSV File:" +msgstr "Fisier CSV:" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_preview +msgid "base_import.tests.models.preview" +msgstr "baza_import.teste,modele.previzualizare" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_required +msgid "base_import.tests.models.char.required" +msgstr "baza_import.teste.modele.car.obligatoriu" + +#. module: base_import +#: code:addons/base_import/models.py:112 +#, python-format +msgid "Database ID" +msgstr "ID-ul Bazei de date" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:313 +#, python-format +msgid "It will produce the following CSV file:" +msgstr "Va produce urmatorul fisier CSV:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:362 +#, python-format +msgid "Here is the start of the file we could not import:" +msgstr "Iata inceputul fisierului pe care nu l-am putut importa:" + +#. module: base_import +#: field:base_import.import,file_type:0 +msgid "File Type" +msgstr "Tipul Fisierului" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_import +msgid "base_import.import" +msgstr "baza_import.import" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_o2m +msgid "base_import.tests.models.o2m" +msgstr "baza_import.teste.modele.o2m" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:360 +#, python-format +msgid "Import preview failed due to:" +msgstr "Previzualizarea importului a esuat din cauza:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:144 +#, python-format +msgid "" +"Country/External ID: the ID of this record \n" +" referenced in another application (or the .XML file " +"\n" +" that imported it)" +msgstr "" +"Tara/ID Extern: ID-ul acestei inregistrari \n" +" are referinta in alta aplicatie (sau fisierul .XML \n" +" care a importat-o)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:35 +#, python-format +msgid "Reload data to check changes." +msgstr "Reincarcati datele pentru a verifica modificarile." + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "baza_import.teste.modele.car.doarcitire" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:131 +#, python-format +msgid "" +"Some fields define a relationship with another \n" +" object. For example, the country of a contact is a \n" +" link to a record of the 'Country' object. When you \n" +" want to import such fields, OpenERP will have to \n" +" recreate links between the different records. \n" +" To help you import such fields, OpenERP provides 3 \n" +" mechanisms. You must use one and only one mechanism " +"\n" +" per field you want to import." +msgstr "" +"Unele campuri definesc o relatie cu un alt \n" +" obiect. De exemplu, tara unui contact este o \n" +" legatura la o inregistrare a obiectului 'Tara'. " +"Atunci cand \n" +" doriti sa importati asemenea fisiere, OpenERP va \n" +" recrea legaturile dintre diferite inregistrari. \n" +" Pentru a va ajuta sa importati asemenea fisiere, " +"OpenERP ofera 3 \n" +" mecanisme. Trebuie sa doar un mecanism \n" +" pentru fiecare camp pe care doriti sa il importati." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:201 +#, python-format +msgid "" +"The tags should be separated by a comma without any \n" +" spacing. For example, if you want you customer to be " +"\n" +" lined to both tags 'Manufacturer' and 'Retailer' \n" +" then you will encode it as follow \"Manufacturer,\n" +" Retailer\" in the same column of your CSV file." +msgstr "" +"Etichetele ar trebui separate prin virgula, fara nici un alt \n" +" spatiu. De exemplu, daca doriti ca clientul " +"dumneavoastra sa fie \n" +" aliniat la ambele etichete 'Producator' si " +"'Comerciant cu amanuntul' \n" +" atunci il veti coda dupa cum urmeaza \"Producator,\n" +" Comerciant cu amanuntul\" in aceeasi coloana a " +"fisierului dumneavoastra CSV." + +#. module: base_import +#: code:addons/base_import/models.py:264 +#, python-format +msgid "You must configure at least one field to import" +msgstr "Trebuie sa configurati cel putin un camp de importat" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:304 +#, python-format +msgid "company_2,Organi,True" +msgstr "compania_2,Organi,Adevarat" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:58 +#, python-format +msgid "" +"The first row of the\n" +" file contains the label of the column" +msgstr "" +"Primul rand al\n" +" fisierului contine eticheta coloanei" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_states +msgid "base_import.tests.models.char.states" +msgstr "baza_import.teste.modele.car.state" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:7 +#, python-format +msgid "Import a CSV File" +msgstr "Importa un Fisier CSV" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:74 +#, python-format +msgid "Quoting:" +msgstr "Cotare:" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required_related +msgid "base_import.tests.models.m2o.required.related" +msgstr "baza_import.teste.modele.m2o.obligatoriu.asociat" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:293 +#, python-format +msgid ")." +msgstr ")." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:18 +#: code:addons/base_import/static/src/xml/import.xml:396 +#, python-format +msgid "Import" +msgstr "Import" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:407 +#, python-format +msgid "Here are the possible values:" +msgstr "Iata valorile posibile" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "The" +msgstr "-l" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:227 +#, python-format +msgid "" +"A single column was found in the file, this often means the file separator " +"is incorrect" +msgstr "" +"A fost gasita o singura coloana in fisier, acest lucru inseamna adesea ca " +"separatorul fisierului este incorect" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:293 +#, python-format +msgid "dump of such a PostgreSQL database" +msgstr "descarcarea unei baze de date PostgreSQL" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:301 +#, python-format +msgid "This SQL command will create the following CSV file:" +msgstr "Aceasta comanda SQL va crea urmatorul fisier CSV:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:228 +#, python-format +msgid "" +"The following CSV file shows how to import purchase \n" +" orders with their respective purchase order lines:" +msgstr "" +"Urmatorul fisier CSV va arata cum sa importati comenzile de \n" +" achizitie cu liniile comenzii de achizitie " +"corespunzatoare:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:91 +#, python-format +msgid "" +"What can I do when the Import preview table isn't \n" +" displayed correctly?" +msgstr "" +"Ce pot face atunci cand tabelul din previzualizarea Importului nu este \n" +" afisat corect?" + +#. module: base_import +#: field:base_import.tests.models.char,value:0 +#: field:base_import.tests.models.char.noreadonly,value:0 +#: field:base_import.tests.models.char.readonly,value:0 +#: field:base_import.tests.models.char.required,value:0 +#: field:base_import.tests.models.char.states,value:0 +#: field:base_import.tests.models.char.stillreadonly,value:0 +#: field:base_import.tests.models.m2o,value:0 +#: field:base_import.tests.models.m2o.related,value:0 +#: field:base_import.tests.models.m2o.required,value:0 +#: field:base_import.tests.models.m2o.required.related,value:0 +#: field:base_import.tests.models.o2m,value:0 +#: field:base_import.tests.models.o2m.child,parent_id:0 +#: field:base_import.tests.models.o2m.child,value:0 +msgid "unknown" +msgstr "necunoscut(a)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:317 +#, python-format +msgid "person_2,Laurence,False,company_1" +msgstr "persoana_2,Laurence,Fals,compania_1" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:149 +#, python-format +msgid "Country/External ID: base.be" +msgstr "Tara/ID Extern: baza.be" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:288 +#, python-format +msgid "" +"As an example, suppose you have a SQL database \n" +" with two tables you want to import: companies and \n" +" persons. Each person belong to one company, so you \n" +" will have to recreate the link between a person and " +"\n" +" the company he work for. (If you want to test this \n" +" example, here is a" +msgstr "" +"Drept exemplu, sa presupunem ca aveti o baza de date SQL \n" +" cu doua tabele pe care doriti sa le importati: " +"companii si \n" +" persoane. Fiecare persoana apartine unei companii, " +"astfel ca \n" +" va trebui sa recreati legatura dintre o persoana si " +"\n" +" compania pentru care lucreaza. (Daca doriti sa " +"testati acest \n" +" exemplu, iata" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:396 +#, python-format +msgid "(%d more)" +msgstr "(%d mai mult)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:227 +#, python-format +msgid "File for some Quotations" +msgstr "Fisier pentru niste Cotatii" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:72 +#, python-format +msgid "Encoding:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:280 +#, python-format +msgid "" +"To manage relations between tables, \n" +" you can use the \"External ID\" facilities of " +"OpenERP. \n" +" The \"External ID\" of a record is the unique " +"identifier \n" +" of this record in another application. This " +"\"External \n" +" ID\" must be unique accoss all the records of all \n" +" objects, so it's a good practice to prefix this \n" +" \"External ID\" with the name of the application or " +"\n" +" table. (like 'company_1', 'person_1' instead of '1')" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:295 +#, python-format +msgid "" +"We will first export all companies and their \n" +" \"External ID\". In PSQL, write the following " +"command:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:212 +#, python-format +msgid "" +"How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:373 +#, python-format +msgid "Everything seems valid." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:188 +#, python-format +msgid "" +"However if you do not wish to change your \n" +" configuration of product categories, we recommend " +"you \n" +" use make use of the external ID for this field \n" +" 'Category'." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:390 +#, python-format +msgid "at row %d" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:197 +#, python-format +msgid "" +"How can I import a many2many relationship field \n" +" (e.g. a customer that has multiple tags)?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "XXX/ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:275 +#, python-format +msgid "" +"If you need to import data from different tables, \n" +" you will have to recreate relations between records " +"\n" +" belonging to different tables. (e.g. if you import \n" +" companies and persons, you will have to recreate the " +"\n" +" link between each person and the company they work \n" +" for)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:150 +#, python-format +msgid "" +"According to your need, you should use \n" +" one of these 3 ways to reference records in " +"relations. \n" +" Here is when you should use one or the other, \n" +" according to your need:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:319 +#, python-format +msgid "person_4,Ramsy,False,company_3" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:261 +#, python-format +msgid "" +"If you do not set all fields in your CSV file, \n" +" OpenERP will assign the default value for every non " +"\n" +" defined fields. But if you\n" +" set fields with empty values in your CSV file, " +"OpenERP \n" +" will set the EMPTY value in the field, instead of \n" +" assigning the default value." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:20 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:257 +#, python-format +msgid "" +"What happens if I do not provide a value for a \n" +" specific field?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:68 +#, python-format +msgid "Frequently Asked Questions" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:305 +#, python-format +msgid "company_3,Boum,True" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:249 +#, python-format +msgid "" +"This feature \n" +" allows you to use the Import/Export tool of OpenERP " +"to \n" +" modify a batch of records in your favorite " +"spreadsheet \n" +" application." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:77 +#, python-format +msgid "" +"column in OpenERP. When you\n" +" import an other record that links to the first\n" +" one, use" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:242 +#, python-format +msgid "" +"If you import a file that contains one of the \n" +" column \"External ID\" or \"Database ID\", records " +"that \n" +" have already been imported will be modified instead " +"of \n" +" being created. This is very usefull as it allows you " +"\n" +" to import several times the same CSV file while " +"having \n" +" made some changes in between two imports. OpenERP " +"will \n" +" take care of creating or modifying each record \n" +" depending if it's new or not." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:169 +#, python-format +msgid "CSV file for categories" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:309 +#, python-format +msgid "Normal Fields" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:74 +#, python-format +msgid "" +"In order to re-create relationships between\n" +" different records, you should use the unique\n" +" identifier from the original application and\n" +" map it to the" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:170 +#, python-format +msgid "CSV file for Products" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:216 +#, python-format +msgid "" +"If you want to import sales order having several \n" +" order lines; for each order line, you need to " +"reserve \n" +" a specific row in the CSV file. The first order line " +"\n" +" will be imported on the same row as the information " +"\n" +" relative to order. Any additional lines will need an " +"\n" +" addtional row that does not have any information in " +"\n" +" the fields relative to the order." +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related +msgid "base_import.tests.models.m2o.related" +msgstr "" + +#. module: base_import +#: field:base_import.tests.models.preview,name:0 +msgid "Name" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "to the original unique identifier." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:318 +#, python-format +msgid "person_3,Eric,False,company_2" +msgstr "" + +#. module: base_import +#: field:base_import.import,res_model:0 +msgid "Model" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:77 +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:329 +#, python-format +msgid "" +"The two files produced are ready to be imported in \n" +" OpenERP without any modifications. After having \n" +" imported these two CSV files, you will have 4 " +"contacts \n" +" and 3 companies. (the firsts two contacts are linked " +"\n" +" to the first company). You must first import the \n" +" companies and then the persons." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:95 +#, python-format +msgid "" +"By default the Import preview is set on commas as \n" +" field separators and quotation marks as text \n" +" delimiters. If your csv file does not have these \n" +" settings, you can modify the File Format Options \n" +" (displayed under the Browse CSV file bar after you \n" +" select your file)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:73 +#, python-format +msgid "Separator:" +msgstr "" + +#. module: base_import +#: field:base_import.import,file_name:0 +msgid "File Name" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/models.py:80 +#: code:addons/base_import/models.py:111 +#: code:addons/base_import/static/src/xml/import.xml:77 +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "External ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:39 +#, python-format +msgid "File Format Options…" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:392 +#, python-format +msgid "between rows %d and %d" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:19 +#, python-format +msgid "or" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:223 +#, python-format +msgid "" +"As an example, here is \n" +" purchase.order_functional_error_line_cant_adpat.CSV " +"\n" +" file of some quotations you can import, based on " +"demo \n" +" data." +msgstr "" + +#. module: base_import +#: field:base_import.import,file:0 +msgid "File" +msgstr "" diff --git a/addons/base_import/i18n/ru.po b/addons/base_import/i18n/ru.po index 6245fa856da..3dec71355b4 100644 --- a/addons/base_import/i18n/ru.po +++ b/addons/base_import/i18n/ru.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 07:30+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_import #. openerp-web @@ -470,15 +470,6 @@ msgstr "" msgid "base_import.tests.models.m2o.required" msgstr "" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:212 -#, python-format -msgid "" -"How can I import a one2many relationship (e.g. several \n" -" Order Lines of a Sale Order)?" -msgstr "" - #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly msgid "base_import.tests.models.char.noreadonly" @@ -822,6 +813,15 @@ msgid "" "command:" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:212 +#, python-format +msgid "" +"How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:373 diff --git a/addons/base_import/i18n/sl.po b/addons/base_import/i18n/sl.po new file mode 100644 index 00000000000..dea4db948c5 --- /dev/null +++ b/addons/base_import/i18n/sl.po @@ -0,0 +1,1424 @@ +# Slovenian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-12 11:49+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-13 04:38+0000\n" +"X-Generator: Launchpad (build 16420)\n" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:420 +#, python-format +msgid "Get all possible values" +msgstr "Get all possible values" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:71 +#, python-format +msgid "Need to import data from an other application?" +msgstr "Need to import data from an other application?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:163 +#, python-format +msgid "" +"When you use External IDs, you can import CSV files \n" +" with the \"External ID\" column to define the " +"External \n" +" ID of each record you import. Then, you will be able " +"\n" +" to make a reference to that record with columns like " +"\n" +" \"Field/External ID\". The following two CSV files " +"give \n" +" you an example for Products and their Categories." +msgstr "" +"When you use External IDs, you can import CSV files \n" +" with the \"External ID\" column to define the " +"External \n" +" ID of each record you import. Then, you will be able " +"\n" +" to make a reference to that record with columns like " +"\n" +" \"Field/External ID\". The following two CSV files " +"give \n" +" you an example for Products and their Categories." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:271 +#, python-format +msgid "" +"How to export/import different tables from an SQL \n" +" application to OpenERP?" +msgstr "" +"How to export/import different tables from an SQL \n" +" application to OpenERP?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:310 +#, python-format +msgid "Relation Fields" +msgstr "Relation Fields" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:142 +#, python-format +msgid "" +"Country/Database ID: the unique OpenERP ID for a \n" +" record, defined by the ID postgresql column" +msgstr "" +"Country/Database ID: the unique OpenERP ID for a \n" +" record, defined by the ID postgresql column" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:155 +#, python-format +msgid "" +"Use \n" +" Country/Database ID: You should rarely use this \n" +" notation. It's mostly used by developers as it's " +"main \n" +" advantage is to never have conflicts (you may have \n" +" several records with the same name, but they always " +"\n" +" have a unique Database ID)" +msgstr "" +"Use \n" +" Country/Database ID: You should rarely use this \n" +" notation. It's mostly used by developers as it's " +"main \n" +" advantage is to never have conflicts (you may have \n" +" several records with the same name, but they always " +"\n" +" have a unique Database ID)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:146 +#, python-format +msgid "" +"For the country \n" +" Belgium, you can use one of these 3 ways to import:" +msgstr "" +"For the country \n" +" Belgium, you can use one of these 3 ways to import:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:303 +#, python-format +msgid "company_1,Bigees,True" +msgstr "company_1,Bigees,True" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o +msgid "base_import.tests.models.m2o" +msgstr "base_import.tests.models.m2o" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:297 +#, python-format +msgid "" +"copy \n" +" (select 'company_'||id as \"External " +"ID\",company_name \n" +" as \"Name\",'True' as \"Is a Company\" from " +"companies) TO \n" +" '/tmp/company.csv' with CSV HEADER;" +msgstr "" +"copy \n" +" (select 'company_'||id as \"External " +"ID\",company_name \n" +" as \"Name\",'True' as \"Is a Company\" from " +"companies) TO \n" +" '/tmp/company.csv' with CSV HEADER;" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:206 +#, python-format +msgid "CSV file for Manufacturer, Retailer" +msgstr "CSV file for Manufacturer, Retailer" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:160 +#, python-format +msgid "" +"Use \n" +" Country/External ID: Use External ID when you import " +"\n" +" data from a third party application." +msgstr "" +"Use \n" +" Country/External ID: Use External ID when you import " +"\n" +" data from a third party application." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:316 +#, python-format +msgid "person_1,Fabien,False,company_1" +msgstr "person_1,Fabien,False,company_1" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "XXX/External ID" +msgstr "XXX/External ID" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:351 +#, python-format +msgid "Don't Import" +msgstr "Don't Import" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:24 +#, python-format +msgid "Select the" +msgstr "Select the" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:100 +#, python-format +msgid "" +"Note that if your CSV file \n" +" has a tabulation as separator, OpenERP will not \n" +" detect the separations. You will need to change the " +"\n" +" file format options in your spreadsheet application. " +"\n" +" See the following question." +msgstr "" +"Note that if your CSV file \n" +" has a tabulation as separator, OpenERP will not \n" +" detect the separations. You will need to change the " +"\n" +" file format options in your spreadsheet application. " +"\n" +" See the following question." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:141 +#, python-format +msgid "Country: the name or code of the country" +msgstr "Country: the name or code of the country" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_o2m_child +msgid "base_import.tests.models.o2m.child" +msgstr "base_import.tests.models.o2m.child" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:239 +#, python-format +msgid "Can I import several times the same record?" +msgstr "Can I import several times the same record?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:15 +#, python-format +msgid "Validate" +msgstr "Validate" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:55 +#, python-format +msgid "Map your data to OpenERP" +msgstr "Map your data to OpenERP" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:153 +#, python-format +msgid "" +"Use Country: This is \n" +" the easiest way when your data come from CSV files \n" +" that have been created manually." +msgstr "" +"Use Country: This is \n" +" the easiest way when your data come from CSV files \n" +" that have been created manually." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:127 +#, python-format +msgid "" +"What's the difference between Database ID and \n" +" External ID?" +msgstr "" +"What's the difference between Database ID and \n" +" External ID?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:138 +#, python-format +msgid "" +"For example, to \n" +" reference the country of a contact, OpenERP proposes " +"\n" +" you 3 different fields to import:" +msgstr "" +"For example, to \n" +" reference the country of a contact, OpenERP proposes " +"\n" +" you 3 different fields to import:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:175 +#, python-format +msgid "What can I do if I have multiple matches for a field?" +msgstr "What can I do if I have multiple matches for a field?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:302 +#, python-format +msgid "External ID,Name,Is a Company" +msgstr "External ID,Name,Is a Company" + +#. module: base_import +#: field:base_import.tests.models.preview,somevalue:0 +msgid "Some Value" +msgstr "Some Value" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" suppliers and their respective contacts" +msgstr "" +"The following CSV file shows how to import \n" +" suppliers and their respective contacts" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:109 +#, python-format +msgid "" +"How can I change the CSV file format options when \n" +" saving in my spreadsheet application?" +msgstr "" +"How can I change the CSV file format options when \n" +" saving in my spreadsheet application?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:320 +#, python-format +msgid "" +"As you can see in this file, Fabien and Laurence \n" +" are working for the Bigees company (company_1) and \n" +" Eric is working for the Organi company. The relation " +"\n" +" between persons and companies is done using the \n" +" External ID of the companies. We had to prefix the \n" +" \"External ID\" by the name of the table to avoid a " +"\n" +" conflict of ID between persons and companies " +"(person_1 \n" +" and company_1 who shared the same ID 1 in the " +"orignial \n" +" database)." +msgstr "" +"As you can see in this file, Fabien and Laurence \n" +" are working for the Bigees company (company_1) and \n" +" Eric is working for the Organi company. The relation " +"\n" +" between persons and companies is done using the \n" +" External ID of the companies. We had to prefix the \n" +" \"External ID\" by the name of the table to avoid a " +"\n" +" conflict of ID between persons and companies " +"(person_1 \n" +" and company_1 who shared the same ID 1 in the " +"orignial \n" +" database)." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:308 +#, python-format +msgid "" +"copy (select \n" +" 'person_'||id as \"External ID\",person_name as \n" +" \"Name\",'False' as \"Is a " +"Company\",'company_'||company_id\n" +" as \"Related Company/External ID\" from persons) TO " +"\n" +" '/tmp/person.csv' with CSV" +msgstr "" +"copy (select \n" +" 'person_'||id as \"External ID\",person_name as \n" +" \"Name\",'False' as \"Is a " +"Company\",'company_'||company_id\n" +" as \"Related Company/External ID\" from persons) TO " +"\n" +" '/tmp/person.csv' with CSV" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:148 +#, python-format +msgid "Country: Belgium" +msgstr "Country: Belgium" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_stillreadonly +msgid "base_import.tests.models.char.stillreadonly" +msgstr "base_import.tests.models.char.stillreadonly" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:314 +#, python-format +msgid "" +"External ID,Name,Is a \n" +" Company,Related Company/External ID" +msgstr "" +"External ID,Name,Is a \n" +" Company,Related Company/External ID" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Suppliers and their respective contacts" +msgstr "Suppliers and their respective contacts" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:179 +#, python-format +msgid "" +"If for example you have two product categories \n" +" with the child name \"Sellable\" (ie. \"Misc. \n" +" Products/Sellable\" & \"Other Products/Sellable\"),\n" +" your validation is halted but you may still import \n" +" your data. However, we recommend you do not import " +"the \n" +" data because they will all be linked to the first \n" +" 'Sellable' category found in the Product Category " +"list \n" +" (\"Misc. Products/Sellable\"). We recommend you " +"modify \n" +" one of the duplicates' values or your product " +"category \n" +" hierarchy." +msgstr "" +"If for example you have two product categories \n" +" with the child name \"Sellable\" (ie. \"Misc. \n" +" Products/Sellable\" & \"Other Products/Sellable\"),\n" +" your validation is halted but you may still import \n" +" your data. However, we recommend you do not import " +"the \n" +" data because they will all be linked to the first \n" +" 'Sellable' category found in the Product Category " +"list \n" +" (\"Misc. Products/Sellable\"). We recommend you " +"modify \n" +" one of the duplicates' values or your product " +"category \n" +" hierarchy." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:306 +#, python-format +msgid "" +"To create the CSV file for persons, linked to \n" +" companies, we will use the following SQL command in " +"\n" +" PSQL:" +msgstr "" +"To create the CSV file for persons, linked to \n" +" companies, we will use the following SQL command in " +"\n" +" PSQL:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:119 +#, python-format +msgid "" +"Microsoft Excel will allow \n" +" you to modify only the encoding when saving \n" +" (in 'Save As' dialog box > click 'Tools' dropdown \n" +" list > Encoding tab)." +msgstr "" +"Microsoft Excel will allow \n" +" you to modify only the encoding when saving \n" +" (in 'Save As' dialog box > click 'Tools' dropdown \n" +" list > Encoding tab)." + +#. module: base_import +#: field:base_import.tests.models.preview,othervalue:0 +msgid "Other Variable" +msgstr "Other Variable" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "" +"will also be used to update the original\n" +" import if you need to re-import modified data\n" +" later, it's thus good practice to specify it\n" +" whenever possible" +msgstr "" +"will also be used to update the original\n" +" import if you need to re-import modified data\n" +" later, it's thus good practice to specify it\n" +" whenever possible" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:26 +#, python-format +msgid "" +"file to import. If you need a sample importable file, you\n" +" can use the export tool to generate one." +msgstr "" +"file to import. If you need a sample importable file, you\n" +" can use the export tool to generate one." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:148 +#, python-format +msgid "" +"Country/Database \n" +" ID: 21" +msgstr "" +"Country/Database \n" +" ID: 21" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char +msgid "base_import.tests.models.char" +msgstr "base_import.tests.models.char" + +#. module: base_import +#: help:base_import.import,file:0 +msgid "File to check and/or import, raw binary (not base64)" +msgstr "File to check and/or import, raw binary (not base64)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:230 +#, python-format +msgid "Purchase orders with their respective purchase order lines" +msgstr "Purchase orders with their respective purchase order lines" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:60 +#, python-format +msgid "" +"If the file contains\n" +" the column names, OpenERP can try auto-detecting the\n" +" field corresponding to the column. This makes imports\n" +" simpler especially when the file has many columns." +msgstr "" +"If the file contains\n" +" the column names, OpenERP can try auto-detecting the\n" +" field corresponding to the column. This makes imports\n" +" simpler especially when the file has many columns." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:26 +#, python-format +msgid ".CSV" +msgstr ".CSV" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:360 +#, python-format +msgid "" +". The issue is\n" +" usually an incorrect file encoding." +msgstr "" +". The issue is\n" +" usually an incorrect file encoding." + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required +msgid "base_import.tests.models.m2o.required" +msgstr "base_import.tests.models.m2o.required" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly +msgid "base_import.tests.models.char.noreadonly" +msgstr "base_import.tests.models.char.noreadonly" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:113 +#, python-format +msgid "" +"If you edit and save CSV files in speadsheet \n" +" applications, your computer's regional settings will " +"\n" +" be applied for the separator and delimiter. \n" +" We suggest you use OpenOffice or LibreOffice Calc \n" +" as they will allow you to modify all three options \n" +" (in 'Save As' dialog box > Check the box 'Edit " +"filter \n" +" settings' > Save)." +msgstr "" +"If you edit and save CSV files in speadsheet \n" +" applications, your computer's regional settings will " +"\n" +" be applied for the separator and delimiter. \n" +" We suggest you use OpenOffice or LibreOffice Calc \n" +" as they will allow you to modify all three options \n" +" (in 'Save As' dialog box > Check the box 'Edit " +"filter \n" +" settings' > Save)." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:30 +#, python-format +msgid "CSV File:" +msgstr "CSV File:" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_preview +msgid "base_import.tests.models.preview" +msgstr "base_import.tests.models.preview" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_required +msgid "base_import.tests.models.char.required" +msgstr "base_import.tests.models.char.required" + +#. module: base_import +#: code:addons/base_import/models.py:112 +#, python-format +msgid "Database ID" +msgstr "Database ID" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:313 +#, python-format +msgid "It will produce the following CSV file:" +msgstr "It will produce the following CSV file:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:362 +#, python-format +msgid "Here is the start of the file we could not import:" +msgstr "Here is the start of the file we could not import:" + +#. module: base_import +#: field:base_import.import,file_type:0 +msgid "File Type" +msgstr "File Type" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_import +msgid "base_import.import" +msgstr "base_import.import" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_o2m +msgid "base_import.tests.models.o2m" +msgstr "base_import.tests.models.o2m" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:360 +#, python-format +msgid "Import preview failed due to:" +msgstr "Import preview failed due to:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:144 +#, python-format +msgid "" +"Country/External ID: the ID of this record \n" +" referenced in another application (or the .XML file " +"\n" +" that imported it)" +msgstr "" +"Country/External ID: the ID of this record \n" +" referenced in another application (or the .XML file " +"\n" +" that imported it)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:35 +#, python-format +msgid "Reload data to check changes." +msgstr "Reload data to check changes." + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "base_import.tests.models.char.readonly" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:131 +#, python-format +msgid "" +"Some fields define a relationship with another \n" +" object. For example, the country of a contact is a \n" +" link to a record of the 'Country' object. When you \n" +" want to import such fields, OpenERP will have to \n" +" recreate links between the different records. \n" +" To help you import such fields, OpenERP provides 3 \n" +" mechanisms. You must use one and only one mechanism " +"\n" +" per field you want to import." +msgstr "" +"Some fields define a relationship with another \n" +" object. For example, the country of a contact is a \n" +" link to a record of the 'Country' object. When you \n" +" want to import such fields, OpenERP will have to \n" +" recreate links between the different records. \n" +" To help you import such fields, OpenERP provides 3 \n" +" mechanisms. You must use one and only one mechanism " +"\n" +" per field you want to import." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:201 +#, python-format +msgid "" +"The tags should be separated by a comma without any \n" +" spacing. For example, if you want you customer to be " +"\n" +" lined to both tags 'Manufacturer' and 'Retailer' \n" +" then you will encode it as follow \"Manufacturer,\n" +" Retailer\" in the same column of your CSV file." +msgstr "" +"The tags should be separated by a comma without any \n" +" spacing. For example, if you want you customer to be " +"\n" +" lined to both tags 'Manufacturer' and 'Retailer' \n" +" then you will encode it as follow \"Manufacturer,\n" +" Retailer\" in the same column of your CSV file." + +#. module: base_import +#: code:addons/base_import/models.py:264 +#, python-format +msgid "You must configure at least one field to import" +msgstr "You must configure at least one field to import" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:304 +#, python-format +msgid "company_2,Organi,True" +msgstr "company_2,Organi,True" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:58 +#, python-format +msgid "" +"The first row of the\n" +" file contains the label of the column" +msgstr "" +"The first row of the\n" +" file contains the label of the column" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_states +msgid "base_import.tests.models.char.states" +msgstr "base_import.tests.models.char.states" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:7 +#, python-format +msgid "Import a CSV File" +msgstr "Import a CSV File" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:74 +#, python-format +msgid "Quoting:" +msgstr "Quoting:" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required_related +msgid "base_import.tests.models.m2o.required.related" +msgstr "base_import.tests.models.m2o.required.related" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:293 +#, python-format +msgid ")." +msgstr ")." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:18 +#: code:addons/base_import/static/src/xml/import.xml:396 +#, python-format +msgid "Import" +msgstr "Import" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:407 +#, python-format +msgid "Here are the possible values:" +msgstr "Here are the possible values:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "The" +msgstr "The" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:227 +#, python-format +msgid "" +"A single column was found in the file, this often means the file separator " +"is incorrect" +msgstr "" +"A single column was found in the file, this often means the file separator " +"is incorrect" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:293 +#, python-format +msgid "dump of such a PostgreSQL database" +msgstr "dump of such a PostgreSQL database" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:301 +#, python-format +msgid "This SQL command will create the following CSV file:" +msgstr "This SQL command will create the following CSV file:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:228 +#, python-format +msgid "" +"The following CSV file shows how to import purchase \n" +" orders with their respective purchase order lines:" +msgstr "" +"The following CSV file shows how to import purchase \n" +" orders with their respective purchase order lines:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:91 +#, python-format +msgid "" +"What can I do when the Import preview table isn't \n" +" displayed correctly?" +msgstr "" +"What can I do when the Import preview table isn't \n" +" displayed correctly?" + +#. module: base_import +#: field:base_import.tests.models.char,value:0 +#: field:base_import.tests.models.char.noreadonly,value:0 +#: field:base_import.tests.models.char.readonly,value:0 +#: field:base_import.tests.models.char.required,value:0 +#: field:base_import.tests.models.char.states,value:0 +#: field:base_import.tests.models.char.stillreadonly,value:0 +#: field:base_import.tests.models.m2o,value:0 +#: field:base_import.tests.models.m2o.related,value:0 +#: field:base_import.tests.models.m2o.required,value:0 +#: field:base_import.tests.models.m2o.required.related,value:0 +#: field:base_import.tests.models.o2m,value:0 +#: field:base_import.tests.models.o2m.child,parent_id:0 +#: field:base_import.tests.models.o2m.child,value:0 +msgid "unknown" +msgstr "unknown" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:317 +#, python-format +msgid "person_2,Laurence,False,company_1" +msgstr "person_2,Laurence,False,company_1" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:149 +#, python-format +msgid "Country/External ID: base.be" +msgstr "Country/External ID: base.be" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:288 +#, python-format +msgid "" +"As an example, suppose you have a SQL database \n" +" with two tables you want to import: companies and \n" +" persons. Each person belong to one company, so you \n" +" will have to recreate the link between a person and " +"\n" +" the company he work for. (If you want to test this \n" +" example, here is a" +msgstr "" +"As an example, suppose you have a SQL database \n" +" with two tables you want to import: companies and \n" +" persons. Each person belong to one company, so you \n" +" will have to recreate the link between a person and " +"\n" +" the company he work for. (If you want to test this \n" +" example, here is a" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:396 +#, python-format +msgid "(%d more)" +msgstr "(%d more)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:227 +#, python-format +msgid "File for some Quotations" +msgstr "File for some Quotations" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:72 +#, python-format +msgid "Encoding:" +msgstr "Encoding:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:280 +#, python-format +msgid "" +"To manage relations between tables, \n" +" you can use the \"External ID\" facilities of " +"OpenERP. \n" +" The \"External ID\" of a record is the unique " +"identifier \n" +" of this record in another application. This " +"\"External \n" +" ID\" must be unique accoss all the records of all \n" +" objects, so it's a good practice to prefix this \n" +" \"External ID\" with the name of the application or " +"\n" +" table. (like 'company_1', 'person_1' instead of '1')" +msgstr "" +"To manage relations between tables, \n" +" you can use the \"External ID\" facilities of " +"OpenERP. \n" +" The \"External ID\" of a record is the unique " +"identifier \n" +" of this record in another application. This " +"\"External \n" +" ID\" must be unique accoss all the records of all \n" +" objects, so it's a good practice to prefix this \n" +" \"External ID\" with the name of the application or " +"\n" +" table. (like 'company_1', 'person_1' instead of '1')" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:295 +#, python-format +msgid "" +"We will first export all companies and their \n" +" \"External ID\". In PSQL, write the following " +"command:" +msgstr "" +"We will first export all companies and their \n" +" \"External ID\". In PSQL, write the following " +"command:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:212 +#, python-format +msgid "" +"How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" +msgstr "" +"How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:373 +#, python-format +msgid "Everything seems valid." +msgstr "Everything seems valid." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:188 +#, python-format +msgid "" +"However if you do not wish to change your \n" +" configuration of product categories, we recommend " +"you \n" +" use make use of the external ID for this field \n" +" 'Category'." +msgstr "" +"However if you do not wish to change your \n" +" configuration of product categories, we recommend " +"you \n" +" use make use of the external ID for this field \n" +" 'Category'." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:390 +#, python-format +msgid "at row %d" +msgstr "at row %d" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:197 +#, python-format +msgid "" +"How can I import a many2many relationship field \n" +" (e.g. a customer that has multiple tags)?" +msgstr "" +"How can I import a many2many relationship field \n" +" (e.g. a customer that has multiple tags)?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "XXX/ID" +msgstr "XXX/ID" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:275 +#, python-format +msgid "" +"If you need to import data from different tables, \n" +" you will have to recreate relations between records " +"\n" +" belonging to different tables. (e.g. if you import \n" +" companies and persons, you will have to recreate the " +"\n" +" link between each person and the company they work \n" +" for)." +msgstr "" +"If you need to import data from different tables, \n" +" you will have to recreate relations between records " +"\n" +" belonging to different tables. (e.g. if you import \n" +" companies and persons, you will have to recreate the " +"\n" +" link between each person and the company they work \n" +" for)." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:150 +#, python-format +msgid "" +"According to your need, you should use \n" +" one of these 3 ways to reference records in " +"relations. \n" +" Here is when you should use one or the other, \n" +" according to your need:" +msgstr "" +"According to your need, you should use \n" +" one of these 3 ways to reference records in " +"relations. \n" +" Here is when you should use one or the other, \n" +" according to your need:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:319 +#, python-format +msgid "person_4,Ramsy,False,company_3" +msgstr "person_4,Ramsy,False,company_3" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:261 +#, python-format +msgid "" +"If you do not set all fields in your CSV file, \n" +" OpenERP will assign the default value for every non " +"\n" +" defined fields. But if you\n" +" set fields with empty values in your CSV file, " +"OpenERP \n" +" will set the EMPTY value in the field, instead of \n" +" assigning the default value." +msgstr "" +"If you do not set all fields in your CSV file, \n" +" OpenERP will assign the default value for every non " +"\n" +" defined fields. But if you\n" +" set fields with empty values in your CSV file, " +"OpenERP \n" +" will set the EMPTY value in the field, instead of \n" +" assigning the default value." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:20 +#, python-format +msgid "Cancel" +msgstr "Cancel" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:257 +#, python-format +msgid "" +"What happens if I do not provide a value for a \n" +" specific field?" +msgstr "" +"What happens if I do not provide a value for a \n" +" specific field?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:68 +#, python-format +msgid "Frequently Asked Questions" +msgstr "Frequently Asked Questions" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:305 +#, python-format +msgid "company_3,Boum,True" +msgstr "company_3,Boum,True" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:249 +#, python-format +msgid "" +"This feature \n" +" allows you to use the Import/Export tool of OpenERP " +"to \n" +" modify a batch of records in your favorite " +"spreadsheet \n" +" application." +msgstr "" +"This feature \n" +" allows you to use the Import/Export tool of OpenERP " +"to \n" +" modify a batch of records in your favorite " +"spreadsheet \n" +" application." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:77 +#, python-format +msgid "" +"column in OpenERP. When you\n" +" import an other record that links to the first\n" +" one, use" +msgstr "" +"column in OpenERP. When you\n" +" import an other record that links to the first\n" +" one, use" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:242 +#, python-format +msgid "" +"If you import a file that contains one of the \n" +" column \"External ID\" or \"Database ID\", records " +"that \n" +" have already been imported will be modified instead " +"of \n" +" being created. This is very usefull as it allows you " +"\n" +" to import several times the same CSV file while " +"having \n" +" made some changes in between two imports. OpenERP " +"will \n" +" take care of creating or modifying each record \n" +" depending if it's new or not." +msgstr "" +"If you import a file that contains one of the \n" +" column \"External ID\" or \"Database ID\", records " +"that \n" +" have already been imported will be modified instead " +"of \n" +" being created. This is very usefull as it allows you " +"\n" +" to import several times the same CSV file while " +"having \n" +" made some changes in between two imports. OpenERP " +"will \n" +" take care of creating or modifying each record \n" +" depending if it's new or not." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:169 +#, python-format +msgid "CSV file for categories" +msgstr "CSV file for categories" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:309 +#, python-format +msgid "Normal Fields" +msgstr "Normal Fields" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:74 +#, python-format +msgid "" +"In order to re-create relationships between\n" +" different records, you should use the unique\n" +" identifier from the original application and\n" +" map it to the" +msgstr "" +"In order to re-create relationships between\n" +" different records, you should use the unique\n" +" identifier from the original application and\n" +" map it to the" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:170 +#, python-format +msgid "CSV file for Products" +msgstr "CSV file for Products" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:216 +#, python-format +msgid "" +"If you want to import sales order having several \n" +" order lines; for each order line, you need to " +"reserve \n" +" a specific row in the CSV file. The first order line " +"\n" +" will be imported on the same row as the information " +"\n" +" relative to order. Any additional lines will need an " +"\n" +" addtional row that does not have any information in " +"\n" +" the fields relative to the order." +msgstr "" +"If you want to import sales order having several \n" +" order lines; for each order line, you need to " +"reserve \n" +" a specific row in the CSV file. The first order line " +"\n" +" will be imported on the same row as the information " +"\n" +" relative to order. Any additional lines will need an " +"\n" +" addtional row that does not have any information in " +"\n" +" the fields relative to the order." + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related +msgid "base_import.tests.models.m2o.related" +msgstr "base_import.tests.models.m2o.related" + +#. module: base_import +#: field:base_import.tests.models.preview,name:0 +msgid "Name" +msgstr "Name" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "to the original unique identifier." +msgstr "to the original unique identifier." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:318 +#, python-format +msgid "person_3,Eric,False,company_2" +msgstr "person_3,Eric,False,company_2" + +#. module: base_import +#: field:base_import.import,res_model:0 +msgid "Model" +msgstr "Model" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:77 +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "ID" +msgstr "ID" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:329 +#, python-format +msgid "" +"The two files produced are ready to be imported in \n" +" OpenERP without any modifications. After having \n" +" imported these two CSV files, you will have 4 " +"contacts \n" +" and 3 companies. (the firsts two contacts are linked " +"\n" +" to the first company). You must first import the \n" +" companies and then the persons." +msgstr "" +"The two files produced are ready to be imported in \n" +" OpenERP without any modifications. After having \n" +" imported these two CSV files, you will have 4 " +"contacts \n" +" and 3 companies. (the firsts two contacts are linked " +"\n" +" to the first company). You must first import the \n" +" companies and then the persons." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:95 +#, python-format +msgid "" +"By default the Import preview is set on commas as \n" +" field separators and quotation marks as text \n" +" delimiters. If your csv file does not have these \n" +" settings, you can modify the File Format Options \n" +" (displayed under the Browse CSV file bar after you \n" +" select your file)." +msgstr "" +"By default the Import preview is set on commas as \n" +" field separators and quotation marks as text \n" +" delimiters. If your csv file does not have these \n" +" settings, you can modify the File Format Options \n" +" (displayed under the Browse CSV file bar after you \n" +" select your file)." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:73 +#, python-format +msgid "Separator:" +msgstr "Separator:" + +#. module: base_import +#: field:base_import.import,file_name:0 +msgid "File Name" +msgstr "File Name" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/models.py:80 +#: code:addons/base_import/models.py:111 +#: code:addons/base_import/static/src/xml/import.xml:77 +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "External ID" +msgstr "External ID" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:39 +#, python-format +msgid "File Format Options…" +msgstr "File Format Options…" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:392 +#, python-format +msgid "between rows %d and %d" +msgstr "between rows %d and %d" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:19 +#, python-format +msgid "or" +msgstr "or" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:223 +#, python-format +msgid "" +"As an example, here is \n" +" purchase.order_functional_error_line_cant_adpat.CSV " +"\n" +" file of some quotations you can import, based on " +"demo \n" +" data." +msgstr "" +"As an example, here is \n" +" purchase.order_functional_error_line_cant_adpat.CSV " +"\n" +" file of some quotations you can import, based on " +"demo \n" +" data." + +#. module: base_import +#: field:base_import.import,file:0 +msgid "File" +msgstr "File" diff --git a/addons/base_import/i18n/zh_CN.po b/addons/base_import/i18n/zh_CN.po index 1a2b7ea93d8..b2d925e29a9 100644 --- a/addons/base_import/i18n/zh_CN.po +++ b/addons/base_import/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-12-14 14:17+0000\n" -"Last-Translator: nmglyy \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-29 06:40+0000\n" +"Last-Translator: 0key <32150218@qq.com>\n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-15 05:06+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-30 05:20+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_import #. openerp-web @@ -47,6 +47,12 @@ msgid "" "give \n" " you an example for Products and their Categories." msgstr "" +"当你使用External IDs,导入CSV文件\n" +"你导入的每一条记录得External\n" +"ID 用 \"External ID\" 列来定义 . 然后, \n" +"你将用一个列为\"Field/External ID\" 的\n" +"数据记录做参考. 下面的两个 CSV 文件\n" +"给你一个产品和产品类别的例子。" #. module: base_import #. openerp-web @@ -87,6 +93,11 @@ msgid "" "\n" " have a unique Database ID)" msgstr "" +"使用\n" +"Country/Database ID: 你将很少用这中\n" +"标记法. 这种标记法对开发者用来不产生\n" +"冲突有好处 (可能有些记录有相同的名\n" +"但它们有不同的Database ID)" #. module: base_import #. openerp-web @@ -121,6 +132,10 @@ msgid "" "companies) TO \n" " '/tmp/company.csv' with CSV HEADER;" msgstr "" +"复制\n" +"(select 'company_'||id as \"External ID\",company_name\n" +"as \"Name\",'True' as \"Is a Company\" from companies) TO\n" +"'/tmp/company.csv' with CSV HEADER" #. module: base_import #. openerp-web @@ -181,13 +196,18 @@ msgid "" "\n" " See the following question." msgstr "" +"注意 如果你的CSV文件\n" +"一个制表符作为分隔符,OpenERP的将不\n" +"检测隔开。您需要通过你的电子表格应用\n" +"程序的文件格式选项来修改。\n" +"请参阅下面的问题" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:141 #, python-format msgid "Country: the name or code of the country" -msgstr "" +msgstr "国家:国家的名称或代码" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_o2m_child @@ -224,6 +244,9 @@ msgid "" " the easiest way when your data come from CSV files \n" " that have been created manually." msgstr "" +"使用国家: \n" +"当你数据从CSV文件手动创建,这是\n" +"最简单的方法." #. module: base_import #. openerp-web @@ -232,7 +255,7 @@ msgstr "" msgid "" "What's the difference between Database ID and \n" " External ID?" -msgstr "" +msgstr "数据库ID和外部ID之间的区别是什么?" #. module: base_import #. openerp-web @@ -244,13 +267,16 @@ msgid "" "\n" " you 3 different fields to import:" msgstr "" +"例如,要\n" +"引用国家的关系,OpenERP给\n" +"你3个不同字段的导入" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:175 #, python-format msgid "What can I do if I have multiple matches for a field?" -msgstr "" +msgstr "如果我有多对一的字段怎么做?" #. module: base_import #. openerp-web @@ -262,7 +288,7 @@ msgstr "" #. module: base_import #: field:base_import.tests.models.preview,somevalue:0 msgid "Some Value" -msgstr "" +msgstr "一些值" #. module: base_import #. openerp-web @@ -271,7 +297,7 @@ msgstr "" msgid "" "The following CSV file shows how to import \n" " suppliers and their respective contacts" -msgstr "" +msgstr "下面是文件是CSV的导入说明" #. module: base_import #. openerp-web @@ -281,6 +307,8 @@ msgid "" "How can I change the CSV file format options when \n" " saving in my spreadsheet application?" msgstr "" +"当我在电子表格程序中保存文档时 \n" +" 我应该怎样更改CSV文件选项?" #. module: base_import #. openerp-web @@ -342,7 +370,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:233 #, python-format msgid "Suppliers and their respective contacts" -msgstr "" +msgstr "供应商和他们各自的联系人" #. module: base_import #. openerp-web @@ -390,7 +418,7 @@ msgstr "" #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" -msgstr "" +msgstr "其它变量" #. module: base_import #. openerp-web @@ -420,6 +448,8 @@ msgid "" "Country/Database \n" " ID: 21" msgstr "" +"国家/数据库\n" +" ID: 21" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char @@ -429,14 +459,14 @@ msgstr "" #. module: base_import #: help:base_import.import,file:0 msgid "File to check and/or import, raw binary (not base64)" -msgstr "" +msgstr "文件的审核或导入, 原始二进制编码(不是base64编码)" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:230 #, python-format msgid "Purchase orders with their respective purchase order lines" -msgstr "" +msgstr "采购订单与各自采购的订单行" #. module: base_import #. openerp-web @@ -448,13 +478,17 @@ msgid "" " field corresponding to the column. This makes imports\n" " simpler especially when the file has many columns." msgstr "" +"如果文件中包含\n" +"                列的名称,OpenERP的可以尝试自动检测\n" +"                字段对应的列。这使得导入\n" +"                简单,尤其是当文件有很多列。" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:26 #, python-format msgid ".CSV" -msgstr "" +msgstr ".CSV" #. module: base_import #. openerp-web @@ -463,22 +497,13 @@ msgstr "" msgid "" ". The issue is\n" " usually an incorrect file encoding." -msgstr "" +msgstr "发生这个问题通常是文件编码错误" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required msgid "base_import.tests.models.m2o.required" msgstr "" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:212 -#, python-format -msgid "" -"How can I import a one2many relationship (e.g. several \n" -" Order Lines of a Sale Order)?" -msgstr "" - #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly msgid "base_import.tests.models.char.noreadonly" @@ -528,14 +553,14 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:313 #, python-format msgid "It will produce the following CSV file:" -msgstr "" +msgstr "这将产生以下的CSV文件:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:362 #, python-format msgid "Here is the start of the file we could not import:" -msgstr "" +msgstr "下面是我们无法导入的起始文件:" #. module: base_import #: field:base_import.import,file_type:0 @@ -575,7 +600,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:35 #, python-format msgid "Reload data to check changes." -msgstr "" +msgstr "刷新数据,以检查变化。" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly @@ -610,12 +635,17 @@ msgid "" " then you will encode it as follow \"Manufacturer,\n" " Retailer\" in the same column of your CSV file." msgstr "" +"标签应以逗号分隔,没有任何间隔。\n" +"例如,如果你希望您的客户\n" +"有制造商“和”零售商“这两个标签的列\n" +"那么你将其编码为“制造商,\n" +"你CSV文件在同一列中的零售商“。" #. module: base_import #: code:addons/base_import/models.py:264 #, python-format msgid "You must configure at least one field to import" -msgstr "" +msgstr "You must configure at least one field to import" #. module: base_import #. openerp-web @@ -822,6 +852,15 @@ msgid "" "command:" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:212 +#, python-format +msgid "" +"How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:373 diff --git a/addons/base_import/static/src/xml/import.xml b/addons/base_import/static/src/xml/import.xml index 0da75eb69b9..c8b2b2c63dd 100644 --- a/addons/base_import/static/src/xml/import.xml +++ b/addons/base_import/static/src/xml/import.xml @@ -211,7 +211,7 @@
How can I import a one2many relationship (e.g. several - Order Lines of a Sale Order)?
+ Order Lines of a Sales Order)?

If you want to import sales order having several order lines; for each order line, you need to reserve diff --git a/addons/base_report_designer/i18n/ar.po b/addons/base_report_designer/i18n/ar.po index f67307a022a..8ed8da6bd4e 100644 --- a/addons/base_report_designer/i18n/ar.po +++ b/addons/base_report_designer/i18n/ar.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-01 17:32+0000\n" "Last-Translator: gehad shaat \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: 2012-12-02 04:38+0000\n" -"X-Generator: Launchpad (build 16319)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/base_report_designer.pot b/addons/base_report_designer/i18n/base_report_designer.pot index 27157b284f6..ded37bedeb8 100644 --- a/addons/base_report_designer/i18n/base_report_designer.pot +++ b/addons/base_report_designer/i18n/base_report_designer.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/bg.po b/addons/base_report_designer/i18n/bg.po index 8fc5fb5a55a..906210ae485 100644 --- a/addons/base_report_designer/i18n/bg.po +++ b/addons/base_report_designer/i18n/bg.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 18:25+0000\n" "Last-Translator: Tsvetin Vasilev \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: 2012-11-25 06:08+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/bs.po b/addons/base_report_designer/i18n/bs.po index ec609e7a5ce..cdcfccc2619 100644 --- a/addons/base_report_designer/i18n/bs.po +++ b/addons/base_report_designer/i18n/bs.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-02-03 06:26+0000\n" "Last-Translator: <>\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: 2012-11-25 06:08+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ca.po b/addons/base_report_designer/i18n/ca.po index a5fffe89e1f..ba43a3166ca 100644 --- a/addons/base_report_designer/i18n/ca.po +++ b/addons/base_report_designer/i18n/ca.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 18:28+0000\n" "Last-Translator: Raimon Esteve (www.zikzakmedia.com) " "\n" @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:08+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/cs.po b/addons/base_report_designer/i18n/cs.po index 42d23597b0d..0f51218a3c2 100644 --- a/addons/base_report_designer/i18n/cs.po +++ b/addons/base_report_designer/i18n/cs.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-11-17 08:52+0000\n" "Last-Translator: Kuvaly [LCT] \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: 2012-11-25 06:08+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/da.po b/addons/base_report_designer/i18n/da.po index 6451866d6ef..09537168bf2 100644 --- a/addons/base_report_designer/i18n/da.po +++ b/addons/base_report_designer/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-01-27 08:38+0000\n" "Last-Translator: FULL NAME \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: 2012-11-25 06:08+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/de.po b/addons/base_report_designer/i18n/de.po index de54dd84551..d2c598b78ce 100644 --- a/addons/base_report_designer/i18n/de.po +++ b/addons/base_report_designer/i18n/de.po @@ -6,15 +6,16 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-05-10 18:26+0000\n" -"Last-Translator: Raphael Collet (OpenERP) \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-19 19:54+0000\n" +"Last-Translator: Thorsten Vocks (OpenBig.org) \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: 2012-11-25 06:08+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw @@ -24,7 +25,7 @@ msgstr "base.report.sxw" #. module: base_report_designer #: view:base_report_designer.installer:0 msgid "OpenERP Report Designer Configuration" -msgstr "Konfiguration Report Designer" +msgstr "Konfiguration Designer" #. module: base_report_designer #: view:base_report_designer.installer:0 @@ -38,7 +39,7 @@ msgstr "" #. module: base_report_designer #: view:base.report.sxw:0 msgid "Upload the modified report" -msgstr "Upload Reportmodifikation" +msgstr "Upload Report Modifikation" #. module: base_report_designer #: view:base.report.file.sxw:0 @@ -69,7 +70,7 @@ msgstr "Titel" #: field:base.report.file.sxw,report_id:0 #: field:base.report.sxw,report_id:0 msgid "Report" -msgstr "Bericht" +msgstr "Report" #. module: base_report_designer #: view:base.report.rml.save:0 @@ -84,13 +85,13 @@ msgstr "Berichte Report Designer" #. module: base_report_designer #: field:base_report_designer.installer,name:0 msgid "File name" -msgstr "Datei Name" +msgstr "Dateiname" #. module: base_report_designer #: view:base.report.file.sxw:0 #: view:base.report.sxw:0 msgid "Get a report" -msgstr "Generiere Report" +msgstr "Generiere einen Bericht" #. module: base_report_designer #: view:base_report_designer.installer:0 @@ -114,13 +115,13 @@ msgid "" "OpenObject Report Designer plug-in file. Save as this file and install this " "plug-in in OpenOffice." msgstr "" -"OpenObject Report Designer Plug In Datei. Speichern Sie die Datei und " -"installieren Sie dann als OpenOffice Plug In." +"Report Designer Erweiterung. Speichern Sie die Datei und installieren Sie " +"diese bitte in OpenOffice." #. module: base_report_designer #: view:base.report.rml.save:0 msgid "Save RML FIle" -msgstr "Speichern .RML Datei" +msgstr "Speichern .rml Datei" #. module: base_report_designer #: field:base.report.file.sxw,file_sxw:0 @@ -131,7 +132,7 @@ msgstr "Ihre .SXW Datei" #. module: base_report_designer #: view:base_report_designer.installer:0 msgid "Installation and Configuration Steps" -msgstr "Installation und Konfiguration Abfolge" +msgstr "Abfolge Installation und Konfiguration" #. module: base_report_designer #: field:base_report_designer.installer,description:0 @@ -146,7 +147,7 @@ msgid "" "Don't forget to install the OpenERP SA OpenOffice package to modify it.\n" "Once it is modified, re-upload it in OpenERP using this wizard." msgstr "" -"Dieses ist die Vorlage des von Ihnen angefragten Reports.\n" +"Dies ist die Vorlage des von Ihnen angefragten Reports.\n" "Speichern Sie die .SXW Datei und öffnen Sie diese mit OpenOffice.\n" "Vergessen Sie nicht die Installation von OpenERP SA OpenOffice Paket um die " "Vorlage zu modifizieren.\n" @@ -156,7 +157,7 @@ msgstr "" #. module: base_report_designer #: model:ir.actions.act_window,name:base_report_designer.action_view_base_report_sxw msgid "Base Report sxw" -msgstr "Basis Report sxw" +msgstr "Base Report sxw" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_file_sxw @@ -176,12 +177,12 @@ msgstr "OpenERP Report Designer Installation" #. module: base_report_designer #: view:base.report.sxw:0 msgid "Cancel" -msgstr "Abbruch" +msgstr "Abbrechen" #. module: base_report_designer #: view:base.report.sxw:0 msgid "or" -msgstr "" +msgstr "oder" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_ir_actions_report_xml diff --git a/addons/base_report_designer/i18n/el.po b/addons/base_report_designer/i18n/el.po index c3be12db9e7..a42dbc99363 100644 --- a/addons/base_report_designer/i18n/el.po +++ b/addons/base_report_designer/i18n/el.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 18:03+0000\n" "Last-Translator: Raphael Collet (OpenERP) \n" "Language-Team: nls@hellug.gr \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:08+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/base_report_designer/i18n/es.po b/addons/base_report_designer/i18n/es.po index b757d8c986c..6d748310dd9 100644 --- a/addons/base_report_designer/i18n/es.po +++ b/addons/base_report_designer/i18n/es.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 14:19+0000\n" "Last-Translator: Pedro Manuel Baeza \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: 2012-12-12 04:40+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es_AR.po b/addons/base_report_designer/i18n/es_AR.po index f522bf10c06..e5b5417db7d 100644 --- a/addons/base_report_designer/i18n/es_AR.po +++ b/addons/base_report_designer/i18n/es_AR.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-09-15 19:44+0000\n" "Last-Translator: Silvana Herrera \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: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es_CR.po b/addons/base_report_designer/i18n/es_CR.po index 3bc6b883a54..8339305735c 100644 --- a/addons/base_report_designer/i18n/es_CR.po +++ b/addons/base_report_designer/i18n/es_CR.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-13 19:06+0000\n" "Last-Translator: Carlos Vásquez (CLEARCORP) " "\n" @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" "Language: \n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/es_EC.po b/addons/base_report_designer/i18n/es_EC.po index 592b9313e7e..525eaed9389 100644 --- a/addons/base_report_designer/i18n/es_EC.po +++ b/addons/base_report_designer/i18n/es_EC.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-13 04:35+0000\n" "Last-Translator: Cristian Salamea (Gnuthink) \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: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es_PY.po b/addons/base_report_designer/i18n/es_PY.po index 6c249e86e88..559a18c2f3a 100644 --- a/addons/base_report_designer/i18n/es_PY.po +++ b/addons/base_report_designer/i18n/es_PY.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-12 01:56+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Paraguay) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/et.po b/addons/base_report_designer/i18n/et.po index 40075748718..86ffe45896c 100644 --- a/addons/base_report_designer/i18n/et.po +++ b/addons/base_report_designer/i18n/et.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-11-09 16: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: 2012-11-25 06:08+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/fa.po b/addons/base_report_designer/i18n/fa.po index 91dafdec4c8..9d4843eefb3 100644 --- a/addons/base_report_designer/i18n/fa.po +++ b/addons/base_report_designer/i18n/fa.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-12-19 09:45+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/fi.po b/addons/base_report_designer/i18n/fi.po index b7518bb2e6c..5257037c10b 100644 --- a/addons/base_report_designer/i18n/fi.po +++ b/addons/base_report_designer/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 18:04+0000\n" "Last-Translator: Raphael Collet (OpenERP) \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: 2012-11-25 06:08+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/fr.po b/addons/base_report_designer/i18n/fr.po index a1beaebafff..231e7852a37 100644 --- a/addons/base_report_designer/i18n/fr.po +++ b/addons/base_report_designer/i18n/fr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-05 09:16+0000\n" "Last-Translator: Numérigraphe \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: 2012-12-06 04:40+0000\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/gl.po b/addons/base_report_designer/i18n/gl.po index e038709d08e..8bd5d5bd103 100644 --- a/addons/base_report_designer/i18n/gl.po +++ b/addons/base_report_designer/i18n/gl.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: base-report-designer-gl\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:47+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: Galego \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:08+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/hr.po b/addons/base_report_designer/i18n/hr.po index 9829befe247..b7cb2645b9f 100644 --- a/addons/base_report_designer/i18n/hr.po +++ b/addons/base_report_designer/i18n/hr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-10 07:10+0000\n" "Last-Translator: Goran Kliska \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: 2012-12-11 04:48+0000\n" -"X-Generator: Launchpad (build 16356)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" "Language: hr\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/hu.po b/addons/base_report_designer/i18n/hu.po index 6e436d70020..4ae16500193 100644 --- a/addons/base_report_designer/i18n/hu.po +++ b/addons/base_report_designer/i18n/hu.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:18+0000\n" "Last-Translator: Krisztian Eyssen \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: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/id.po b/addons/base_report_designer/i18n/id.po index 276f7cba35a..80ffe43bc05 100644 --- a/addons/base_report_designer/i18n/id.po +++ b/addons/base_report_designer/i18n/id.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 03:45+0000\n" "Last-Translator: Mantavya Gajjar (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: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/it.po b/addons/base_report_designer/i18n/it.po index 514223d74e0..0f2dff1de9d 100644 --- a/addons/base_report_designer/i18n/it.po +++ b/addons/base_report_designer/i18n/it.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-28 19:53+0000\n" "Last-Translator: Davide Corio - agilebg.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: 2012-11-29 05:15+0000\n" -"X-Generator: Launchpad (build 16319)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ja.po b/addons/base_report_designer/i18n/ja.po index 2c934ddd8ea..d10471dcf12 100644 --- a/addons/base_report_designer/i18n/ja.po +++ b/addons/base_report_designer/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-24 04:08+0000\n" "Last-Translator: Akira Hiyama \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ko.po b/addons/base_report_designer/i18n/ko.po index 0051c256d5e..42f6d2d43d9 100644 --- a/addons/base_report_designer/i18n/ko.po +++ b/addons/base_report_designer/i18n/ko.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-09-08 15:49+0000\n" "Last-Translator: ekodaq \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/lt.po b/addons/base_report_designer/i18n/lt.po index 878596324dd..cdcfccc2619 100644 --- a/addons/base_report_designer/i18n/lt.po +++ b/addons/base_report_designer/i18n/lt.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-02-03 06:26+0000\n" "Last-Translator: <>\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: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/mn.po b/addons/base_report_designer/i18n/mn.po index b996e289f7a..83dbadf8c07 100644 --- a/addons/base_report_designer/i18n/mn.po +++ b/addons/base_report_designer/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:47+0000\n" "Last-Translator: Raphael Collet (OpenERP) \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: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/nb.po b/addons/base_report_designer/i18n/nb.po index f3f0ffea765..e2537841d1f 100644 --- a/addons/base_report_designer/i18n/nb.po +++ b/addons/base_report_designer/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-09-04 13:59+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/nl.po b/addons/base_report_designer/i18n/nl.po index 77d51e2985b..6b7b1ee4d05 100644 --- a/addons/base_report_designer/i18n/nl.po +++ b/addons/base_report_designer/i18n/nl.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-24 18:16+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \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: 2012-11-25 06:08+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/nl_BE.po b/addons/base_report_designer/i18n/nl_BE.po index 52855644af1..9b4e2125123 100644 --- a/addons/base_report_designer/i18n/nl_BE.po +++ b/addons/base_report_designer/i18n/nl_BE.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-04-24 15:40+0000\n" "Last-Translator: <>\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: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/pl.po b/addons/base_report_designer/i18n/pl.po index 178517430a7..95274bfeb29 100644 --- a/addons/base_report_designer/i18n/pl.po +++ b/addons/base_report_designer/i18n/pl.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2008-12-09 00:19+0000\n" "Last-Translator: Marcin Ostajewski (panszpik) \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: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/pt.po b/addons/base_report_designer/i18n/pt.po index cb54635d6f3..70dd51e1f89 100644 --- a/addons/base_report_designer/i18n/pt.po +++ b/addons/base_report_designer/i18n/pt.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 15:31+0000\n" "Last-Translator: Rui Franco (multibase.pt) \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: 2012-12-12 04:40+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/pt_BR.po b/addons/base_report_designer/i18n/pt_BR.po index 320ce082f0e..10e44c73977 100644 --- a/addons/base_report_designer/i18n/pt_BR.po +++ b/addons/base_report_designer/i18n/pt_BR.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-10 18:03+0000\n" "Last-Translator: Projetaty Soluções OpenSource \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: 2012-12-11 04:48+0000\n" -"X-Generator: Launchpad (build 16356)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ro.po b/addons/base_report_designer/i18n/ro.po index 723999ef385..36cf79fac94 100644 --- a/addons/base_report_designer/i18n/ro.po +++ b/addons/base_report_designer/i18n/ro.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 18:07+0000\n" "Last-Translator: Raphael Collet (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: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ru.po b/addons/base_report_designer/i18n/ru.po index 8f52a2900a7..bfe1ed206c1 100644 --- a/addons/base_report_designer/i18n/ru.po +++ b/addons/base_report_designer/i18n/ru.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 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: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sk.po b/addons/base_report_designer/i18n/sk.po index 378ae33391a..cdfd0c64d8e 100644 --- a/addons/base_report_designer/i18n/sk.po +++ b/addons/base_report_designer/i18n/sk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 03:46+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: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sl.po b/addons/base_report_designer/i18n/sl.po index d77dfc5c867..28f2a9c8ada 100644 --- a/addons/base_report_designer/i18n/sl.po +++ b/addons/base_report_designer/i18n/sl.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-11-17 08:52+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: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sq.po b/addons/base_report_designer/i18n/sq.po index d7d6ac0a7e7..1f61eaba59e 100644 --- a/addons/base_report_designer/i18n/sq.po +++ b/addons/base_report_designer/i18n/sq.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-02 14:38+0000\n" "Last-Translator: FULL NAME \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: 2012-11-25 06:08+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sr.po b/addons/base_report_designer/i18n/sr.po index 527c2118cf4..dac6e84ec93 100644 --- a/addons/base_report_designer/i18n/sr.po +++ b/addons/base_report_designer/i18n/sr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:59+0000\n" "Last-Translator: Raphael Collet (OpenERP) \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: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sr@latin.po b/addons/base_report_designer/i18n/sr@latin.po index d8dfe3a8d83..058cbe4a87c 100644 --- a/addons/base_report_designer/i18n/sr@latin.po +++ b/addons/base_report_designer/i18n/sr@latin.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:58+0000\n" "Last-Translator: Raphael Collet (OpenERP) \n" "Language-Team: Serbian latin \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sv.po b/addons/base_report_designer/i18n/sv.po index 8a74726a0b9..994cc66ebce 100644 --- a/addons/base_report_designer/i18n/sv.po +++ b/addons/base_report_designer/i18n/sv.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.14\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 18:04+0000\n" "Last-Translator: Raphael Collet (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: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/tlh.po b/addons/base_report_designer/i18n/tlh.po index ee615cfdaf1..1f916a53d83 100644 --- a/addons/base_report_designer/i18n/tlh.po +++ b/addons/base_report_designer/i18n/tlh.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-02-03 06:26+0000\n" "Last-Translator: <>\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: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/tr.po b/addons/base_report_designer/i18n/tr.po index 143b96d3c0f..51f12a81c8c 100644 --- a/addons/base_report_designer/i18n/tr.po +++ b/addons/base_report_designer/i18n/tr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-27 20:20+0000\n" "Last-Translator: Ahmet Altınışık \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: 2012-11-28 04:41+0000\n" -"X-Generator: Launchpad (build 16309)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/uk.po b/addons/base_report_designer/i18n/uk.po index 73dce55216e..888f2910969 100644 --- a/addons/base_report_designer/i18n/uk.po +++ b/addons/base_report_designer/i18n/uk.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-09-08 15:16+0000\n" "Last-Translator: Eugene Babiy \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: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/vi.po b/addons/base_report_designer/i18n/vi.po index de26ec8461a..1d7a7de1f65 100644 --- a/addons/base_report_designer/i18n/vi.po +++ b/addons/base_report_designer/i18n/vi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:15+0000\n" "Last-Translator: Raphael Collet (OpenERP) \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: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/zh_CN.po b/addons/base_report_designer/i18n/zh_CN.po index abee97593ac..55077e17777 100644 --- a/addons/base_report_designer/i18n/zh_CN.po +++ b/addons/base_report_designer/i18n/zh_CN.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-27 02:28+0000\n" "Last-Translator: Joshua Jan(SHINEIT) \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: 2012-11-28 04:41+0000\n" -"X-Generator: Launchpad (build 16309)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/zh_TW.po b/addons/base_report_designer/i18n/zh_TW.po index c90f003561f..fea6668ab06 100644 --- a/addons/base_report_designer/i18n/zh_TW.po +++ b/addons/base_report_designer/i18n/zh_TW.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 18:22+0000\n" "Last-Translator: Walter Cheuk \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: 2012-11-25 06:09+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:44+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_setup/i18n/ar.po b/addons/base_setup/i18n/ar.po index c1747c36cfc..89cffe719d9 100644 --- a/addons/base_setup/i18n/ar.po +++ b/addons/base_setup/i18n/ar.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-11-14 11:20+0000\n" "Last-Translator: kifcaliph \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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:27+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -55,6 +55,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -113,13 +118,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -195,6 +200,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -212,6 +225,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "كيف يمكنك استدعاء عميل" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -223,7 +249,7 @@ msgid "Client" msgstr "العميل" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -274,7 +300,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -283,7 +317,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -297,6 +336,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/base_setup.pot b/addons/base_setup/i18n/base_setup.pot index d27f600b154..7ff08d99ea1 100644 --- a/addons/base_setup/i18n/base_setup.pot +++ b/addons/base_setup/i18n/base_setup.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -49,6 +49,11 @@ msgid "OpenERP allows to automatically create leads (or others documents)\n" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -107,13 +112,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -182,6 +187,12 @@ msgid "Work in multi-company environments, with appropriate security access betw " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "The public portal is accessible only if you are in a single database mode. You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "You will find more options in your company details: address for the header and footer, overdue payments texts, etc." @@ -197,6 +208,15 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "When you send a document to a customer\n" +" (quotation, invoice), your customer will be\n" +" able to signup to get all his documents,\n" +" read your company news, check his projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -208,7 +228,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -254,7 +274,13 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "to do so.\n" +" Once activated, the login page will be replaced by the public website." msgstr "" #. module: base_setup @@ -263,7 +289,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -277,6 +308,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/bg.po b/addons/base_setup/i18n/bg.po index 59a8a7e0acc..2160b099485 100644 --- a/addons/base_setup/i18n/bg.po +++ b/addons/base_setup/i18n/bg.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-11-07 12:47+0000\n" "Last-Translator: lem0na \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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:27+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -55,6 +55,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -113,13 +118,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -194,6 +199,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -211,6 +224,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -222,7 +248,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -273,7 +299,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -282,7 +316,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -296,6 +335,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/bs.po b/addons/base_setup/i18n/bs.po index 6189fbc1418..331b95fad17 100644 --- a/addons/base_setup/i18n/bs.po +++ b/addons/base_setup/i18n/bs.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-09-29 09: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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:27+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -55,6 +55,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -113,13 +118,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -194,6 +199,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -211,6 +224,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -222,7 +248,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -273,7 +299,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -282,7 +316,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -296,6 +335,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ca.po b/addons/base_setup/i18n/ca.po index 86385d991d8..c8ffdbe9f8b 100644 --- a/addons/base_setup/i18n/ca.po +++ b/addons/base_setup/i18n/ca.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-11-07 12:56+0000\n" "Last-Translator: Raimon Esteve (www.zikzakmedia.com) " "\n" @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:27+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -195,6 +200,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -212,6 +225,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -223,7 +249,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -274,7 +300,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -283,7 +317,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -297,6 +336,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/cs.po b/addons/base_setup/i18n/cs.po index bca5dfe9aba..25715e89be0 100644 --- a/addons/base_setup/i18n/cs.po +++ b/addons/base_setup/i18n/cs.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-11-07 12:52+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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:27+0000\n" +"X-Generator: Launchpad (build 16378)\n" "X-Poedit-Language: Czech\n" #. module: base_setup @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -195,6 +200,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -212,6 +225,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -223,7 +249,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -274,7 +300,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -283,7 +317,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -297,6 +336,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/da.po b/addons/base_setup/i18n/da.po index 8619e5f3e3f..853faa8dbd8 100644 --- a/addons/base_setup/i18n/da.po +++ b/addons/base_setup/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-11-08 10:30+0000\n" "Last-Translator: OpenERP Danmark / Mikhael Saxtorph \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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:27+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -195,6 +200,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -212,6 +225,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -223,7 +249,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -274,7 +300,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -283,7 +317,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -297,6 +336,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/de.po b/addons/base_setup/i18n/de.po index a9469c2bdea..92d86883d53 100644 --- a/addons/base_setup/i18n/de.po +++ b/addons/base_setup/i18n/de.po @@ -6,15 +6,16 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-12-16 12:02+0000\n" -"Last-Translator: Felix Schubert \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-19 22:09+0000\n" +"Last-Translator: Thorsten Vocks (OpenBig.org) \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: 2012-12-17 04:45+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -40,9 +41,7 @@ msgstr "base.config.settings" #: field:base.config.settings,module_auth_oauth:0 msgid "" "Use external authentication providers, sign in with google, facebook, ..." -msgstr "" -"Benutzen Sie eine externe Authentifizierung, z.B. von Anbietern wie Google, " -"Facebook, ..." +msgstr "Externe Benutzer Authentifizierung, z.B. mit google Konto" #. module: base_setup #: view:sale.config.settings:0 @@ -56,16 +55,21 @@ msgid "" "OpenERP using specific\n" " plugins for your preferred email application." msgstr "" -"OpenERP ermöglicht die automatische Erstellung von Leads (und anderen " -"Belegen)\n" -" aus eingehenden E-Mails. Sie können " -"Ihren E-Mail Posteingang regelmässig synchronisieren, indem\n" +"OpenERP ermöglicht die automatische Erstellung von Interessenten (und " +"anderen Belegen)\n" +" aus eingehenden EMails. Sie können Ihren " +"EMail Posteingang regelmässig synchronisieren, indem\n" " Sie hierzu Ihre POP/IMAP Konten anbinden " -"und dann ein Script zur E-Mail Integration \n" -" aktivieren oder indem Sie selektiv mit " -"Hilfe eines Plugins für Ihre E-Mail Anwendung\n" -" bestimmte E-Mails nach OpenERP " -"transferieren." +"und dann ein Script zur direkten EMail Integration \n" +" regelmässig anwenden, oder indem Sie " +"selektiv mit Hilfe eines Plugins für Ihre persönliche Arbeitsplatz \n" +" Mailanwendung bestimmte EMails nach " +"OpenERP transferieren." + +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -92,7 +96,7 @@ msgstr "Angebote und Aufträge" #: model:ir.actions.act_window,name:base_setup.action_general_configuration #: model:ir.ui.menu,name:base_setup.menu_general_configuration msgid "General Settings" -msgstr "Grundeinstellungen" +msgstr "Allgemeine Einstellungen" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -102,7 +106,7 @@ msgstr "Spender" #. module: base_setup #: view:base.config.settings:0 msgid "Email" -msgstr "E-Mail:" +msgstr "E-Mail" #. module: base_setup #: field:sale.config.settings,module_crm:0 @@ -124,20 +128,20 @@ msgstr "Erlaubt Benutzern Import von .csv Dateien" msgid "Manage multiple companies" msgstr "Multi-Company Verwaltung" -#. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." -msgstr "Erlauben Sie Kunden oder Lieferanten Zugriff auf Ihre Belege" - #. module: base_setup #: view:sale.config.settings:0 msgid "On Mail Client" msgstr "Anbindung E-Mail Anwendung" +#. module: base_setup +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" +msgstr "" + #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 msgid "Get contacts automatically from linkedIn" -msgstr "Kontakte von Linkdin importieren" +msgstr "Kontakte aus linkedin importieren" #. module: base_setup #: field:sale.config.settings,module_plugin_thunderbird:0 @@ -152,7 +156,7 @@ msgstr "res_config_contents" #. module: base_setup #: view:sale.config.settings:0 msgid "Customer Features" -msgstr "Kunden Features" +msgstr "Kunden Anwendungen" #. module: base_setup #: view:base.config.settings:0 @@ -162,7 +166,7 @@ msgstr "Import / Export" #. module: base_setup #: view:sale.config.settings:0 msgid "Sale Features" -msgstr "Verkauf Features" +msgstr "Verkauf Anwendungen" #. module: base_setup #: field:sale.config.settings,module_plugin_outlook:0 @@ -175,8 +179,6 @@ msgid "" "You can use this wizard to change the terminologies for customers in the " "whole application." msgstr "" -"Mit diesem Assistenten können Sie die verwendete Terminologie des gesamten " -"Systems im Sinne der Kunden verändern." #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -186,7 +188,7 @@ msgstr "Mieter" #. module: base_setup #: help:base.config.settings,module_share:0 msgid "Share or embbed any screen of openerp." -msgstr "Teilen oder einbetten von OpenERP Ansichten" +msgstr "Teilen oder einbetten von Bildschirmansichten" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -214,6 +216,14 @@ msgstr "" "entsprechenden Berechtigungen für den wechselseitigen Unternehmenszugriff " "einfach an." +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -233,6 +243,19 @@ msgstr "sale.config.settings" msgid "How do you call a Customer" msgstr "Wie bezeichnen Sie einen Kunden" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -244,7 +267,7 @@ msgid "Client" msgstr "Klient" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" "Aktivieren Sie den Zugriff auf veröffentliche Bereiche und Dokumente , " @@ -311,12 +334,20 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Options" -msgstr "Optionen" +msgstr "Einstellungen" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" -msgstr "Aktivierung des Kunden / Lieferanten Portals" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." +msgstr "" #. module: base_setup #: field:base.config.settings,module_share:0 @@ -324,7 +355,12 @@ msgid "Allow documents sharing" msgstr "Ermögliche Dokumentenfreigabe" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "Aktivierung des öffentlichen Portals" @@ -338,6 +374,11 @@ msgstr "Konfiguriere die Postausgangsserver" msgid "Social Network Integration" msgstr "Integration Sozialer Netzwerke" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/el.po b/addons/base_setup/i18n/el.po index b77573179e0..443309fb1a8 100644 --- a/addons/base_setup/i18n/el.po +++ b/addons/base_setup/i18n/el.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-11-07 12:51+0000\n" "Last-Translator: OpenERP Administrators \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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -197,6 +202,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -214,6 +227,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "Πώς καλείς έναν Πελάτη" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -225,7 +251,7 @@ msgid "Client" msgstr "Πελάτης" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -276,7 +302,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -285,7 +319,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -299,6 +338,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/en_GB.po b/addons/base_setup/i18n/en_GB.po index 52ade56c158..15eb883df44 100644 --- a/addons/base_setup/i18n/en_GB.po +++ b/addons/base_setup/i18n/en_GB.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-01-23 15:44+0000\n" "Last-Translator: mrx5682 \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -197,6 +202,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -214,6 +227,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "How do you call a Customer" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -225,7 +251,7 @@ msgid "Client" msgstr "Client" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -276,7 +302,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -285,7 +319,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -299,6 +338,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es.po b/addons/base_setup/i18n/es.po index ccdad34599e..5b8948d6125 100644 --- a/addons/base_setup/i18n/es.po +++ b/addons/base_setup/i18n/es.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-12-12 10:19+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-24 10:16+0000\n" "Last-Translator: Pedro Manuel Baeza \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: 2012-12-13 04:43+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-25 04:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -59,6 +59,11 @@ msgstr "" "POP/IMAP, con scripts desde su servidor de correo, o manualmente usando los " "plugins específicos para su gestor de correo preferido." +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "VENTAS" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -116,16 +121,16 @@ msgstr "Permitir a los usuarios importar datos desde archivos CSV" msgid "Manage multiple companies" msgstr "Gestionar varias compañías" -#. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." -msgstr "Dar acceso a sus clientes y proveedores a sus documentos" - #. module: base_setup #: view:sale.config.settings:0 msgid "On Mail Client" msgstr "En cliente email" +#. module: base_setup +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" +msgstr "--db-filter=SU_BASE_DE_DATOS" + #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 msgid "Get contacts automatically from linkedIn" @@ -205,6 +210,16 @@ msgstr "" "compañias.\n" "Se instalará el módulo multi_company." +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" +"El portal público es accesible sólo si está en modo de base de datos único. " +"Puede ejecutar el servidor OpenERP con la opción" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -224,6 +239,22 @@ msgstr "Configuración de las ventas" msgid "How do you call a Customer" msgstr "Como llama a un cliente" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" +"Cuando envía un documento a un cliente (presupuesto, factura), el cliente " +"podrá ingresar para obtener todos sus documentos, leer las noticias de la " +"compañía, comprobar sus proyectos, etc." + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -235,7 +266,7 @@ msgid "Client" msgstr "Cliente" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" "Activar la parte pública de openerp, openerp se convierte en un website " @@ -298,8 +329,19 @@ msgstr "Opciones" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" -msgstr "Activar portal cliente/proveedor" +msgid "Activate the customer portal" +msgstr "Activar el portal de cliente" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." +msgstr "" +"para hacerlo.\n" +"Una vez activado, la página de inicio de sesión será reemplazada con el " +"sitio web público." #. module: base_setup #: field:base.config.settings,module_share:0 @@ -307,7 +349,13 @@ msgid "Allow documents sharing" msgstr "Permitir compartir documentos" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" +"(noticias de la compañía, puestos de trabajo, formulario de contacto, etc.)" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "Activar portal público" @@ -321,6 +369,11 @@ msgstr "Configurar servidores de correo saliente" msgid "Social Network Integration" msgstr "Integración red social" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "Dar a sus clientes acceso a sus documentos." + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_AR.po b/addons/base_setup/i18n/es_AR.po index c8c611c7c76..62c6da70016 100644 --- a/addons/base_setup/i18n/es_AR.po +++ b/addons/base_setup/i18n/es_AR.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-09-15 15:41+0000\n" "Last-Translator: Silvana Herrera \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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -55,6 +55,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -113,13 +118,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -194,6 +199,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -211,6 +224,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -222,7 +248,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -273,7 +299,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -282,7 +316,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -296,6 +335,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_CL.po b/addons/base_setup/i18n/es_CL.po index c479544eb4b..9dbacc10677 100644 --- a/addons/base_setup/i18n/es_CL.po +++ b/addons/base_setup/i18n/es_CL.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-14 04:34+0000\n" "Last-Translator: Jordi Esteve (www.zikzakmedia.com) " "\n" @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -195,6 +200,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -212,6 +225,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -223,7 +249,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -274,7 +300,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -283,7 +317,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -297,6 +336,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_CR.po b/addons/base_setup/i18n/es_CR.po index 696da59f0cf..a048904ccc0 100644 --- a/addons/base_setup/i18n/es_CR.po +++ b/addons/base_setup/i18n/es_CR.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-15 17:34+0000\n" "Last-Translator: Freddy Gonzalez \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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" "Language: \n" #. module: base_setup @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -197,6 +202,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -214,6 +227,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "¿Cómo usted llama a un cliente?" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -225,7 +251,7 @@ msgid "Client" msgstr "Cliente" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -276,7 +302,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -285,7 +319,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -299,6 +338,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_EC.po b/addons/base_setup/i18n/es_EC.po index ef51533995f..6eb9af17930 100644 --- a/addons/base_setup/i18n/es_EC.po +++ b/addons/base_setup/i18n/es_EC.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-27 16:41+0000\n" "Last-Translator: Cristian Salamea (Gnuthink) \n" "Language-Team: Spanish (Ecuador) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -197,6 +202,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -214,6 +227,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "Como llamar a un cliente" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -225,7 +251,7 @@ msgid "Client" msgstr "Cliente" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -276,7 +302,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -285,7 +319,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -299,6 +338,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_MX.po b/addons/base_setup/i18n/es_MX.po index b41004e6a10..ec6d1c6d985 100644 --- a/addons/base_setup/i18n/es_MX.po +++ b/addons/base_setup/i18n/es_MX.po @@ -1,629 +1,370 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * base_setup +# Spanish (Mexico) translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-11 11:14+0000\n" -"PO-Revision-Date: 2010-12-27 08:23+0000\n" -"Last-Translator: Jordi Esteve (www.zikzakmedia.com) " -"\n" -"Language-Team: \n" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-11 17:55+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Spanish (Mexico) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-05 05:11+0000\n" -"X-Generator: Launchpad (build 13830)\n" +"X-Launchpad-Export-Date: 2013-01-12 04:55+0000\n" +"X-Generator: Launchpad (build 16420)\n" #. module: base_setup -#: field:base.setup.company,city:0 -msgid "City" -msgstr "Ciudad" - -#. module: base_setup -#: view:base.setup.installer:0 -msgid "Install" -msgstr "Instalar" - -#. module: base_setup -#: field:base.setup.installer,account_voucher:0 -msgid "Invoicing" -msgstr "Facturación" - -#. module: base_setup -#: field:base.setup.installer,hr:0 -msgid "Human Resources" -msgstr "Recursos humanos" - -#. module: base_setup -#: field:base.setup.company,email:0 -msgid "E-mail" -msgstr "Correo electrónico" - -#. module: base_setup -#: field:base.setup.company,account_no:0 -msgid "Bank Account No" -msgstr "Nº cuenta bancaria" - -#. module: base_setup -#: field:base.setup.installer,profile_tools:0 -msgid "Extra Tools" -msgstr "Herramientas extras" - -#. module: base_setup -#: field:base.setup.company,rml_footer1:0 -msgid "Report Footer 1" -msgstr "Pie de página 1 de los informes" - -#. module: base_setup -#: help:base.setup.installer,mrp:0 -msgid "" -"Helps you manage your manufacturing processes and generate reports on those " -"processes." +#: view:sale.config.settings:0 +msgid "Emails Integration" msgstr "" -"Le ayuda a gestionar sus procesos de fabricación y generar informes sobre " -"estos procesos." #. module: base_setup -#: help:base.setup.installer,marketing:0 -msgid "Helps you manage your marketing campaigns step by step." -msgstr "Le ayuda a gestionar sus campañas de marketing paso a paso." - -#. module: base_setup -#: view:base.setup.config:0 -msgid "Your database is now created." -msgstr "Su base de datos ya está creada." - -#. module: base_setup -#: field:base.setup.installer,point_of_sale:0 -msgid "Point of Sales" -msgstr "Terminal punto de venta" - -#. module: base_setup -#: field:base.setup.installer,association:0 -msgid "Associations" -msgstr "Asociaciones" - -#. module: base_setup -#: help:base.setup.installer,account_accountant:0 -msgid "" -"Helps you handle your accounting needs, if you are not an accountant, we " -"suggest you to install only the Invoicing " +#: selection:base.setup.terminology,partner:0 +msgid "Guest" msgstr "" -"Le ayuda a gestionar sus necesidades contables. Si no es un contable, le " -"sugerimos instalar sólo la facturación. " #. module: base_setup -#: code:addons/base_setup/__init__.py:56 -#, python-format -msgid "The following users have been installed : \n" -msgstr "Los siguientes usuarios han sido instalados : \n" - -#. module: base_setup -#: field:base.setup.company,progress:0 -#: field:base.setup.installer,progress:0 -msgid "Configuration Progress" -msgstr "Progreso configuración" - -#. module: base_setup -#: field:base.setup.company,rml_footer2:0 -msgid "Report Footer 2" -msgstr "Pie de página 2 de los informes" - -#. module: base_setup -#: field:base.setup.company,currency:0 -#: model:ir.model,name:base_setup.model_res_currency -msgid "Currency" -msgstr "Moneda" - -#. module: base_setup -#: field:base.setup.company,state_id:0 -msgid "Fed. State" -msgstr "Provincia" - -#. module: base_setup -#: field:base.setup.installer,marketing:0 -msgid "Marketing" -msgstr "Marketing" - -#. module: base_setup -#: field:base.setup.company,company_id:0 -msgid "Company" -msgstr "Compañía" - -#. module: base_setup -#: field:base.setup.installer,sale:0 -msgid "Sales Management" -msgstr "Gestión ventas" - -#. module: base_setup -#: help:base.setup.installer,profile_tools:0 -msgid "" -"Lets you install various interesting but non-essential tools like Survey, " -"Lunch and Ideas box." +#: view:sale.config.settings:0 +msgid "Contacts" msgstr "" -"Permite instalar varias herramientas interesantes pero no esenciales como " -"Informes, Comidas y caja de Ideas." #. module: base_setup -#: view:base.setup.config:0 -msgid "" -"You can start configuring the system or connect directly to the database as " -"an administrator." +#: model:ir.model,name:base_setup.model_base_config_settings +msgid "base.config.settings" msgstr "" -"Puede empezar configurando el sistema o conectando directamente a la base de " -"datos como un administrador." #. module: base_setup -#: field:base.setup.installer,report_designer:0 -msgid "Advanced Reporting" -msgstr "Informes avanzados" +#: field:base.config.settings,module_auth_oauth:0 +msgid "" +"Use external authentication providers, sign in with google, facebook, ..." +msgstr "" #. module: base_setup -#: field:base.setup.company,phone:0 -msgid "Phone" -msgstr "Teléfono" +#: view:sale.config.settings:0 +msgid "" +"OpenERP allows to automatically create leads (or others documents)\n" +" from incoming emails. You can automatically " +"synchronize emails with OpenERP\n" +" using regular POP/IMAP accounts, using a direct " +"email integration script for your\n" +" email server, or by manually pushing emails to " +"OpenERP using specific\n" +" plugins for your preferred email application." +msgstr "" #. module: base_setup -#: view:base.setup.company:0 +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + +#. module: base_setup +#: selection:base.setup.terminology,partner:0 +msgid "Member" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "Portal access" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "Authentication" +msgstr "" + +#. module: base_setup +#: view:sale.config.settings:0 +msgid "Quotations and Sales Orders" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +#: model:ir.actions.act_window,name:base_setup.action_general_configuration +#: model:ir.ui.menu,name:base_setup.menu_general_configuration +msgid "General Settings" +msgstr "" + +#. module: base_setup +#: selection:base.setup.terminology,partner:0 +msgid "Donor" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "Email" +msgstr "" + +#. module: base_setup +#: field:sale.config.settings,module_crm:0 +msgid "CRM" +msgstr "" + +#. module: base_setup +#: selection:base.setup.terminology,partner:0 +msgid "Patient" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_base_import:0 +msgid "Allow users to import data from CSV files" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_multi_company:0 +msgid "Manage multiple companies" +msgstr "" + +#. module: base_setup +#: view:sale.config.settings:0 +msgid "On Mail Client" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" +msgstr "" + +#. module: base_setup +#: field:sale.config.settings,module_web_linkedin:0 +msgid "Get contacts automatically from linkedIn" +msgstr "" + +#. module: base_setup +#: field:sale.config.settings,module_plugin_thunderbird:0 +msgid "Enable Thunderbird plug-in" +msgstr "" + +#. module: base_setup +#: view:base.setup.terminology:0 msgid "res_config_contents" -msgstr "res_config_contenidos" +msgstr "" #. module: base_setup -#: view:base.setup.company:0 +#: view:sale.config.settings:0 +msgid "Customer Features" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "Import / Export" +msgstr "" + +#. module: base_setup +#: view:sale.config.settings:0 +msgid "Sale Features" +msgstr "" + +#. module: base_setup +#: field:sale.config.settings,module_plugin_outlook:0 +msgid "Enable Outlook plug-in" +msgstr "" + +#. module: base_setup +#: view:base.setup.terminology:0 msgid "" -"Your company information will be used to personalize documents issued with " -"OpenERP such as invoices, sales orders and much more." +"You can use this wizard to change the terminologies for customers in the " +"whole application." msgstr "" -"La información de su compañía se usará para personalizar los documentos " -"emitidos con OpenERP, como las facturas, pedidos y mucho más." #. module: base_setup -#: view:base.setup.installer:0 -msgid "title" -msgstr "título" +#: selection:base.setup.terminology,partner:0 +msgid "Tenant" +msgstr "" #. module: base_setup -#: field:base.setup.installer,knowledge:0 -msgid "Knowledge Management" -msgstr "Gestión conocimiento" +#: help:base.config.settings,module_share:0 +msgid "Share or embbed any screen of openerp." +msgstr "" #. module: base_setup -#: model:ir.module.module,description:base_setup.module_meta_information +#: selection:base.setup.terminology,partner:0 +msgid "Customer" +msgstr "" + +#. module: base_setup +#: help:sale.config.settings,module_web_linkedin:0 msgid "" -"\n" -" This module implements a configuration system that helps user\n" -" to configure the system at the installation of a new database.\n" -"\n" -" It allows you to select between a list of profiles to install:\n" -" * Minimal profile\n" -" * Accounting only\n" -" * Services companies\n" -" * Manufacturing companies\n" -"\n" -" It also asks screens to help easily configure your company, the header " -"and\n" -" footer, the account chart to install and the language.\n" -" " +"When you create a new contact (person or company), you will be able to load " +"all the data from LinkedIn (photos, address, etc)." msgstr "" -"\n" -" Este módulo implementa un sistema de configuración que ayuda al usuario\n" -" a configurar el sistema durante la instalación de una nueva base de " -"datos.\n" -"\n" -" Le permite seleccionar entre una lista de perfiles a instalar:\n" -" * Perfil mínimo\n" -" * Sólo contabilidad\n" -" * Compañías de servicios\n" -" * Compañías de fabricación\n" -"\n" -" También proporciona pantallas para ayudarle a configurar fácilmente su " -"compañía, la cabecera y el pie de página, el plan contable a instalar y el " -"idioma.\n" -" " #. module: base_setup -#: help:base.setup.installer,product_expiry:0 +#: help:base.config.settings,module_multi_company:0 msgid "" -"Installs a preselected set of OpenERP applications which will help you " -"manage your industry." +"Work in multi-company environments, with appropriate security access between " +"companies.\n" +" This installs the module multi_company." msgstr "" -"Instala un conjunto preseleccionado de aplicaciones OpenERP que pueden " -"ayudarle a gestionar su industria." #. module: base_setup -#: help:base.setup.installer,project:0 +#: view:base.config.settings:0 msgid "" -"Helps you manage your projects and tasks by tracking them, generating " -"plannings, etc..." +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" msgstr "" -"Le ayuda a gestionar sus proyectos y tareas mediante el seguimiento de " -"ellas, generando planificaciones, ..." #. module: base_setup -#: field:base.setup.company,name:0 -msgid "Company Name" -msgstr "Nombre de la compañía" - -#. module: base_setup -#: view:base.setup.config:0 -msgid "Skip Configuration Wizards" -msgstr "Omitir asistentes configuración" - -#. module: base_setup -#: help:base.setup.installer,hr:0 +#: view:base.config.settings:0 msgid "" -"Helps you manage your human resources by encoding your employees structure, " -"generating work sheets, tracking attendance and more." +"You will find more options in your company details: address for the header " +"and footer, overdue payments texts, etc." msgstr "" -"Le ayuda a gestionar sus recursos humanos mediante la codificación de la " -"estructura de los empleados, la generación de hojas de trabajo, seguimiento " -"de la asistencia, ..." #. module: base_setup -#: help:base.setup.installer,account_voucher:0 +#: model:ir.model,name:base_setup.model_sale_config_settings +msgid "sale.config.settings" +msgstr "" + +#. module: base_setup +#: field:base.setup.terminology,partner:0 +msgid "How do you call a Customer" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 msgid "" -"Allows you to create your invoices and track the payments. It is an easier " -"version of the accounting module for managers who are not accountants." +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." msgstr "" -"Le permite crear sus facturas y controlar los pagos. Es una versión más " -"fácil del módulo de contabilidad para gestores que no sean contables." #. module: base_setup -#: model:ir.model,name:base_setup.model_base_setup_company -msgid "base.setup.company" -msgstr "base.setup.compañía" +#: model:ir.model,name:base_setup.model_base_setup_terminology +msgid "base.setup.terminology" +msgstr "" #. module: base_setup -#: help:base.setup.installer,purchase:0 +#: selection:base.setup.terminology,partner:0 +msgid "Client" +msgstr "" + +#. module: base_setup +#: help:base.config.settings,module_portal_anonymous:0 +msgid "Enable the public part of openerp, openerp becomes a public website." +msgstr "" + +#. module: base_setup +#: help:sale.config.settings,module_plugin_thunderbird:0 msgid "" -"Helps you manage your purchase-related processes such as requests for " -"quotations, supplier invoices, etc..." +"The plugin allows you archive email and its attachments to the selected\n" +" OpenERP objects. You can select a partner, or a lead and\n" +" attach the selected mail as a .eml file in\n" +" the attachment of a selected record. You can create " +"documents for CRM Lead,\n" +" Partner from the selected emails.\n" +" This installs the module plugin_thunderbird." msgstr "" -"Le ayuda a gestionar sus procesos relacionados con las compras como " -"peticiones de presupuestos, facturas de proveedor, ..." #. module: base_setup -#: help:base.setup.company,rml_footer2:0 +#: selection:base.setup.terminology,partner:0 +msgid "Partner" +msgstr "" + +#. module: base_setup +#: model:ir.actions.act_window,name:base_setup.action_partner_terminology_config_form +msgid "Use another word to say \"Customer\"" +msgstr "" + +#. module: base_setup +#: model:ir.actions.act_window,name:base_setup.action_sale_config +#: view:sale.config.settings:0 +msgid "Configure Sales" +msgstr "" + +#. module: base_setup +#: help:sale.config.settings,module_plugin_outlook:0 msgid "" -"This sentence will appear at the bottom of your reports.\n" -"We suggest you to put bank information here:\n" -"IBAN: BE74 1262 0121 6907 - SWIFT: CPDF BE71 - VAT: BE0477.472.701" +"The Outlook plugin allows you to select an object that you would like to " +"add\n" +" to your email and its attachments from MS Outlook. You can " +"select a partner,\n" +" or a lead object and archive a selected\n" +" email into an OpenERP mail message with attachments.\n" +" This installs the module plugin_outlook." msgstr "" -"Esta frase aparecerá en la parte inferior de sus informes.\n" -"Le sugerimos poner información bancaria, por ejemplo:\n" -"IBAN: ES1234 1234 00 0123456789 - SWIFT: CPDF BE71 - CIF: ES12345678A" #. module: base_setup -#: field:base.setup.company,street2:0 -msgid "Street 2" -msgstr "Calle 2" +#: view:base.config.settings:0 +msgid "Options" +msgstr "" #. module: base_setup -#: model:ir.model,name:base_setup.model_base_setup_installer -msgid "base.setup.installer" -msgstr "base.setup.instalador" +#: field:base.config.settings,module_portal:0 +msgid "Activate the customer portal" +msgstr "" #. module: base_setup -#: field:base.setup.company,country_id:0 -msgid "Country" -msgstr "País" - -#. module: base_setup -#: model:ir.actions.act_window,name:base_setup.action_base_setup -msgid "Setup" -msgstr "Instalación" - -#. module: base_setup -#: field:base.setup.installer,account_accountant:0 -msgid "Accounting & Finance" -msgstr "Contabilidad y finanzas" - -#. module: base_setup -#: field:base.setup.installer,auction:0 -msgid "Auction Houses" -msgstr "Casas de subastas" - -#. module: base_setup -#: field:base.setup.company,zip:0 -msgid "Zip Code" -msgstr "Código postal" - -#. module: base_setup -#: view:base.setup.config:0 -msgid "Start Configuration" -msgstr "Empezar configuración" - -#. module: base_setup -#: help:base.setup.installer,knowledge:0 +#: view:base.config.settings:0 msgid "" -"Lets you install addons geared towards sharing knowledge with and between " -"your employees." +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" -"Le permite instalar addons orientados a compartir el conocimiento con y " -"entre sus empleados." #. module: base_setup -#: view:base.setup.installer:0 -msgid "" -"Select the Applications you want your system to cover. If you are not sure " -"about your exact needs at this stage, you can easily install them later." +#: field:base.config.settings,module_share:0 +msgid "Allow documents sharing" msgstr "" -"Escoja las aplicaciones que desea cubrir con su sistema. Si no está seguro " -"acerca de sus necesidades exactas en este punto, puede instalarlas " -"fácilmente más tarde." #. module: base_setup -#: view:base.setup.company:0 -#: model:ir.actions.act_window,name:base_setup.action_base_setup_company -msgid "Company Configuration" -msgstr "Configuración compañía" - -#. module: base_setup -#: field:base.setup.company,logo:0 -msgid "Logo" -msgstr "Logo" - -#. module: base_setup -#: help:base.setup.installer,point_of_sale:0 -msgid "" -"Helps you get the most out of your points of sales with fast sale encoding, " -"simplified payment mode encoding, automatic picking lists generation and " -"more." +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" msgstr "" -"Le ayuda sacar provecho de sus terminales punto de venta con la codificación " -"rápida de las ventas, codificación de modos de pago simplificada, generación " -"automática de albaranes, ..." #. module: base_setup -#: field:base.setup.installer,purchase:0 -msgid "Purchase Management" -msgstr "Gestión de compras" - -#. module: base_setup -#: help:base.setup.installer,sale:0 -msgid "Helps you handle your quotations, sale orders and invoicing." +#: field:base.config.settings,module_portal_anonymous:0 +msgid "Activate the public portal" msgstr "" -"Le ayuda a gestionar sus presupuestos, pedidos de venta y facturación." #. module: base_setup -#: field:base.setup.installer,stock:0 -msgid "Warehouse Management" -msgstr "Gestión de almacenes" - -#. module: base_setup -#: field:base.setup.installer,project:0 -msgid "Project Management" -msgstr "Gestión de proyectos" - -#. module: base_setup -#: field:base.setup.config,installed_users:0 -msgid "Installed Users" -msgstr "Usuarios instalados" - -#. module: base_setup -#: view:base.setup.config:0 -msgid "New Database" -msgstr "Nueva base de datos" - -#. module: base_setup -#: field:base.setup.installer,crm:0 -msgid "Customer Relationship Management" -msgstr "Gestión relaciones con el cliente (CRM)" - -#. module: base_setup -#: help:base.setup.installer,auction:0 -msgid "" -"Installs a preselected set of OpenERP applications selected to help you " -"manage your auctions as well as the business processes around them." +#: view:base.config.settings:0 +msgid "Configure outgoing email servers" msgstr "" -"Instala un conjunto preseleccionado de aplicaciones OpenERP para ayudarle a " -"gestionar sus subastas como también los procesos de negocio alrededor de " -"ellas." #. module: base_setup -#: help:base.setup.company,rml_header1:0 -msgid "" -"This sentence will appear at the top right corner of your reports.\n" -"We suggest you to put a slogan here:\n" -"\"Open Source Business Solutions\"." +#: view:sale.config.settings:0 +msgid "Social Network Integration" msgstr "" -"Esta frase aparecerá en la esquina superior derecha de sus informes.\n" -"Le sugerimos poner un eslogan, por ejemplo:\n" -"\"Soluciones de empresa de código abierto\"." #. module: base_setup -#: help:base.setup.installer,report_designer:0 -msgid "" -"Lets you install various tools to simplify and enhance OpenERP's report " -"creation." +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." msgstr "" -"Le permite instalar varias herramientas para simplificar y mejorar la " -"creación de informes OpenERP." #. module: base_setup -#: field:base.setup.company,rml_header1:0 -msgid "Report Header" -msgstr "Cabecera de los informes" - -#. module: base_setup -#: view:base.setup.config:0 -msgid "Information about your new database" -msgstr "Información sobre su nueva base de datos" - -#. module: base_setup -#: field:base.setup.company,config_logo:0 -#: field:base.setup.config,config_logo:0 -#: field:base.setup.installer,config_logo:0 -msgid "Image" -msgstr "Imagen" - -#. module: base_setup -#: field:base.setup.installer,product_expiry:0 -msgid "Food Industry" -msgstr "Industria alimentaria" - -#. module: base_setup -#: field:base.setup.installer,mrp:0 -msgid "Manufacturing" -msgstr "Fabricación" - -#. module: base_setup -#: view:base.setup.company:0 -msgid "Your Logo - Use a size of about 450x150 pixels." -msgstr "Su logo – Utilice un tamaño de 450x150 píxeles aprox." - -#. module: base_setup -#: help:base.setup.company,rml_footer1:0 -msgid "" -"This sentence will appear at the bottom of your reports.\n" -"We suggest you to write legal sentences here:\n" -"Web: http://openerp.com - Fax: +32.81.73.35.01 - Fortis Bank: 126-2013269-07" +#: view:base.config.settings:0 +#: view:sale.config.settings:0 +msgid "Cancel" msgstr "" -"Esta frase aparecerá en la parte inferior de sus informes.\n" -"Le sugerimos que aquí escriba frases legales del tipo:\n" -"Web: http://openerp.com - Fax: +32.81.73.35.01 - Cuenta bancaria: 126-" -"2013269-07" #. module: base_setup -#: field:base.setup.company,website:0 -msgid "Company Website" -msgstr "Sitio web compañía" - -#. module: base_setup -#: view:base.setup.installer:0 -msgid "Install Specific Industry Applications" -msgstr "Instala aplicaciones específicas para la industria" - -#. module: base_setup -#: field:base.setup.company,street:0 -msgid "Street" -msgstr "Calle" - -#. module: base_setup -#: view:base.setup.company:0 -msgid "Configure Your Company Information" -msgstr "Configurar la información de su compañía" - -#. module: base_setup -#: help:base.setup.company,website:0 -msgid "Example: http://openerp.com" -msgstr "Ejemplo: http://openerp.com" - -#. module: base_setup -#: view:base.setup.installer:0 -#: model:ir.actions.act_window,name:base_setup.action_base_setup_installer -msgid "Install Applications" -msgstr "Instala aplicaciones" - -#. module: base_setup -#: help:base.setup.installer,crm:0 -msgid "" -"Helps you track and manage relations with customers such as leads, requests " -"or issues. Can automatically send reminders, escalate requests or trigger " -"business-specific actions based on standard events." +#: view:base.config.settings:0 +#: view:sale.config.settings:0 +msgid "Apply" msgstr "" -"Le ayuda a controlar y administrar las relaciones con los clientes, tales " -"como las iniciativas, peticiones o cuestiones. Puede enviar automáticamente " -"recordatorios, escalar las peticiones o activar acciones específicas del " -"negocio basado en eventos estándar." #. module: base_setup -#: help:base.setup.installer,stock:0 -msgid "" -"Helps you manage your inventory and main stock operations: delivery orders, " -"receptions, etc." +#: view:base.setup.terminology:0 +msgid "Specify Your Terminology" msgstr "" -"Le ayuda a gestionar su inventario y las operaciones principales de stock: " -"las órdenes de entrega, recepciones, ..." #. module: base_setup -#: model:ir.module.module,shortdesc:base_setup.module_meta_information -msgid "Base Setup" -msgstr "Configuración básica" - -#. module: base_setup -#: help:base.setup.installer,association:0 -msgid "" -"Installs a preselected set of OpenERP applications which will help you " -"manage your association more efficiently." +#: view:base.config.settings:0 +#: view:sale.config.settings:0 +msgid "or" msgstr "" -"Instala un conjunto preseleccionado de aplicaciones OpenERP que le ayudará a " -"administrar su asociación de manera más eficiente." #. module: base_setup -#: model:ir.model,name:base_setup.model_base_setup_config -msgid "base.setup.config" -msgstr "base.setup.config" - -#~ msgid "Select a Profile" -#~ msgstr "Seleccione un perfil" - -#~ msgid "" -#~ "You can start configuring the system or connect directly to the database " -#~ "using the default setup." -#~ msgstr "" -#~ "Puede empezar configurando el sistema o conectarse directamente a la base de " -#~ "datos usando la configuración por defecto." - -#~ msgid "Zip code" -#~ msgstr "Código postal" - -#~ msgid "Report header" -#~ msgstr "Cabecera de los informes" - -#~ msgid "" -#~ "You'll be able to install more modules later through the Administration menu." -#~ msgstr "" -#~ "Posteriormente podrá instalar más módulos desde el menú Administración." - -#~ msgid "" -#~ "A profile sets a pre-selection of modules for specific needs. These profiles " -#~ "have been setup to help you discover the different aspects of OpenERP. This " -#~ "is just an overview, we have 300+ available modules." -#~ msgstr "" -#~ "Un perfil instala una preselección de módulos para una necesidad específica. " -#~ "Estos perfiles han sido creados para ayudarle a descubrir los diferentes " -#~ "aspectos de OpenERP. Esto es sólo un punto de partida, OpenERP dispone de " -#~ "300+ módulos." - -#~ msgid "Next" -#~ msgstr "Siguiente" - -#~ msgid "State" -#~ msgstr "Estado" - -#~ msgid "Your new database is now fully installed." -#~ msgstr "Su nueva base de datos ha sido instalada completamente." - -#~ msgid "Profile" -#~ msgstr "Perfil" - -#~ msgid "General Information" -#~ msgstr "Información general" - -#~ msgid "Street2" -#~ msgstr "Calle 2" - -#~ msgid "Report Information" -#~ msgstr "Información de los informes" - -#~ msgid "Summary" -#~ msgstr "Resumen" - -#~ msgid "Installation Done" -#~ msgstr "Instalación realizada" - -#~ msgid "Use Directly" -#~ msgstr "Usar directamente" - -#~ msgid "Cancel" -#~ msgstr "Cancelar" - -#~ msgid "Previous" -#~ msgstr "Anterior" - -#~ msgid "Define Main Company" -#~ msgstr "Defina la compañia principal" +#: view:base.config.settings:0 +msgid "Configure your company data" +msgstr "" diff --git a/addons/base_setup/i18n/es_PY.po b/addons/base_setup/i18n/es_PY.po index 9becf9b1428..d086801f1b3 100644 --- a/addons/base_setup/i18n/es_PY.po +++ b/addons/base_setup/i18n/es_PY.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-18 12:16+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Paraguay) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -195,6 +200,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -212,6 +225,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -223,7 +249,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -274,7 +300,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -283,7 +317,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -297,6 +336,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/et.po b/addons/base_setup/i18n/et.po index fbb5dca9acd..79771ff39a3 100644 --- a/addons/base_setup/i18n/et.po +++ b/addons/base_setup/i18n/et.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-10-10 19:33+0000\n" "Last-Translator: Aare Vesi \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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:27+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -55,6 +55,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -113,13 +118,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -194,6 +199,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -211,6 +224,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -222,7 +248,7 @@ msgid "Client" msgstr "Klient" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -273,7 +299,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -282,7 +316,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -296,6 +335,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/fa.po b/addons/base_setup/i18n/fa.po index a8226760dc3..afc0db09ee6 100644 --- a/addons/base_setup/i18n/fa.po +++ b/addons/base_setup/i18n/fa.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 03:47+0000\n" "Last-Translator: avion \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -195,6 +200,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -212,6 +225,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -223,7 +249,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -274,7 +300,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -283,7 +317,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -297,6 +336,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/fi.po b/addons/base_setup/i18n/fi.po index db51efbb224..c187eae82fc 100644 --- a/addons/base_setup/i18n/fi.po +++ b/addons/base_setup/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-11-07 12:49+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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:27+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -196,6 +201,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -213,6 +226,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "Kuinka soitat asiakkaalle" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -224,7 +250,7 @@ msgid "Client" msgstr "Asiakas" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -275,7 +301,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -284,7 +318,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -298,6 +337,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/fr.po b/addons/base_setup/i18n/fr.po index 23520b8dc12..68181b62cd3 100644 --- a/addons/base_setup/i18n/fr.po +++ b/addons/base_setup/i18n/fr.po @@ -6,20 +6,20 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-12-07 10:32+0000\n" -"Last-Translator: WANTELLET Sylvain \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-03 13:52+0000\n" +"Last-Translator: Numérigraphe \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: 2012-12-08 04:58+0000\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2013-01-04 04:47+0000\n" +"X-Generator: Launchpad (build 16393)\n" #. module: base_setup #: view:sale.config.settings:0 msgid "Emails Integration" -msgstr "" +msgstr "Intégration des courriels" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -34,13 +34,15 @@ msgstr "Contacts" #. module: base_setup #: model:ir.model,name:base_setup.model_base_config_settings msgid "base.config.settings" -msgstr "" +msgstr "base.config.settings" #. module: base_setup #: field:base.config.settings,module_auth_oauth:0 msgid "" "Use external authentication providers, sign in with google, facebook, ..." msgstr "" +"Utiliser une identification fournie par un tiers (connexion avec Google, " +"Facebook, etc.)." #. module: base_setup #: view:sale.config.settings:0 @@ -54,6 +56,17 @@ msgid "" "OpenERP using specific\n" " plugins for your preferred email application." msgstr "" +"OpenERP peut créer automatiquement des pistes (ou d'autres documents) depuis " +"les courriels entrants.\n" +"Vous pouvez synchroniser vos courriels avec OpenERP via vos comptes POP/IMAP " +"habituels, via un script d'intégration directe des courriels depuis votre " +"serveur, ou bien en ajoutant manuellement les courriels dans OpenERP depuis " +"un greffon dans votre application de courriel." + +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -90,7 +103,7 @@ msgstr "Donateur" #. module: base_setup #: view:base.config.settings:0 msgid "Email" -msgstr "" +msgstr "Courriel" #. module: base_setup #: field:sale.config.settings,module_crm:0 @@ -105,23 +118,23 @@ msgstr "Patient" #. module: base_setup #: field:base.config.settings,module_base_import:0 msgid "Allow users to import data from CSV files" -msgstr "" +msgstr "Autoriser l'import de fichiers CSV par les utilisateurs" #. module: base_setup #: field:base.config.settings,module_multi_company:0 msgid "Manage multiple companies" -msgstr "" - -#. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." -msgstr "" +msgstr "Gérer plusieurs sociétés" #. module: base_setup #: view:sale.config.settings:0 msgid "On Mail Client" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" +msgstr "" + #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 msgid "Get contacts automatically from linkedIn" @@ -130,7 +143,7 @@ msgstr "Récupérer les contacts automatiquement de LinkedIn" #. module: base_setup #: field:sale.config.settings,module_plugin_thunderbird:0 msgid "Enable Thunderbird plug-in" -msgstr "" +msgstr "Activer le greffon Thunderbird" #. module: base_setup #: view:base.setup.terminology:0 @@ -140,7 +153,7 @@ msgstr "res_config_contents" #. module: base_setup #: view:sale.config.settings:0 msgid "Customer Features" -msgstr "" +msgstr "Fonctions client" #. module: base_setup #: view:base.config.settings:0 @@ -150,12 +163,12 @@ msgstr "Import / Export" #. module: base_setup #: view:sale.config.settings:0 msgid "Sale Features" -msgstr "" +msgstr "Fonctions de vente" #. module: base_setup #: field:sale.config.settings,module_plugin_outlook:0 msgid "Enable Outlook plug-in" -msgstr "" +msgstr "Activer le greffon Outlook" #. module: base_setup #: view:base.setup.terminology:0 @@ -187,6 +200,8 @@ msgid "" "When you create a new contact (person or company), you will be able to load " "all the data from LinkedIn (photos, address, etc)." msgstr "" +"Quand vous créerez un nouveau contact (personne ou société), vous pourrez " +"importer ses données depuis LinkedIn (photos, adresse, etc.)." #. module: base_setup #: help:base.config.settings,module_multi_company:0 @@ -195,6 +210,17 @@ msgid "" "companies.\n" " This installs the module multi_company." msgstr "" +"Travail en environnement multi-sociétés, avec les restrictions de sécurité " +"appropriées entre les sociétés.\n" +"Ceci installe le module multi_company." + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" #. module: base_setup #: view:base.config.settings:0 @@ -202,17 +228,33 @@ msgid "" "You will find more options in your company details: address for the header " "and footer, overdue payments texts, etc." msgstr "" +"D'autres options sont disponibles dans les détails de votre société : " +"adresse pour les en-têtes et pieds de page, textes de relances de paiements, " +"etc." #. module: base_setup #: model:ir.model,name:base_setup.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "sale.config.settings" #. module: base_setup #: field:base.setup.terminology,partner:0 msgid "How do you call a Customer" msgstr "Comment appelez-vous un client" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -224,9 +266,10 @@ msgid "Client" msgstr "Client" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" +"Activer la partie publique d'OpenERP : OpenERP devient un site web public." #. module: base_setup #: help:sale.config.settings,module_plugin_thunderbird:0 @@ -239,6 +282,12 @@ msgid "" " Partner from the selected emails.\n" " This installs the module plugin_thunderbird." msgstr "" +"Le greffon vous permet d'archiver les courriels et les pièces-jointes avec " +"les objets OpenERP correspondants. Sélectionnez un partenaire ou une piste " +"CRM, et attachez le fichier .eml avec le courriel qui correspond. Vous " +"pouvez créer des documents pour les pistes CRM ou les partenaires depuis les " +"courriels sélectionnés.\n" +"Ceci installe le module plugin_thunderbird." #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -254,7 +303,7 @@ msgstr "Utiliser un autre mot pour dire \"client\"" #: model:ir.actions.act_window,name:base_setup.action_sale_config #: view:sale.config.settings:0 msgid "Configure Sales" -msgstr "" +msgstr "Paramétrer les ventes" #. module: base_setup #: help:sale.config.settings,module_plugin_outlook:0 @@ -267,35 +316,58 @@ msgid "" " email into an OpenERP mail message with attachments.\n" " This installs the module plugin_outlook." msgstr "" +"Le greffon Outlook vous permet de sélectionner un objet OpenERP pour lui " +"attacher un courriel et ses pièces-jointes directement depuis MS Outlook. " +"Vous pouvez sélectionner un partenaire ou une piste CRM, et archiver le " +"courriel sélectionné dans OpenERP.\n" +"Ceci installe le module plugin_outlook." #. module: base_setup #: view:base.config.settings:0 msgid "Options" -msgstr "" +msgstr "Options" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup #: field:base.config.settings,module_share:0 msgid "Allow documents sharing" +msgstr "Autoriser le partage de documents" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" -msgstr "" +msgstr "Activer le portail public" #. module: base_setup #: view:base.config.settings:0 msgid "Configure outgoing email servers" -msgstr "" +msgstr "Paramétrer les serveurs de courriels sortants" #. module: base_setup #: view:sale.config.settings:0 msgid "Social Network Integration" +msgstr "Intégration aux réseaux sociaux" + +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." msgstr "" #. module: base_setup @@ -308,7 +380,7 @@ msgstr "Annuler" #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Appliquer" #. module: base_setup #: view:base.setup.terminology:0 @@ -319,12 +391,12 @@ msgstr "Précisez votre terminologie" #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "or" -msgstr "" +msgstr "ou" #. module: base_setup #: view:base.config.settings:0 msgid "Configure your company data" -msgstr "" +msgstr "Configurer les données de la société" #~ msgid "City" #~ msgstr "Ville" diff --git a/addons/base_setup/i18n/gl.po b/addons/base_setup/i18n/gl.po index 931c11a85d4..9e211c17601 100644 --- a/addons/base_setup/i18n/gl.po +++ b/addons/base_setup/i18n/gl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-09-08 15:27+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -195,6 +200,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -212,6 +225,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -223,7 +249,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -274,7 +300,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -283,7 +317,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -297,6 +336,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/gu.po b/addons/base_setup/i18n/gu.po index eac4f816b2e..1928e278719 100644 --- a/addons/base_setup/i18n/gu.po +++ b/addons/base_setup/i18n/gu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-31 11:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Gujarati \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -195,6 +200,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -212,6 +225,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -223,7 +249,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -274,7 +300,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -283,7 +317,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -297,6 +336,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/hr.po b/addons/base_setup/i18n/hr.po index b6bbea31161..e6872d364f4 100644 --- a/addons/base_setup/i18n/hr.po +++ b/addons/base_setup/i18n/hr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-17 20:31+0000\n" "Last-Translator: Goran Kliska \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: 2012-12-18 05:00+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" "Language: hr\n" #. module: base_setup @@ -58,6 +58,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -115,16 +120,16 @@ msgstr "Dozvoli uvoz podataka iz CSV datoteka" msgid "Manage multiple companies" msgstr "Više organizacija (tvrtki)" -#. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." -msgstr "Dozvoli kupcima i dobavljačima pristup relevantnim dokumentima." - #. module: base_setup #: view:sale.config.settings:0 msgid "On Mail Client" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" +msgstr "" + #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 msgid "Get contacts automatically from linkedIn" @@ -197,6 +202,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -214,6 +227,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "Koji temin želite koristiti za kupce" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -225,7 +251,7 @@ msgid "Client" msgstr "Klijent" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "Dozvoli javni dio OpenERP-a. Vaš OpenERP postaje javna web stranica." @@ -276,8 +302,16 @@ msgstr "Opcije" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" -msgstr "Activiraj portal kupcima/dobavljačima" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." +msgstr "" #. module: base_setup #: field:base.config.settings,module_share:0 @@ -285,7 +319,12 @@ msgid "Allow documents sharing" msgstr "Dozvoli dijeljenje dokumenata" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "Aktiviraj javni portal" @@ -299,6 +338,11 @@ msgstr "" msgid "Social Network Integration" msgstr "Integracija društvenih mreža" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/hu.po b/addons/base_setup/i18n/hu.po index d03df0038ed..958683f4227 100644 --- a/addons/base_setup/i18n/hu.po +++ b/addons/base_setup/i18n/hu.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-11-07 12:54+0000\n" "Last-Translator: Krisztian Eyssen \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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -55,6 +55,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -113,13 +118,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -194,6 +199,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -211,6 +224,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -222,7 +248,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -273,7 +299,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -282,7 +316,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -296,6 +335,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/id.po b/addons/base_setup/i18n/id.po index 04f6e566203..d446e92aebd 100644 --- a/addons/base_setup/i18n/id.po +++ b/addons/base_setup/i18n/id.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-05-28 02:39+0000\n" "Last-Translator: Abdul Munif Hanafi \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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -55,6 +55,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -113,13 +118,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -196,6 +201,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -213,6 +226,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "Bagaimana anda menghubungi Pelanggan" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -224,7 +250,7 @@ msgid "Client" msgstr "Klien" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -275,7 +301,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -284,7 +318,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -298,6 +337,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/it.po b/addons/base_setup/i18n/it.po index 938d5292088..383448fb18e 100644 --- a/addons/base_setup/i18n/it.po +++ b/addons/base_setup/i18n/it.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-15 11:58+0000\n" "Last-Translator: Nicola Riolini - Micronaet \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: 2012-12-16 04:46+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -64,6 +64,11 @@ msgstr "" "specifici\n" "plugin for il vostro client di posta preferito." +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -121,17 +126,16 @@ msgstr "Permetti agli utenti di importare dati da file CSV" msgid "Manage multiple companies" msgstr "Gestione multi aziendale" -#. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." -msgstr "" -"Fornisce l'accesso, ai vostri fornitori e clienti, ai propri documenti." - #. module: base_setup #: view:sale.config.settings:0 msgid "On Mail Client" msgstr "Su client email" +#. module: base_setup +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" +msgstr "" + #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 msgid "Get contacts automatically from linkedIn" @@ -211,6 +215,14 @@ msgstr "" "appropriate tra le aziende.\n" "Installa il modulo multi_company." +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -230,6 +242,19 @@ msgstr "sale.config.settings" msgid "How do you call a Customer" msgstr "Come chiamate un cliente" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -241,7 +266,7 @@ msgid "Client" msgstr "Cliente" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" "Abilità l'accesso pubblico ad openerp, openerp diventa un sito web pubblico." @@ -306,8 +331,16 @@ msgstr "Opzioni" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" -msgstr "Attiva il portale clienti/fornitori" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." +msgstr "" #. module: base_setup #: field:base.config.settings,module_share:0 @@ -315,7 +348,12 @@ msgid "Allow documents sharing" msgstr "Abilita la condivisione documenti" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "Attiva il portale pubblico" @@ -329,6 +367,11 @@ msgstr "Configura email server in uscita" msgid "Social Network Integration" msgstr "Integrazione social network" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ja.po b/addons/base_setup/i18n/ja.po index 24dfa076e3f..4e59a8a5608 100644 --- a/addons/base_setup/i18n/ja.po +++ b/addons/base_setup/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-07-28 21:52+0000\n" "Last-Translator: Akira Hiyama \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -195,6 +200,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -212,6 +225,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "どのように顧客を呼びますか" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -223,7 +249,7 @@ msgid "Client" msgstr "顧客" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -274,7 +300,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -283,7 +317,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -297,6 +336,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ko.po b/addons/base_setup/i18n/ko.po index abf3079a9dc..3ca7f16f709 100644 --- a/addons/base_setup/i18n/ko.po +++ b/addons/base_setup/i18n/ko.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-09-08 12:19+0000\n" "Last-Translator: ekodaq \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -195,6 +200,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -212,6 +225,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -223,7 +249,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -274,7 +300,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -283,7 +317,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -297,6 +336,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/lt.po b/addons/base_setup/i18n/lt.po index c82a359283d..75d97d117b9 100644 --- a/addons/base_setup/i18n/lt.po +++ b/addons/base_setup/i18n/lt.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-12-15 18:45+0000\n" "Last-Translator: Donatas Stonys Blue Whale SEO \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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -55,6 +55,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -113,13 +118,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -194,6 +199,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -211,6 +224,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -222,7 +248,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -273,7 +299,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -282,7 +316,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -296,6 +335,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/lv.po b/addons/base_setup/i18n/lv.po index 5acca1abe8d..44203d52bd3 100644 --- a/addons/base_setup/i18n/lv.po +++ b/addons/base_setup/i18n/lv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-11-30 14:24+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -195,6 +200,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -212,6 +225,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -223,7 +249,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -274,7 +300,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -283,7 +317,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -297,6 +336,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/mn.po b/addons/base_setup/i18n/mn.po index a6f60f9876a..fc37289ced9 100644 --- a/addons/base_setup/i18n/mn.po +++ b/addons/base_setup/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-11-07 12:43+0000\n" "Last-Translator: OpenERP Administrators \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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -197,6 +202,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -214,6 +227,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "Захиалагчийг та юу гэж дууддаг вэ?" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -225,7 +251,7 @@ msgid "Client" msgstr "Клиент" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -276,7 +302,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -285,7 +319,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -299,6 +338,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/nb.po b/addons/base_setup/i18n/nb.po index 977b41f6e69..87776807526 100644 --- a/addons/base_setup/i18n/nb.po +++ b/addons/base_setup/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 14:32+0000\n" "Last-Translator: Kaare Pettersen \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:39+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -58,6 +58,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -115,16 +120,16 @@ msgstr "Tillater brukere å importere data fra CSV-filer." msgid "Manage multiple companies" msgstr "Administrere flere selskaper." -#. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." -msgstr "Gi tilgang til kunder og leverandører til sine dokumenter." - #. module: base_setup #: view:sale.config.settings:0 msgid "On Mail Client" msgstr "På Mail klient." +#. module: base_setup +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" +msgstr "" + #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 msgid "Get contacts automatically from linkedIn" @@ -201,6 +206,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -220,6 +233,19 @@ msgstr "Salg.konfigurasjon.innstilling." msgid "How do you call a Customer" msgstr "Hvordan ringer du en kunde" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -231,7 +257,7 @@ msgid "Client" msgstr "Klient" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" "Aktiver den offentlige delen av openerp, openerp blir et offentlig nettsted." @@ -283,8 +309,16 @@ msgstr "Alternativer." #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" -msgstr "Aktiver kunde / leverandør portal." +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." +msgstr "" #. module: base_setup #: field:base.config.settings,module_share:0 @@ -292,7 +326,12 @@ msgid "Allow documents sharing" msgstr "Tillate å dele dokumenter." #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "Aktiver den offentlige portalen." @@ -306,6 +345,11 @@ msgstr "Konfigurer utgående e-post servere." msgid "Social Network Integration" msgstr "Sosialt nettverk Integrering." +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/nl.po b/addons/base_setup/i18n/nl.po index 19bcbbe8839..dd254461e40 100644 --- a/addons/base_setup/i18n/nl.po +++ b/addons/base_setup/i18n/nl.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-09 18:22+0000\n" "Last-Translator: Leen Sonneveld \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: 2012-12-10 04:37+0000\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:27+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "Beheer meerdere bedrijven" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -197,6 +202,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -214,6 +227,19 @@ msgstr "sale.config.settings" msgid "How do you call a Customer" msgstr "Hoe belt u een klant" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -225,7 +251,7 @@ msgid "Client" msgstr "Client" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -276,8 +302,16 @@ msgstr "Opties" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" -msgstr "Activeer de klant/leverancier portaal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." +msgstr "" #. module: base_setup #: field:base.config.settings,module_share:0 @@ -285,7 +319,12 @@ msgid "Allow documents sharing" msgstr "Staa documentdelen toe" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "Activeer het publieke portaal" @@ -299,6 +338,11 @@ msgstr "Uitgaande e-mail servers instellen" msgid "Social Network Integration" msgstr "Sociale netwerken intergratie" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/nl_BE.po b/addons/base_setup/i18n/nl_BE.po index 927be2eb95e..ac59db37916 100644 --- a/addons/base_setup/i18n/nl_BE.po +++ b/addons/base_setup/i18n/nl_BE.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-10-01 11:22+0000\n" "Last-Translator: Els Van Vossel (Agaplan) \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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -55,6 +55,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -113,13 +118,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -196,6 +201,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -213,6 +226,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "Hoe wordt een klant bij u genoemd?" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -224,7 +250,7 @@ msgid "Client" msgstr "Cliënt" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -275,7 +301,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -284,7 +318,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -298,6 +337,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/pl.po b/addons/base_setup/i18n/pl.po index f89629ab307..d53949bad67 100644 --- a/addons/base_setup/i18n/pl.po +++ b/addons/base_setup/i18n/pl.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-14 12:01+0000\n" "Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \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: 2012-12-15 05:04+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -65,6 +65,11 @@ msgstr "" "możesz przekazywać\n" " maile z aplikacji do OpenERP przy użyciu wtyczek." +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -122,16 +127,16 @@ msgstr "Pozwala importować dane z pliku CSV" msgid "Manage multiple companies" msgstr "Obsługuj kilka firm" -#. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." -msgstr "Udostępnia dokumenty klientom i dostawcom" - #. module: base_setup #: view:sale.config.settings:0 msgid "On Mail Client" msgstr "W aplikacji mailowej" +#. module: base_setup +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" +msgstr "" + #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 msgid "Get contacts automatically from linkedIn" @@ -206,6 +211,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -223,6 +236,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "Jak nazywasz klienta" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -234,7 +260,7 @@ msgid "Client" msgstr "Klient" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "Włącz część publiczną openerp. Openerp stanie się publiczną witryną." @@ -285,8 +311,16 @@ msgstr "Opcje" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" -msgstr "Aktywuj portal klienta/dostawcy" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." +msgstr "" #. module: base_setup #: field:base.config.settings,module_share:0 @@ -294,7 +328,12 @@ msgid "Allow documents sharing" msgstr "Pozwalaj na współdzielenie dokumentów" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "Aktywuj portal publiczny" @@ -308,6 +347,11 @@ msgstr "Konfiguruj serwery poczty wychodzącej" msgid "Social Network Integration" msgstr "Integracja z portalami społecznościowymi" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/pt.po b/addons/base_setup/i18n/pt.po index a0139638ab2..8a2388e7e7f 100644 --- a/addons/base_setup/i18n/pt.po +++ b/addons/base_setup/i18n/pt.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-17 14:06+0000\n" "Last-Translator: Rui Franco (multibase.pt) \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: 2012-12-18 05:00+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -55,6 +55,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -113,13 +118,13 @@ msgid "Manage multiple companies" msgstr "Gerir várias empresas" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -196,6 +201,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -213,6 +226,19 @@ msgstr "sale.config.settings" msgid "How do you call a Customer" msgstr "Como vai chamar o cliente" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -224,7 +250,7 @@ msgid "Client" msgstr "Cliente" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -275,7 +301,15 @@ msgstr "Opções" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -284,7 +318,12 @@ msgid "Allow documents sharing" msgstr "Permitir a partilha de documentos" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -298,6 +337,11 @@ msgstr "" msgid "Social Network Integration" msgstr "Integração com redes sociais" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/pt_BR.po b/addons/base_setup/i18n/pt_BR.po index 71590a0bd33..e5f03ed3541 100644 --- a/addons/base_setup/i18n/pt_BR.po +++ b/addons/base_setup/i18n/pt_BR.po @@ -6,16 +6,16 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-12-16 23:13+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-22 01:12+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " "\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: 2012-12-18 05:00+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-23 04:40+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -65,6 +65,11 @@ msgstr "" "                             específicos para o seu aplicativo de e-mail " "preferido." +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "VENDA" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -122,17 +127,16 @@ msgstr "Permite a usuários importar dados de arquivos CSV" msgid "Manage multiple companies" msgstr "Gerenciar múltiplas Empresas" -#. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." -msgstr "" -"Dá acesso a seus clientes e fornecedores aos seus respectivos documentos." - #. module: base_setup #: view:sale.config.settings:0 msgid "On Mail Client" msgstr "No Cliente de Email" +#. module: base_setup +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" +msgstr "--db-filter=SUA_DATABASE" + #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 msgid "Get contacts automatically from linkedIn" @@ -212,6 +216,18 @@ msgstr "" "entre as empresas.\n" "Isso instala o módulo multi_company." +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" +"O portal público é acessível apenas se você estiver em um modo único banco " +"de dados. você pode\n" +"                                     iniciar o servidor OpenERP com esta " +"opção" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -231,6 +247,26 @@ msgstr "sale.config.settings" msgid "How do you call a Customer" msgstr "Como você chama um Cliente" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" +"Quando você enviar um documento para um cliente\n" +"                                     (fatura, cotação), seu cliente será\n" +"                                     capaz de se inscrever para obter todos " +"os seus documentos,\n" +"                                     ler as notícias da empresa, verificar " +"seus projetos,\n" +"                                     etc" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -242,7 +278,7 @@ msgid "Client" msgstr "Cliente" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" "Habilita a parte pública do OpenERP, OpenERP torna-se um site público." @@ -308,8 +344,19 @@ msgstr "Opções" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" -msgstr "Ativar o portal do cliente / fornecedor" +msgid "Activate the customer portal" +msgstr "Ativar o Portal de Cliente" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." +msgstr "" +"ao fazê-lo.\n" +"                                     Uma vez ativada, a página de login será " +"substituído pelo site público." #. module: base_setup #: field:base.config.settings,module_share:0 @@ -317,7 +364,12 @@ msgid "Allow documents sharing" msgstr "Permite compartilhar documentos" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "(notícias da empresa, trabalhos, formulário de contato, etc)" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "Ativar o portal público" @@ -331,6 +383,11 @@ msgstr "Configurar servidor de email para saida" msgid "Social Network Integration" msgstr "Integração com redes sociais" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "Dê a seus clientes o acesso a seus documentos." + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ro.po b/addons/base_setup/i18n/ro.po index dabeb7c7dc8..232e3dcd9fb 100644 --- a/addons/base_setup/i18n/ro.po +++ b/addons/base_setup/i18n/ro.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-11-07 12:48+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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -55,6 +55,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -113,13 +118,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -196,6 +201,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -213,6 +226,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "Cum sunati un Client" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -224,7 +250,7 @@ msgid "Client" msgstr "Client" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -275,7 +301,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -284,7 +318,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -298,6 +337,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ru.po b/addons/base_setup/i18n/ru.po index 50840be692b..5e3433cbfbf 100644 --- a/addons/base_setup/i18n/ru.po +++ b/addons/base_setup/i18n/ru.po @@ -6,20 +6,20 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-08-30 17:01+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-28 10:09+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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-29 05:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 msgid "Emails Integration" -msgstr "" +msgstr "Интеграция эл. почты" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -29,12 +29,12 @@ msgstr "Гость" #. module: base_setup #: view:sale.config.settings:0 msgid "Contacts" -msgstr "" +msgstr "Контакты" #. module: base_setup #: model:ir.model,name:base_setup.model_base_config_settings msgid "base.config.settings" -msgstr "" +msgstr "base.config.settings" #. module: base_setup #: field:base.config.settings,module_auth_oauth:0 @@ -55,6 +55,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -68,19 +73,19 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Authentication" -msgstr "" +msgstr "Авторизация" #. module: base_setup #: view:sale.config.settings:0 msgid "Quotations and Sales Orders" -msgstr "" +msgstr "Предложения и заказы продаж" #. module: base_setup #: view:base.config.settings:0 #: model:ir.actions.act_window,name:base_setup.action_general_configuration #: model:ir.ui.menu,name:base_setup.menu_general_configuration msgid "General Settings" -msgstr "" +msgstr "Общие настройки" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -90,47 +95,47 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Email" -msgstr "" +msgstr "Эл. почта" #. module: base_setup #: field:sale.config.settings,module_crm:0 msgid "CRM" -msgstr "" +msgstr "CRM" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Patient" -msgstr "" +msgstr "Пациент" #. module: base_setup #: field:base.config.settings,module_base_import:0 msgid "Allow users to import data from CSV files" -msgstr "" +msgstr "Позволяет пользователям импортировать данные из файлов CSV" #. module: base_setup #: field:base.config.settings,module_multi_company:0 msgid "Manage multiple companies" -msgstr "" - -#. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." -msgstr "" +msgstr "Управление несколькими компаниями" #. module: base_setup #: view:sale.config.settings:0 msgid "On Mail Client" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" +msgstr "--db-filter=YOUR_DATABAE" + #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 msgid "Get contacts automatically from linkedIn" -msgstr "" +msgstr "Получить контакты автоматически из LinkedIn" #. module: base_setup #: field:sale.config.settings,module_plugin_thunderbird:0 msgid "Enable Thunderbird plug-in" -msgstr "" +msgstr "Включить плагин Thunderbird" #. module: base_setup #: view:base.setup.terminology:0 @@ -145,7 +150,7 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Import / Export" -msgstr "" +msgstr "Импорт / Экспорт" #. module: base_setup #: view:sale.config.settings:0 @@ -155,7 +160,7 @@ msgstr "" #. module: base_setup #: field:sale.config.settings,module_plugin_outlook:0 msgid "Enable Outlook plug-in" -msgstr "" +msgstr "Включить плагин Outlook" #. module: base_setup #: view:base.setup.terminology:0 @@ -163,6 +168,8 @@ msgid "" "You can use this wizard to change the terminologies for customers in the " "whole application." msgstr "" +"Вы можете использовать этот мастер чтобы изменить терминологию для " +"заказчиков во всем приложении." #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -172,7 +179,7 @@ msgstr "Арендатор" #. module: base_setup #: help:base.config.settings,module_share:0 msgid "Share or embbed any screen of openerp." -msgstr "" +msgstr "Поделиться или вставить любой экран OpenERP" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -194,6 +201,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -211,6 +226,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "Как вы называете заказчика" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -222,7 +250,7 @@ msgid "Client" msgstr "Клиент" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -273,7 +301,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -282,7 +318,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -296,6 +337,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sk.po b/addons/base_setup/i18n/sk.po index fd7e70cab98..d1fdebebeff 100644 --- a/addons/base_setup/i18n/sk.po +++ b/addons/base_setup/i18n/sk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 03:13+0000\n" "Last-Translator: Peter Kohaut \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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -195,6 +200,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -212,6 +225,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -223,7 +249,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -274,7 +300,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -283,7 +317,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -297,6 +336,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sl.po b/addons/base_setup/i18n/sl.po index 422a940d34e..b2ff0a0cf4e 100644 --- a/addons/base_setup/i18n/sl.po +++ b/addons/base_setup/i18n/sl.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-11-17 08:51+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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -55,6 +55,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -113,13 +118,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -194,6 +199,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -213,6 +226,19 @@ msgstr "" "Kateri izraz želite uporabljati za kupce (stranka,kupec,poslovni partner " "...) ?" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -224,7 +250,7 @@ msgid "Client" msgstr "Odjemalec" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -276,7 +302,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -285,7 +319,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -299,6 +338,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sq.po b/addons/base_setup/i18n/sq.po index 578b8a4addf..e30b3ad6e68 100644 --- a/addons/base_setup/i18n/sq.po +++ b/addons/base_setup/i18n/sq.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-12-29 15:30+0000\n" "Last-Translator: FULL NAME \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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:27+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -195,6 +200,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -212,6 +225,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -223,7 +249,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -274,7 +300,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -283,7 +317,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -297,6 +336,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sr.po b/addons/base_setup/i18n/sr.po index 84a51b5bde2..fe49cc0fdc2 100644 --- a/addons/base_setup/i18n/sr.po +++ b/addons/base_setup/i18n/sr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-11-07 12:51+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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -195,6 +200,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -212,6 +225,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -223,7 +249,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -274,7 +300,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -283,7 +317,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -297,6 +336,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sr@latin.po b/addons/base_setup/i18n/sr@latin.po index 9af25a2e83b..d11367c98a5 100644 --- a/addons/base_setup/i18n/sr@latin.po +++ b/addons/base_setup/i18n/sr@latin.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-11-07 12:59+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Serbian latin \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -197,6 +202,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -214,6 +227,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "Koji temin želite koristiti za kupce" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -225,7 +251,7 @@ msgid "Client" msgstr "klijent" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -276,7 +302,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -285,7 +319,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -299,6 +338,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sv.po b/addons/base_setup/i18n/sv.po index df2bba819e0..4219becd333 100644 --- a/addons/base_setup/i18n/sv.po +++ b/addons/base_setup/i18n/sv.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.14\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-11-07 12:56+0000\n" "Last-Translator: Anders Wallenquist \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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -55,6 +55,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -113,13 +118,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -195,6 +200,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -212,6 +225,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "Hur kontaktar du en kund" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -223,7 +249,7 @@ msgid "Client" msgstr "Klient" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -274,7 +300,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -283,7 +317,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -297,6 +336,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/th.po b/addons/base_setup/i18n/th.po index eec37efed49..3a227b52168 100644 --- a/addons/base_setup/i18n/th.po +++ b/addons/base_setup/i18n/th.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-15 08:18+0000\n" "Last-Translator: Rungsan Suyala \n" "Language-Team: Thai \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -195,6 +200,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -212,6 +225,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -223,7 +249,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -274,7 +300,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -283,7 +317,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -297,6 +336,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/tlh.po b/addons/base_setup/i18n/tlh.po index c8fea321ce2..54bb0d71eec 100644 --- a/addons/base_setup/i18n/tlh.po +++ b/addons/base_setup/i18n/tlh.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-02-03 06:25+0000\n" "Last-Translator: <>\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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -55,6 +55,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -113,13 +118,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -194,6 +199,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -211,6 +224,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -222,7 +248,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -273,7 +299,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -282,7 +316,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -296,6 +335,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/tr.po b/addons/base_setup/i18n/tr.po index f532ab1952d..93eb1ee680d 100644 --- a/addons/base_setup/i18n/tr.po +++ b/addons/base_setup/i18n/tr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-01-23 21:47+0000\n" "Last-Translator: Ahmet Altınışık \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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -55,6 +55,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -113,13 +118,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -196,6 +201,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -213,6 +226,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "Müşterilerinize ne isim veriyorsunuz ?" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -224,7 +250,7 @@ msgid "Client" msgstr "Müşteri" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -275,7 +301,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -284,7 +318,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -298,6 +337,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/uk.po b/addons/base_setup/i18n/uk.po index a51636ec61f..baf1252a599 100644 --- a/addons/base_setup/i18n/uk.po +++ b/addons/base_setup/i18n/uk.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-09-08 16:18+0000\n" "Last-Translator: Eugene Babiy \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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -55,6 +55,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -113,13 +118,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -194,6 +199,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -211,6 +224,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -222,7 +248,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -273,7 +299,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -282,7 +316,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -296,6 +335,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/vi.po b/addons/base_setup/i18n/vi.po index 310bf57868f..d72bdc69cbd 100644 --- a/addons/base_setup/i18n/vi.po +++ b/addons/base_setup/i18n/vi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-11-07 12:42+0000\n" "Last-Translator: OpenERP Administrators \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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -56,6 +56,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -114,13 +119,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -195,6 +200,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -212,6 +225,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -223,7 +249,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -274,7 +300,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -283,7 +317,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -297,6 +336,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/zh_CN.po b/addons/base_setup/i18n/zh_CN.po index 5c119e20a9e..72a8f8fd78e 100644 --- a/addons/base_setup/i18n/zh_CN.po +++ b/addons/base_setup/i18n/zh_CN.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-12-14 13:52+0000\n" -"Last-Translator: ccdos \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-22 04:14+0000\n" +"Last-Translator: 盈通 ccdos \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: 2012-12-15 05:04+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-23 04:40+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -60,6 +60,11 @@ msgstr "" " 或者通过插件,为你首选的Email 程序手动推送\n" " email到Openerp。" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "销售" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -117,16 +122,16 @@ msgstr "允许导入CSV数据" msgid "Manage multiple companies" msgstr "允许多公司操作" -#. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." -msgstr "允许客户或者供应商访问他们的单据" - #. module: base_setup #: view:sale.config.settings:0 msgid "On Mail Client" msgstr "在邮件客户端" +#. module: base_setup +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" +msgstr "--db-filter=YOUR_DATABAE" + #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 msgid "Get contacts automatically from linkedIn" @@ -201,6 +206,14 @@ msgstr "" "工作在多公司环境,公司之间适当地安全访问\n" " 为此安装模块multi_company。" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "只用当你在 单数据库 模式时,公共门户才是可以访问的。你能用此选项运行 OpenERP服务器。" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -218,6 +231,19 @@ msgstr "sale.config.settings" msgid "How do you call a Customer" msgstr "你如何称呼您的客户" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "当你发送单据给客户(报价单,发票),你的可能能登录,获取他单据,阅读你的公司新闻,检查他的项目等。" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -229,7 +255,7 @@ msgid "Client" msgstr "客户" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "启用Openerp的公共部分,Openerp成为一个公共的web站点" @@ -286,8 +312,16 @@ msgstr "选项" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" -msgstr "开启合作伙伴Portal" +msgid "Activate the customer portal" +msgstr "激活客户门户" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." +msgstr "这样做了,一旦激活,登录页面将被公共web站点替换。" #. module: base_setup #: field:base.config.settings,module_share:0 @@ -295,7 +329,12 @@ msgid "Allow documents sharing" msgstr "允许分享单据" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "(公司新闻,工作,联系人表单 等)" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "启用公共门户" @@ -309,6 +348,11 @@ msgstr "配置邮箱发件服务器" msgid "Social Network Integration" msgstr "集成社交网络" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "让你的客户访问他们的单据" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/zh_TW.po b/addons/base_setup/i18n/zh_TW.po index f10b185c8ee..9aa1e4fc823 100644 --- a/addons/base_setup/i18n/zh_TW.po +++ b/addons/base_setup/i18n/zh_TW.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-11-07 12:53+0000\n" "Last-Translator: Walter Cheuk \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: 2012-11-25 05:52+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:28+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -55,6 +55,11 @@ msgid "" " plugins for your preferred email application." msgstr "" +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "" + #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" @@ -113,13 +118,13 @@ msgid "Manage multiple companies" msgstr "" #. module: base_setup -#: help:base.config.settings,module_portal:0 -msgid "Give access your customers and suppliers to their documents." +#: view:sale.config.settings:0 +msgid "On Mail Client" msgstr "" #. module: base_setup -#: view:sale.config.settings:0 -msgid "On Mail Client" +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" msgstr "" #. module: base_setup @@ -194,6 +199,14 @@ msgid "" " This installs the module multi_company." msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" + #. module: base_setup #: view:base.config.settings:0 msgid "" @@ -211,6 +224,19 @@ msgstr "" msgid "How do you call a Customer" msgstr "" +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" + #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" @@ -222,7 +248,7 @@ msgid "Client" msgstr "" #. module: base_setup -#: help:base.config.settings,module_auth_anonymous:0 +#: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" @@ -273,7 +299,15 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_portal:0 -msgid "Activate the customer/supplier portal" +msgid "Activate the customer portal" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." msgstr "" #. module: base_setup @@ -282,7 +316,12 @@ msgid "Allow documents sharing" msgstr "" #. module: base_setup -#: field:base.config.settings,module_auth_anonymous:0 +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" msgstr "" @@ -296,6 +335,11 @@ msgstr "" msgid "Social Network Integration" msgstr "" +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "" + #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 diff --git a/addons/base_status/base_stage.py b/addons/base_status/base_stage.py index afe753ebdab..edf9db166af 100644 --- a/addons/base_status/base_stage.py +++ b/addons/base_status/base_stage.py @@ -150,7 +150,6 @@ class base_stage(object): if hasattr(self, 'onchange_stage_id'): value = self.onchange_stage_id(cr, uid, ids, stage_id, context=context)['value'] value['stage_id'] = stage_id - self.stage_set_send_note(cr, uid, ids, stage_id, context=context) return self.write(cr, uid, ids, value, context=context) def stage_change(self, cr, uid, ids, op, order, context=None): @@ -210,7 +209,6 @@ class base_stage(object): else: raise osv.except_osv(_('Error!'), _("You are already at the top level of your sales-team category.\nTherefore you cannot escalate furthermore.")) self.write(cr, uid, [case.id], data, context=context) - case.case_escalate_send_note(case.section_id.parent_id, context=context) return True def case_open(self, cr, uid, ids, context=None): @@ -221,32 +219,23 @@ class base_stage(object): if not case.user_id: data['user_id'] = uid self.case_set(cr, uid, [case.id], 'open', data, context=context) - self.case_open_send_note(cr, uid, [case.id], context=context) return True def case_close(self, cr, uid, ids, context=None): """ Closes case """ - self.case_set(cr, uid, ids, 'done', {'active': True, 'date_closed': fields.datetime.now()}, context=context) - self.case_close_send_note(cr, uid, ids, context=context) - return True + return self.case_set(cr, uid, ids, 'done', {'active': True, 'date_closed': fields.datetime.now()}, context=context) def case_cancel(self, cr, uid, ids, context=None): """ Cancels case """ - self.case_set(cr, uid, ids, 'cancel', {'active': True}, context=context) - self.case_cancel_send_note(cr, uid, ids, context=context) - return True + return self.case_set(cr, uid, ids, 'cancel', {'active': True}, context=context) def case_pending(self, cr, uid, ids, context=None): """ Set case as pending """ - self.case_set(cr, uid, ids, 'pending', {'active': True}, context=context) - self.case_pending_send_note(cr, uid, ids, context=context) - return True + return self.case_set(cr, uid, ids, 'pending', {'active': True}, context=context) def case_reset(self, cr, uid, ids, context=None): """ Resets case as draft """ - self.case_set(cr, uid, ids, 'draft', {'active': True}, context=context) - self.case_reset_send_note(cr, uid, ids, context=context) - return True + return self.case_set(cr, uid, ids, 'draft', {'active': True}, context=context) def case_set(self, cr, uid, ids, new_state_name=None, values_to_update=None, new_stage_id=None, context=None): """ Generic method for setting case. This methods wraps the update @@ -273,89 +262,3 @@ class base_stage(object): if values_to_update: self.write(cr, uid, ids, values_to_update, context=context) return True - - def write(self, cr, uid, ids, vals, context=None): - res = super(base_stage,self).write(cr, uid, ids, vals, context) - if vals.get('stage_id'): - for case in self.browse(cr, uid, ids, context=context): - self._action(cr, uid, case, case.stage_id.state, context=context) - return res - - def _action(self, cr, uid, cases, state_to, scrit=None, context=None): - if context is None: - context = {} - context['state_to'] = state_to - rule_obj = self.pool.get('base.action.rule') - if not rule_obj: - return True - model_obj = self.pool.get('ir.model') - model_ids = model_obj.search(cr, uid, [('model','=',self._name)], context=context) - rule_ids = rule_obj.search(cr, uid, [('model_id','=',model_ids[0])], context=context) - return rule_obj._action(cr, uid, rule_ids, cases, scrit=scrit, context=context) - - - def _check(self, cr, uid, ids=False, context=None): - """ Function called by the scheduler to process cases for date actions. - Must be overriden by inheriting classes. - """ - return True - - # ****************************** - # Notifications - # ****************************** - - def case_get_note_msg_prefix(self, cr, uid, id, context=None): - """ Default prefix for notifications. For example: "%s has been - closed.". As several models will inherit from base_stage, - this method returns a void string. Class using base_stage - will have to override this method to define the prefix they - want to display. - """ - return '' - - def stage_set_send_note(self, cr, uid, ids, stage_id, context=None): - """ Send a notification when the stage changes. This method has - to be overriden, because each document will have its particular - behavior and/or stage model (such as project.task.type or - crm.case.stage). - """ - return True - - def case_open_send_note(self, cr, uid, ids, context=None): - for id in ids: - msg = _('%s has been opened.') % (self.case_get_note_msg_prefix(cr, uid, id, context=context)) - self.message_post(cr, uid, [id], body=msg, context=context) - return True - - def case_close_send_note(self, cr, uid, ids, context=None): - for id in ids: - msg = _('%s has been closed.') % (self.case_get_note_msg_prefix(cr, uid, id, context=context)) - self.message_post(cr, uid, [id], body=msg, context=context) - return True - - def case_cancel_send_note(self, cr, uid, ids, context=None): - for id in ids: - msg = _('%s has been cancelled.') % (self.case_get_note_msg_prefix(cr, uid, id, context=context)) - self.message_post(cr, uid, [id], body=msg, context=context) - return True - - def case_pending_send_note(self, cr, uid, ids, context=None): - for id in ids: - msg = _('%s is now pending.') % (self.case_get_note_msg_prefix(cr, uid, id, context=context)) - self.message_post(cr, uid, [id], body=msg, context=context) - return True - - def case_reset_send_note(self, cr, uid, ids, context=None): - for id in ids: - msg = _('%s has been renewed.') % (self.case_get_note_msg_prefix(cr, uid, id, context=context)) - self.message_post(cr, uid, [id], body=msg, context=context) - return True - - def case_escalate_send_note(self, cr, uid, ids, new_section=None, context=None): - for id in ids: - if new_section: - msg = '%s has been escalated to %s.' % (self.case_get_note_msg_prefix(cr, uid, id, context=context), new_section.name) - else: - msg = '%s has been escalated.' % (self.case_get_note_msg_prefix(cr, uid, id, context=context)) - self.message_post(cr, uid, [id], body=msg, context=context) - return True diff --git a/addons/base_status/base_state.py b/addons/base_status/base_state.py index 0fb458bd13b..b856bbd74ad 100644 --- a/addons/base_status/base_state.py +++ b/addons/base_status/base_state.py @@ -107,7 +107,6 @@ class base_state(object): raise osv.except_osv(_('Error !'), _('You can not escalate, you are already at the top level regarding your sales-team category.')) self.write(cr, uid, [case.id], data, context=context) case.case_escalate_send_note(parent_id, context=context) - self._action(cr, uid, cases, 'escalate', context=context) return True def case_open(self, cr, uid, ids, context=None): @@ -120,39 +119,30 @@ class base_state(object): if not case.user_id: values['user_id'] = uid self.case_set(cr, uid, [case.id], 'open', values, context=context) - self.case_open_send_note(cr, uid, [case.id], context=context) return True def case_close(self, cr, uid, ids, context=None): """ Closes case """ - self.case_set(cr, uid, ids, 'done', {'date_closed': fields.datetime.now()}, context=context) - self.case_close_send_note(cr, uid, ids, context=context) - return True + return self.case_set(cr, uid, ids, 'done', {'date_closed': fields.datetime.now()}, context=context) def case_cancel(self, cr, uid, ids, context=None): """ Cancels case """ - self.case_set(cr, uid, ids, 'cancel', {'active': True}, context=context) - self.case_cancel_send_note(cr, uid, ids, context=context) - return True + return self.case_set(cr, uid, ids, 'cancel', {'active': True}, context=context) def case_pending(self, cr, uid, ids, context=None): """ Sets case as pending """ - self.case_set(cr, uid, ids, 'pending', {'active': True}, context=context) - self.case_pending_send_note(cr, uid, ids, context=context) - return True + return self.case_set(cr, uid, ids, 'pending', {'active': True}, context=context) def case_reset(self, cr, uid, ids, context=None): """ Resets case as draft """ - self.case_set(cr, uid, ids, 'draft', {'active': True}, context=context) - self.case_reset_send_note(cr, uid, ids, context=context) - return True - + return self.case_set(cr, uid, ids, 'draft', {'active': True}, context=context) + def case_set(self, cr, uid, ids, state_name, update_values=None, context=None): """ Generic method for setting case. This methods wraps the update of the record, as well as call to _action and browse_record case setting to fill the cache. - - :params: state_name: the new value of the state, such as + + :params: state_name: the new value of the state, such as 'draft' or 'close'. :params: update_values: values that will be added with the state update when writing values to the record. @@ -162,18 +152,7 @@ class base_state(object): if update_values is None: update_values = {} update_values['state'] = state_name - self.write(cr, uid, ids, update_values, context=context) - self._action(cr, uid, cases, state_name, context=context) - - def _action(self, cr, uid, cases, state_to, scrit=None, context=None): - if context is None: - context = {} - context['state_to'] = state_to - rule_obj = self.pool.get('base.action.rule') - model_obj = self.pool.get('ir.model') - model_ids = model_obj.search(cr, uid, [('model','=',self._name)]) - rule_ids = rule_obj.search(cr, uid, [('model_id','=',model_ids[0])]) - return rule_obj._action(cr, uid, rule_ids, cases, scrit=scrit, context=context) + return self.write(cr, uid, ids, update_values, context=context) # ****************************** # Notifications diff --git a/addons/base_status/i18n/ar.po b/addons/base_status/i18n/ar.po index 7881b5ca00e..19f7b04217f 100644 --- a/addons/base_status/i18n/ar.po +++ b/addons/base_status/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-01 18:05+0000\n" "Last-Translator: gehad shaat \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: 2012-12-04 05:55+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 @@ -24,21 +24,19 @@ msgid "Error !" msgstr "خطأ !" #. module: base_status -#: code:addons/base_status/base_stage.py:326 -#: code:addons/base_status/base_state.py:187 +#: code:addons/base_status/base_state.py:166 #, python-format msgid "%s has been opened." msgstr "" #. module: base_status -#: code:addons/base_status/base_stage.py:350 -#: code:addons/base_status/base_state.py:220 +#: code:addons/base_status/base_state.py:199 #, python-format msgid "%s has been renewed." msgstr "" #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "Error!" msgstr "خطأ!" @@ -52,26 +50,19 @@ msgid "" msgstr "" #. module: base_status -#: code:addons/base_status/base_stage.py:344 -#: code:addons/base_status/base_state.py:214 +#: code:addons/base_status/base_state.py:193 #, python-format msgid "%s is now pending." msgstr "" #. module: base_status -#: code:addons/base_status/base_stage.py:338 -#, python-format -msgid "%s has been cancelled." -msgstr "" - -#. module: base_status -#: code:addons/base_status/base_state.py:208 +#: code:addons/base_status/base_state.py:187 #, python-format msgid "%s has been canceled." msgstr "" #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "" "You are already at the top level of your sales-team category.\n" @@ -79,8 +70,7 @@ msgid "" msgstr "" #. module: base_status -#: code:addons/base_status/base_stage.py:332 -#: code:addons/base_status/base_state.py:202 +#: code:addons/base_status/base_state.py:181 #, python-format msgid "%s has been closed." msgstr "" diff --git a/addons/base_status/i18n/base_status.pot b/addons/base_status/i18n/base_status.pot index 8f7a191533a..3805dd46ce9 100644 --- a/addons/base_status/i18n/base_status.pot +++ b/addons/base_status/i18n/base_status.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -22,21 +22,19 @@ msgid "Error !" msgstr "" #. module: base_status -#: code:addons/base_status/base_stage.py:326 -#: code:addons/base_status/base_state.py:187 +#: code:addons/base_status/base_state.py:166 #, python-format msgid "%s has been opened." msgstr "" #. module: base_status -#: code:addons/base_status/base_stage.py:350 -#: code:addons/base_status/base_state.py:220 +#: code:addons/base_status/base_state.py:199 #, python-format msgid "%s has been renewed." msgstr "" #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "Error!" msgstr "" @@ -48,34 +46,26 @@ msgid "You can not escalate, you are already at the top level regarding your sal msgstr "" #. module: base_status -#: code:addons/base_status/base_stage.py:344 -#: code:addons/base_status/base_state.py:214 +#: code:addons/base_status/base_state.py:193 #, python-format msgid "%s is now pending." msgstr "" #. module: base_status -#: code:addons/base_status/base_stage.py:338 -#, python-format -msgid "%s has been cancelled." -msgstr "" - -#. module: base_status -#: code:addons/base_status/base_state.py:208 +#: code:addons/base_status/base_state.py:187 #, python-format msgid "%s has been canceled." msgstr "" #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "You are already at the top level of your sales-team category.\n" "Therefore you cannot escalate furthermore." msgstr "" #. module: base_status -#: code:addons/base_status/base_stage.py:332 -#: code:addons/base_status/base_state.py:202 +#: code:addons/base_status/base_state.py:181 #, python-format msgid "%s has been closed." msgstr "" diff --git a/addons/base_status/i18n/de.po b/addons/base_status/i18n/de.po index e9c60fbfe9c..01e6ecee22d 100644 --- a/addons/base_status/i18n/de.po +++ b/addons/base_status/i18n/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-08 13:50+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-09 04:39+0000\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 @@ -25,21 +25,19 @@ msgid "Error !" msgstr "Fehler !" #. module: base_status -#: code:addons/base_status/base_stage.py:326 -#: code:addons/base_status/base_state.py:187 +#: code:addons/base_status/base_state.py:166 #, python-format msgid "%s has been opened." msgstr "%s wurde eröffnet." #. module: base_status -#: code:addons/base_status/base_stage.py:350 -#: code:addons/base_status/base_state.py:220 +#: code:addons/base_status/base_state.py:199 #, python-format msgid "%s has been renewed." msgstr "%s wurde erneuert." #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "Error!" msgstr "Fehler !" @@ -55,26 +53,19 @@ msgstr "" "haben." #. module: base_status -#: code:addons/base_status/base_stage.py:344 -#: code:addons/base_status/base_state.py:214 +#: code:addons/base_status/base_state.py:193 #, python-format msgid "%s is now pending." msgstr "%s wurde geändert auf Wiedervorlage." #. module: base_status -#: code:addons/base_status/base_stage.py:338 -#, python-format -msgid "%s has been cancelled." -msgstr "%s wurde abgebrochen." - -#. module: base_status -#: code:addons/base_status/base_state.py:208 +#: code:addons/base_status/base_state.py:187 #, python-format msgid "%s has been canceled." msgstr "%s wurde abgebrochen." #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "" "You are already at the top level of your sales-team category.\n" @@ -84,8 +75,7 @@ msgstr "" "haben." #. module: base_status -#: code:addons/base_status/base_stage.py:332 -#: code:addons/base_status/base_state.py:202 +#: code:addons/base_status/base_state.py:181 #, python-format msgid "%s has been closed." msgstr "%s wurde beendet." diff --git a/addons/base_status/i18n/es.po b/addons/base_status/i18n/es.po index b16f4fccede..bfcca7fb8fe 100644 --- a/addons/base_status/i18n/es.po +++ b/addons/base_status/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-10 22:19+0000\n" "Last-Translator: Ana Juaristi Olalde \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-11 04:49+0000\n" -"X-Generator: Launchpad (build 16356)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 @@ -24,21 +24,19 @@ msgid "Error !" msgstr "¡ Error !" #. module: base_status -#: code:addons/base_status/base_stage.py:326 -#: code:addons/base_status/base_state.py:187 +#: code:addons/base_status/base_state.py:166 #, python-format msgid "%s has been opened." msgstr "%s ha sido abierto." #. module: base_status -#: code:addons/base_status/base_stage.py:350 -#: code:addons/base_status/base_state.py:220 +#: code:addons/base_status/base_state.py:199 #, python-format msgid "%s has been renewed." msgstr "%s ha sido renovado." #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "Error!" msgstr "¡Error!" @@ -53,26 +51,19 @@ msgstr "" "No puede escalar, usted está en la categoría más alta de su equipo de ventas" #. module: base_status -#: code:addons/base_status/base_stage.py:344 -#: code:addons/base_status/base_state.py:214 +#: code:addons/base_status/base_state.py:193 #, python-format msgid "%s is now pending." msgstr "%s está ahora pendiente." #. module: base_status -#: code:addons/base_status/base_stage.py:338 -#, python-format -msgid "%s has been cancelled." -msgstr "%s ha sido cancelado." - -#. module: base_status -#: code:addons/base_status/base_state.py:208 +#: code:addons/base_status/base_state.py:187 #, python-format msgid "%s has been canceled." msgstr "%s ha sido cancelado." #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "" "You are already at the top level of your sales-team category.\n" @@ -82,8 +73,7 @@ msgstr "" "Por lo tanto no puede escalar más allá." #. module: base_status -#: code:addons/base_status/base_stage.py:332 -#: code:addons/base_status/base_state.py:202 +#: code:addons/base_status/base_state.py:181 #, python-format msgid "%s has been closed." msgstr "%s ha sido cerrado." diff --git a/addons/base_status/i18n/fr.po b/addons/base_status/i18n/fr.po index 6af7564047b..38a2f161f47 100644 --- a/addons/base_status/i18n/fr.po +++ b/addons/base_status/i18n/fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-05 09:30+0000\n" "Last-Translator: Numérigraphe \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-06 04:41+0000\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 @@ -24,21 +24,19 @@ msgid "Error !" msgstr "Erreur !" #. module: base_status -#: code:addons/base_status/base_stage.py:326 -#: code:addons/base_status/base_state.py:187 +#: code:addons/base_status/base_state.py:166 #, python-format msgid "%s has been opened." msgstr "%s a été ouverte." #. module: base_status -#: code:addons/base_status/base_stage.py:350 -#: code:addons/base_status/base_state.py:220 +#: code:addons/base_status/base_state.py:199 #, python-format msgid "%s has been renewed." msgstr "%s a été renouvelée." #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "Error!" msgstr "Erreur !" @@ -54,26 +52,19 @@ msgstr "" "possible dans votre catégorie d'équipes de ventes." #. module: base_status -#: code:addons/base_status/base_stage.py:344 -#: code:addons/base_status/base_state.py:214 +#: code:addons/base_status/base_state.py:193 #, python-format msgid "%s is now pending." msgstr "%s est maintenant en attente." #. module: base_status -#: code:addons/base_status/base_stage.py:338 -#, python-format -msgid "%s has been cancelled." -msgstr "%s à été annulée." - -#. module: base_status -#: code:addons/base_status/base_state.py:208 +#: code:addons/base_status/base_state.py:187 #, python-format msgid "%s has been canceled." msgstr "%s à été annulée." #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "" "You are already at the top level of your sales-team category.\n" @@ -84,8 +75,7 @@ msgstr "" "Par conséquent vous ne pouvez pas demander une escalade au niveau supérieur." #. module: base_status -#: code:addons/base_status/base_stage.py:332 -#: code:addons/base_status/base_state.py:202 +#: code:addons/base_status/base_state.py:181 #, python-format msgid "%s has been closed." msgstr "%s à été fermée." diff --git a/addons/base_status/i18n/hr.po b/addons/base_status/i18n/hr.po index d5f12130be2..8aad7f7292c 100644 --- a/addons/base_status/i18n/hr.po +++ b/addons/base_status/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-09 19:46+0000\n" "Last-Translator: Goran Kliska \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-10 04:39+0000\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 @@ -24,21 +24,19 @@ msgid "Error !" msgstr "Greška !" #. module: base_status -#: code:addons/base_status/base_stage.py:326 -#: code:addons/base_status/base_state.py:187 +#: code:addons/base_status/base_state.py:166 #, python-format msgid "%s has been opened." msgstr "%s je otvoren." #. module: base_status -#: code:addons/base_status/base_stage.py:350 -#: code:addons/base_status/base_state.py:220 +#: code:addons/base_status/base_state.py:199 #, python-format msgid "%s has been renewed." msgstr "%s je obnovljen." #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "Error!" msgstr "Greška!" @@ -52,26 +50,19 @@ msgid "" msgstr "Ne možete eskaliarati. Vi ste na vrhu hijerarhije prodajnog tima." #. module: base_status -#: code:addons/base_status/base_stage.py:344 -#: code:addons/base_status/base_state.py:214 +#: code:addons/base_status/base_state.py:193 #, python-format msgid "%s is now pending." msgstr "%s je sada na čekanju." #. module: base_status -#: code:addons/base_status/base_stage.py:338 -#, python-format -msgid "%s has been cancelled." -msgstr "%s je otkazan." - -#. module: base_status -#: code:addons/base_status/base_state.py:208 +#: code:addons/base_status/base_state.py:187 #, python-format msgid "%s has been canceled." msgstr "%s je otkazan." #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "" "You are already at the top level of your sales-team category.\n" @@ -81,8 +72,7 @@ msgstr "" "Stoga ne možete dalje eskalirati." #. module: base_status -#: code:addons/base_status/base_stage.py:332 -#: code:addons/base_status/base_state.py:202 +#: code:addons/base_status/base_state.py:181 #, python-format msgid "%s has been closed." msgstr "%s je zatvoren." diff --git a/addons/base_status/i18n/id.po b/addons/base_status/i18n/id.po index 78afc027cfc..8036d996b9b 100644 --- a/addons/base_status/i18n/id.po +++ b/addons/base_status/i18n/id.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-17 00:41+0000\n" "Last-Translator: Riza Kurniawan \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-18 05:02+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 @@ -24,21 +24,19 @@ msgid "Error !" msgstr "Ada Kesalahan !!!" #. module: base_status -#: code:addons/base_status/base_stage.py:326 -#: code:addons/base_status/base_state.py:187 +#: code:addons/base_status/base_state.py:166 #, python-format msgid "%s has been opened." msgstr "%s sedang dibuka." #. module: base_status -#: code:addons/base_status/base_stage.py:350 -#: code:addons/base_status/base_state.py:220 +#: code:addons/base_status/base_state.py:199 #, python-format msgid "%s has been renewed." msgstr "%s sedang diperbaharui." #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "Error!" msgstr "Ada Kesalahan !" @@ -53,26 +51,19 @@ msgstr "" "Tidak bisa ditingkatkan, anda pada tingkat tertinggi bersama tim sales anda." #. module: base_status -#: code:addons/base_status/base_stage.py:344 -#: code:addons/base_status/base_state.py:214 +#: code:addons/base_status/base_state.py:193 #, python-format msgid "%s is now pending." msgstr "%s saat ini ditunda." #. module: base_status -#: code:addons/base_status/base_stage.py:338 -#, python-format -msgid "%s has been cancelled." -msgstr "%s sedang = dibatalkan." - -#. module: base_status -#: code:addons/base_status/base_state.py:208 +#: code:addons/base_status/base_state.py:187 #, python-format msgid "%s has been canceled." msgstr "%s sedang = dibatalkan." #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "" "You are already at the top level of your sales-team category.\n" @@ -80,8 +71,7 @@ msgid "" msgstr "" #. module: base_status -#: code:addons/base_status/base_stage.py:332 -#: code:addons/base_status/base_state.py:202 +#: code:addons/base_status/base_state.py:181 #, python-format msgid "%s has been closed." msgstr "%s sedang = ditutup." diff --git a/addons/base_status/i18n/it.po b/addons/base_status/i18n/it.po index cdc55bd9105..6a235457237 100644 --- a/addons/base_status/i18n/it.po +++ b/addons/base_status/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-13 19:22+0000\n" "Last-Translator: Davide Corio - agilebg.com \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-14 05:39+0000\n" -"X-Generator: Launchpad (build 16369)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 @@ -24,21 +24,19 @@ msgid "Error !" msgstr "Errore !" #. module: base_status -#: code:addons/base_status/base_stage.py:326 -#: code:addons/base_status/base_state.py:187 +#: code:addons/base_status/base_state.py:166 #, python-format msgid "%s has been opened." msgstr "%s è stato aperto." #. module: base_status -#: code:addons/base_status/base_stage.py:350 -#: code:addons/base_status/base_state.py:220 +#: code:addons/base_status/base_state.py:199 #, python-format msgid "%s has been renewed." msgstr "%s è stato rinnovato." #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "Error!" msgstr "Errore!" @@ -52,26 +50,19 @@ msgid "" msgstr "Impossibile scalare, si è già al livello massimo del team vendite." #. module: base_status -#: code:addons/base_status/base_stage.py:344 -#: code:addons/base_status/base_state.py:214 +#: code:addons/base_status/base_state.py:193 #, python-format msgid "%s is now pending." msgstr "%s è ora in attesa." #. module: base_status -#: code:addons/base_status/base_stage.py:338 -#, python-format -msgid "%s has been cancelled." -msgstr "%s è stato annullato." - -#. module: base_status -#: code:addons/base_status/base_state.py:208 +#: code:addons/base_status/base_state.py:187 #, python-format msgid "%s has been canceled." msgstr "%s è stato annullato." #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "" "You are already at the top level of your sales-team category.\n" @@ -81,8 +72,7 @@ msgstr "" "Quindi non è possibile scalare ulteriormente." #. module: base_status -#: code:addons/base_status/base_stage.py:332 -#: code:addons/base_status/base_state.py:202 +#: code:addons/base_status/base_state.py:181 #, python-format msgid "%s has been closed." msgstr "%s è stato chiuso." diff --git a/addons/base_status/i18n/mn.po b/addons/base_status/i18n/mn.po new file mode 100644 index 00000000000..08e909471fd --- /dev/null +++ b/addons/base_status/i18n/mn.po @@ -0,0 +1,76 @@ +# Mongolian translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-27 16:26+0000\n" +"Last-Translator: FULL NAME \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: 2012-12-28 05:11+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: base_status +#: code:addons/base_status/base_state.py:107 +#, python-format +msgid "Error !" +msgstr "Алдаа !" + +#. module: base_status +#: code:addons/base_status/base_state.py:166 +#, python-format +msgid "%s has been opened." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_state.py:199 +#, python-format +msgid "%s has been renewed." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_stage.py:210 +#, python-format +msgid "Error!" +msgstr "Алдаа!" + +#. module: base_status +#: code:addons/base_status/base_state.py:107 +#, python-format +msgid "" +"You can not escalate, you are already at the top level regarding your sales-" +"team category." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_state.py:193 +#, python-format +msgid "%s is now pending." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_state.py:187 +#, python-format +msgid "%s has been canceled." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_stage.py:210 +#, python-format +msgid "" +"You are already at the top level of your sales-team category.\n" +"Therefore you cannot escalate furthermore." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_state.py:181 +#, python-format +msgid "%s has been closed." +msgstr "" diff --git a/addons/base_status/i18n/nl.po b/addons/base_status/i18n/nl.po index 4a3c2719379..d2add70a7d0 100644 --- a/addons/base_status/i18n/nl.po +++ b/addons/base_status/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-11-30 19:38+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-20 14:05+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:55+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 @@ -24,21 +24,19 @@ msgid "Error !" msgstr "Fout!" #. module: base_status -#: code:addons/base_status/base_stage.py:326 -#: code:addons/base_status/base_state.py:187 +#: code:addons/base_status/base_state.py:166 #, python-format msgid "%s has been opened." msgstr "%s is geopend." #. module: base_status -#: code:addons/base_status/base_stage.py:350 -#: code:addons/base_status/base_state.py:220 +#: code:addons/base_status/base_state.py:199 #, python-format msgid "%s has been renewed." msgstr "%s is vernieuw." #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "Error!" msgstr "Fout!" @@ -54,35 +52,29 @@ msgstr "" "van uw verkoopteam categorieën." #. module: base_status -#: code:addons/base_status/base_stage.py:344 -#: code:addons/base_status/base_state.py:214 +#: code:addons/base_status/base_state.py:193 #, python-format msgid "%s is now pending." -msgstr "" +msgstr "%s is nu in afwachting." #. module: base_status -#: code:addons/base_status/base_stage.py:338 -#, python-format -msgid "%s has been cancelled." -msgstr "%s is geannuleerd." - -#. module: base_status -#: code:addons/base_status/base_state.py:208 +#: code:addons/base_status/base_state.py:187 #, python-format msgid "%s has been canceled." msgstr "%s is geannuleerd." #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "" "You are already at the top level of your sales-team category.\n" "Therefore you cannot escalate furthermore." msgstr "" +"U bent al op het hoogste niveau van het verkoopteam.\n" +"Het is zodoende niet mogelijk om verder te escaleren." #. module: base_status -#: code:addons/base_status/base_stage.py:332 -#: code:addons/base_status/base_state.py:202 +#: code:addons/base_status/base_state.py:181 #, python-format msgid "%s has been closed." msgstr "%s is gesloten." diff --git a/addons/base_status/i18n/pl.po b/addons/base_status/i18n/pl.po index 01dc1dd4074..b9baabab265 100644 --- a/addons/base_status/i18n/pl.po +++ b/addons/base_status/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-16 11:12+0000\n" "Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \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: 2012-12-17 04:47+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 @@ -24,21 +24,19 @@ msgid "Error !" msgstr "Błąd !" #. module: base_status -#: code:addons/base_status/base_stage.py:326 -#: code:addons/base_status/base_state.py:187 +#: code:addons/base_status/base_state.py:166 #, python-format msgid "%s has been opened." msgstr "%s zostało otwarte." #. module: base_status -#: code:addons/base_status/base_stage.py:350 -#: code:addons/base_status/base_state.py:220 +#: code:addons/base_status/base_state.py:199 #, python-format msgid "%s has been renewed." msgstr "%s zostało odnowione." #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "Error!" msgstr "Błąd!" @@ -53,26 +51,19 @@ msgstr "" "Nie możesz przekazywać nadrzędnym, bo jesteś na górze w kategorii zespołu." #. module: base_status -#: code:addons/base_status/base_stage.py:344 -#: code:addons/base_status/base_state.py:214 +#: code:addons/base_status/base_state.py:193 #, python-format msgid "%s is now pending." msgstr "%s oczekuje." #. module: base_status -#: code:addons/base_status/base_stage.py:338 -#, python-format -msgid "%s has been cancelled." -msgstr "%s zostało anulowane." - -#. module: base_status -#: code:addons/base_status/base_state.py:208 +#: code:addons/base_status/base_state.py:187 #, python-format msgid "%s has been canceled." msgstr "%s zostało anulowane." #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "" "You are already at the top level of your sales-team category.\n" @@ -82,8 +73,7 @@ msgstr "" "Więc nie możesz przekazywać wyżej." #. module: base_status -#: code:addons/base_status/base_stage.py:332 -#: code:addons/base_status/base_state.py:202 +#: code:addons/base_status/base_state.py:181 #, python-format msgid "%s has been closed." msgstr "%s zostało zamknięte." diff --git a/addons/base_status/i18n/pt.po b/addons/base_status/i18n/pt.po index 7abdf733922..d0b08717512 100644 --- a/addons/base_status/i18n/pt.po +++ b/addons/base_status/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-13 16:39+0000\n" "Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-14 05:39+0000\n" -"X-Generator: Launchpad (build 16369)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 @@ -24,21 +24,19 @@ msgid "Error !" msgstr "Erro!" #. module: base_status -#: code:addons/base_status/base_stage.py:326 -#: code:addons/base_status/base_state.py:187 +#: code:addons/base_status/base_state.py:166 #, python-format msgid "%s has been opened." msgstr "" #. module: base_status -#: code:addons/base_status/base_stage.py:350 -#: code:addons/base_status/base_state.py:220 +#: code:addons/base_status/base_state.py:199 #, python-format msgid "%s has been renewed." msgstr "" #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "Error!" msgstr "Erro!" @@ -52,26 +50,19 @@ msgid "" msgstr "" #. module: base_status -#: code:addons/base_status/base_stage.py:344 -#: code:addons/base_status/base_state.py:214 +#: code:addons/base_status/base_state.py:193 #, python-format msgid "%s is now pending." msgstr "" #. module: base_status -#: code:addons/base_status/base_stage.py:338 -#, python-format -msgid "%s has been cancelled." -msgstr "" - -#. module: base_status -#: code:addons/base_status/base_state.py:208 +#: code:addons/base_status/base_state.py:187 #, python-format msgid "%s has been canceled." msgstr "" #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "" "You are already at the top level of your sales-team category.\n" @@ -79,8 +70,7 @@ msgid "" msgstr "" #. module: base_status -#: code:addons/base_status/base_stage.py:332 -#: code:addons/base_status/base_state.py:202 +#: code:addons/base_status/base_state.py:181 #, python-format msgid "%s has been closed." msgstr "" diff --git a/addons/base_status/i18n/pt_BR.po b/addons/base_status/i18n/pt_BR.po index 382e1bbf2be..ebea282efc9 100644 --- a/addons/base_status/i18n/pt_BR.po +++ b/addons/base_status/i18n/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-16 23:52+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " "\n" @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-18 05:02+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 @@ -25,21 +25,19 @@ msgid "Error !" msgstr "Erro!" #. module: base_status -#: code:addons/base_status/base_stage.py:326 -#: code:addons/base_status/base_state.py:187 +#: code:addons/base_status/base_state.py:166 #, python-format msgid "%s has been opened." msgstr "%s foi aberta." #. module: base_status -#: code:addons/base_status/base_stage.py:350 -#: code:addons/base_status/base_state.py:220 +#: code:addons/base_status/base_state.py:199 #, python-format msgid "%s has been renewed." msgstr "%s foi revisado ." #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "Error!" msgstr "Erro!" @@ -55,26 +53,19 @@ msgstr "" "categoria de equipe de vendas." #. module: base_status -#: code:addons/base_status/base_stage.py:344 -#: code:addons/base_status/base_state.py:214 +#: code:addons/base_status/base_state.py:193 #, python-format msgid "%s is now pending." msgstr "%s está agora pendente." #. module: base_status -#: code:addons/base_status/base_stage.py:338 -#, python-format -msgid "%s has been cancelled." -msgstr "%s foi cancelado." - -#. module: base_status -#: code:addons/base_status/base_state.py:208 +#: code:addons/base_status/base_state.py:187 #, python-format msgid "%s has been canceled." msgstr "%s foi cancelado." #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "" "You are already at the top level of your sales-team category.\n" @@ -84,8 +75,7 @@ msgstr "" "Portanto, você não pode escalar além disso." #. module: base_status -#: code:addons/base_status/base_stage.py:332 -#: code:addons/base_status/base_state.py:202 +#: code:addons/base_status/base_state.py:181 #, python-format msgid "%s has been closed." msgstr "%s foi fechado." diff --git a/addons/base_status/i18n/ro.po b/addons/base_status/i18n/ro.po new file mode 100644 index 00000000000..f8ad0bbf34b --- /dev/null +++ b/addons/base_status/i18n/ro.po @@ -0,0 +1,81 @@ +# Romanian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-23 18:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-24 04:36+0000\n" +"X-Generator: Launchpad (build 16445)\n" + +#. module: base_status +#: code:addons/base_status/base_state.py:107 +#, python-format +msgid "Error !" +msgstr "Eroare !" + +#. module: base_status +#: code:addons/base_status/base_state.py:166 +#, python-format +msgid "%s has been opened." +msgstr "%s a fost deschis." + +#. module: base_status +#: code:addons/base_status/base_state.py:199 +#, python-format +msgid "%s has been renewed." +msgstr "%s a fost reinnoit." + +#. module: base_status +#: code:addons/base_status/base_stage.py:210 +#, python-format +msgid "Error!" +msgstr "Eroare!" + +#. module: base_status +#: code:addons/base_status/base_state.py:107 +#, python-format +msgid "" +"You can not escalate, you are already at the top level regarding your sales-" +"team category." +msgstr "" +"Nu puteti avansa, sunteti deja la cel mai inalt nivel in ceea ce priveste " +"categoria echipei d-voastra de vanzari." + +#. module: base_status +#: code:addons/base_status/base_state.py:193 +#, python-format +msgid "%s is now pending." +msgstr "%s este acum in asteptare." + +#. module: base_status +#: code:addons/base_status/base_state.py:187 +#, python-format +msgid "%s has been canceled." +msgstr "%s a fost anulat." + +#. module: base_status +#: code:addons/base_status/base_stage.py:210 +#, python-format +msgid "" +"You are already at the top level of your sales-team category.\n" +"Therefore you cannot escalate furthermore." +msgstr "" +"Sunteti deja la cel mai inalt nivel al categoriei echipei dumneavoastra de " +"vanzari.\n" +"Prin urmare nu mai puteti avansa." + +#. module: base_status +#: code:addons/base_status/base_state.py:181 +#, python-format +msgid "%s has been closed." +msgstr "%s a fost inchis." diff --git a/addons/base_status/i18n/ru.po b/addons/base_status/i18n/ru.po new file mode 100644 index 00000000000..fa6644947d4 --- /dev/null +++ b/addons/base_status/i18n/ru.po @@ -0,0 +1,78 @@ +# Russian translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-28 10:04+0000\n" +"Last-Translator: Chertykov Denis \n" +"Language-Team: Russian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-29 05:02+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: base_status +#: code:addons/base_status/base_state.py:107 +#, python-format +msgid "Error !" +msgstr "Ошибка !" + +#. module: base_status +#: code:addons/base_status/base_state.py:166 +#, python-format +msgid "%s has been opened." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_state.py:199 +#, python-format +msgid "%s has been renewed." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_stage.py:210 +#, python-format +msgid "Error!" +msgstr "Ошибка!" + +#. module: base_status +#: code:addons/base_status/base_state.py:107 +#, python-format +msgid "" +"You can not escalate, you are already at the top level regarding your sales-" +"team category." +msgstr "" +"Вы не можете обострить, вы уже на высшем уровне относительно вашей категории " +"отдела продаж." + +#. module: base_status +#: code:addons/base_status/base_state.py:193 +#, python-format +msgid "%s is now pending." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_state.py:187 +#, python-format +msgid "%s has been canceled." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_stage.py:210 +#, python-format +msgid "" +"You are already at the top level of your sales-team category.\n" +"Therefore you cannot escalate furthermore." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_state.py:181 +#, python-format +msgid "%s has been closed." +msgstr "" diff --git a/addons/base_status/i18n/sl.po b/addons/base_status/i18n/sl.po new file mode 100644 index 00000000000..fdd666f37a7 --- /dev/null +++ b/addons/base_status/i18n/sl.po @@ -0,0 +1,76 @@ +# Slovenian translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-29 12:12+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-30 05:20+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: base_status +#: code:addons/base_status/base_state.py:107 +#, python-format +msgid "Error !" +msgstr "Napaka!" + +#. module: base_status +#: code:addons/base_status/base_state.py:166 +#, python-format +msgid "%s has been opened." +msgstr "%s je bil od." + +#. module: base_status +#: code:addons/base_status/base_state.py:199 +#, python-format +msgid "%s has been renewed." +msgstr "%s je obnovljen." + +#. module: base_status +#: code:addons/base_status/base_stage.py:210 +#, python-format +msgid "Error!" +msgstr "Napaka!" + +#. module: base_status +#: code:addons/base_status/base_state.py:107 +#, python-format +msgid "" +"You can not escalate, you are already at the top level regarding your sales-" +"team category." +msgstr "Ste že na vrhu hierarhije vaših skupin prodaje." + +#. module: base_status +#: code:addons/base_status/base_state.py:193 +#, python-format +msgid "%s is now pending." +msgstr "%s je na čakanju." + +#. module: base_status +#: code:addons/base_status/base_state.py:187 +#, python-format +msgid "%s has been canceled." +msgstr "%s je preklican." + +#. module: base_status +#: code:addons/base_status/base_stage.py:210 +#, python-format +msgid "" +"You are already at the top level of your sales-team category.\n" +"Therefore you cannot escalate furthermore." +msgstr "Ste že na vrhu hierarhije vaših skupin prodaje." + +#. module: base_status +#: code:addons/base_status/base_state.py:181 +#, python-format +msgid "%s has been closed." +msgstr "%s je zaprt." diff --git a/addons/base_status/i18n/zh_CN.po b/addons/base_status/i18n/zh_CN.po index 5b4a7d03724..f5dbb0deab9 100644 --- a/addons/base_status/i18n/zh_CN.po +++ b/addons/base_status/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-28 07:43+0000\n" "Last-Translator: ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:55+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 @@ -24,21 +24,19 @@ msgid "Error !" msgstr "错误!" #. module: base_status -#: code:addons/base_status/base_stage.py:326 -#: code:addons/base_status/base_state.py:187 +#: code:addons/base_status/base_state.py:166 #, python-format msgid "%s has been opened." msgstr "%s 已经被 打开." #. module: base_status -#: code:addons/base_status/base_stage.py:350 -#: code:addons/base_status/base_state.py:220 +#: code:addons/base_status/base_state.py:199 #, python-format msgid "%s has been renewed." msgstr "%s 已经被 更新." #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "Error!" msgstr "错误!" @@ -52,26 +50,19 @@ msgid "" msgstr "不能上报,你已经在您销售团队类别中的最高级了。" #. module: base_status -#: code:addons/base_status/base_stage.py:344 -#: code:addons/base_status/base_state.py:214 +#: code:addons/base_status/base_state.py:193 #, python-format msgid "%s is now pending." msgstr "%s 现在 待定." #. module: base_status -#: code:addons/base_status/base_stage.py:338 -#, python-format -msgid "%s has been cancelled." -msgstr "%s 已经被 取消." - -#. module: base_status -#: code:addons/base_status/base_state.py:208 +#: code:addons/base_status/base_state.py:187 #, python-format msgid "%s has been canceled." msgstr "%s 已经被 取消." #. module: base_status -#: code:addons/base_status/base_stage.py:211 +#: code:addons/base_status/base_stage.py:210 #, python-format msgid "" "You are already at the top level of your sales-team category.\n" @@ -81,8 +72,7 @@ msgstr "" "因此,你不能再上报了。" #. module: base_status -#: code:addons/base_status/base_stage.py:332 -#: code:addons/base_status/base_state.py:202 +#: code:addons/base_status/base_state.py:181 #, python-format msgid "%s has been closed." msgstr "%s 已经被 关闭." diff --git a/addons/base_vat/base_vat.py b/addons/base_vat/base_vat.py index fb778f0ea74..616333e3b47 100644 --- a/addons/base_vat/base_vat.py +++ b/addons/base_vat/base_vat.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2011 OpenERP SA () +# Copyright (C) 2004-2012 OpenERP SA () # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -181,7 +181,7 @@ class res_partner(osv.osv): num = filter(lambda s: s.isdigit(), match.group(1)) # get the digits only factor = (5,4,3,2,7,6,5,4) csum = sum([int(num[i]) * factor[i] for i in range(8)]) - check = 11 - (csum % 11) + check = (11 - (csum % 11)) % 11 return check == int(num[8]) return False diff --git a/addons/base_vat/i18n/ar.po b/addons/base_vat/i18n/ar.po index 9c9b034be7d..0cf60470660 100644 --- a/addons/base_vat/i18n/ar.po +++ b/addons/base_vat/i18n/ar.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-01 18:14+0000\n" "Last-Translator: gehad shaat \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/base_vat.pot b/addons/base_vat/i18n/base_vat.pot index 1ffcfe68f48..d4fdf471d05 100644 --- a/addons/base_vat/i18n/base_vat.pot +++ b/addons/base_vat/i18n/base_vat.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/bg.po b/addons/base_vat/i18n/bg.po index d62883334bb..7ce0f492c1f 100644 --- a/addons/base_vat/i18n/bg.po +++ b/addons/base_vat/i18n/bg.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-02-27 10:03+0000\n" "Last-Translator: Dimitar Markov \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/bs.po b/addons/base_vat/i18n/bs.po index ae6c80b6ccb..683cb880235 100644 --- a/addons/base_vat/i18n/bs.po +++ b/addons/base_vat/i18n/bs.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-02-03 20: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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/ca.po b/addons/base_vat/i18n/ca.po index 45129fc5fc1..2e1ac0cd9c4 100644 --- a/addons/base_vat/i18n/ca.po +++ b/addons/base_vat/i18n/ca.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 03:16+0000\n" "Last-Translator: Raimon Esteve (www.zikzakmedia.com) " "\n" @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/cs.po b/addons/base_vat/i18n/cs.po index 6f94feb33ce..82d01082af6 100644 --- a/addons/base_vat/i18n/cs.po +++ b/addons/base_vat/i18n/cs.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-04-06 06:22+0000\n" "Last-Translator: Jiří Hajda \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/da.po b/addons/base_vat/i18n/da.po index 77cb3f214da..d9b1789cd1f 100644 --- a/addons/base_vat/i18n/da.po +++ b/addons/base_vat/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-11-08 10:58+0000\n" "Last-Translator: OpenERP Danmark / Mikhael Saxtorph \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/de.po b/addons/base_vat/i18n/de.po index 655c76c98b2..820b586e07b 100644 --- a/addons/base_vat/i18n/de.po +++ b/addons/base_vat/i18n/de.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-16 12:05+0000\n" "Last-Translator: Felix Schubert \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: 2012-12-17 04:45+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/el.po b/addons/base_vat/i18n/el.po index ccfc2957ef7..6f5d87b558f 100644 --- a/addons/base_vat/i18n/el.po +++ b/addons/base_vat/i18n/el.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-03 20:14+0000\n" "Last-Translator: Dimitrios Ntoulas \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/en_AU.po b/addons/base_vat/i18n/en_AU.po index 9159e774261..d14e7cd900f 100644 --- a/addons/base_vat/i18n/en_AU.po +++ b/addons/base_vat/i18n/en_AU.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 03:16+0000\n" "Last-Translator: Mantavya Gajjar (Open ERP) \n" "Language-Team: English (Australia) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/en_GB.po b/addons/base_vat/i18n/en_GB.po index e468cff044d..6352dcfacf3 100644 --- a/addons/base_vat/i18n/en_GB.po +++ b/addons/base_vat/i18n/en_GB.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-01-23 13:23+0000\n" "Last-Translator: mrx5682 \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es.po b/addons/base_vat/i18n/es.po index c7d11cfae46..0c994eaff38 100644 --- a/addons/base_vat/i18n/es.po +++ b/addons/base_vat/i18n/es.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-10 22:21+0000\n" "Last-Translator: Ana Juaristi Olalde \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: 2012-12-11 04:46+0000\n" -"X-Generator: Launchpad (build 16356)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_AR.po b/addons/base_vat/i18n/es_AR.po index 99a86fdafea..7c4b0aabf73 100644 --- a/addons/base_vat/i18n/es_AR.po +++ b/addons/base_vat/i18n/es_AR.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-09-14 13:45+0000\n" "Last-Translator: Silvana Herrera \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_CL.po b/addons/base_vat/i18n/es_CL.po index 46a49b64508..893928346da 100644 --- a/addons/base_vat/i18n/es_CL.po +++ b/addons/base_vat/i18n/es_CL.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-06-18 17:15+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Chile) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_CR.po b/addons/base_vat/i18n/es_CR.po index 0def5977748..84381d49db7 100644 --- a/addons/base_vat/i18n/es_CR.po +++ b/addons/base_vat/i18n/es_CR.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-15 17:43+0000\n" "Last-Translator: Freddy Gonzalez \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" "Language: \n" #. module: base_vat diff --git a/addons/base_vat/i18n/es_EC.po b/addons/base_vat/i18n/es_EC.po index ca5d3487979..5cfd12e0cfb 100644 --- a/addons/base_vat/i18n/es_EC.po +++ b/addons/base_vat/i18n/es_EC.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-13 04:07+0000\n" "Last-Translator: Cristian Salamea (Gnuthink) \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_MX.po b/addons/base_vat/i18n/es_MX.po index a9f86e77e1c..a98be2db24f 100644 --- a/addons/base_vat/i18n/es_MX.po +++ b/addons/base_vat/i18n/es_MX.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-09-07 00:31+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Mexico) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_PY.po b/addons/base_vat/i18n/es_PY.po index 39364c339ea..f40fe517316 100644 --- a/addons/base_vat/i18n/es_PY.po +++ b/addons/base_vat/i18n/es_PY.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-18 12:38+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Paraguay) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/et.po b/addons/base_vat/i18n/et.po index 0d8d800d73d..8f30508e06c 100644 --- a/addons/base_vat/i18n/et.po +++ b/addons/base_vat/i18n/et.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-10-10 18:08+0000\n" "Last-Translator: Aare Vesi \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/eu.po b/addons/base_vat/i18n/eu.po index 8abdcfa750e..83931cf9361 100644 --- a/addons/base_vat/i18n/eu.po +++ b/addons/base_vat/i18n/eu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-10-08 07:35+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Basque \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/fa.po b/addons/base_vat/i18n/fa.po index ea7dbbc9b50..98f339dc81d 100644 --- a/addons/base_vat/i18n/fa.po +++ b/addons/base_vat/i18n/fa.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-12-19 09:39+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/fi.po b/addons/base_vat/i18n/fi.po index a3dd5f03291..8f6a7844481 100644 --- a/addons/base_vat/i18n/fi.po +++ b/addons/base_vat/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 03:16+0000\n" "Last-Translator: Mantavya Gajjar (Open ERP) \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/fr.po b/addons/base_vat/i18n/fr.po index 53bbc5f5027..c9115727e57 100644 --- a/addons/base_vat/i18n/fr.po +++ b/addons/base_vat/i18n/fr.po @@ -6,20 +6,20 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-02-27 10:27+0000\n" -"Last-Translator: GaCriv \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-19 15:48+0000\n" +"Last-Translator: WANTELLET Sylvain \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 msgid "Check Validity" -msgstr "" +msgstr "Vérifier la validité" #. module: base_vat #: code:addons/base_vat/base_vat.py:147 @@ -45,7 +45,7 @@ msgstr "Sociétés" #: code:addons/base_vat/base_vat.py:111 #, python-format msgid "Error!" -msgstr "" +msgstr "Erreur!" #. module: base_vat #: help:res.partner,vat_subjected:0 diff --git a/addons/base_vat/i18n/gl.po b/addons/base_vat/i18n/gl.po index 9619c28f175..9eedc1a4c4c 100644 --- a/addons/base_vat/i18n/gl.po +++ b/addons/base_vat/i18n/gl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-09-08 14:52+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/gu.po b/addons/base_vat/i18n/gu.po index 5457704f877..4fb24be2a80 100644 --- a/addons/base_vat/i18n/gu.po +++ b/addons/base_vat/i18n/gu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-03-06 18:23+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Gujarati \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/hr.po b/addons/base_vat/i18n/hr.po index e6624f859ab..d7dfff389c7 100644 --- a/addons/base_vat/i18n/hr.po +++ b/addons/base_vat/i18n/hr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-01-28 20:22+0000\n" "Last-Translator: Goran Kliska \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/hu.po b/addons/base_vat/i18n/hu.po index c8cabafaabb..639697dc344 100644 --- a/addons/base_vat/i18n/hu.po +++ b/addons/base_vat/i18n/hu.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-02-02 18:32+0000\n" "Last-Translator: Krisztian Eyssen \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/id.po b/addons/base_vat/i18n/id.po index ab67e2020c7..ab0631d53ce 100644 --- a/addons/base_vat/i18n/id.po +++ b/addons/base_vat/i18n/id.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 03:16+0000\n" "Last-Translator: Mantavya Gajjar (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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/it.po b/addons/base_vat/i18n/it.po index d8314bf08a1..e16e8bc14b3 100644 --- a/addons/base_vat/i18n/it.po +++ b/addons/base_vat/i18n/it.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-15 22:37+0000\n" "Last-Translator: Sergio Corato \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: 2012-12-16 04:46+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/ja.po b/addons/base_vat/i18n/ja.po index b0c72f70baa..086fab6dee2 100644 --- a/addons/base_vat/i18n/ja.po +++ b/addons/base_vat/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-07-28 00:19+0000\n" "Last-Translator: Akira Hiyama \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/ko.po b/addons/base_vat/i18n/ko.po index 1d1f5e7fe16..165ebdbd7ed 100644 --- a/addons/base_vat/i18n/ko.po +++ b/addons/base_vat/i18n/ko.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-09-08 13:24+0000\n" "Last-Translator: ekodaq \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/lt.po b/addons/base_vat/i18n/lt.po index bad82c26ef7..2fa6ee4bae0 100644 --- a/addons/base_vat/i18n/lt.po +++ b/addons/base_vat/i18n/lt.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 03:16+0000\n" "Last-Translator: Donatas Stonys Blue Whale SEO \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/lv.po b/addons/base_vat/i18n/lv.po index 692a5fa65ba..71518da9db5 100644 --- a/addons/base_vat/i18n/lv.po +++ b/addons/base_vat/i18n/lv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-28 11:12+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/mn.po b/addons/base_vat/i18n/mn.po index ce3e0d9f80c..2a947aa34c4 100644 --- a/addons/base_vat/i18n/mn.po +++ b/addons/base_vat/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-13 05:26+0000\n" "Last-Translator: badralb \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/nb.po b/addons/base_vat/i18n/nb.po index 8b9d4296662..617778be1f7 100644 --- a/addons/base_vat/i18n/nb.po +++ b/addons/base_vat/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-09-29 10:56+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/nl.po b/addons/base_vat/i18n/nl.po index ebf779200eb..43cb422dc1b 100644 --- a/addons/base_vat/i18n/nl.po +++ b/addons/base_vat/i18n/nl.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-24 17:36+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/nl_BE.po b/addons/base_vat/i18n/nl_BE.po index c85e76d2ead..40be46af922 100644 --- a/addons/base_vat/i18n/nl_BE.po +++ b/addons/base_vat/i18n/nl_BE.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-10-01 11:23+0000\n" "Last-Translator: Els Van Vossel (Agaplan) \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/oc.po b/addons/base_vat/i18n/oc.po index 259d645cd49..555de4b3f07 100644 --- a/addons/base_vat/i18n/oc.po +++ b/addons/base_vat/i18n/oc.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-09-18 12:36+0000\n" "Last-Translator: Cédric VALMARY (Tot en òc) \n" "Language-Team: Occitan (post 1500) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/pl.po b/addons/base_vat/i18n/pl.po index 89da4bd12f4..eda04798332 100644 --- a/addons/base_vat/i18n/pl.po +++ b/addons/base_vat/i18n/pl.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-16 11:27+0000\n" "Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \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: 2012-12-17 04:45+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/pt.po b/addons/base_vat/i18n/pt.po index 76a9262cdc9..f5a4452a5a3 100644 --- a/addons/base_vat/i18n/pt.po +++ b/addons/base_vat/i18n/pt.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-17 12:48+0000\n" "Last-Translator: Rui Franco (multibase.pt) \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: 2012-12-18 05:00+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/pt_BR.po b/addons/base_vat/i18n/pt_BR.po index 498bf62cb45..fe3585c854b 100644 --- a/addons/base_vat/i18n/pt_BR.po +++ b/addons/base_vat/i18n/pt_BR.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-16 23:53+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " "\n" @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-18 05:00+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/ro.po b/addons/base_vat/i18n/ro.po index 976483992f8..947b9c69efc 100644 --- a/addons/base_vat/i18n/ro.po +++ b/addons/base_vat/i18n/ro.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-21 19:12+0000\n" "Last-Translator: Mihai Satmarean \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/ru.po b/addons/base_vat/i18n/ru.po index e400ed7d3b4..bf7ab5fd204 100644 --- a/addons/base_vat/i18n/ru.po +++ b/addons/base_vat/i18n/ru.po @@ -6,20 +6,20 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2010-12-05 07:36+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-28 10:04+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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-29 05:01+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 msgid "Check Validity" -msgstr "" +msgstr "Проверить правильность" #. module: base_vat #: code:addons/base_vat/base_vat.py:147 @@ -45,7 +45,7 @@ msgstr "Компании" #: code:addons/base_vat/base_vat.py:111 #, python-format msgid "Error!" -msgstr "" +msgstr "Ошибка!" #. module: base_vat #: help:res.partner,vat_subjected:0 diff --git a/addons/base_vat/i18n/sk.po b/addons/base_vat/i18n/sk.po index 56d473c9a1d..acf63a74e49 100644 --- a/addons/base_vat/i18n/sk.po +++ b/addons/base_vat/i18n/sk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 03:17+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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/sl.po b/addons/base_vat/i18n/sl.po index a5c7ed689d2..0ad09f0d655 100644 --- a/addons/base_vat/i18n/sl.po +++ b/addons/base_vat/i18n/sl.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-11-17 08: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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/sq.po b/addons/base_vat/i18n/sq.po index 7626422cb6f..980b6c8fad8 100644 --- a/addons/base_vat/i18n/sq.po +++ b/addons/base_vat/i18n/sq.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-07-06 17:28+0000\n" "Last-Translator: Arianit Kukaj \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/sr.po b/addons/base_vat/i18n/sr.po index 16ed4aef3b0..5afb28a6e7a 100644 --- a/addons/base_vat/i18n/sr.po +++ b/addons/base_vat/i18n/sr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-10-29 09:39+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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/sr@latin.po b/addons/base_vat/i18n/sr@latin.po index 559a9131750..fd3cc6f59d0 100644 --- a/addons/base_vat/i18n/sr@latin.po +++ b/addons/base_vat/i18n/sr@latin.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-10-06 13:45+0000\n" "Last-Translator: Milan Milosevic \n" "Language-Team: Serbian latin \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/sv.po b/addons/base_vat/i18n/sv.po index f0aeede19ca..51e8790c936 100644 --- a/addons/base_vat/i18n/sv.po +++ b/addons/base_vat/i18n/sv.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.14\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-13 17:22+0000\n" "Last-Translator: Magnus Brandt (mba), Aspirix AB \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/th.po b/addons/base_vat/i18n/th.po index f4640057b11..c0b317d6ee0 100644 --- a/addons/base_vat/i18n/th.po +++ b/addons/base_vat/i18n/th.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-16 14:42+0000\n" "Last-Translator: Rungsan Suyala \n" "Language-Team: Thai \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/tlh.po b/addons/base_vat/i18n/tlh.po index 2c59da00429..4e7aaea748e 100644 --- a/addons/base_vat/i18n/tlh.po +++ b/addons/base_vat/i18n/tlh.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-02-03 06:25+0000\n" "Last-Translator: <>\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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/tr.po b/addons/base_vat/i18n/tr.po index 70e9b26de27..64f3af6ea11 100644 --- a/addons/base_vat/i18n/tr.po +++ b/addons/base_vat/i18n/tr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-27 21:48+0000\n" "Last-Translator: Ahmet Altınışık \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/uk.po b/addons/base_vat/i18n/uk.po index e77a3a7713c..3d13d320957 100644 --- a/addons/base_vat/i18n/uk.po +++ b/addons/base_vat/i18n/uk.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-02-03 20: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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/vi.po b/addons/base_vat/i18n/vi.po index 3853d092f44..5930cb1d795 100644 --- a/addons/base_vat/i18n/vi.po +++ b/addons/base_vat/i18n/vi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-05-25 14:58+0000\n" "Last-Translator: OpenBMS JSC \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/zh_CN.po b/addons/base_vat/i18n/zh_CN.po index 85d5145b2fb..48a462c57e9 100644 --- a/addons/base_vat/i18n/zh_CN.po +++ b/addons/base_vat/i18n/zh_CN.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-30 17:41+0000\n" "Last-Translator: ccdos \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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/zh_TW.po b/addons/base_vat/i18n/zh_TW.po index d44b54c2888..03ffc9765df 100644 --- a/addons/base_vat/i18n/zh_TW.po +++ b/addons/base_vat/i18n/zh_TW.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-01-30 12:44+0000\n" "Last-Translator: <>\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: 2012-12-04 05:19+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:26+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/board/i18n/ar.po b/addons/board/i18n/ar.po index e8469ffe9ce..14b81c77b70 100644 --- a/addons/board/i18n/ar.po +++ b/addons/board/i18n/ar.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-02-03 06:25+0000\n" "Last-Translator: <>\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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/bg.po b/addons/board/i18n/bg.po index 6dc2fdf1993..515db425fa7 100644 --- a/addons/board/i18n/bg.po +++ b/addons/board/i18n/bg.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-10-30 15:51+0000\n" "Last-Translator: Boris \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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/board.pot b/addons/board/i18n/board.pot index b1a0fef54c6..3293c8193fc 100644 --- a/addons/board/i18n/board.pot +++ b/addons/board/i18n/board.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/br.po b/addons/board/i18n/br.po index 9c1e8b2b7e3..6f2eea65280 100644 --- a/addons/board/i18n/br.po +++ b/addons/board/i18n/br.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-12 09:28+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Breton \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/bs.po b/addons/board/i18n/bs.po index a702f70fdd1..965b6f8a239 100644 --- a/addons/board/i18n/bs.po +++ b/addons/board/i18n/bs.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-10-30 10:42+0000\n" "Last-Translator: Miro Glavić \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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ca.po b/addons/board/i18n/ca.po index 682e5c8d6f3..02b5e2a7c33 100644 --- a/addons/board/i18n/ca.po +++ b/addons/board/i18n/ca.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-10-30 10:57+0000\n" "Last-Translator: Raimon Esteve (www.zikzakmedia.com) " "\n" @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/cs.po b/addons/board/i18n/cs.po index f01395a0719..3c4f53903f3 100644 --- a/addons/board/i18n/cs.po +++ b/addons/board/i18n/cs.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-04-06 06:15+0000\n" "Last-Translator: Jiří Hajda \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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" "X-Poedit-Language: Czech\n" #. module: board diff --git a/addons/board/i18n/da.po b/addons/board/i18n/da.po index 13a8553726b..2700a0b97cd 100644 --- a/addons/board/i18n/da.po +++ b/addons/board/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-01-27 08:39+0000\n" "Last-Translator: FULL NAME \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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/de.po b/addons/board/i18n/de.po index 332d367133e..925ca3a8a26 100644 --- a/addons/board/i18n/de.po +++ b/addons/board/i18n/de.po @@ -6,21 +6,22 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-12-16 12:23+0000\n" -"Last-Translator: Felix Schubert \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-19 22:20+0000\n" +"Last-Translator: Thorsten Vocks (OpenBig.org) \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: 2012-12-17 04:46+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create #: model:ir.ui.menu,name:board.menu_board_create msgid "Create Board" -msgstr "" +msgstr "Erzeuge Tafel" #. module: board #: view:board.create:0 @@ -37,14 +38,14 @@ msgstr "Layout zurücksetzen" #. module: board #: view:board.create:0 msgid "Create New Dashboard" -msgstr "Neues Dashboard anlegen" +msgstr "Neue Anzeigetafel anlegen" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:40 #, python-format msgid "Choose dashboard layout" -msgstr "Wählen Sie das Dashboard Layout" +msgstr "Wählen Sie das Anzeigetafel Layout" #. module: board #. openerp-web @@ -63,31 +64,31 @@ msgstr "Wollen Sie dieses Element wirklich löschen?" #. module: board #: model:ir.model,name:board.model_board_board msgid "Board" -msgstr "Pinnwand" +msgstr "Anzeigetafel" #. module: board #: view:board.board:0 #: model:ir.actions.act_window,name:board.open_board_my_dash_action #: model:ir.ui.menu,name:board.menu_board_my_dash msgid "My Dashboard" -msgstr "Mein Dashboard" +msgstr "Eigene Anzeigetafel" #. module: board #: field:board.create,name:0 msgid "Board Name" -msgstr "" +msgstr "Name der Tafel" #. module: board #: model:ir.model,name:board.model_board_create msgid "Board Creation" -msgstr "" +msgstr "Tafel Erzeugen" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:67 #, python-format msgid "Add to Dashboard" -msgstr "Zu Dashboard hinzufügen" +msgstr "Zur Anzeigetafel hinzufügen" #. module: board #. openerp-web @@ -114,6 +115,21 @@ msgid "" " \n" " " msgstr "" +"

\n" +"

\n" +" Ihre eigene Anzeigetafel ist noch frei,\n" +"

\n" +" Um Ihren ersten Bericht auf Ihrer Anzeigetafel zu " +"ergänzen \n" +" klicken Sie 'Tafel erstellen' in den erweiterten " +"Suchoptionen.\n" +"

\n" +" Sie können dann die Daten noch filtern und gruppieren, " +"bevor Sie\n" +" die Auswertung zur Tafel hinzufügen.\n" +"

\n" +"
\n" +" " #. module: board #. openerp-web @@ -132,7 +148,7 @@ msgstr "Übergeordnetes Menü" #: code:addons/board/static/src/xml/board.xml:8 #, python-format msgid "Change Layout.." -msgstr "Layout ändern" +msgstr "" #. module: board #. openerp-web @@ -163,7 +179,7 @@ msgstr "oder" #: code:addons/board/static/src/xml/board.xml:69 #, python-format msgid "Title of new dashboard item" -msgstr "Titel des neuen Dashboard Elements" +msgstr "Titel der neuen Anzeigetafel" #~ msgid "" #~ "The Object name must start with x_ and not contain any special character !" diff --git a/addons/board/i18n/el.po b/addons/board/i18n/el.po index fcb7ead7eaa..c4c62fdb897 100644 --- a/addons/board/i18n/el.po +++ b/addons/board/i18n/el.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-25 17:22+0000\n" "Last-Translator: Dimitris Andavoglou \n" "Language-Team: nls@hellug.gr \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/board/i18n/es.po b/addons/board/i18n/es.po index ed5d5a7f03d..6525449da5f 100644 --- a/addons/board/i18n/es.po +++ b/addons/board/i18n/es.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 21:34+0000\n" "Last-Translator: lambdasoftware \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: 2012-12-12 04:40+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_AR.po b/addons/board/i18n/es_AR.po index e8194d7f918..6894ae77fe2 100644 --- a/addons/board/i18n/es_AR.po +++ b/addons/board/i18n/es_AR.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-06-18 18:46+0000\n" "Last-Translator: Eduardo Alberto Calvo \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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_CL.po b/addons/board/i18n/es_CL.po index 6aa32a2c767..0e537ede767 100644 --- a/addons/board/i18n/es_CL.po +++ b/addons/board/i18n/es_CL.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-21 07:20+0000\n" "Last-Translator: David Acevedo Toledo \n" "Language-Team: Spanish (Chile) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_CR.po b/addons/board/i18n/es_CR.po index 00aee79d504..6639aa91769 100644 --- a/addons/board/i18n/es_CR.po +++ b/addons/board/i18n/es_CR.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-15 17:50+0000\n" "Last-Translator: Freddy Gonzalez \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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" "Language: \n" #. module: board diff --git a/addons/board/i18n/es_EC.po b/addons/board/i18n/es_EC.po index 35978e42a77..d91f3df9a68 100644 --- a/addons/board/i18n/es_EC.po +++ b/addons/board/i18n/es_EC.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-09-17 19:09+0000\n" "Last-Translator: Borja López Soilán (NeoPolus) \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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_PY.po b/addons/board/i18n/es_PY.po index fa3f69fc47c..69d3c35a3d7 100644 --- a/addons/board/i18n/es_PY.po +++ b/addons/board/i18n/es_PY.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-18 12:39+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Paraguay) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/et.po b/addons/board/i18n/et.po index cf73ae9b1ad..2b5f3fb4c7f 100644 --- a/addons/board/i18n/et.po +++ b/addons/board/i18n/et.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 03:20+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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/fa.po b/addons/board/i18n/fa.po index f2bef1df1f0..097ba367eaf 100644 --- a/addons/board/i18n/fa.po +++ b/addons/board/i18n/fa.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-12-19 09:39+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/fi.po b/addons/board/i18n/fi.po index d085f68fd25..77a8065db64 100644 --- a/addons/board/i18n/fi.po +++ b/addons/board/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 03:20+0000\n" "Last-Translator: Mantavya Gajjar (Open ERP) \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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/fr.po b/addons/board/i18n/fr.po index 7f3b4ae8e43..ba905cf76ec 100644 --- a/addons/board/i18n/fr.po +++ b/addons/board/i18n/fr.po @@ -6,21 +6,21 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-12-05 09:11+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-18 23:04+0000\n" "Last-Translator: Numérigraphe \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: 2012-12-06 04:40+0000\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create #: model:ir.ui.menu,name:board.menu_board_create msgid "Create Board" -msgstr "" +msgstr "Créer un tableau de bord" #. module: board #: view:board.create:0 @@ -75,12 +75,12 @@ msgstr "Mon tableau de bord" #. module: board #: field:board.create,name:0 msgid "Board Name" -msgstr "" +msgstr "Nom du tableau de bord" #. module: board #: model:ir.model,name:board.model_board_create msgid "Board Creation" -msgstr "" +msgstr "Création de tableau de bord" #. module: board #. openerp-web @@ -114,13 +114,30 @@ msgid "" " \n" " " msgstr "" +"
\n" +"

\n" +" Votre tableau de bord personnel est vide\n" +"

\n" +" Pour ajouter un premier rapport à ce tableau de bord, " +"allez dans un\n" +" menu, passez en vue liste ou en vue graphique, et " +"cliquez sur \"Ajouter\n" +" au tableau de bord\" dans les options de recherches " +"étendues.\n" +"

\n" +" Vous pouvez filtrer et grouper les données avant " +"d'insérer le rapport dans le\n" +" tableau de bord en utilisant les options de recherche.\n" +"

\n" +"
\n" +" " #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:6 #, python-format msgid "Reset" -msgstr "" +msgstr "Réinitialiser" #. module: board #: field:board.create,menu_parent_id:0 @@ -163,7 +180,7 @@ msgstr "ou" #: code:addons/board/static/src/xml/board.xml:69 #, python-format msgid "Title of new dashboard item" -msgstr "" +msgstr "Titre du nouvel élément du tableau de bord" #~ msgid "Author" #~ msgstr "Auteur" diff --git a/addons/board/i18n/gl.po b/addons/board/i18n/gl.po index d5a408e0c8b..5574cf86474 100644 --- a/addons/board/i18n/gl.po +++ b/addons/board/i18n/gl.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: board-es\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-02-03 18:25+0000\n" "Last-Translator: Alberto Luengo Cabanillas (Pexego) \n" "Language-Team: Galego \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/gu.po b/addons/board/i18n/gu.po index b812af98917..4a55875547c 100644 --- a/addons/board/i18n/gu.po +++ b/addons/board/i18n/gu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-31 11:09+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Gujarati \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/hr.po b/addons/board/i18n/hr.po index f3116bd5ccc..edf1fa964e6 100644 --- a/addons/board/i18n/hr.po +++ b/addons/board/i18n/hr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-12-19 16:03+0000\n" "Last-Translator: Ivica Perić \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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/hu.po b/addons/board/i18n/hu.po index 3af760278f4..90d7dacde7b 100644 --- a/addons/board/i18n/hu.po +++ b/addons/board/i18n/hu.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-02-02 18:41+0000\n" "Last-Translator: Krisztian Eyssen \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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/id.po b/addons/board/i18n/id.po index d56feb5ca72..a353a5cafcb 100644 --- a/addons/board/i18n/id.po +++ b/addons/board/i18n/id.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-03 03:21+0000\n" "Last-Translator: Mantavya Gajjar (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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/it.po b/addons/board/i18n/it.po index 62affa41efb..731dfff3458 100644 --- a/addons/board/i18n/it.po +++ b/addons/board/i18n/it.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-13 20:48+0000\n" "Last-Translator: Nicola Riolini - Micronaet \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: 2012-12-14 05:38+0000\n" -"X-Generator: Launchpad (build 16369)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ja.po b/addons/board/i18n/ja.po index 80d1742b0be..22182b47fa4 100644 --- a/addons/board/i18n/ja.po +++ b/addons/board/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-06-08 02:39+0000\n" "Last-Translator: Akira Hiyama \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ko.po b/addons/board/i18n/ko.po index 22d5f6c57e5..77e6f0d1357 100644 --- a/addons/board/i18n/ko.po +++ b/addons/board/i18n/ko.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-09-08 13:34+0000\n" "Last-Translator: ekodaq \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ln.po b/addons/board/i18n/ln.po index a5063868328..22f1584ce1d 100644 --- a/addons/board/i18n/ln.po +++ b/addons/board/i18n/ln.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-04-15 08:55+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Lingala \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/lt.po b/addons/board/i18n/lt.po index c891775b5c8..f1924b82cc4 100644 --- a/addons/board/i18n/lt.po +++ b/addons/board/i18n/lt.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-13 22:30+0000\n" "Last-Translator: Paulius Sladkevičius \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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/lv.po b/addons/board/i18n/lv.po index bbcaca7a9f6..372f2eaee42 100644 --- a/addons/board/i18n/lv.po +++ b/addons/board/i18n/lv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-13 12:53+0000\n" "Last-Translator: Vladimirs Kuzmins \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/mn.po b/addons/board/i18n/mn.po index 7adb7c5efbb..0de577a9fab 100644 --- a/addons/board/i18n/mn.po +++ b/addons/board/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-20 02:24+0000\n" "Last-Translator: OpenERP Administrators \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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/nb.po b/addons/board/i18n/nb.po index bd25715b42a..4324fdf0030 100644 --- a/addons/board/i18n/nb.po +++ b/addons/board/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-12 10:28+0000\n" "Last-Translator: Kaare Pettersen \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-13 04:44+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/nl.po b/addons/board/i18n/nl.po index eb71068f5d8..168157f4061 100644 --- a/addons/board/i18n/nl.po +++ b/addons/board/i18n/nl.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-24 18:14+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/nl_BE.po b/addons/board/i18n/nl_BE.po index 104681b46a5..6cb89183580 100644 --- a/addons/board/i18n/nl_BE.po +++ b/addons/board/i18n/nl_BE.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-06-15 14:17+0000\n" "Last-Translator: Niels Huylebroeck \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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/pl.po b/addons/board/i18n/pl.po index 0e1e70c246c..ec975a913ed 100644 --- a/addons/board/i18n/pl.po +++ b/addons/board/i18n/pl.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 23:18+0000\n" "Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \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: 2012-12-13 04:44+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/pt.po b/addons/board/i18n/pt.po index da2f3b033e6..6ef4e874eaf 100644 --- a/addons/board/i18n/pt.po +++ b/addons/board/i18n/pt.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-13 16:50+0000\n" "Last-Translator: Rui Franco (multibase.pt) \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: 2012-12-14 05:38+0000\n" -"X-Generator: Launchpad (build 16369)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/pt_BR.po b/addons/board/i18n/pt_BR.po index 650d7cf32d7..c7cb11ad367 100644 --- a/addons/board/i18n/pt_BR.po +++ b/addons/board/i18n/pt_BR.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-16 23:57+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " "\n" @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-18 05:01+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ro.po b/addons/board/i18n/ro.po index 87e6cac12f8..7d6411e870a 100644 --- a/addons/board/i18n/ro.po +++ b/addons/board/i18n/ro.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-26 06:04+0000\n" "Last-Translator: Dorin \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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ru.po b/addons/board/i18n/ru.po index 071aab80197..08ddd2df385 100644 --- a/addons/board/i18n/ru.po +++ b/addons/board/i18n/ru.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-10-26 09:05+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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sk.po b/addons/board/i18n/sk.po index 0b7829fbda1..11ab5066558 100644 --- a/addons/board/i18n/sk.po +++ b/addons/board/i18n/sk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-19 21:46+0000\n" "Last-Translator: Peter Kohaut \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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sl.po b/addons/board/i18n/sl.po index 2d53086fa89..916b4e4a4e2 100644 --- a/addons/board/i18n/sl.po +++ b/addons/board/i18n/sl.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-10-30 11:59+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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sq.po b/addons/board/i18n/sq.po index 3bdea3e533b..b0259aac317 100644 --- a/addons/board/i18n/sq.po +++ b/addons/board/i18n/sq.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-08-02 14:37+0000\n" "Last-Translator: FULL NAME \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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sr.po b/addons/board/i18n/sr.po index 50d7d6a8b42..77173b2d1ef 100644 --- a/addons/board/i18n/sr.po +++ b/addons/board/i18n/sr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-10-30 13:56+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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sr@latin.po b/addons/board/i18n/sr@latin.po index c76dc569a9e..4aa76beaafe 100644 --- a/addons/board/i18n/sr@latin.po +++ b/addons/board/i18n/sr@latin.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-23 16:16+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Serbian latin \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sv.po b/addons/board/i18n/sv.po index 356d41b2b2e..0ad67d305cf 100644 --- a/addons/board/i18n/sv.po +++ b/addons/board/i18n/sv.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.14\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-08-03 23:18+0000\n" "Last-Translator: Stefan Lind \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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/th.po b/addons/board/i18n/th.po index 4c2134d98aa..bbf37a0fa0d 100644 --- a/addons/board/i18n/th.po +++ b/addons/board/i18n/th.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-19 14:30+0000\n" "Last-Translator: Rungsan Suyala \n" "Language-Team: Thai \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/tlh.po b/addons/board/i18n/tlh.po index 98c724a4d24..dbc421f107f 100644 --- a/addons/board/i18n/tlh.po +++ b/addons/board/i18n/tlh.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-02-03 06:25+0000\n" "Last-Translator: <>\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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/tr.po b/addons/board/i18n/tr.po index 31d4eab76ee..d55137e0def 100644 --- a/addons/board/i18n/tr.po +++ b/addons/board/i18n/tr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-01-23 23:39+0000\n" "Last-Translator: Ahmet Altınışık \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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/uk.po b/addons/board/i18n/uk.po index e562cebd4a0..7e2d028b10d 100644 --- a/addons/board/i18n/uk.po +++ b/addons/board/i18n/uk.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-09-08 15:14+0000\n" "Last-Translator: Eugene Babiy \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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/vi.po b/addons/board/i18n/vi.po index 6b56b383179..0e498df58e1 100644 --- a/addons/board/i18n/vi.po +++ b/addons/board/i18n/vi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-05-25 15:06+0000\n" "Last-Translator: OpenBMS JSC \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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/zh_CN.po b/addons/board/i18n/zh_CN.po index 816f79d0185..af2544a0279 100644 --- a/addons/board/i18n/zh_CN.po +++ b/addons/board/i18n/zh_CN.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-30 17:42+0000\n" "Last-Translator: ccdos \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: 2012-12-01 05:08+0000\n" -"X-Generator: Launchpad (build 16319)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/zh_TW.po b/addons/board/i18n/zh_TW.po index dfdd073e353..9fb847f45e6 100644 --- a/addons/board/i18n/zh_TW.po +++ b/addons/board/i18n/zh_TW.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2009-01-30 12:44+0000\n" "Last-Translator: <>\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: 2012-11-25 06:12+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:47+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/claim_from_delivery/i18n/ar.po b/addons/claim_from_delivery/i18n/ar.po index 7c2c4f3473c..ee0a7f89b6e 100644 --- a/addons/claim_from_delivery/i18n/ar.po +++ b/addons/claim_from_delivery/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-01 18:15+0000\n" "Last-Translator: gehad shaat \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: 2012-12-02 04:38+0000\n" -"X-Generator: Launchpad (build 16319)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/bg.po b/addons/claim_from_delivery/i18n/bg.po index f3e0e02a336..190b3daebb1 100644 --- a/addons/claim_from_delivery/i18n/bg.po +++ b/addons/claim_from_delivery/i18n/bg.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-02-19 15:17+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ca.po b/addons/claim_from_delivery/i18n/ca.po index 5ce1cbe3ed6..cd7fe217bb7 100644 --- a/addons/claim_from_delivery/i18n/ca.po +++ b/addons/claim_from_delivery/i18n/ca.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-26 18:25+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/claim_from_delivery.pot b/addons/claim_from_delivery/i18n/claim_from_delivery.pot index 4df180d6787..6a219f815df 100644 --- a/addons/claim_from_delivery/i18n/claim_from_delivery.pot +++ b/addons/claim_from_delivery/i18n/claim_from_delivery.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/claim_from_delivery/i18n/cs.po b/addons/claim_from_delivery/i18n/cs.po index 2fd96fb26ad..7256b2cdade 100644 --- a/addons/claim_from_delivery/i18n/cs.po +++ b/addons/claim_from_delivery/i18n/cs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-04-06 04:57+0000\n" "Last-Translator: Jiří Hajda \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/da.po b/addons/claim_from_delivery/i18n/da.po index cd0b123f343..30276fcf4ab 100644 --- a/addons/claim_from_delivery/i18n/da.po +++ b/addons/claim_from_delivery/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-01-27 08:42+0000\n" "Last-Translator: FULL NAME \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: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/de.po b/addons/claim_from_delivery/i18n/de.po index 67400a342e1..f31ede8a9ad 100644 --- a/addons/claim_from_delivery/i18n/de.po +++ b/addons/claim_from_delivery/i18n/de.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-16 12:45+0000\n" "Last-Translator: Felix Schubert \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-17 04:47+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/en_GB.po b/addons/claim_from_delivery/i18n/en_GB.po index 132da26d1cc..5942d4189b1 100644 --- a/addons/claim_from_delivery/i18n/en_GB.po +++ b/addons/claim_from_delivery/i18n/en_GB.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-08-25 11:53+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es.po b/addons/claim_from_delivery/i18n/es.po index cce8ce4fcd0..f6983a525b6 100644 --- a/addons/claim_from_delivery/i18n/es.po +++ b/addons/claim_from_delivery/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-10 22:22+0000\n" "Last-Translator: Ana Juaristi Olalde \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-11 04:49+0000\n" -"X-Generator: Launchpad (build 16356)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_AR.po b/addons/claim_from_delivery/i18n/es_AR.po index 8edef4c093d..cbf31a4bd2b 100644 --- a/addons/claim_from_delivery/i18n/es_AR.po +++ b/addons/claim_from_delivery/i18n/es_AR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-06-18 18:38+0000\n" "Last-Translator: Eduardo Alberto Calvo \n" "Language-Team: Spanish (Argentina) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_CL.po b/addons/claim_from_delivery/i18n/es_CL.po index 815ac3cc460..1c6eefb21af 100644 --- a/addons/claim_from_delivery/i18n/es_CL.po +++ b/addons/claim_from_delivery/i18n/es_CL.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-07 20:29+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Chile) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_CR.po b/addons/claim_from_delivery/i18n/es_CR.po index a7747ec4bb4..50853e27b0b 100644 --- a/addons/claim_from_delivery/i18n/es_CR.po +++ b/addons/claim_from_delivery/i18n/es_CR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-13 19:13+0000\n" "Last-Translator: Carlos Vásquez (CLEARCORP) " "\n" @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" "Language: es\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/es_EC.po b/addons/claim_from_delivery/i18n/es_EC.po index 71c7461d7a6..b8e62f2cd0a 100644 --- a/addons/claim_from_delivery/i18n/es_EC.po +++ b/addons/claim_from_delivery/i18n/es_EC.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-13 04:08+0000\n" "Last-Translator: Cristian Salamea (Gnuthink) \n" "Language-Team: Spanish (Ecuador) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_PY.po b/addons/claim_from_delivery/i18n/es_PY.po index 0e0d6e796ad..b41dffb350b 100644 --- a/addons/claim_from_delivery/i18n/es_PY.po +++ b/addons/claim_from_delivery/i18n/es_PY.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-18 13:12+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Paraguay) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/fa.po b/addons/claim_from_delivery/i18n/fa.po index 5eeb7b9b327..168af6dc2ea 100644 --- a/addons/claim_from_delivery/i18n/fa.po +++ b/addons/claim_from_delivery/i18n/fa.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-12-19 09:42+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/fi.po b/addons/claim_from_delivery/i18n/fi.po index 264189b1e9a..b44fcbeb6c2 100644 --- a/addons/claim_from_delivery/i18n/fi.po +++ b/addons/claim_from_delivery/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-06-20 10:45+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/fr.po b/addons/claim_from_delivery/i18n/fr.po index e72868c9c26..964ecbff300 100644 --- a/addons/claim_from_delivery/i18n/fr.po +++ b/addons/claim_from_delivery/i18n/fr.po @@ -6,30 +6,31 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2011-01-18 13:06+0000\n" -"Last-Translator: Aline (OpenERP) \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-18 23:43+0000\n" +"Last-Translator: Pierre Lamarche (www.savoirfairelinux.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: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 msgid "Claims" -msgstr "" +msgstr "Réclamations" #. module: claim_from_delivery #: model:res.request.link,name:claim_from_delivery.request_link_claim_from_delivery msgid "Delivery Order" -msgstr "" +msgstr "Bon de livraison" #. module: claim_from_delivery #: model:ir.actions.act_window,name:claim_from_delivery.action_claim_from_delivery msgid "Claim From Delivery" -msgstr "" +msgstr "Réclamation depuis la livraison" #~ msgid "Claim from delivery" #~ msgstr "Réclamation sur la livraison" diff --git a/addons/claim_from_delivery/i18n/gl.po b/addons/claim_from_delivery/i18n/gl.po index f57c2d9fe1e..45c8b6270a9 100644 --- a/addons/claim_from_delivery/i18n/gl.po +++ b/addons/claim_from_delivery/i18n/gl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-02-07 21:48+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/gu.po b/addons/claim_from_delivery/i18n/gu.po index 14154a2bf52..ebb171b8977 100644 --- a/addons/claim_from_delivery/i18n/gu.po +++ b/addons/claim_from_delivery/i18n/gu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-04-18 11:45+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Gujarati \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/hr.po b/addons/claim_from_delivery/i18n/hr.po index bbcecb166b0..23e9d6336f6 100644 --- a/addons/claim_from_delivery/i18n/hr.po +++ b/addons/claim_from_delivery/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-10 07:11+0000\n" "Last-Translator: Goran Kliska \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-11 04:49+0000\n" -"X-Generator: Launchpad (build 16356)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/hu.po b/addons/claim_from_delivery/i18n/hu.po index 8f50e0a8f0b..b03c71ec9b0 100644 --- a/addons/claim_from_delivery/i18n/hu.po +++ b/addons/claim_from_delivery/i18n/hu.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-17 13:47+0000\n" "Last-Translator: Krisztian Eyssen \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: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/id.po b/addons/claim_from_delivery/i18n/id.po index 51e6b78ab38..e6b13e82d01 100644 --- a/addons/claim_from_delivery/i18n/id.po +++ b/addons/claim_from_delivery/i18n/id.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-02-07 18:18+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/it.po b/addons/claim_from_delivery/i18n/it.po index 904678c797c..8e25eec1e9b 100644 --- a/addons/claim_from_delivery/i18n/it.po +++ b/addons/claim_from_delivery/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-30 00:12+0000\n" "Last-Translator: Sergio Corato \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-01 05:08+0000\n" -"X-Generator: Launchpad (build 16319)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ja.po b/addons/claim_from_delivery/i18n/ja.po index e53a10a9736..c91aa70cd4e 100644 --- a/addons/claim_from_delivery/i18n/ja.po +++ b/addons/claim_from_delivery/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-04-01 05:47+0000\n" "Last-Translator: Masaki Yamaya \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/lo.po b/addons/claim_from_delivery/i18n/lo.po index 0b43538c2ee..f8b1125a1c1 100644 --- a/addons/claim_from_delivery/i18n/lo.po +++ b/addons/claim_from_delivery/i18n/lo.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-08-20 18:44+0000\n" "Last-Translator: Brice Muangkhot ສຸພາ ເມືອງໂຄຕ \n" "Language-Team: Lao \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/lt.po b/addons/claim_from_delivery/i18n/lt.po index f557fe38dab..952e033a884 100644 --- a/addons/claim_from_delivery/i18n/lt.po +++ b/addons/claim_from_delivery/i18n/lt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-15 13:45+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/mn.po b/addons/claim_from_delivery/i18n/mn.po index 45d99268a53..60229f7d804 100644 --- a/addons/claim_from_delivery/i18n/mn.po +++ b/addons/claim_from_delivery/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-13 02:12+0000\n" "Last-Translator: badralb \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: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/nb.po b/addons/claim_from_delivery/i18n/nb.po index 89078cf4889..05e4592f5a2 100644 --- a/addons/claim_from_delivery/i18n/nb.po +++ b/addons/claim_from_delivery/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-08 19:14+0000\n" "Last-Translator: Kaare Pettersen \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-09 04:39+0000\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/nl.po b/addons/claim_from_delivery/i18n/nl.po index f37cadd844a..56a5c35da2d 100644 --- a/addons/claim_from_delivery/i18n/nl.po +++ b/addons/claim_from_delivery/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-24 19:07+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/nl_BE.po b/addons/claim_from_delivery/i18n/nl_BE.po index 7de6943064e..496d14fe707 100644 --- a/addons/claim_from_delivery/i18n/nl_BE.po +++ b/addons/claim_from_delivery/i18n/nl_BE.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-10-01 11:24+0000\n" "Last-Translator: Els Van Vossel (Agaplan) \n" "Language-Team: Dutch (Belgium) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/oc.po b/addons/claim_from_delivery/i18n/oc.po index 88db2107e88..5213248cbeb 100644 --- a/addons/claim_from_delivery/i18n/oc.po +++ b/addons/claim_from_delivery/i18n/oc.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-11-20 09:19+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Occitan (post 1500) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/pl.po b/addons/claim_from_delivery/i18n/pl.po index e5aa393d3a5..e82be916b0b 100644 --- a/addons/claim_from_delivery/i18n/pl.po +++ b/addons/claim_from_delivery/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-16 11:28+0000\n" "Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \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: 2012-12-17 04:47+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/pt.po b/addons/claim_from_delivery/i18n/pt.po index db4d0e59fd9..e3f35fff8a3 100644 --- a/addons/claim_from_delivery/i18n/pt.po +++ b/addons/claim_from_delivery/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-12-03 18:53+0000\n" "Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/pt_BR.po b/addons/claim_from_delivery/i18n/pt_BR.po index bc23e918b1d..6ae05580143 100644 --- a/addons/claim_from_delivery/i18n/pt_BR.po +++ b/addons/claim_from_delivery/i18n/pt_BR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-10 18:14+0000\n" "Last-Translator: Projetaty Soluções OpenSource \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-11 04:49+0000\n" -"X-Generator: Launchpad (build 16356)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ro.po b/addons/claim_from_delivery/i18n/ro.po index 057e8970774..fcca173afff 100644 --- a/addons/claim_from_delivery/i18n/ro.po +++ b/addons/claim_from_delivery/i18n/ro.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-12-29 15:32+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ru.po b/addons/claim_from_delivery/i18n/ru.po index 23c01a5cb57..cc60bf365df 100644 --- a/addons/claim_from_delivery/i18n/ru.po +++ b/addons/claim_from_delivery/i18n/ru.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-09-30 06:47+0000\n" "Last-Translator: Chertykov Denis \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sl.po b/addons/claim_from_delivery/i18n/sl.po index 84647f270ed..b697f631098 100644 --- a/addons/claim_from_delivery/i18n/sl.po +++ b/addons/claim_from_delivery/i18n/sl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-25 11:26+0000\n" "Last-Translator: Simon Vidmar \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sq.po b/addons/claim_from_delivery/i18n/sq.po index 761a169670b..e3b9ddd7b51 100644 --- a/addons/claim_from_delivery/i18n/sq.po +++ b/addons/claim_from_delivery/i18n/sq.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-03-28 15:39+0000\n" "Last-Translator: FULL NAME \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: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sr.po b/addons/claim_from_delivery/i18n/sr.po index 3b5cca1de4a..a5b99290bfa 100644 --- a/addons/claim_from_delivery/i18n/sr.po +++ b/addons/claim_from_delivery/i18n/sr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-10-17 07:56+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: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sr@latin.po b/addons/claim_from_delivery/i18n/sr@latin.po index 697fc0cf048..249191f8f4a 100644 --- a/addons/claim_from_delivery/i18n/sr@latin.po +++ b/addons/claim_from_delivery/i18n/sr@latin.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-10-06 14:05+0000\n" "Last-Translator: Milan Milosevic \n" "Language-Team: Serbian latin \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sv.po b/addons/claim_from_delivery/i18n/sv.po index c56a86025e8..501c8a8a770 100644 --- a/addons/claim_from_delivery/i18n/sv.po +++ b/addons/claim_from_delivery/i18n/sv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-11-24 09:38+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ta.po b/addons/claim_from_delivery/i18n/ta.po index 843e3e8dbc4..8f21464b48e 100644 --- a/addons/claim_from_delivery/i18n/ta.po +++ b/addons/claim_from_delivery/i18n/ta.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-18 06:05+0000\n" "Last-Translator: சதீஷ் குமார் \n" "Language-Team: Tamil \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/tr.po b/addons/claim_from_delivery/i18n/tr.po index 643f5552ccb..c53076a4280 100644 --- a/addons/claim_from_delivery/i18n/tr.po +++ b/addons/claim_from_delivery/i18n/tr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-11-05 10:15+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/zh_CN.po b/addons/claim_from_delivery/i18n/zh_CN.po index f638742ba82..1c9290aa8f6 100644 --- a/addons/claim_from_delivery/i18n/zh_CN.po +++ b/addons/claim_from_delivery/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-09 04:11+0000\n" "Last-Translator: sum1201 \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-10 04:39+0000\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/zh_TW.po b/addons/claim_from_delivery/i18n/zh_TW.po index c0251c0c6c0..0ec752dd6f3 100644 --- a/addons/claim_from_delivery/i18n/zh_TW.po +++ b/addons/claim_from_delivery/i18n/zh_TW.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-08-19 10:24+0000\n" "Last-Translator: Eric Huang \n" "Language-Team: Chinese (Traditional) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-25 06:23+0000\n" -"X-Generator: Launchpad (build 16293)\n" +"X-Launchpad-Export-Date: 2012-12-22 05:57+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/contacts/i18n/ar.po b/addons/contacts/i18n/ar.po index 6119dea8d8f..77dbaffe73a 100644 --- a/addons/contacts/i18n/ar.po +++ b/addons/contacts/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-01 17:43+0000\n" "Last-Translator: gehad shaat \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: 2012-12-02 04:38+0000\n" -"X-Generator: Launchpad (build 16319)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/contacts.pot b/addons/contacts/i18n/contacts.pot index bb34937dc26..7072b564e36 100644 --- a/addons/contacts/i18n/contacts.pot +++ b/addons/contacts/i18n/contacts.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 7.0alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-21 17:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/contacts/i18n/de.po b/addons/contacts/i18n/de.po index fd3fde8877f..8ee019e0e35 100644 --- a/addons/contacts/i18n/de.po +++ b/addons/contacts/i18n/de.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-16 12:50+0000\n" "Last-Translator: Felix Schubert \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-17 04:47+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/es.po b/addons/contacts/i18n/es.po index 825d45cbbb8..6c84ae4e4cf 100644 --- a/addons/contacts/i18n/es.po +++ b/addons/contacts/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 14:20+0000\n" "Last-Translator: Armando Regnault \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-12 04:41+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/et.po b/addons/contacts/i18n/et.po index 9974c578a78..75dde80e82e 100644 --- a/addons/contacts/i18n/et.po +++ b/addons/contacts/i18n/et.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-17 18:48+0000\n" "Last-Translator: Ahti Hinnov \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-18 05:02+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/fr.po b/addons/contacts/i18n/fr.po index 65dd094a0d7..c05bfd959a5 100644 --- a/addons/contacts/i18n/fr.po +++ b/addons/contacts/i18n/fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" -"PO-Revision-Date: 2012-12-10 16:56+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-18 23:42+0000\n" +"Last-Translator: WANTELLET Sylvain \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-11 04:49+0000\n" -"X-Generator: Launchpad (build 16356)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts @@ -29,9 +29,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez pour ajouter un contact dans votre carnet d'adresses.\n" +"

\n" +" OpenERP vous permet de suivre facilement toutes les actions " +"liées à un client (discussions, historique des opportunités commerciales, " +"documents, etc.).\n" +"

\n" +" " #. module: contacts #: model:ir.actions.act_window,name:contacts.action_contacts #: model:ir.ui.menu,name:contacts.menu_contacts msgid "Contacts" -msgstr "" +msgstr "Contacts" diff --git a/addons/contacts/i18n/hr.po b/addons/contacts/i18n/hr.po index 8de3a7cf309..d9d806fb0b5 100644 --- a/addons/contacts/i18n/hr.po +++ b/addons/contacts/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-09 19:40+0000\n" "Last-Translator: Goran Kliska \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-10 04:39+0000\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/hu.po b/addons/contacts/i18n/hu.po index eacc9b22406..500d4f50c83 100644 --- a/addons/contacts/i18n/hu.po +++ b/addons/contacts/i18n/hu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-27 23:56+0000\n" "Last-Translator: Krisztian Eyssen \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-29 05:15+0000\n" -"X-Generator: Launchpad (build 16319)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/it.po b/addons/contacts/i18n/it.po index e0d4d816737..230ebcf637c 100644 --- a/addons/contacts/i18n/it.po +++ b/addons/contacts/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-28 19:52+0000\n" "Last-Translator: Davide Corio - agilebg.com \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-29 05:15+0000\n" -"X-Generator: Launchpad (build 16319)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/nl.po b/addons/contacts/i18n/nl.po index 70d43860c53..5a14a8015b4 100644 --- a/addons/contacts/i18n/nl.po +++ b/addons/contacts/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-12 20:26+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-13 04:45+0000\n" -"X-Generator: Launchpad (build 16361)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/pl.po b/addons/contacts/i18n/pl.po index 64e2d8de6fa..003e0e5a906 100644 --- a/addons/contacts/i18n/pl.po +++ b/addons/contacts/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-17 10:43+0000\n" "Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \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: 2012-12-18 05:02+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/pt.po b/addons/contacts/i18n/pt.po index 465f9e0936d..595e42f9fff 100644 --- a/addons/contacts/i18n/pt.po +++ b/addons/contacts/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-17 14:10+0000\n" "Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-18 05:02+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/pt_BR.po b/addons/contacts/i18n/pt_BR.po index 45de98d2136..15cd67ec31b 100644 --- a/addons/contacts/i18n/pt_BR.po +++ b/addons/contacts/i18n/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-17 00:40+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " "\n" @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-18 05:02+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/ro.po b/addons/contacts/i18n/ro.po index ebf9563d58b..9fa14b52acb 100644 --- a/addons/contacts/i18n/ro.po +++ b/addons/contacts/i18n/ro.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-10 09:13+0000\n" "Last-Translator: Fekete Mihai \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-11 04:49+0000\n" -"X-Generator: Launchpad (build 16356)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/ru.po b/addons/contacts/i18n/ru.po index 15f41977fda..986793d1347 100644 --- a/addons/contacts/i18n/ru.po +++ b/addons/contacts/i18n/ru.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-30 18:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-01 05:09+0000\n" -"X-Generator: Launchpad (build 16319)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/sl.po b/addons/contacts/i18n/sl.po new file mode 100644 index 00000000000..d33a15b4926 --- /dev/null +++ b/addons/contacts/i18n/sl.po @@ -0,0 +1,41 @@ +# Slovenian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-01 21:56+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-02 04:37+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: contacts +#: model:ir.actions.act_window,help:contacts.action_contacts +msgid "" +"

\n" +" Click to add a contact in your address book.\n" +"

\n" +" OpenERP helps you easily track all activities related to\n" +" a customer; discussions, history of business opportunities,\n" +" documents, etc.\n" +"

\n" +" " +msgstr "" +"

\n" +" Dodajte nov stik v imenik\n" +"

\n" +" " + +#. module: contacts +#: model:ir.actions.act_window,name:contacts.action_contacts +#: model:ir.ui.menu,name:contacts.menu_contacts +msgid "Contacts" +msgstr "Stiki" diff --git a/addons/contacts/i18n/sv.po b/addons/contacts/i18n/sv.po new file mode 100644 index 00000000000..f427307be6c --- /dev/null +++ b/addons/contacts/i18n/sv.po @@ -0,0 +1,37 @@ +# Swedish translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-01-17 23:49+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-01-19 05:22+0000\n" +"X-Generator: Launchpad (build 16430)\n" + +#. module: contacts +#: model:ir.actions.act_window,help:contacts.action_contacts +msgid "" +"

\n" +" Click to add a contact in your address book.\n" +"

\n" +" OpenERP helps you easily track all activities related to\n" +" a customer; discussions, history of business opportunities,\n" +" documents, etc.\n" +"

\n" +" " +msgstr "" + +#. module: contacts +#: model:ir.actions.act_window,name:contacts.action_contacts +#: model:ir.ui.menu,name:contacts.menu_contacts +msgid "Contacts" +msgstr "Kontakter" diff --git a/addons/contacts/i18n/tr.po b/addons/contacts/i18n/tr.po index 9b68dbf5ddc..d816310fb9e 100644 --- a/addons/contacts/i18n/tr.po +++ b/addons/contacts/i18n/tr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-27 21:52+0000\n" "Last-Translator: Ahmet Altınışık \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-11-28 04:41+0000\n" -"X-Generator: Launchpad (build 16309)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/zh_CN.po b/addons/contacts/i18n/zh_CN.po index 4334507a174..2671c0df754 100644 --- a/addons/contacts/i18n/zh_CN.po +++ b/addons/contacts/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-11-24 02:52+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-14 13:55+0000\n" "Last-Translator: ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-15 05:06+0000\n" -"X-Generator: Launchpad (build 16372)\n" +"X-Launchpad-Export-Date: 2012-12-22 06:07+0000\n" +"X-Generator: Launchpad (build 16378)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/zh_TW.po b/addons/contacts/i18n/zh_TW.po new file mode 100644 index 00000000000..72df3ef7766 --- /dev/null +++ b/addons/contacts/i18n/zh_TW.po @@ -0,0 +1,37 @@ +# Chinese (Traditional) translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2012-12-22 05:29+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Chinese (Traditional) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-23 04:42+0000\n" +"X-Generator: Launchpad (build 16378)\n" + +#. module: contacts +#: model:ir.actions.act_window,help:contacts.action_contacts +msgid "" +"

\n" +" Click to add a contact in your address book.\n" +"

\n" +" OpenERP helps you easily track all activities related to\n" +" a customer; discussions, history of business opportunities,\n" +" documents, etc.\n" +"

\n" +" " +msgstr "" + +#. module: contacts +#: model:ir.actions.act_window,name:contacts.action_contacts +#: model:ir.ui.menu,name:contacts.menu_contacts +msgid "Contacts" +msgstr "" diff --git a/addons/crm/__init__.py b/addons/crm/__init__.py index 729d54e0fc6..d78fb09eae7 100644 --- a/addons/crm/__init__.py +++ b/addons/crm/__init__.py @@ -20,7 +20,6 @@ ############################################################################## import crm -import crm_action_rule import crm_segmentation import crm_lead import crm_meeting diff --git a/addons/crm/__openerp__.py b/addons/crm/__openerp__.py index b4ec404470c..4a792abc9ee 100644 --- a/addons/crm/__openerp__.py +++ b/addons/crm/__openerp__.py @@ -77,7 +77,6 @@ Dashboard for CRM will include: 'crm_view.xml', - 'crm_action_rule_view.xml', 'crm_lead_view.xml', 'crm_lead_menu.xml', @@ -108,7 +107,6 @@ Dashboard for CRM will include: 'test/process/lead2opportunity_assign_salesmen.yml', 'test/process/merge_opportunity.yml', 'test/process/cancel_lead.yml', - 'test/process/action_rule.yml', 'test/process/segmentation.yml', 'test/process/phonecalls.yml', 'test/ui/crm_demo.yml', diff --git a/addons/crm/crm_action_rule.py b/addons/crm/crm_action_rule.py deleted file mode 100644 index b17ba5665d7..00000000000 --- a/addons/crm/crm_action_rule.py +++ /dev/null @@ -1,96 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -import re -from openerp import tools - -from openerp.tools.translate import _ -from openerp.tools import ustr -from openerp.osv import fields -from openerp.osv import osv - -import crm - -class base_action_rule(osv.osv): - """ Base Action Rule """ - _inherit = 'base.action.rule' - _description = 'Action Rules' - - _columns = { - 'trg_section_id': fields.many2one('crm.case.section', 'Sales Team'), - 'trg_max_history': fields.integer('Maximum Communication History'), - 'trg_categ_id': fields.many2one('crm.case.categ', 'Category'), - 'regex_history' : fields.char('Regular Expression on Case History', size=128), - 'act_section_id': fields.many2one('crm.case.section', 'Set Team to'), - 'act_categ_id': fields.many2one('crm.case.categ', 'Set Category to'), - } - - def do_check(self, cr, uid, action, obj, context=None): - ok = super(base_action_rule, self).do_check(cr, uid, action, obj, context=context) - - if hasattr(obj, 'section_id'): - ok = ok and (not action.trg_section_id or action.trg_section_id.id == obj.section_id.id) - if hasattr(obj, 'categ_ids'): - ok = ok and (not action.trg_categ_id or action.trg_categ_id.id in [x.id for x in obj.categ_ids]) - - #Cheking for history - regex = action.regex_history - if regex: - res = False - ptrn = re.compile(ustr(regex)) - for history in obj.message_ids: - _result = ptrn.search(ustr(history.subject)) - if _result: - res = True - break - ok = ok and res - - if action.trg_max_history: - res_count = False - history_ids = filter(lambda x: x.email_from, obj.message_ids) - if len(history_ids) <= action.trg_max_history: - res_count = True - ok = ok and res_count - return ok - - def do_action(self, cr, uid, action, obj, context=None): - res = super(base_action_rule, self).do_action(cr, uid, action, obj, context=context) - model_obj = self.pool.get(action.model_id.model) - write = {} - if hasattr(action, 'act_section_id') and action.act_section_id: - write['section_id'] = action.act_section_id.id - - if hasattr(action, 'act_categ_id') and action.act_categ_id: - write['categ_ids'] = [(4, action.act_categ_id.id)] - - model_obj.write(cr, uid, [obj.id], write, context) - return res - - def state_get(self, cr, uid, context=None): - """Gets available states for crm""" - res = super(base_action_rule, self).state_get(cr, uid, context=context) - return res + crm.AVAILABLE_STATES - - def priority_get(self, cr, uid, context=None): - res = super(base_action_rule, self).priority_get(cr, uid, context=context) - return res + crm.AVAILABLE_PRIORITIES - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/crm/crm_action_rule_demo.xml b/addons/crm/crm_action_rule_demo.xml index 6885aba9bff..bf1f7d4082f 100644 --- a/addons/crm/crm_action_rule_demo.xml +++ b/addons/crm/crm_action_rule_demo.xml @@ -27,7 +27,7 @@ Description: [[object.description]] 1 - create + 5 day @@ -40,18 +40,27 @@ Description: [[object.description]] [('country_id','=','United States')] + + Set team to Sales Department + + True + ir.actions.server + code + sales_team = self.pool.get('ir.model.data').get_object(cr, uid, 'crm', 'section_sales_department') +object.write({'section_id': sales_team.id}) + + Set Auto Followers on leads which are urgent and come from USA. 2 - urgent.* - - create + 0 minutes + diff --git a/addons/crm/crm_action_rule_view.xml b/addons/crm/crm_action_rule_view.xml deleted file mode 100644 index e21b74de382..00000000000 --- a/addons/crm/crm_action_rule_view.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - base.action.rule.form.inherit - base.action.rule - - - - - - - - - - - - - - - - - - - - diff --git a/addons/crm/crm_data.xml b/addons/crm/crm_data.xml index f2bf56e34ac..3726c744b2e 100644 --- a/addons/crm/crm_data.xml +++ b/addons/crm/crm_data.xml @@ -39,7 +39,7 @@ - Cheque + Check @@ -71,4 +71,21 @@ {'type':'lead'} + + + + + + + Opportunity - Send Emails + ${object.user_id.email or ''} + Opportunity ${object.name | h}) + + + ${object.partner_id.id} + + + diff --git a/addons/crm/crm_lead.py b/addons/crm/crm_lead.py index 667f24fda93..4455663ca9a 100644 --- a/addons/crm/crm_lead.py +++ b/addons/crm/crm_lead.py @@ -71,11 +71,34 @@ class crm_lead(base_stage, format_address, osv.osv): _name = "crm.lead" _description = "Lead/Opportunity" _order = "priority,date_action,id desc" - _inherit = ['mail.thread','ir.needaction_mixin'] + _inherit = ['mail.thread', 'ir.needaction_mixin'] + + _track = { + 'state': { + 'crm.mt_lead_create': lambda self, cr, uid, obj, ctx=None: obj['state'] == 'new', + 'crm.mt_lead_won': lambda self, cr, uid, obj, ctx=None: obj['state'] == 'done', + 'crm.mt_lead_lost': lambda self, cr, uid, obj, ctx=None: obj['state'] == 'cancel', + }, + 'stage_id': { + 'crm.mt_lead_stage': lambda self, cr, uid, obj, ctx=None: obj['state'] not in ['new', 'cancel', 'done'], + }, + } + + def create(self, cr, uid, vals, context=None): + if context is None: + context = {} + if not vals.get('stage_id'): + ctx = context.copy() + if vals.get('section_id'): + ctx['default_section_id'] = vals['section_id'] + if vals.get('type'): + ctx['default_type'] = vals['type'] + vals['stage_id'] = self._get_default_stage_id(cr, uid, context=ctx) + return super(crm_lead, self).create(cr, uid, vals, context=context) def _get_default_section_id(self, cr, uid, context=None): """ Gives default section by checking if present in the context """ - return (self._resolve_section_id_from_context(cr, uid, context=context) or False) + return self._resolve_section_id_from_context(cr, uid, context=context) or False def _get_default_stage_id(self, cr, uid, context=None): """ Gives default stage_id """ @@ -214,7 +237,7 @@ class crm_lead(base_stage, format_address, osv.osv): return [('id', '=', '0')] _columns = { - 'partner_id': fields.many2one('res.partner', 'Partner', ondelete='set null', + 'partner_id': fields.many2one('res.partner', 'Partner', ondelete='set null', track_visibility='onchange', select=True, help="Linked partner (optional). Usually created when converting the lead."), 'id': fields.integer('ID', readonly=True), @@ -223,8 +246,8 @@ class crm_lead(base_stage, format_address, osv.osv): 'date_action_last': fields.datetime('Last Action', readonly=1), 'date_action_next': fields.datetime('Next Action', readonly=1), 'email_from': fields.char('Email', size=128, help="Email address of the contact", select=1), - 'section_id': fields.many2one('crm.case.section', 'Sales Team', \ - select=True, help='When sending mails, the default email address is taken from the sales team.'), + 'section_id': fields.many2one('crm.case.section', 'Sales Team', + select=True, track_visibility='onchange', help='When sending mails, the default email address is taken from the sales team.'), 'create_date': fields.datetime('Creation Date' , readonly=True), 'email_cc': fields.text('Global CC', size=252 , help="These email addresses will be added to the CC field of all inbound and outbound emails for this record before being sent. Separate multiple email addresses with a comma"), 'description': fields.text('Notes'), @@ -240,9 +263,9 @@ class crm_lead(base_stage, format_address, osv.osv): 'type':fields.selection([ ('lead','Lead'), ('opportunity','Opportunity'), ],'Type', help="Type is used to separate Leads and Opportunities"), 'priority': fields.selection(crm.AVAILABLE_PRIORITIES, 'Priority', select=True), 'date_closed': fields.datetime('Closed', readonly=True), - 'stage_id': fields.many2one('crm.case.stage', 'Stage', - domain="[('fold', '=', False), ('section_ids', '=', section_id), '|', ('type', '=', type), ('type', '=', 'both')]"), - 'user_id': fields.many2one('res.users', 'Salesperson'), + 'stage_id': fields.many2one('crm.case.stage', 'Stage', track_visibility='onchange', + domain="['&', '&', ('fold', '=', False), ('section_ids', '=', section_id), '|', ('type', '=', type), ('type', '=', 'both')]"), + 'user_id': fields.many2one('res.users', 'Salesperson', select=True, track_visibility='onchange'), 'referred': fields.char('Referred By', size=64), 'date_open': fields.datetime('Opened', readonly=True), 'day_open': fields.function(_compute_day, string='Days to Open', \ @@ -255,7 +278,7 @@ class crm_lead(base_stage, format_address, osv.osv): # Only used for type opportunity 'probability': fields.float('Success Rate (%)',group_operator="avg"), - 'planned_revenue': fields.float('Expected Revenue'), + 'planned_revenue': fields.float('Expected Revenue', track_visibility='always'), 'ref': fields.reference('Reference', selection=crm._links_get, size=128), 'ref2': fields.reference('Reference 2', selection=crm._links_get, size=128), 'phone': fields.char("Phone", size=64), @@ -303,15 +326,6 @@ class crm_lead(base_stage, format_address, osv.osv): ('check_probability', 'check(probability >= 0 and probability <= 100)', 'The probability of closing the deal should be between 0% and 100%!') ] - def create(self, cr, uid, vals, context=None): - obj_id = super(crm_lead, self).create(cr, uid, vals, context) - section_id = self.browse(cr, uid, obj_id, context=context).section_id - if section_id: - followers = [follow.id for follow in section_id.message_follower_ids] - self.message_subscribe(cr, uid, [obj_id], followers, context=context) - self.create_send_note(cr, uid, [obj_id], context=context) - return obj_id - def onchange_stage_id(self, cr, uid, ids, stage_id, context=None): if not stage_id: return {'value':{}} @@ -384,7 +398,8 @@ class crm_lead(base_stage, format_address, osv.osv): search_domain += [('|')] * len(section_ids) for section_id in section_ids: search_domain.append(('section_ids', '=', section_id)) - search_domain.append(('case_default', '=', True)) + else: + search_domain.append(('case_default', '=', True)) # AND with cases types search_domain.append(('type', 'in', types)) # AND with the domain in parameter @@ -410,19 +425,17 @@ class crm_lead(base_stage, format_address, osv.osv): def case_mark_lost(self, cr, uid, ids, context=None): """ Mark the case as lost: state=cancel and probability=0 """ for lead in self.browse(cr, uid, ids): - stage_id = self.stage_find(cr, uid, [lead], lead.section_id.id or False, [('probability', '=', 0.0)], context=context) + stage_id = self.stage_find(cr, uid, [lead], lead.section_id.id or False, [('probability', '=', 0.0),('on_change','=',True)], context=context) if stage_id: self.case_set(cr, uid, [lead.id], values_to_update={'probability': 0.0}, new_stage_id=stage_id, context=context) - self.case_mark_lost_send_note(cr, uid, ids, context=context) return True def case_mark_won(self, cr, uid, ids, context=None): - """ Mark the case as lost: state=done and probability=100 """ + """ Mark the case as won: state=done and probability=100 """ for lead in self.browse(cr, uid, ids): - stage_id = self.stage_find(cr, uid, [lead], lead.section_id.id or False, [('probability', '=', 100.0)], context=context) + stage_id = self.stage_find(cr, uid, [lead], lead.section_id.id or False, [('probability', '=', 100.0),('on_change','=',True)], context=context) if stage_id: self.case_set(cr, uid, [lead.id], values_to_update={'probability': 100.0}, new_stage_id=stage_id, context=context) - self.case_mark_won_send_note(cr, uid, ids, context=context) return True def set_priority(self, cr, uid, ids, priority): @@ -666,29 +679,23 @@ class crm_lead(base_stage, format_address, osv.osv): contact_id = False if customer: contact_id = self.pool.get('res.partner').address_get(cr, uid, [customer.id])['default'] - if not section_id: section_id = lead.section_id and lead.section_id.id or False - - if section_id: - stage_ids = crm_stage.search(cr, uid, [('sequence','>=',1), ('section_ids','=', section_id)]) - else: - stage_ids = crm_stage.search(cr, uid, [('sequence','>=',1)]) - stage_id = stage_ids and stage_ids[0] or False - - return { + val = { 'planned_revenue': lead.planned_revenue, 'probability': lead.probability, 'name': lead.name, 'partner_id': customer and customer.id or False, 'user_id': (lead.user_id and lead.user_id.id), 'type': 'opportunity', - 'stage_id': stage_id or False, 'date_action': fields.datetime.now(), 'date_open': fields.datetime.now(), 'email_from': customer and customer.email or lead.email_from, 'phone': customer and customer.phone or lead.phone, } + if not lead.stage_id or lead.stage_id.type=='lead': + val['stage_id'] = self.stage_find(cr, uid, [lead], section_id, [('state', '=', 'draft'),('type', 'in', ('opportunity','both'))], context=context) + return val def convert_opportunity(self, cr, uid, ids, partner_id, user_ids=False, section_id=False, context=None): customer = False @@ -700,7 +707,7 @@ class crm_lead(base_stage, format_address, osv.osv): continue vals = self._convert_opportunity_data(cr, uid, lead, customer, section_id, context=context) self.write(cr, uid, [lead.id], vals, context=context) - self.convert_opportunity_send_note(cr, uid, lead, context=context) + self.message_post(cr, uid, ids, body=_("Lead converted into an Opportunity"), subtype="crm.mt_lead_convert_to_opportunity", context=context) if user_ids or section_id: self.allocate_salesman(cr, uid, ids, user_ids, section_id, context=context) @@ -759,7 +766,8 @@ class crm_lead(base_stage, format_address, osv.osv): res_partner.write(cr, uid, partner_id, {'section_id': lead.section_id.id or False}) contact_id = res_partner.address_get(cr, uid, [partner_id])['default'] res = lead.write({'partner_id': partner_id}, context=context) - self._lead_set_partner_send_note(cr, uid, [lead.id], context) + message = _("Partner set to %s." % (lead.partner_id.name)) + self.message_post(cr, uid, [lead.id], body=message, context=context) return res def handle_partner_assignation(self, cr, uid, ids, action='create', partner_id=False, context=None): @@ -913,17 +921,52 @@ class crm_lead(base_stage, format_address, osv.osv): stage = self.pool.get('crm.case.stage').browse(cr, uid, vals['stage_id'], context=context) if stage.on_change: vals['probability'] = stage.probability - if vals.get('section_id'): - section_id = self.pool.get('crm.case.section').browse(cr, uid, vals.get('section_id'), context=context) - if section_id: - vals.setdefault('message_follower_ids', []) - vals['message_follower_ids'] += [(4, follower.id) for follower in section_id.message_follower_ids] - return super(crm_lead,self).write(cr, uid, ids, vals, context) + return super(crm_lead, self).write(cr, uid, ids, vals, context=context) + + def new_mail_send(self, cr, uid, ids, context=None): + ''' + This function opens a window to compose an email, with the edi sale template message loaded by default + ''' + assert len(ids) == 1, 'This option should only be used for a single id at a time.' + ir_model_data = self.pool.get('ir.model.data') + try: + template_id = ir_model_data.get_object_reference(cr, uid, 'crm', 'email_template_opportunity_mail')[1] + except ValueError: + template_id = False + try: + compose_form_id = ir_model_data.get_object_reference(cr, uid, 'mail', 'email_compose_message_wizard_form')[1] + except ValueError: + compose_form_id = False + if context is None: + context = {} + ctx = context.copy() + ctx.update({ + 'default_model': 'crm.lead', + 'default_res_id': ids[0], + 'default_use_template': bool(template_id), + 'default_template_id': template_id, + 'default_composition_mode': 'comment', + }) + return { + 'type': 'ir.actions.act_window', + 'view_type': 'form', + 'view_mode': 'form', + 'res_model': 'mail.compose.message', + 'views': [(compose_form_id, 'form')], + 'view_id': compose_form_id, + 'target': 'new', + 'context': ctx, + } # ---------------------------------------- # Mail Gateway # ---------------------------------------- + def message_get_reply_to(self, cr, uid, ids, context=None): + """ Override to get the reply_to of the parent project. """ + return [lead.section_id.message_get_reply_to()[0] if lead.section_id else False + for lead in self.browse(cr, uid, ids, context=context)] + def message_new(self, cr, uid, msg, custom_values=None, context=None): """ Overrides mail_thread message_new that is called by the mailgateway through message_process. @@ -932,16 +975,17 @@ class crm_lead(base_stage, format_address, osv.osv): if custom_values is None: custom_values = {} desc = html2plaintext(msg.get('body')) if msg.get('body') else '' - custom_values.update({ + defaults = { 'name': msg.get('subject') or _("No Subject"), 'description': desc, 'email_from': msg.get('from'), 'email_cc': msg.get('cc'), 'user_id': False, - }) + } if msg.get('priority') in dict(crm.AVAILABLE_PRIORITIES): - custom_values['priority'] = msg.get('priority') - return super(crm_lead, self).message_new(cr, uid, msg, custom_values=custom_values, context=context) + defaults['priority'] = msg.get('priority') + defaults.update(custom_values) + return super(crm_lead, self).message_new(cr, uid, msg, custom_values=defaults, context=context) def message_update(self, cr, uid, ids, msg, update_vals=None, context=None): """ Overrides mail_thread message_update that is called by the mailgateway @@ -972,30 +1016,6 @@ class crm_lead(base_stage, format_address, osv.osv): # OpenChatter methods and notifications # ---------------------------------------- - def stage_set_send_note(self, cr, uid, ids, stage_id, context=None): - """ Override of the (void) default notification method. """ - stage_name = self.pool.get('crm.case.stage').name_get(cr, uid, [stage_id], context=context)[0][1] - return self.message_post(cr, uid, ids, body=_("Stage changed to %s.") % (stage_name), subtype="mt_crm_stage", context=context) - - def case_get_note_msg_prefix(self, cr, uid, lead, context=None): - if isinstance(lead, (int, long)): - lead = self.browse(cr, uid, [lead], context=context)[0] - return ('Opportunity' if lead.type == 'opportunity' else 'Lead') - - def create_send_note(self, cr, uid, ids, context=None): - for id in ids: - message = _("%s has been created.") % (self.case_get_note_msg_prefix(cr, uid, id, context=context)) - self.message_post(cr, uid, [id], body=message, context=context) - return True - - def case_mark_lost_send_note(self, cr, uid, ids, context=None): - message = _("Opportunity has been lost.") - return self.message_post(cr, uid, ids, body=message, subtype="mt_crm_lost", context=context) - - def case_mark_won_send_note(self, cr, uid, ids, context=None): - message = _("Opportunity has been won.") - return self.message_post(cr, uid, ids, body=message, subtype="mt_crm_won", context=context) - def schedule_phonecall_send_note(self, cr, uid, ids, phonecall_id, action, context=None): phonecall = self.pool.get('crm.phonecall').browse(cr, uid, [phonecall_id], context=context)[0] if action == 'log': prefix = 'Logged' @@ -1003,17 +1023,6 @@ class crm_lead(base_stage, format_address, osv.osv): message = _("%s a call for the %s.") % (prefix, phonecall.date) return self.message_post(cr, uid, ids, body=message, context=context) - def _lead_set_partner_send_note(self, cr, uid, ids, context=None): - for lead in self.browse(cr, uid, ids, context=context): - message = _("%s partner is now set to %s." % (self.case_get_note_msg_prefix(cr, uid, lead, context=context), lead.partner_id.name)) - lead.message_post(body=message) - return True - - def convert_opportunity_send_note(self, cr, uid, lead, context=None): - message = _("Lead has been converted to an opportunity.") - lead.message_post(body=message) - return True - def onchange_state(self, cr, uid, ids, state_id, context=None): if state_id: country_id=self.pool.get('res.country.state').browse(cr, uid, state_id, context).country_id.id diff --git a/addons/crm/crm_lead_data.xml b/addons/crm/crm_lead_data.xml index b7541b6daf0..bb590f49d73 100644 --- a/addons/crm/crm_lead_data.xml +++ b/addons/crm/crm_lead_data.xml @@ -65,6 +65,7 @@ Lost + cancel @@ -154,20 +155,68 @@ - - - Won - crm.lead - - - Lost + + + Lead Created crm.lead + Opportunity created - + + Lead to Opportunity + crm.lead + + Lead converted into an opportunity + + Stage Changed crm.lead + Stage changed + + + Opportunity Won + crm.lead + Opportunity won + + + Opportunity Lost + crm.lead + Opportunity lost + + + + Lead Created + crm.case.section + + + section_id + + + Lead to Opportunity + + crm.case.section + + section_id + + + Opportunity Stage Changed + crm.case.section + + section_id + + + Opportunity Won + crm.case.section + + section_id + + + Opportunity Lost + crm.case.section + + + section_id diff --git a/addons/crm/crm_lead_demo.xml b/addons/crm/crm_lead_demo.xml index 86a944544ff..99fb0e895c2 100644 --- a/addons/crm/crm_lead_demo.xml +++ b/addons/crm/crm_lead_demo.xml @@ -402,9 +402,9 @@ Andrew Leland Martinez info@deltapc.com Delta PC - Fremont + London 3661 Station Street - + diff --git a/addons/crm/crm_lead_view.xml b/addons/crm/crm_lead_view.xml index ce5d4555028..3d7bd45a209 100644 --- a/addons/crm/crm_lead_view.xml +++ b/addons/crm/crm_lead_view.xml @@ -100,7 +100,7 @@ states="cancel"/>